mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
parent
0b2f810431
commit
73c146c65a
@ -50,6 +50,8 @@ static int _bookmark_handle_result(xmpp_conn_t * const conn,
|
|||||||
static int _bookmark_handle_delete(xmpp_conn_t * const conn,
|
static int _bookmark_handle_delete(xmpp_conn_t * const conn,
|
||||||
void * const userdata);
|
void * const userdata);
|
||||||
static void _bookmark_item_destroy(gpointer item);
|
static void _bookmark_item_destroy(gpointer item);
|
||||||
|
static int _match_bookmark_by_jid(gconstpointer a, gconstpointer b);
|
||||||
|
static void _send_bookmarks(void);
|
||||||
|
|
||||||
void
|
void
|
||||||
bookmark_request(void)
|
bookmark_request(void)
|
||||||
@ -80,16 +82,6 @@ bookmark_request(void)
|
|||||||
xmpp_stanza_release(iq);
|
xmpp_stanza_release(iq);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
|
||||||
_match_bookmark_by_jid(gconstpointer a, gconstpointer b)
|
|
||||||
{
|
|
||||||
Bookmark *bookmark_a = (Bookmark *) a;
|
|
||||||
Bookmark *bookmark_b = (Bookmark *) b;
|
|
||||||
|
|
||||||
return strcmp(bookmark_a->jid, bookmark_b->jid);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
_bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
_bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
||||||
{
|
{
|
||||||
@ -98,9 +90,6 @@ _bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
|||||||
added = FALSE;
|
added = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
xmpp_conn_t *conn = connection_get_conn();
|
|
||||||
xmpp_ctx_t *ctx = connection_get_ctx();
|
|
||||||
|
|
||||||
/* this may be command for modifying */
|
/* this may be command for modifying */
|
||||||
Bookmark *item = malloc(sizeof(*item));
|
Bookmark *item = malloc(sizeof(*item));
|
||||||
item->jid = strdup(jid);
|
item->jid = strdup(jid);
|
||||||
@ -122,62 +111,7 @@ _bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
|||||||
autocomplete_remove(bookmark_ac, jid);
|
autocomplete_remove(bookmark_ac, jid);
|
||||||
autocomplete_add(bookmark_ac, jid);
|
autocomplete_add(bookmark_ac, jid);
|
||||||
|
|
||||||
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
_send_bookmarks();
|
||||||
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
|
||||||
char *id = generate_unique_id("bookmark_add");
|
|
||||||
xmpp_stanza_set_id(iq, id);
|
|
||||||
xmpp_stanza_set_type(iq, STANZA_TYPE_SET);
|
|
||||||
|
|
||||||
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
||||||
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
||||||
xmpp_stanza_set_ns(query, "jabber:iq:private");
|
|
||||||
|
|
||||||
xmpp_stanza_t *storage = xmpp_stanza_new(ctx);
|
|
||||||
xmpp_stanza_set_name(storage, STANZA_NAME_STORAGE);
|
|
||||||
xmpp_stanza_set_ns(storage, "storage:bookmarks");
|
|
||||||
|
|
||||||
GList *curr = bookmark_list;
|
|
||||||
while (curr != NULL) {
|
|
||||||
Bookmark *bookmark = curr->data;
|
|
||||||
xmpp_stanza_t *conference = xmpp_stanza_new(ctx);
|
|
||||||
xmpp_stanza_set_name(conference, STANZA_NAME_CONFERENCE);
|
|
||||||
xmpp_stanza_set_attribute(conference, STANZA_ATTR_JID, bookmark->jid);
|
|
||||||
|
|
||||||
Jid *jidp = jid_create(bookmark->jid);
|
|
||||||
xmpp_stanza_set_attribute(conference, STANZA_ATTR_NAME, jidp->localpart);
|
|
||||||
jid_destroy(jidp);
|
|
||||||
|
|
||||||
if (bookmark->autojoin) {
|
|
||||||
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "true");
|
|
||||||
} else {
|
|
||||||
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "false");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bookmark->nick != NULL) {
|
|
||||||
xmpp_stanza_t *nick_st = xmpp_stanza_new(ctx);
|
|
||||||
xmpp_stanza_set_name(nick_st, STANZA_NAME_NICK);
|
|
||||||
xmpp_stanza_t *nick_text = xmpp_stanza_new(ctx);
|
|
||||||
xmpp_stanza_set_text(nick_text, bookmark->nick);
|
|
||||||
xmpp_stanza_add_child(nick_st, nick_text);
|
|
||||||
xmpp_stanza_add_child(conference, nick_st);
|
|
||||||
|
|
||||||
xmpp_stanza_release(nick_text);
|
|
||||||
xmpp_stanza_release(nick_st);
|
|
||||||
}
|
|
||||||
|
|
||||||
xmpp_stanza_add_child(storage, conference);
|
|
||||||
xmpp_stanza_release(conference);
|
|
||||||
|
|
||||||
curr = curr->next;
|
|
||||||
}
|
|
||||||
|
|
||||||
xmpp_stanza_add_child(query, storage);
|
|
||||||
xmpp_stanza_add_child(iq, query);
|
|
||||||
xmpp_stanza_release(storage);
|
|
||||||
xmpp_stanza_release(query);
|
|
||||||
|
|
||||||
xmpp_send(conn, iq);
|
|
||||||
xmpp_stanza_release(iq);
|
|
||||||
|
|
||||||
return added;
|
return added;
|
||||||
}
|
}
|
||||||
@ -185,18 +119,35 @@ _bookmark_add(const char *jid, const char *nick, gboolean autojoin)
|
|||||||
static gboolean
|
static gboolean
|
||||||
_bookmark_remove(const char *jid, gboolean autojoin)
|
_bookmark_remove(const char *jid, gboolean autojoin)
|
||||||
{
|
{
|
||||||
gboolean removed = FALSE;
|
Bookmark *item = malloc(sizeof(*item));
|
||||||
if (autocomplete_contains(bookmark_ac, jid)) {
|
item->jid = strdup(jid);
|
||||||
removed = TRUE;
|
item->nick = NULL;
|
||||||
}
|
item->autojoin = autojoin;
|
||||||
/* TODO: manage bookmark_list */
|
|
||||||
|
GList *found = g_list_find_custom(bookmark_list, item, _match_bookmark_by_jid);
|
||||||
|
_bookmark_item_destroy(item);
|
||||||
|
gboolean removed = found != NULL;
|
||||||
|
|
||||||
|
// set autojoin FALSE
|
||||||
if (autojoin) {
|
if (autojoin) {
|
||||||
/* TODO: just set autojoin=0 */
|
if (found != NULL) {
|
||||||
|
Bookmark *bookmark = found->data;
|
||||||
|
bookmark->autojoin = FALSE;
|
||||||
|
g_list_free(found);
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove bookmark
|
||||||
} else {
|
} else {
|
||||||
/* TODO: send request */
|
if (found != NULL) {
|
||||||
|
bookmark_list = g_list_remove_link(bookmark_list, found);
|
||||||
|
_bookmark_item_destroy(found->data);
|
||||||
|
g_list_free(found);
|
||||||
|
}
|
||||||
autocomplete_remove(bookmark_ac, jid);
|
autocomplete_remove(bookmark_ac, jid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_send_bookmarks();
|
||||||
|
|
||||||
return removed;
|
return removed;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -359,6 +310,79 @@ _bookmark_item_destroy(gpointer item)
|
|||||||
free(p);
|
free(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
_match_bookmark_by_jid(gconstpointer a, gconstpointer b)
|
||||||
|
{
|
||||||
|
Bookmark *bookmark_a = (Bookmark *) a;
|
||||||
|
Bookmark *bookmark_b = (Bookmark *) b;
|
||||||
|
|
||||||
|
return strcmp(bookmark_a->jid, bookmark_b->jid);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
_send_bookmarks(void)
|
||||||
|
{
|
||||||
|
xmpp_conn_t *conn = connection_get_conn();
|
||||||
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
||||||
|
|
||||||
|
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
|
||||||
|
char *id = generate_unique_id("bookmarks_update");
|
||||||
|
xmpp_stanza_set_id(iq, id);
|
||||||
|
xmpp_stanza_set_type(iq, STANZA_TYPE_SET);
|
||||||
|
|
||||||
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
||||||
|
xmpp_stanza_set_ns(query, "jabber:iq:private");
|
||||||
|
|
||||||
|
xmpp_stanza_t *storage = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_name(storage, STANZA_NAME_STORAGE);
|
||||||
|
xmpp_stanza_set_ns(storage, "storage:bookmarks");
|
||||||
|
|
||||||
|
GList *curr = bookmark_list;
|
||||||
|
while (curr != NULL) {
|
||||||
|
Bookmark *bookmark = curr->data;
|
||||||
|
xmpp_stanza_t *conference = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_name(conference, STANZA_NAME_CONFERENCE);
|
||||||
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_JID, bookmark->jid);
|
||||||
|
|
||||||
|
Jid *jidp = jid_create(bookmark->jid);
|
||||||
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_NAME, jidp->localpart);
|
||||||
|
jid_destroy(jidp);
|
||||||
|
|
||||||
|
if (bookmark->autojoin) {
|
||||||
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "true");
|
||||||
|
} else {
|
||||||
|
xmpp_stanza_set_attribute(conference, STANZA_ATTR_AUTOJOIN, "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bookmark->nick != NULL) {
|
||||||
|
xmpp_stanza_t *nick_st = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_name(nick_st, STANZA_NAME_NICK);
|
||||||
|
xmpp_stanza_t *nick_text = xmpp_stanza_new(ctx);
|
||||||
|
xmpp_stanza_set_text(nick_text, bookmark->nick);
|
||||||
|
xmpp_stanza_add_child(nick_st, nick_text);
|
||||||
|
xmpp_stanza_add_child(conference, nick_st);
|
||||||
|
|
||||||
|
xmpp_stanza_release(nick_text);
|
||||||
|
xmpp_stanza_release(nick_st);
|
||||||
|
}
|
||||||
|
|
||||||
|
xmpp_stanza_add_child(storage, conference);
|
||||||
|
xmpp_stanza_release(conference);
|
||||||
|
|
||||||
|
curr = curr->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
xmpp_stanza_add_child(query, storage);
|
||||||
|
xmpp_stanza_add_child(iq, query);
|
||||||
|
xmpp_stanza_release(storage);
|
||||||
|
xmpp_stanza_release(query);
|
||||||
|
|
||||||
|
xmpp_send(conn, iq);
|
||||||
|
xmpp_stanza_release(iq);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
bookmark_init_module(void)
|
bookmark_init_module(void)
|
||||||
{
|
{
|
||||||
@ -367,4 +391,4 @@ bookmark_init_module(void)
|
|||||||
bookmark_get_list = _bookmark_get_list;
|
bookmark_get_list = _bookmark_get_list;
|
||||||
bookmark_find = _bookmark_find;
|
bookmark_find = _bookmark_find;
|
||||||
bookmark_autocomplete_reset = _bookmark_autocomplete_reset;
|
bookmark_autocomplete_reset = _bookmark_autocomplete_reset;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user