summaryrefslogtreecommitdiff
path: root/finch/gntconn.c
blob: 82b07e9a103df2498e7e7eeca798ad4944ff31fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
 * finch
 *
 * Finch is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 */

#include <glib/gi18n-lib.h>

#include <purple.h>

#include "gntaccount.h"
#include "gntconn.h"
#include "libfinch.h"

#define INITIAL_RECON_DELAY_MIN 8
#define INITIAL_RECON_DELAY_MAX 60

#define MAX_RECON_DELAY 600

typedef struct {
	int delay;
	guint timeout;
} FinchAutoRecon;

/*
 * Contains accounts that are auto-reconnecting.
 * The key is a pointer to the PurpleAccount and the
 * value is a pointer to a FinchAutoRecon.
 */
static GHashTable *hash = NULL;

static void
free_auto_recon(gpointer data)
{
	FinchAutoRecon *info = data;

	g_clear_handle_id(&info->timeout, g_source_remove);

	g_free(info);
}


static gboolean
do_signon(gpointer data)
{
	PurpleAccount *account = data;
	FinchAutoRecon *info;
	PurpleStatus *status;

	purple_debug_info("autorecon", "do_signon called\n");
	g_return_val_if_fail(account != NULL, FALSE);
	info = g_hash_table_lookup(hash, account);

	if (info)
		info->timeout = 0;

	status = purple_account_get_active_status(account);
	if (purple_status_is_online(status))
	{
		purple_debug_info("autorecon", "calling purple_account_connect\n");
		purple_account_connect(account);
		purple_debug_info("autorecon", "done calling purple_account_connect\n");
	}

	return FALSE;
}

static void
finch_connection_report_disconnect(PurpleConnection *gc,
                                   PurpleConnectionError reason,
                                   G_GNUC_UNUSED const char *text)
{
	FinchAutoRecon *info;
	PurpleAccount *account = purple_connection_get_account(gc);

	if (!purple_connection_error_is_fatal(reason)) {
		info = g_hash_table_lookup(hash, account);

		if (info == NULL) {
			info = g_new0(FinchAutoRecon, 1);
			g_hash_table_insert(hash, account, info);
			info->delay = g_random_int_range(INITIAL_RECON_DELAY_MIN, INITIAL_RECON_DELAY_MAX);
		} else {
			info->delay = MIN(2 * info->delay, MAX_RECON_DELAY);
			g_clear_handle_id(&info->timeout, g_source_remove);
		}
		info->timeout = g_timeout_add_seconds(info->delay, do_signon, account);
	} else {
		purple_account_set_enabled(account, FALSE);
	}
}

static void
account_removed_cb(G_GNUC_UNUSED PurpleAccountManager *manager,
                   PurpleAccount *account, G_GNUC_UNUSED gpointer data)
{
	g_hash_table_remove(hash, account);
}

static PurpleConnectionUiOps ops = {
	.report_disconnect = finch_connection_report_disconnect,
};

PurpleConnectionUiOps *
finch_connections_get_ui_ops(void)
{
	return &ops;
}

void
finch_connections_init(void)
{
	PurpleAccountManager *manager = purple_account_manager_get_default();

	hash = g_hash_table_new_full(
							g_direct_hash, g_direct_equal,
							NULL, free_auto_recon);

	g_signal_connect(manager, "removed", G_CALLBACK(account_removed_cb), NULL);
}

void
finch_connections_uninit(void)
{
	PurpleAccountManager *manager = purple_account_manager_get_default();

	g_signal_handlers_disconnect_by_func(manager,
	                                     G_CALLBACK(account_removed_cb), NULL);

	g_clear_pointer(&hash, g_hash_table_destroy);
}