forked from necrosis/slack-libpurple
-
Notifications
You must be signed in to change notification settings - Fork 39
/
slack-message.c
662 lines (580 loc) · 20.6 KB
/
slack-message.c
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
#include <debug.h>
#include <version.h>
#include <sys/time.h>
#include "slack-json.h"
#include "slack-rtm.h"
#include "slack-api.h"
#include "slack-user.h"
#include "slack-channel.h"
#include "slack-conversation.h"
#include "slack-message.h"
#include "slack-thread.h"
gchar *slack_html_to_message(SlackAccount *sa, const char *s, PurpleMessageFlags flags) {
if (flags & PURPLE_MESSAGE_RAW)
return g_strdup(s);
GString *msg = g_string_sized_new(strlen(s));
while (*s) {
const char *ent;
int len;
if ((*s == '@' || *s == '#') && !(flags & PURPLE_MESSAGE_NO_LINKIFY)) {
const char *e = s+1;
/* try to find the end of this command, but not very well -- not sure what characters are valid and eventually will need to deal with spaces */
while (g_ascii_isalnum(*e) || *e == '-' || *e == '_' || (*e == '.' && g_ascii_isalnum(e[1]))) e++;
if (*s == '@') {
#define COMMAND(CMD, CMDL) \
if (e-(s+1) == CMDL && !strncmp(s+1, CMD, CMDL)) { \
g_string_append_len(msg, "<!" CMD ">", CMDL+3); \
s = e; \
continue; \
}
COMMAND("here", 4)
COMMAND("channel", 7)
COMMAND("everyone", 8)
}
#undef COMMAND
char *t = g_strndup(s+1, e-(s+1));
SlackObject *obj = g_hash_table_lookup(*s == '@' ? sa->user_names : sa->channel_names, t);
g_free(t);
if (obj) {
g_string_append_c(msg, '<');
g_string_append_c(msg, *s);
g_string_append(msg, obj->id);
g_string_append_c(msg, '|');
g_string_append_len(msg, s+1, e-(s+1));
g_string_append_c(msg, '>');
s = e;
continue;
}
}
if ((ent = purple_markup_unescape_entity(s, &len))) {
if (!strcmp(ent, "&"))
g_string_append(msg, "&");
else if (!strcmp(ent, "<"))
g_string_append(msg, "<");
else if (!strcmp(ent, ">"))
g_string_append(msg, ">");
else
g_string_append(msg, ent);
s += len;
continue;
}
if (!g_ascii_strncasecmp(s, "<br>", 4)) {
g_string_append_c(msg, '\n');
s += 4;
continue;
}
/* what about other tags? urls (auto-detected server-side)? dates? */
g_string_append_c(msg, *s++);
}
return g_string_free(msg, FALSE);
}
void slack_message_to_html(GString *html, SlackAccount *sa, gchar *s, PurpleMessageFlags *flags, gchar *prepend_newline_str) {
if (!s)
return;
if (flags)
*flags |= PURPLE_MESSAGE_NO_LINKIFY;
size_t l = strlen(s);
char *end = &s[l];
while (s < end) {
char c = *s++;
if (c == '\n') {
g_string_append(html, "<BR>");
// This is here for attachments. If this message is part of an attachment,
// we must add the preprend string after every newline.
if (prepend_newline_str) {
g_string_append(html, prepend_newline_str);
}
continue;
}
if (c != '<') {
g_string_append_c(html, c);
continue;
}
/* found a <tag> */
char *r = memchr(s, '>', end-s);
if (!r)
/* should really be error */
r = end;
else
*r = 0;
char *b = memchr(s, '|', r-s);
if (b) {
*b = 0;
b++;
}
switch (*s) {
case '#':
s++;
g_string_append_c(html, '#');
if (!b) {
SlackChannel *chan = (SlackChannel*)slack_object_hash_table_lookup(sa->channels, s);
if (chan)
b = chan->object.name;
}
g_string_append(html, b ?: s);
break;
case '@':
s++;
g_string_append_c(html, '@');
SlackUser *user = NULL;
if (slack_object_id_is(sa->self->object.id, s)) {
user = sa->self;
if (flags)
*flags |= PURPLE_MESSAGE_NICK;
}
if (!b) {
if (!user)
user = (SlackUser*)slack_object_hash_table_lookup(sa->users, s);
if (user)
b = user->object.name;
}
g_string_append(html, b ?: s);
break;
case '!':
s++;
if (!strcmp(s, "channel") || !strcmp(s, "group") || !strcmp(s, "here") || !strcmp(s, "everyone")) {
if (flags)
*flags |= PURPLE_MESSAGE_NICK;
g_string_append_c(html, '@');
g_string_append(html, b ?: s);
} else {
g_string_append(html, "<");
g_string_append(html, b ?: s);
g_string_append(html, ">");
}
break;
default:
/* URL */
g_string_append(html, "<A HREF=\"");
g_string_append(html, s); /* XXX embedded quotes? */
g_string_append(html, "\">");
g_string_append(html, b ?: s);
g_string_append(html, "</A>");
}
s = r+1;
}
if (strstr(html->str, "slack.com/call") != NULL) {
gchar *find = g_strconcat(sa->host, "/call", NULL);
gchar *replace = g_strconcat( "app.slack.com/free-willy/", sa->team.id, NULL);
gchar *newHtml = purple_strreplace(html->str, find, replace);
g_string_assign(html, newHtml);
g_free(find);
g_free(replace);
g_free(newHtml);
}
}
/*
* Changes a "slack color" (i.e. "good", "warning", "danger") to the correct
* RGB color. From https://api.slack.com/docs/message-attachments
*/
static const gchar *get_color(const char *c) {
if (c == NULL) {
return (gchar * ) "#717274";
} else if (!strcmp(c, "good")) {
return (gchar * ) "#2fa44f";
} else if (!strcmp(c, "warning")) {
return (gchar * ) "#de9e31";
} else if (!strcmp(c, "danger")) {
return (gchar * ) "#d50200";
} else {
return (gchar * ) c;
}
}
/*
* make a link if url is not NULL. Otherwise, just give the text back.
*/
static void link_html(GString *html, char *url, char *text) {
if (!text) {
return;
} else if (url) {
g_string_append_printf(
html,
"<a href=\"%s\">%s</a>",
url,
text
);
} else {
g_string_append(html, text);
}
}
/*
* Converts a single attachment to HTML. The shape of an attachment is
* documented at https://api.slack.com/docs/message-attachments
*/
static void slack_attachment_to_html(GString *html, SlackAccount *sa, json_value *attachment) {
char *from_url = json_get_prop_strptr(attachment, "from_url");
if (from_url && !purple_account_get_bool(sa->account, "expand_urls", TRUE))
return;
char *service_name = json_get_prop_strptr(attachment, "service_name");
char *service_link = json_get_prop_strptr(attachment, "service_link");
char *author_name = json_get_prop_strptr(attachment, "author_name");
char *author_subname = json_get_prop_strptr(attachment, "author_subname");
char *author_link = json_get_prop_strptr(attachment, "author_link");
char *text = json_get_prop_strptr(attachment, "text");
//char *fallback = json_get_prop_strptr(attachment, "fallback");
char *pretext = json_get_prop_strptr(attachment, "pretext");
char *title = json_get_prop_strptr(attachment, "title");
char *title_link = json_get_prop_strptr(attachment, "title_link");
char *footer = json_get_prop_strptr(attachment, "footer");
GString *attachment_prefix = g_string_new(NULL);
g_string_printf(attachment_prefix,
"<font color=\"%s\">%s</font>",
get_color(json_get_prop_strptr(attachment, "color")),
purple_account_get_string(sa->account, "attachment_prefix", "▎ ")
);
GString *brtag = g_string_new("<br/>");
g_string_append(brtag,
attachment_prefix->str
);
time_t ts = slack_parse_time(json_get_prop(attachment, "ts"));
// Sometimes, the text of the attachment can be *really* large. The official
// Slack client will truncate the text at x-characters and have a "Read More"
// link so the user can read the rest of the text. I wasn't sure what the
// right thing to do for the plugin, so I implemented both the truncated
// version as well as the "just dump all the text naively" version (the
// latter of which is what is uncommented .. I am leaving the truncated
// version commented in in case it is decided that this is the right thing to
// do.
/* GString *truncated_text = g_string_sized_new(0);
g_string_printf(
truncated_text,
"%.480s%s",
(char *) formatted_text,
(strlen(formatted_text) > 480) ? "…" : ""
); */
// pretext
if (pretext) {
g_string_append(html, brtag->str);
slack_message_to_html(html, sa, pretext, NULL, attachment_prefix->str);
}
// service name and author name
if (service_name != NULL || author_name != NULL || author_subname != NULL) {
g_string_append(html, brtag->str);
g_string_append(html, "<b>");
link_html(html, service_link, service_name);
if (service_name && author_name)
g_string_append(html, " - ");
link_html(html, author_link, author_name);
if (author_subname)
g_string_append(html, author_subname);
g_string_append(html, "</b>");
}
// title
if (title) {
g_string_append(html, brtag->str);
g_string_append(html, "<b><i>");
if (title_link) {
link_html(html, title_link, title);
} else {
slack_message_to_html(html, sa, title, NULL, attachment_prefix->str);
}
g_string_append(html, "</i></b>");
}
// main text
if (text) {
g_string_append(html, brtag->str);
g_string_append(html, "<i>");
slack_message_to_html(html, sa, text, NULL, attachment_prefix->str);
g_string_append(html, "</i>");
}
// fields
json_value *fields = json_get_prop_type(attachment, "fields", array);
if (fields) {
for (int i=0; i<fields->u.array.length; i++) {
json_value *field = fields->u.array.values[i];
char *title = json_get_prop_strptr(field, "title");
char *value = json_get_prop_strptr(field, "value");
g_string_append_printf(html, "<br />%s<b>", attachment_prefix->str);
// Run the title through the conversion to html.
slack_message_to_html(html, sa, title, NULL, attachment_prefix->str);
g_string_append(html, "</b>: <i>");
// Run the value through the conversion to html.
slack_message_to_html(html, sa, value, NULL, attachment_prefix->str);
g_string_append(html, "</i>");
}
}
// footer
if (footer) {
g_string_append(html, brtag->str);
g_string_append(html, footer);
}
if (ts) {
g_string_append(html, brtag->str);
g_string_append(html, ctime(&ts));
}
g_string_free(brtag, TRUE);
g_string_free(attachment_prefix, TRUE);
}
static void slack_file_to_html(GString *html, SlackAccount *sa, json_value *file) {
char *title = json_get_prop_strptr(file, "title");
char *url = json_get_prop_strptr(file, "url_private");
if (!url)
url = json_get_prop_strptr(file, "permalink");
g_string_append_printf(html, "<br/>%s<a href=\"%s\">%s</a>",
purple_account_get_string(sa->account, "attachment_prefix", "▎ "),
url ?: "",
title ?: "file");
}
void slack_json_to_html(GString *html, SlackAccount *sa, json_value *message, PurpleMessageFlags *flags) {
const char *subtype = json_get_prop_strptr(message, "subtype");
int i;
if (flags && json_get_prop_boolean(message, "hidden", FALSE))
*flags |= PURPLE_MESSAGE_INVISIBLE;
if (!g_strcmp0(subtype, "me_message"))
g_string_append(html, "/me ");
else if (flags && subtype && strcmp(subtype, "thread_broadcast") != 0)
*flags |= PURPLE_MESSAGE_SYSTEM;
const char *ts = json_get_prop_strptr(message, "ts");
const char *thread = json_get_prop_strptr(message, "thread_ts");
gboolean is_thread = thread && slack_ts_cmp(ts, thread) != 0;
if (is_thread || (thread && purple_account_get_bool(sa->account, "display_parent_indicator", TRUE))) {
if (is_thread)
g_string_append(html, purple_account_get_string(sa->account, "thread_indicator", "⤷ "));
else
g_string_append(html, purple_account_get_string(sa->account, "parent_indicator", "◈ "));
slack_append_formatted_thread_timestamp(sa, html, thread, FALSE);
g_string_append(html, ": ");
// If this message is part of a thread, and isn't the parent
// message, color it differently to distinguish it from the
// channel messages.
if (is_thread)
g_string_append(html, "<font color=\"#606060\">");
}
slack_message_to_html(html, sa, json_get_prop_strptr(message, "text"), flags, NULL);
if (is_thread)
g_string_append(html, "</font>");
json_value *files = json_get_prop_type(message, "files", array);
if (files)
for (i=0; i < files->u.array.length; i++)
slack_file_to_html(html, sa, files->u.array.values[i]);
// If there are attachements, show them.
json_value *attachments = json_get_prop_type(message, "attachments", array);
if (attachments)
for (i=0; i < attachments->u.array.length; i++)
slack_attachment_to_html(html, sa, attachments->u.array.values[i]);
}
void slack_write_message(SlackAccount *sa, SlackObject *obj, const char *html, PurpleMessageFlags flags) {
g_return_if_fail(obj);
SlackUser *user = sa->self;
flags |= PURPLE_MESSAGE_SEND;
time_t mt = time(NULL);
if (SLACK_IS_CHANNEL(obj)) {
SlackChannel *chan = (SlackChannel*)obj;
/* Channel */
g_return_if_fail(chan->cid);
serv_got_chat_in(sa->gc, chan->cid, user->object.name, flags, html, mt);
} else if (SLACK_IS_USER(obj)) {
SlackUser *im = (SlackUser*)obj;
serv_got_im(sa->gc, im->object.name, html, flags, mt);
}
}
static gboolean check_ignore_old_message(SlackAccount *sa, time_t age) {
int hours = purple_account_get_int(sa->account, "ignore_old_message_hours", 0);
if (!hours)
return FALSE;
time_t cutoff = time(NULL) - hours * 60 * 60;
if (age >= cutoff)
return FALSE;
purple_debug_info("slack", "Ignoring message older than %d hours (message=%lld, cutoff=%lld)\n",
hours, (unsigned long long)age, (unsigned long long)cutoff);
return TRUE;
}
void slack_handle_message(SlackAccount *sa, SlackObject *obj, json_value *json, PurpleMessageFlags flags, gboolean force_threads) {
if (!obj) {
purple_debug_warning("slack", "Message to unknown channel %s\n", json_get_prop_strptr(json, "channel"));
return;
}
json_value *message = json;
json_value *ts = json_get_prop(message, "ts");
const char *tss = json_get_strptr(ts);
const char *subtype = json_get_prop_strptr(message, "subtype");
const char *thread = json_get_prop_strptr(message, "thread_ts");
if (thread && slack_ts_cmp(tss, thread) && g_strcmp0(subtype, "thread_broadcast") && !force_threads &&
!purple_account_get_bool(sa->account, "display_threads", TRUE))
return;
if (!g_strcmp0(subtype, "message_replied")) {
message = json_get_prop_type(json, "message", object);
if (!message || !purple_account_get_bool(sa->account, "display_parent_indicator", TRUE))
return;
int reply_count = json_get_prop_val(message, "reply_count", integer, 0);
ts = json_get_prop(message, "ts");
tss = json_get_strptr(ts);
thread = json_get_prop_strptr(message, "thread_ts");
if (reply_count != 1 || !thread)
return;
}
GString *html = g_string_new(NULL);
time_t mt = slack_parse_time(ts);
if (!g_strcmp0(subtype, "message_changed")) {
if (check_ignore_old_message(sa, mt)) {
g_string_free(html, TRUE);
return;
}
message = json_get_prop(json, "message");
json_value *old_message = json_get_prop(json, "previous_message");
/* this may consist only of added attachments, no changed text */
gboolean changed = g_strcmp0(json_get_prop_strptr(message, "text"), json_get_prop_strptr(old_message, "text"));
// No change means that this is a link update, which we want to suppress.
if (changed || purple_account_get_bool(sa->account, "expand_urls", TRUE)) {
g_string_append(html, "<font color=\"#717274\"><i>[edit] ");
if (old_message && changed) {
g_string_append(html, "(Old message: ");
slack_json_to_html(html, sa, old_message, NULL);
g_string_append(html, ")<br>");
}
g_string_append(html, "</i></font>");
slack_json_to_html(html, sa, message, &flags);
}
}
else if (!g_strcmp0(subtype, "message_deleted")) {
if (check_ignore_old_message(sa, slack_parse_time(json_get_prop(message, "deleted_ts")))) {
g_string_free(html, TRUE);
return;
}
message = json_get_prop(json, "previous_message");
g_string_append(html, "(<font color=\"#717274\"><i>Deleted message</i></font>");
if (message) {
g_string_append(html, ": ");
slack_json_to_html(html, sa, message, &flags);
}
g_string_append(html, ")");
}
else
slack_json_to_html(html, sa, message, &flags);
if (!html->len) {
/* if after all of that we still have no message, just dump it */
g_string_free(html, TRUE);
purple_debug_info("slack", "Ignoring unparsed message\n");
return;
}
const char *user_id = json_get_prop_strptr(message, "user");
SlackUser *user = NULL;
if (slack_object_id_is(sa->self->object.id, user_id)) {
user = sa->self;
#if PURPLE_VERSION_CHECK(2,12,0)
flags |= PURPLE_MESSAGE_REMOTE_SEND;
#else
flags |= 0x10000;
#endif
flags |= PURPLE_MESSAGE_SEND;
flags &= ~PURPLE_MESSAGE_RECV;
}
/* for bots providing different display name */
const char *username = json_get_prop_strptr(message, "username");
if (username)
flags &= ~PURPLE_MESSAGE_SYSTEM;
PurpleConversation *conv = NULL;
if (SLACK_IS_CHANNEL(obj)) {
SlackChannel *chan = (SlackChannel*)obj;
/* Channel */
if (!chan->cid) {
if (!purple_account_get_bool(sa->account, "open_chat", FALSE)) {
g_string_free(html, TRUE);
return;
}
slack_chat_open(sa, chan);
}
if (!user)
user = (SlackUser*)slack_object_hash_table_lookup(sa->users, user_id);
PurpleConvChat *chat = slack_channel_get_conversation(sa, chan);
if (chat) {
conv = purple_conv_chat_get_conversation(chat);
if (!subtype);
else if (!strcmp(subtype, "channel_topic") ||
!strcmp(subtype, "group_topic"))
purple_conv_chat_set_topic(chat, user ? user->object.name : user_id, json_get_prop_strptr(json, "topic"));
}
serv_got_chat_in(sa->gc, chan->cid, user ? user->object.name : user_id ?: username ?: "", flags, html->str, mt);
} else if (SLACK_IS_USER(obj)) {
SlackUser *im = (SlackUser*)obj;
/* IM */
conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, im->object.name, sa->account);
if (slack_object_id_is(im->object.id, user_id))
serv_got_im(sa->gc, im->object.name, html->str, flags, mt);
else {
if (!conv)
conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, sa->account, im->object.name);
if (!user)
/* is this necessary? shouldn't be anyone else in here */
user = (SlackUser*)slack_object_hash_table_lookup(sa->users, user_id);
purple_conversation_write(conv, user ? user->object.name : user_id ?: username, html->str, flags, mt);
}
}
g_string_free(html, TRUE);
/* update most recent ts for later marking */
if (slack_ts_cmp(tss, obj->last_mesg) > 0) {
g_free(obj->last_mesg);
obj->last_mesg = g_strdup(tss);
}
}
static void handle_message(SlackAccount *sa, gpointer data, SlackObject *obj) {
json_value *json = data;
slack_handle_message(sa, obj, json, PURPLE_MESSAGE_RECV, FALSE);
json_value_free(json);
}
gboolean slack_message(SlackAccount *sa, json_value *json) {
slack_conversation_retrieve(sa, json_get_prop_strptr(json, "channel"), handle_message, json);
return TRUE;
}
typedef struct {
PurpleConvChat *chat;
gchar *name;
} SlackChatBuddy;
static gboolean slack_unset_typing_cb(SlackChatBuddy *chatbuddy) {
PurpleConvChatBuddy *cb = purple_conv_chat_cb_find(chatbuddy->chat, chatbuddy->name);
if (cb) {
purple_conv_chat_user_set_flags(chatbuddy->chat, chatbuddy->name, cb->flags & ~PURPLE_CBFLAGS_TYPING);
}
g_free(chatbuddy->name);
chatbuddy->name = NULL;
return FALSE;
}
void slack_user_typing(SlackAccount *sa, json_value *json) {
const char *user_id = json_get_prop_strptr(json, "user");
const char *channel_id = json_get_prop_strptr(json, "channel");
SlackUser *user = (SlackUser*)slack_object_hash_table_lookup(sa->users, user_id);
SlackChannel *chan;
if (user && slack_object_id_is(user->im, channel_id)) {
/* IM */
serv_got_typing(sa->gc, user->object.name, 4, PURPLE_TYPING);
} else if (user && (chan = (SlackChannel*)slack_object_hash_table_lookup(sa->channels, channel_id))) {
/* Channel */
PurpleConvChat *chat = slack_channel_get_conversation(sa, chan);
PurpleConvChatBuddy *cb = chat ? purple_conv_chat_cb_find(chat, user->object.name) : NULL;
if (cb) {
purple_conv_chat_user_set_flags(chat, user->object.name, cb->flags | PURPLE_CBFLAGS_TYPING);
guint timeout = GPOINTER_TO_UINT(g_dataset_get_data(user, "typing_timeout"));
SlackChatBuddy *chatbuddy = g_dataset_get_data(user, "chatbuddy");
if (timeout) {
purple_timeout_remove(timeout);
if (chatbuddy) {
g_free(chatbuddy->name);
g_free(chatbuddy);
}
}
chatbuddy = g_new0(SlackChatBuddy, 1);
chatbuddy->chat = chat;
chatbuddy->name = g_strdup(user->object.name);
timeout = purple_timeout_add_seconds(4, (GSourceFunc)slack_unset_typing_cb, chatbuddy);
g_dataset_set_data(user, "typing_timeout", GUINT_TO_POINTER(timeout));
g_dataset_set_data(user, "chatbuddy", chatbuddy);
}
} else {
purple_debug_warning("slack", "Unhandled typing: %s@%s\n", user_id, channel_id);
}
}
unsigned int slack_send_typing(PurpleConnection *gc, const char *who, PurpleTypingState state) {
SlackAccount *sa = gc->proto_data;
if (state != PURPLE_TYPING)
return 0;
SlackUser *user = g_hash_table_lookup(sa->user_names, who);
if (!user || !*user->im)
return 0;
GString *channel = append_json_string(g_string_new(NULL), user->im);
/* if (user->object.thread_ts)
slack_rtm_send(sa, NULL, NULL, "typing", "channel", channel->str, "thread_ts", user->object.thread_ts, NULL);
else */
slack_rtm_send(sa, NULL, NULL, "typing", "channel", channel->str, NULL);
g_string_free(channel, TRUE);
return 3;
}