mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-19 20:36:22 +00:00
Added jid datatype
This commit is contained in:
100
src/common.c
100
src/common.c
@@ -167,103 +167,3 @@ prof_getline(FILE *stream)
|
||||
free(buf);
|
||||
return s;
|
||||
}
|
||||
|
||||
/*
|
||||
* Given a full room JID of the form
|
||||
* room@server/nick
|
||||
* Will create two new strings and point room and nick to them e.g.
|
||||
* *room = "room@server", *nick = "nick"
|
||||
* The strings must be freed by the caller
|
||||
* Returns TRUE if the JID was parsed successfully, FALSE otherwise
|
||||
*/
|
||||
gboolean
|
||||
parse_room_jid(const char * const full_room_jid, char **room, char **nick)
|
||||
{
|
||||
char **tokens = g_strsplit(full_room_jid, "/", 0);
|
||||
|
||||
if (tokens == NULL || tokens[0] == NULL || tokens[1] == NULL) {
|
||||
return FALSE;
|
||||
} else {
|
||||
*room = strdup(tokens[0]);
|
||||
*nick = strdup(tokens[1]);
|
||||
|
||||
g_strfreev(tokens);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Given a room name, and a nick name create and return a full JID of the form
|
||||
* room@server/nick
|
||||
* Will return a newly created string that must be freed by the caller
|
||||
*/
|
||||
char *
|
||||
create_full_room_jid(const char * const room, const char * const nick)
|
||||
{
|
||||
GString *full_jid = g_string_new(room);
|
||||
g_string_append(full_jid, "/");
|
||||
g_string_append(full_jid, nick);
|
||||
|
||||
char *result = strdup(full_jid->str);
|
||||
|
||||
g_string_free(full_jid, TRUE);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns TRUE if the JID is a room JID
|
||||
* The test is that the passed JID does not contain a "/"
|
||||
*/
|
||||
gboolean
|
||||
jid_is_room(const char * const room_jid)
|
||||
{
|
||||
gchar *result = g_strrstr(room_jid, "/");
|
||||
return (result == NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Get the room name part of the full JID, e.g.
|
||||
* Full JID = "test@conference.server/person"
|
||||
* returns "test@conference.server"
|
||||
*/
|
||||
char *
|
||||
get_room_from_full_jid(const char * const full_room_jid)
|
||||
{
|
||||
char **tokens = g_strsplit(full_room_jid, "/", 0);
|
||||
char *room_part;
|
||||
|
||||
if (tokens == NULL || tokens[0] == NULL) {
|
||||
return NULL;
|
||||
} else {
|
||||
room_part = strdup(tokens[0]);
|
||||
|
||||
g_strfreev(tokens);
|
||||
|
||||
return room_part;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Get the nickname part of the full JID, e.g.
|
||||
* Full JID = "test@conference.server/person"
|
||||
* returns "person"
|
||||
*/
|
||||
char *
|
||||
get_nick_from_full_jid(const char * const full_room_jid)
|
||||
{
|
||||
char **tokens = g_strsplit(full_room_jid, "/", 0);
|
||||
char *nick_part;
|
||||
|
||||
if (tokens == NULL || tokens[1] == NULL) {
|
||||
return NULL;
|
||||
} else {
|
||||
nick_part = strdup(tokens[1]);
|
||||
|
||||
g_strfreev(tokens);
|
||||
|
||||
return nick_part;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user