1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/jabber.c

356 lines
10 KiB
C
Raw Normal View History

2012-02-20 20:07:38 +00:00
/*
* jabber.c
*
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
2012-02-05 23:29:09 +00:00
#include <string.h>
2012-02-26 03:15:42 +00:00
#include <strophe.h>
2012-02-05 23:29:09 +00:00
2012-02-07 00:08:59 +00:00
#include "jabber.h"
2012-02-05 23:29:09 +00:00
#include "log.h"
2012-03-08 00:46:24 +00:00
#include "contact_list.h"
2012-05-24 00:11:43 +00:00
#include "ui.h"
#include "util.h"
2012-05-10 21:18:08 +00:00
#include "preferences.h"
2012-02-05 23:29:09 +00:00
2012-02-27 21:16:54 +00:00
#define PING_INTERVAL 120000 // 2 minutes
2012-02-07 00:08:59 +00:00
// log reference
2012-02-05 23:29:09 +00:00
extern FILE *logp;
static struct _jabber_conn_t {
xmpp_log_t *log;
xmpp_ctx_t *ctx;
xmpp_conn_t *conn;
jabber_status_t conn_status;
int tls_disabled;
} jabber_conn;
2012-02-17 00:42:41 +00:00
2012-02-12 22:10:30 +00:00
void xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
const char * const area, const char * const msg);
static const xmpp_log_t file_log = { &xmpp_file_logger, XMPP_LEVEL_DEBUG };
xmpp_log_t *xmpp_get_file_logger()
{
return (xmpp_log_t*) &file_log;
}
void xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
const char * const area, const char * const msg)
{
log_msg(area, msg);
}
2012-02-07 00:08:59 +00:00
// private XMPP handlers
2012-02-10 23:58:57 +00:00
static void _jabber_conn_handler(xmpp_conn_t * const conn,
const xmpp_conn_event_t status, const int error,
xmpp_stream_error_t * const stream_error, void * const userdata);
2012-02-07 00:08:59 +00:00
2012-02-10 23:58:57 +00:00
static int _jabber_message_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata);
2012-02-07 00:08:59 +00:00
2012-03-09 01:06:55 +00:00
static int _roster_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata);
2012-02-09 02:47:25 +00:00
static int _jabber_presence_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata);
2012-02-27 21:16:54 +00:00
static int _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata);
2012-03-09 01:06:55 +00:00
void jabber_init(const int disable_tls)
{
jabber_conn.conn_status = JABBER_STARTED;
jabber_conn.tls_disabled = disable_tls;
}
jabber_status_t jabber_connection_status(void)
2012-02-17 00:42:41 +00:00
{
return (jabber_conn.conn_status);
2012-02-17 00:42:41 +00:00
}
2012-03-09 01:06:55 +00:00
jabber_status_t jabber_connect(const char * const user, const char * const passwd)
2012-02-07 00:08:59 +00:00
{
xmpp_initialize();
jabber_conn.log = xmpp_get_file_logger();
jabber_conn.ctx = xmpp_ctx_new(NULL, jabber_conn.log);
jabber_conn.conn = xmpp_conn_new(jabber_conn.ctx);
2012-02-07 00:08:59 +00:00
xmpp_conn_set_jid(jabber_conn.conn, user);
xmpp_conn_set_pass(jabber_conn.conn, passwd);
2012-02-07 00:08:59 +00:00
if (jabber_conn.tls_disabled)
xmpp_conn_disable_tls(jabber_conn.conn);
2012-02-26 03:15:42 +00:00
int connect_status = xmpp_connect_client(jabber_conn.conn, NULL, 0,
_jabber_conn_handler, jabber_conn.ctx);
if (connect_status == 0)
jabber_conn.conn_status = JABBER_CONNECTING;
else
jabber_conn.conn_status = JABBER_DISCONNECTED;
2012-02-17 00:42:41 +00:00
return jabber_conn.conn_status;
2012-02-07 00:08:59 +00:00
}
const char * jabber_get_jid(void)
{
return xmpp_conn_get_jid(jabber_conn.conn);
}
2012-02-07 00:08:59 +00:00
void jabber_disconnect(void)
{
if (jabber_conn.conn_status == JABBER_CONNECTED) {
xmpp_conn_release(jabber_conn.conn);
xmpp_ctx_free(jabber_conn.ctx);
2012-02-20 01:42:29 +00:00
xmpp_shutdown();
jabber_conn.conn_status = JABBER_DISCONNECTED;
2012-02-20 01:42:29 +00:00
}
2012-02-07 00:08:59 +00:00
}
void jabber_process_events(void)
{
if (jabber_conn.conn_status == JABBER_CONNECTED
|| jabber_conn.conn_status == JABBER_CONNECTING)
xmpp_run_once(jabber_conn.ctx, 10);
2012-02-07 00:08:59 +00:00
}
2012-03-09 01:06:55 +00:00
void jabber_send(const char * const msg, const char * const recipient)
2012-02-07 00:08:59 +00:00
{
char *coded_msg = str_replace(msg, "&", "&amp;");
2012-02-07 00:08:59 +00:00
xmpp_stanza_t *reply, *body, *text;
reply = xmpp_stanza_new(jabber_conn.ctx);
2012-02-07 00:08:59 +00:00
xmpp_stanza_set_name(reply, "message");
xmpp_stanza_set_type(reply, "chat");
2012-02-08 22:46:35 +00:00
xmpp_stanza_set_attribute(reply, "to", recipient);
2012-02-07 00:08:59 +00:00
body = xmpp_stanza_new(jabber_conn.ctx);
2012-02-07 00:08:59 +00:00
xmpp_stanza_set_name(body, "body");
text = xmpp_stanza_new(jabber_conn.ctx);
xmpp_stanza_set_text(text, coded_msg);
2012-02-07 00:08:59 +00:00
xmpp_stanza_add_child(body, text);
xmpp_stanza_add_child(reply, body);
xmpp_send(jabber_conn.conn, reply);
2012-02-07 00:08:59 +00:00
xmpp_stanza_release(reply);
}
2012-02-05 23:29:09 +00:00
2012-02-09 02:47:25 +00:00
void jabber_roster_request(void)
{
xmpp_stanza_t *iq, *query;
iq = xmpp_stanza_new(jabber_conn.ctx);
2012-02-09 02:47:25 +00:00
xmpp_stanza_set_name(iq, "iq");
xmpp_stanza_set_type(iq, "get");
xmpp_stanza_set_id(iq, "roster");
query = xmpp_stanza_new(jabber_conn.ctx);
2012-02-09 02:47:25 +00:00
xmpp_stanza_set_name(query, "query");
xmpp_stanza_set_ns(query, XMPP_NS_ROSTER);
xmpp_stanza_add_child(iq, query);
xmpp_stanza_release(query);
xmpp_send(jabber_conn.conn, iq);
2012-02-09 02:47:25 +00:00
xmpp_stanza_release(iq);
}
2012-02-10 23:58:57 +00:00
static int _jabber_message_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata)
2012-02-05 23:29:09 +00:00
{
2012-02-19 20:04:42 +00:00
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, "body");
if(body == NULL)
2012-02-05 23:29:09 +00:00
return 1;
2012-02-19 20:04:42 +00:00
char *type = xmpp_stanza_get_attribute(stanza, "type");
if(strcmp(type, "error") == 0)
return 1;
2012-02-05 23:29:09 +00:00
2012-02-19 20:04:42 +00:00
char *message = xmpp_stanza_get_text(body);
2012-02-05 23:29:09 +00:00
char *from = xmpp_stanza_get_attribute(stanza, "from");
2012-02-12 22:09:07 +00:00
win_show_incomming_msg(from, message);
win_page_off();
2012-02-05 23:29:09 +00:00
return 1;
}
2012-02-10 23:58:57 +00:00
static void _jabber_conn_handler(xmpp_conn_t * const conn,
const xmpp_conn_event_t status, const int error,
xmpp_stream_error_t * const stream_error, void * const userdata)
2012-02-05 23:29:09 +00:00
{
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
if (status == XMPP_CONN_CONNECT) {
2012-02-19 19:42:48 +00:00
const char *jid = xmpp_conn_get_jid(conn);
const char *msg = " logged in successfully.";
char line[strlen(jid) + 1 + strlen(msg) + 1];
2012-02-20 01:42:29 +00:00
sprintf(line, "%s %s", jid, msg);
2012-02-17 00:42:41 +00:00
title_bar_connected();
2012-03-01 00:43:44 +00:00
cons_show(line);
win_page_off();
2012-02-20 01:42:29 +00:00
status_bar_print_message(jid);
status_bar_refresh();
2012-02-05 23:29:09 +00:00
xmpp_stanza_t* pres;
2012-02-07 00:08:59 +00:00
xmpp_handler_add(conn, _jabber_message_handler, NULL, "message", NULL, ctx);
xmpp_handler_add(conn, _jabber_presence_handler, NULL, "presence", NULL, ctx);
2012-02-09 02:47:25 +00:00
xmpp_id_handler_add(conn, _roster_handler, "roster", ctx);
2012-02-27 21:16:54 +00:00
xmpp_timed_handler_add(conn, _ping_timed_handler, PING_INTERVAL, ctx);
2012-02-05 23:29:09 +00:00
pres = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(pres, "presence");
xmpp_send(conn, pres);
xmpp_stanza_release(pres);
2012-05-10 21:18:08 +00:00
prefs_add_login(jid);
jabber_conn.conn_status = JABBER_CONNECTED;
2012-02-05 23:29:09 +00:00
}
else {
if (jabber_conn.conn_status == JABBER_CONNECTED) {
cons_bad_show("Lost connection.");
win_disconnected();
} else {
cons_bad_show("Login failed.");
}
win_page_off();
2012-02-07 00:08:59 +00:00
log_msg(CONN, "disconnected");
2012-02-05 23:29:09 +00:00
xmpp_stop(ctx);
jabber_conn.conn_status = JABBER_DISCONNECTED;
2012-02-05 23:29:09 +00:00
}
}
2012-02-09 02:47:25 +00:00
2012-03-09 01:06:55 +00:00
static int _roster_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata)
2012-02-09 02:47:25 +00:00
{
xmpp_stanza_t *query, *item;
char *type, *name, *jid;
2012-02-09 02:47:25 +00:00
type = xmpp_stanza_get_type(stanza);
if (strcmp(type, "error") == 0)
log_msg(CONN, "ERROR: query failed");
else {
query = xmpp_stanza_get_child_by_name(stanza, "query");
2012-02-28 01:42:47 +00:00
cons_show("Roster:");
2012-02-19 19:56:03 +00:00
item = xmpp_stanza_get_children(query);
while (item != NULL) {
name = xmpp_stanza_get_attribute(item, "name");
jid = xmpp_stanza_get_attribute(item, "jid");
2012-02-19 19:56:03 +00:00
if (name != NULL) {
2012-03-08 23:03:26 +00:00
char line[strlen(name) + 2 + strlen(jid) + 1 + 1];
sprintf(line, "%s (%s)", name, jid);
2012-02-12 22:23:51 +00:00
cons_show(line);
2012-02-09 02:47:25 +00:00
} else {
2012-03-08 23:03:26 +00:00
char line[strlen(jid) + 1];
sprintf(line, "%s", jid);
2012-02-12 22:23:51 +00:00
cons_show(line);
2012-02-09 02:47:25 +00:00
}
2012-02-19 19:56:03 +00:00
item = xmpp_stanza_get_next(item);
win_page_off();
2012-02-09 02:47:25 +00:00
}
}
return 1;
}
2012-02-27 21:16:54 +00:00
static int _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata)
{
2012-02-27 23:43:46 +00:00
if (jabber_conn.conn_status == JABBER_CONNECTED) {
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
xmpp_stanza_t *iq, *ping;
2012-02-27 21:16:54 +00:00
2012-02-27 23:43:46 +00:00
iq = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(iq, "iq");
xmpp_stanza_set_type(iq, "get");
xmpp_stanza_set_id(iq, "c2s1");
2012-02-27 21:16:54 +00:00
2012-02-27 23:43:46 +00:00
ping = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(ping, "ping");
2012-02-27 21:16:54 +00:00
2012-02-27 23:43:46 +00:00
// FIXME add ping namespace to libstrophe
xmpp_stanza_set_ns(ping, "urn:xmpp:ping");
2012-02-27 21:16:54 +00:00
2012-02-27 23:43:46 +00:00
xmpp_stanza_add_child(iq, ping);
xmpp_stanza_release(ping);
xmpp_send(conn, iq);
xmpp_stanza_release(iq);
}
2012-02-27 21:16:54 +00:00
return 1;
}
static int _jabber_presence_handler(xmpp_conn_t * const conn,
xmpp_stanza_t * const stanza, void * const userdata)
{
const char *jid = xmpp_conn_get_jid(jabber_conn.conn);
char jid_cpy[strlen(jid) + 1];
strcpy(jid_cpy, jid);
char *short_jid = strtok(jid_cpy, "/");
char *from = xmpp_stanza_get_attribute(stanza, "from");
char *short_from = strtok(from, "/");
char *type = xmpp_stanza_get_attribute(stanza, "type");
2012-02-27 23:33:29 +00:00
char *show_str, *status_str;
2012-02-27 23:33:29 +00:00
xmpp_stanza_t *show = xmpp_stanza_get_child_by_name(stanza, "show");
if (show != NULL)
show_str = xmpp_stanza_get_text(show);
else
show_str = NULL;
xmpp_stanza_t *status = xmpp_stanza_get_child_by_name(stanza, "status");
if (status != NULL)
status_str = xmpp_stanza_get_text(status);
else
status_str = NULL;
if (strcmp(short_jid, short_from) !=0) {
if (type == NULL) {// online
gboolean result = contact_list_add(short_from, show_str, status_str);
if (result) {
win_contact_online(short_from, show_str, status_str);
}
} else {// offline
gboolean result = contact_list_remove(short_from);
if (result) {
win_contact_offline(short_from, show_str, status_str);
}
}
win_page_off();
}
return 1;
}