mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Added presence string functions to common
This commit is contained in:
parent
591f8a8dbf
commit
3bee45fa76
54
src/common.c
54
src/common.c
@ -20,6 +20,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -262,12 +263,9 @@ release_get_latest()
|
|||||||
gboolean
|
gboolean
|
||||||
presence_valid_string(const char * const str)
|
presence_valid_string(const char * const str)
|
||||||
{
|
{
|
||||||
if (str == NULL) {
|
assert(str != NULL);
|
||||||
return FALSE;
|
if ((strcmp(str, "online") == 0) || (strcmp(str, "chat") == 0) ||
|
||||||
} else if ((strcmp(str, "online") == 0) ||
|
(strcmp(str, "away") == 0) || (strcmp(str, "xa") == 0) ||
|
||||||
(strcmp(str, "chat") == 0) ||
|
|
||||||
(strcmp(str, "away") == 0) ||
|
|
||||||
(strcmp(str, "xa") == 0) ||
|
|
||||||
(strcmp(str, "dnd") == 0)) {
|
(strcmp(str, "dnd") == 0)) {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
@ -275,6 +273,50 @@ presence_valid_string(const char * const str)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
presence_display_string_from_type(presence_t presence)
|
||||||
|
{
|
||||||
|
switch (presence)
|
||||||
|
{
|
||||||
|
case PRESENCE_ONLINE:
|
||||||
|
return "online";
|
||||||
|
case PRESENCE_CHAT:
|
||||||
|
return "chat";
|
||||||
|
case PRESENCE_AWAY:
|
||||||
|
return "away";
|
||||||
|
case PRESENCE_XA:
|
||||||
|
return "xa";
|
||||||
|
case PRESENCE_DND:
|
||||||
|
return "dnd";
|
||||||
|
case PRESENCE_OFFLINE:
|
||||||
|
return "offline";
|
||||||
|
default:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
presence_stanza_show_from_type(presence_t presence)
|
||||||
|
{
|
||||||
|
assert(presence != PRESENCE_OFFLINE);
|
||||||
|
|
||||||
|
switch (presence)
|
||||||
|
{
|
||||||
|
case PRESENCE_ONLINE:
|
||||||
|
return NULL;
|
||||||
|
case PRESENCE_CHAT:
|
||||||
|
return "chat";
|
||||||
|
case PRESENCE_AWAY:
|
||||||
|
return "away";
|
||||||
|
case PRESENCE_XA:
|
||||||
|
return "xa";
|
||||||
|
case PRESENCE_DND:
|
||||||
|
return "dnd";
|
||||||
|
default:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gchar *
|
gchar *
|
||||||
xdg_get_config_home(void)
|
xdg_get_config_home(void)
|
||||||
{
|
{
|
||||||
|
@ -76,6 +76,8 @@ char * prof_getline(FILE *stream);
|
|||||||
int octet_compare(unsigned char *str1, unsigned char *str2);
|
int octet_compare(unsigned char *str1, unsigned char *str2);
|
||||||
char* release_get_latest(void);
|
char* release_get_latest(void);
|
||||||
gboolean presence_valid_string(const char * const str);
|
gboolean presence_valid_string(const char * const str);
|
||||||
|
const char * presence_display_string_from_type(presence_t presence);
|
||||||
|
const char * presence_stanza_show_from_type(presence_t presence);
|
||||||
gchar * xdg_get_config_home(void);
|
gchar * xdg_get_config_home(void);
|
||||||
gchar * xdg_get_data_home(void);
|
gchar * xdg_get_data_home(void);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user