-
Notifications
You must be signed in to change notification settings - Fork 47
/
matrix-room.c
1511 lines (1286 loc) · 50.4 KB
/
matrix-room.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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Handling of rooms within matrix
*
* 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 "matrix-room.h"
/* stdlib */
#include <inttypes.h>
#include <string.h>
#include <errno.h>
#include <glib/gstdio.h>
/* libpurple */
#include <libpurple/connection.h>
#include <libpurple/debug.h>
#include "libmatrix.h"
#include "matrix-api.h"
#include "matrix-e2e.h"
#include "matrix-event.h"
#include "matrix-json.h"
#include "matrix-roommembers.h"
#include "matrix-statetable.h"
static gchar *_get_room_name(MatrixConnectionData *conn,
PurpleConversation *conv);
static const gchar *_get_my_display_name(PurpleConversation *conv);
static MatrixConnectionData *_get_connection_data_from_conversation(
PurpleConversation *conv)
{
return conv->account->gc->proto_data;
}
/******************************************************************************
*
* conversation data
*/
/*
* identifiers for purple_conversation_get/set_data
*/
/* a MatrixRoomStateEventTable * - see below */
#define PURPLE_CONV_DATA_STATE "state"
/* a GList of MatrixRoomEvent * */
#define PURPLE_CONV_DATA_EVENT_QUEUE "queue"
/* PurpleUtilFetchUrlData * */
#define PURPLE_CONV_DATA_ACTIVE_SEND "active_send"
/* MatrixRoomMemberTable * - see below */
#define PURPLE_CONV_MEMBER_TABLE "member_table"
/* PURPLE_CONV_FLAG_* */
#define PURPLE_CONV_FLAGS "flags"
#define PURPLE_CONV_FLAG_NEEDS_NAME_UPDATE 0x1
/* Arbitrary limit on the size of an image to receive; should make
* configurable. This is based on the worst-case assumption of a
* 640x480 pixels, each with 3 bytes i.e. 900KiB. 640x480 is also the
* server generated thumbnail size.
*/
static const size_t purple_max_media_size=640*480*3;
/**
* Get the member table for a room
*/
static MatrixRoomMemberTable *matrix_room_get_member_table(
PurpleConversation *conv)
{
return purple_conversation_get_data(conv, PURPLE_CONV_MEMBER_TABLE);
}
/**
* Get the state table for a room
*/
static MatrixRoomStateEventTable *matrix_room_get_state_table(
PurpleConversation *conv)
{
return purple_conversation_get_data(conv, PURPLE_CONV_DATA_STATE);
}
static guint _get_flags(PurpleConversation *conv)
{
return GPOINTER_TO_UINT(purple_conversation_get_data(conv,
PURPLE_CONV_FLAGS));
}
static void _set_flags(PurpleConversation *conv, guint flags)
{
purple_conversation_set_data(conv, PURPLE_CONV_FLAGS,
GUINT_TO_POINTER(flags));
}
/******************************************************************************
*
* room state handling
*/
/**
* Update the name of the room in the buddy list and the chat window
*
* @param conv: conversation info
*/
static void _update_room_alias(PurpleConversation *conv)
{
gchar *room_name;
MatrixConnectionData *conn = _get_connection_data_from_conversation(conv);
PurpleChat *chat;
guint flags;
room_name = _get_room_name(conn, conv);
/* update the buddy list entry */
chat = purple_blist_find_chat(conv->account, conv->name);
/* we know there should be a buddy list entry for this room */
g_assert(chat != NULL);
purple_blist_alias_chat(chat, room_name);
/* explicitly update the conversation title. This will tend to happen
* anyway, but possibly not until the conversation tab is next activated.
*/
if (strcmp(room_name, purple_conversation_get_title(conv)))
purple_conversation_set_title(conv, room_name);
g_free(room_name);
flags = _get_flags(conv);
flags &= ~PURPLE_CONV_FLAG_NEEDS_NAME_UPDATE;
_set_flags(conv, flags);
}
static void _schedule_name_update(PurpleConversation *conv)
{
guint flags = _get_flags(conv);
flags |= PURPLE_CONV_FLAG_NEEDS_NAME_UPDATE;
_set_flags(conv, flags);
purple_debug_info("matrixprpl", "scheduled deferred room name update\n");
}
/**
* Called when there is a change to the member list. Tells the MemberTable
* about it.
*/
static void _on_member_change(PurpleConversation *conv,
const gchar *member_user_id, MatrixRoomEvent *new_state)
{
MatrixRoomMemberTable *member_table;
member_table = matrix_room_get_member_table(conv);
matrix_roommembers_update_member(member_table, member_user_id,
new_state->content);
}
/**
* Called when there is a change to the topic.
*/
static void _on_topic_change(PurpleConversation *conv,
MatrixRoomEvent *new_state)
{
PurpleConvChat *chat = PURPLE_CONV_CHAT(conv);
purple_conv_chat_set_topic(chat, new_state->sender,
matrix_json_object_get_string_member(new_state->content,
"topic"));
}
/**
* Called when there is a change list of typing userss.
*/
static void _on_typing(PurpleConversation *conv,
MatrixRoomEvent *old_state, MatrixRoomEvent *new_state)
{
PurpleConvChat *chat = PURPLE_CONV_CHAT(conv);
JsonArray *old_user_ids, *new_user_ids;
PurpleConvChatBuddyFlags cbflags;
guint i, j;
guint old_len, new_len;
MatrixRoomMemberTable *member_table;
member_table = matrix_room_get_member_table(conv);
if (old_state != NULL) {
old_user_ids = matrix_json_object_get_array_member(old_state->content, "user_ids");
old_len = json_array_get_length(old_user_ids);
} else {
old_user_ids = NULL; /* Work around gcc 10.3.1 false uninit warn */
old_len = 0;
}
new_user_ids = matrix_json_object_get_array_member(new_state->content, "user_ids");
new_len = json_array_get_length(new_user_ids);
for (i = 0; i < old_len; i++) {
const gchar *user_id = json_array_get_string_element(old_user_ids, i);
MatrixRoomMember *roommember;
const gchar *displayname;
gboolean new_user_found = FALSE;
for (j = 0; j < new_len; j++) {
const gchar *new_user_id = json_array_get_string_element(new_user_ids, j);
if (g_strcmp0(user_id, new_user_id)) {
// no change, remove it from the new list
json_array_remove_element(new_user_ids, j);
new_len--;
new_user_found = TRUE;
break;
}
}
if (new_user_found == FALSE) {
roommember = matrix_roommembers_lookup_member(member_table, user_id);
if (roommember) {
displayname = matrix_roommember_get_displayname(roommember);
// in old list, not in new, i.e. stopped typing
cbflags = purple_conv_chat_user_get_flags(chat, displayname);
cbflags &= ~PURPLE_CBFLAGS_TYPING;
purple_conv_chat_user_set_flags(chat, displayname, cbflags);
}
}
}
// everything left in new_user_ids is new typing events
for (i = 0; i < new_len; i++) {
const gchar *user_id = json_array_get_string_element(new_user_ids, i);
MatrixRoomMember *roommember;
const gchar *displayname;
roommember = matrix_roommembers_lookup_member(member_table, user_id);
if (roommember) {
displayname = matrix_roommember_get_displayname(roommember);
cbflags = purple_conv_chat_user_get_flags(chat, displayname);
cbflags |= PURPLE_CBFLAGS_TYPING;
purple_conv_chat_user_set_flags(chat, displayname, cbflags);
}
}
}
/**
* Called when there is a state update.
*
* old_state may be NULL to indicate addition of a state
* key.
*/
static void _on_state_update(const gchar *event_type,
const gchar *state_key, MatrixRoomEvent *old_state,
MatrixRoomEvent *new_state, gpointer user_data)
{
PurpleConversation *conv = user_data;
g_assert(new_state != NULL);
if(strcmp(event_type, "m.room.member") == 0) {
_on_member_change(conv, state_key, new_state);
/* we schedule a room name update here regardless of whether we end up
* changing any members, because even changes to invited members can
* affect the room name.
*/
_schedule_name_update(conv);
}
else if(strcmp(event_type, "m.room.alias") == 0 ||
strcmp(event_type, "m.room.canonical_alias") == 0 ||
strcmp(event_type, "m.room.name") == 0) {
_schedule_name_update(conv);
} else if (strcmp(event_type, "m.room.encryption") == 0) {
purple_debug_info("matrixprpl",
"Got m.room.encryption on_state_update\n");
}
else if(strcmp(event_type, "m.typing") == 0) {
_on_typing(conv, old_state, new_state);
}
else if(strcmp(event_type, "m.room.topic") == 0) {
_on_topic_change(conv, new_state);
}
}
void matrix_room_handle_state_event(struct _PurpleConversation *conv,
JsonObject *json_event_obj)
{
MatrixRoomStateEventTable *state_table = matrix_room_get_state_table(conv);
matrix_statetable_update(state_table, json_event_obj,
_on_state_update, conv);
}
static gint _compare_member_user_id(const MatrixRoomMember *m,
const gchar *user_id)
{
return g_strcmp0(matrix_roommember_get_user_id(m), user_id);
}
/**
* figure out the best name for a room based on its members list
*
* @returns a string which should be freed
*/
static gchar *_get_room_name_from_members(MatrixConnectionData *conn,
PurpleConversation *conv)
{
GList *tmp, *members;
const gchar *member1;
gchar *res;
MatrixRoomMemberTable *member_table;
member_table = matrix_room_get_member_table(conv);
members = matrix_roommembers_get_active_members(member_table, TRUE);
/* remove ourselves from the list */
tmp = g_list_find_custom(members, conn->user_id,
(GCompareFunc)_compare_member_user_id);
if(tmp != NULL) {
members = g_list_delete_link(members, tmp);
}
if(members == NULL) {
/* nobody else here! */
return NULL;
}
member1 = matrix_roommember_get_displayname(members->data);
if(members->next == NULL) {
/* one other person */
res = g_strdup(member1);
} else if(members->next->next == NULL) {
/* two other people */
const gchar *member2 = matrix_roommember_get_displayname(
members->next->data);
res = g_strdup_printf(_("%s and %s"), member1, member2);
} else {
int nmembers = g_list_length(members);
res = g_strdup_printf(_("%s and %i others"), member1, nmembers);
}
g_list_free(members);
return res;
}
/**
* figure out the best name for a room
*
* @returns a string which should be freed
*/
static gchar *_get_room_name(MatrixConnectionData *conn,
PurpleConversation *conv)
{
MatrixRoomStateEventTable *state_table = matrix_room_get_state_table(conv);
gchar *res;
/* first try to pick a name based on the official name / alias */
res = matrix_statetable_get_room_alias(state_table);
if (res)
return res;
/* look for room members, and pick a name based on that */
res = _get_room_name_from_members(conn, conv);
if (res)
return res;
/* failing all else, just use the room id */
return g_strdup(conv -> name);
}
/******************************************************************************
*
* event queue handling
*/
static void _send_queued_event(PurpleConversation *conv);
/**
* Get the state table for a room
*/
static GList *_get_event_queue(PurpleConversation *conv)
{
return purple_conversation_get_data(conv, PURPLE_CONV_DATA_EVENT_QUEUE);
}
static void _event_send_complete(MatrixConnectionData *account, gpointer user_data,
JsonNode *json_root,
const char *raw_body, size_t raw_body_len, const char *content_type)
{
PurpleConversation *conv = user_data;
JsonObject *response_object;
const gchar *event_id;
GList *event_queue;
MatrixRoomEvent *event;
response_object = matrix_json_node_get_object(json_root);
event_id = matrix_json_object_get_string_member(response_object,
"event_id");
purple_debug_info("matrixprpl", "Successfully sent event id %s\n",
event_id);
event_queue = _get_event_queue(conv);
event = event_queue -> data;
matrix_event_free(event);
event_queue = g_list_remove(event_queue, event);
purple_conversation_set_data(conv, PURPLE_CONV_DATA_EVENT_QUEUE,
event_queue);
_send_queued_event(conv);
}
/**
* Unable to send event to homeserver
*/
void _event_send_error(MatrixConnectionData *ma, gpointer user_data,
const gchar *error_message)
{
PurpleConversation *conv = user_data;
matrix_api_error(ma, user_data, error_message);
purple_conversation_set_data(conv, PURPLE_CONV_DATA_ACTIVE_SEND, NULL);
/* for now, we leave the message queued. We should consider retrying. */
}
/**
* homeserver gave non-200 on event send.
*/
void _event_send_bad_response(MatrixConnectionData *ma, gpointer user_data,
int http_response_code, JsonNode *json_root)
{
PurpleConversation *conv = user_data;
matrix_api_bad_response(ma, user_data, http_response_code, json_root);
purple_conversation_set_data(conv, PURPLE_CONV_DATA_ACTIVE_SEND, NULL);
/* for now, we leave the message queued. We should consider retrying. */
}
/**************************** Image handling *********************************/
/* Data structure passed from the event hook to the upload completion */
struct SendImageEventData {
PurpleConversation *conv;
MatrixRoomEvent *event;
int imgstore_id;
};
/**
* Called back by matrix_api_upload_file after the image is uploaded.
* We get a 'content_uri' identifying the uploaded file, and that's what
* we put in the event.
*/
static void _image_upload_complete(MatrixConnectionData *ma,
gpointer user_data, JsonNode *json_root,
const char *raw_body, size_t raw_body_len, const char *content_type)
{
MatrixApiRequestData *fetch_data = NULL;
struct SendImageEventData *sied = user_data;
JsonObject *response_object = matrix_json_node_get_object(json_root);
const gchar *content_uri;
PurpleStoredImage *image = purple_imgstore_find_by_id(sied->imgstore_id);
content_uri = matrix_json_object_get_string_member(response_object,
"content_uri");
if (content_uri == NULL) {
matrix_api_error(ma, sied->conv,
"image_upload_complete: no content_uri");
purple_imgstore_unref(image);
g_free(sied);
return;
}
json_object_set_string_member(sied->event->content, "url", content_uri);
fetch_data = matrix_api_send(ma, sied->conv->name, sied->event->event_type,
sied->event->txn_id, sied->event->content, _event_send_complete,
_event_send_error, _event_send_bad_response, sied->conv);
purple_conversation_set_data(sied->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
fetch_data);
purple_imgstore_unref(image);
g_free(sied);
}
static void _image_upload_bad_response(MatrixConnectionData *ma, gpointer user_data,
int http_response_code, JsonNode *json_root)
{
struct SendImageEventData *sied = user_data;
PurpleStoredImage *image = purple_imgstore_find_by_id(sied->imgstore_id);
matrix_api_bad_response(ma, sied->conv, http_response_code, json_root);
purple_imgstore_unref(image);
purple_conversation_set_data(sied->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
NULL);
g_free(sied);
/* More clear up with the message? */
}
void _image_upload_error(MatrixConnectionData *ma, gpointer user_data,
const gchar *error_message)
{
struct SendImageEventData *sied = user_data;
PurpleStoredImage *image = purple_imgstore_find_by_id(sied->imgstore_id);
matrix_api_error(ma, sied->conv, error_message);
purple_imgstore_unref(image);
purple_conversation_set_data(sied->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
NULL);
g_free(sied);
/* More clear up with the message? */
}
/**
* Return a mimetype based on some info; this should get replaced
* with a glib/gio/gcontent_type_guess call if we can include it,
* all other plugins do this manually.
*/
static const char *type_guess(PurpleStoredImage *image)
{
/* Copied off the code in libpurple's jabber module */
const char *ext = purple_imgstore_get_extension(image);
if (strcmp(ext, "png") == 0) {
return "image/png";
} else if (strcmp(ext, "gif") == 0) {
return "image/gif";
} else if (strcmp(ext, "jpg") == 0) {
return "image/jpeg";
} else if (strcmp(ext, "tif") == 0) {
return "image/tif";
} else {
return "image/x-icon"; /* or something... */
}
}
/**
* Check if the declared content-type is an image type we recognise.
*/
static gboolean is_known_image_type(const char *content_type)
{
return !strcmp(content_type, "image/png") ||
!strcmp(content_type, "image/jpeg") ||
!strcmp(content_type, "image/gif") ||
!strcmp(content_type, "image/tiff");
}
/* Structure hung off the event and used by _send_image_hook */
struct SendImageHookData {
PurpleConversation *conv;
int imgstore_id;
};
/**
* Called back by _send_queued_event for an image.
*/
static void _send_image_hook(MatrixRoomEvent *event, gboolean just_free)
{
MatrixApiRequestData *fetch_data;
struct SendImageHookData *sihd = event->hook_data;
/* Free'd by the callbacks from upload_file */
struct SendImageEventData *sied = g_new0(struct SendImageEventData, 1);
PurpleConnection *pc;
MatrixConnectionData *acct;
int imgstore_id;
PurpleStoredImage *image;
size_t imgsize;
const char *filename;
const char *ctype;
gconstpointer imgdata;
if (just_free) {
g_free(event->hook_data);
return;
}
pc = sihd->conv->account->gc;
acct = purple_connection_get_protocol_data(pc);
imgstore_id = sihd->imgstore_id;
image = purple_imgstore_find_by_id(imgstore_id);
if (!image)
return;
imgsize = purple_imgstore_get_size(image);
filename = purple_imgstore_get_filename(image);
imgdata = purple_imgstore_get_data(image);
ctype = type_guess(image);
purple_debug_info("matrixprpl", "%s: image id %d for %s (type: %s)\n",
__func__,
sihd->imgstore_id, filename, ctype);
sied->conv = sihd->conv;
sied->imgstore_id = sihd->imgstore_id;
sied->event = event;
json_object_set_string_member(event->content, "body", filename);
fetch_data = matrix_api_upload_file(acct, ctype, imgdata, imgsize,
_image_upload_complete,
_image_upload_error,
_image_upload_bad_response, sied);
if (fetch_data) {
purple_conversation_set_data(sied->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
fetch_data);
}
}
struct ReceiveImageData {
PurpleConversation *conv;
gint64 timestamp;
const gchar *room_id;
const gchar *sender_display_name;
gchar *original_body;
MatrixMediaCryptInfo *crypt;
};
/* Deal with encrypted image data */
static void _image_download_complete_crypt(struct ReceiveImageData *rid,
const char *raw_body, size_t raw_body_len)
{
void *decrypted = NULL;
const char *fail_str = matrix_e2e_decrypt_media(rid->crypt,
raw_body_len, raw_body, &decrypted);
if (fail_str) {
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id),
rid->sender_display_name, PURPLE_MESSAGE_RECV,
g_strdup_printf("%s (%s)",
rid->original_body, fail_str), rid->timestamp / 1000);
} else {
int img_id = purple_imgstore_add_with_id(decrypted, raw_body_len, NULL);
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id), rid->sender_display_name,
PURPLE_MESSAGE_RECV | PURPLE_MESSAGE_IMAGES,
g_strdup_printf("<IMG ID=\"%d\">", img_id), rid->timestamp / 1000);
}
g_free(rid->crypt);
g_free(rid->original_body);
g_free(rid);
}
static void _image_download_complete(MatrixConnectionData *ma,
gpointer user_data, JsonNode *json_root,
const char *raw_body, size_t raw_body_len, const char *content_type)
{
struct ReceiveImageData *rid = user_data;
gchar *msg;
if (rid->crypt) {
return _image_download_complete_crypt(rid, raw_body, raw_body_len);
}
if (is_known_image_type(content_type)) {
/* Excellent - something to work with */
int img_id = purple_imgstore_add_with_id(g_memdup(raw_body, raw_body_len),
raw_body_len, NULL);
msg = g_strdup_printf("<IMG ID=\"%d\">", img_id);
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id), rid->sender_display_name,
PURPLE_MESSAGE_RECV | PURPLE_MESSAGE_IMAGES,
msg, rid->timestamp / 1000);
g_free(msg);
} else {
msg = g_strdup_printf("%s (unknown type %s)",
rid->original_body, content_type);
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id),
rid->sender_display_name, PURPLE_MESSAGE_RECV,
msg, rid->timestamp / 1000);
g_free(msg);
}
purple_conversation_set_data(rid->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
NULL);
g_free(rid->original_body);
g_free(rid);
}
static void _image_download_bad_response(MatrixConnectionData *ma, gpointer user_data,
int http_response_code, JsonNode *json_root)
{
struct ReceiveImageData *rid = user_data;
gchar *escaped_body = purple_markup_escape_text(rid->original_body, -1);
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id),
rid->sender_display_name, PURPLE_MESSAGE_RECV,
g_strdup_printf("%s (bad response to download image %d)",
escaped_body, http_response_code),
rid->timestamp / 1000);
purple_conversation_set_data(rid->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
NULL);
g_free(escaped_body);
g_free(rid->crypt);
g_free(rid->original_body);
g_free(rid);
}
static void _image_download_error(MatrixConnectionData *ma, gpointer user_data,
const gchar *error_message)
{
struct ReceiveImageData *rid = user_data;
gchar *escaped_body = purple_markup_escape_text(rid->original_body, -1);
serv_got_chat_in(rid->conv->account->gc, g_str_hash(rid->room_id),
rid->sender_display_name, PURPLE_MESSAGE_RECV,
g_strdup_printf("%s (failed to download image %s)",
escaped_body, error_message), rid->timestamp / 1000);
purple_conversation_set_data(rid->conv, PURPLE_CONV_DATA_ACTIVE_SEND,
NULL);
g_free(escaped_body);
g_free(rid->crypt);
g_free(rid->original_body);
g_free(rid);
}
/*
* Called from matrix_room_handle_timeline_event when it finds an m.video
* or m.audio or m.file or m.image; msg_body has the fallback text,
* json_content_object has the json for the content sub object
*/
static gboolean _handle_incoming_media(PurpleConversation *conv,
const gint64 timestamp, const gchar *room_id,
const gchar *sender_display_name, const gchar *msg_body,
JsonObject *json_content_object, const gchar *msg_type) {
MatrixConnectionData *conn = _get_connection_data_from_conversation(conv);
MatrixApiRequestData *fetch_data = NULL;
int is_image = !strcmp("m.image", msg_type);
const gchar *url;
GString *download_url;
guint64 size = 0;
const gchar *mime_type = "unknown";
JsonObject *json_file_obj = NULL;
JsonObject *json_info_object;
gchar *msg;
url = matrix_json_object_get_string_member(json_content_object, "url");
if (!url) {
/* Could be a new style format used by the e2e world */
json_file_obj = matrix_json_object_get_object_member(
json_content_object, "file");
if (json_file_obj) {
url = matrix_json_object_get_string_member(json_file_obj,
"url");
}
if (!url) {
/* That seems odd, oh well, no point in getting upset */
purple_debug_info("matrixprpl", "failed to get url for media\n");
return FALSE;
}
}
download_url = get_download_url(conn->homeserver, url);
/* the 'info' member is optional */
json_info_object = matrix_json_object_get_object_member(json_content_object,
"info");
if (json_info_object) {
/* OK, we've got some (optional) info */
size = matrix_json_object_get_int_member(json_info_object, "size");
mime_type = matrix_json_object_get_string_member(json_info_object,
"mimetype");
purple_debug_info("matrixprpl", "media info good: %s of %" PRId64 "\n",
mime_type, size);
}
/* TODO convert size into a human readable format */
msg = g_strdup_printf("%s (type %s size %" PRId64 ") %s",
msg_body, mime_type, size, download_url->str);
serv_got_chat_in(conv->account->gc, g_str_hash(room_id),
sender_display_name, PURPLE_MESSAGE_RECV,
msg, timestamp / 1000);
g_free(msg);
g_string_free(download_url, TRUE);
/* m.audio is not supposed to have a thumbnail, handling completed
*/
if (!strcmp("m.audio", msg_type)) {
return TRUE;
}
/* If a thumbnail_url is available and the thumbnail size is small,
* download that. Otherwise, only for m.image, ask for a server generated
* thumbnail.
*/
const gchar *thumb_url = "";
JsonObject *json_thumb_info;
guint64 thumb_size = 0;
/* r0.2.0 -> r0.3.0
* m.image content.thumb* -> content.info.thumb*
* m.video -
* m.file content.thumb* -> content.info.thumb*
*/
thumb_url = matrix_json_object_get_string_member(json_info_object, "thumbnail_url");
json_thumb_info = matrix_json_object_get_object_member(json_info_object, "thumbnail_info");
if (json_thumb_info) {
thumb_size = matrix_json_object_get_int_member(json_thumb_info, "size");
} else {
/* m.image and m.file had thumbnail_* members directly in the content object prior to r0.3.0 */
thumb_url = matrix_json_object_get_string_member(json_content_object, "thumbnail_url");
json_thumb_info = matrix_json_object_get_object_member(json_content_object, "thumbnail_info");
if (json_thumb_info) {
thumb_size = matrix_json_object_get_int_member(json_thumb_info, "size");
}
}
if (is_image && (size > 0) && (size < purple_max_media_size)) {
/* if an m.image is small, get that instead of the thumbnail */
thumb_url = url;
thumb_size = size;
} else if (json_file_obj) {
/* In the world with file members, we've also got a thumbnail_file
* member with potentially quite different data.
*/
JsonObject *tmp_file_obj = matrix_json_object_get_object_member(
json_info_object, "thumbnail_file");
if (tmp_file_obj) {
const char *tmp_url;
tmp_url = matrix_json_object_get_string_member(tmp_file_obj, "url");
if (tmp_url) {
thumb_url = tmp_url;
json_file_obj = tmp_file_obj;
}
}
}
if (thumb_url || is_image) {
struct ReceiveImageData *rid;
rid = g_new0(struct ReceiveImageData, 1);
rid->conv = conv;
rid->timestamp = timestamp;
rid->sender_display_name = sender_display_name;
rid->room_id = room_id;
rid->original_body = g_strdup(msg_body);
if (json_file_obj) {
/* It's almost certainly encrypted data, extract the info.
* Note if it is then we must fetch the raw, we can't ask for the server
* to generate a thumb.
*/
if (!matrix_e2e_parse_media_decrypt_info(&rid->crypt, json_file_obj)) {
g_free(rid);
return FALSE;
}
}
if (thumb_url && (thumb_size > 0) && (thumb_size < purple_max_media_size)) {
fetch_data = matrix_api_download_file(conn, thumb_url,
purple_max_media_size,
_image_download_complete,
_image_download_error,
_image_download_bad_response,
rid);
} else if (thumb_url && !rid->crypt) {
/* Ask the server to generate a thumbnail of the thumbnail.
* Useful to improve the chance of showing something when the
* original thumbnail is too big.
*/
fetch_data = matrix_api_download_thumb(conn, thumb_url,
purple_max_media_size,
640, 480, TRUE, /* Scaled */
_image_download_complete,
_image_download_error,
_image_download_bad_response,
rid);
} else if (!rid->crypt) {
/* Ask the server to generate a thumbnail. Only for m.image.
* TODO: Configure the size of thumbnails.
* 640x480 is a good a width as any and reasonably likely to
* fit in the byte size limit unless someone has a big long
* tall png.
*/
fetch_data = matrix_api_download_thumb(conn, url,
purple_max_media_size,
640, 480, TRUE, /* Scaled */
_image_download_complete,
_image_download_error,
_image_download_bad_response,
rid);
}
purple_conversation_set_data(conv, PURPLE_CONV_DATA_ACTIVE_SEND,
fetch_data);
if (!fetch_data) {
g_free(rid->crypt);
}
return fetch_data != NULL;
}
return TRUE;
}
/**
* send the next queued event, provided the connection isn't shutting down.
*
* Updates PURPLE_CONV_DATA_ACTIVE_SEND either way.
*/
static void _send_queued_event(PurpleConversation *conv)
{
MatrixApiRequestData *fetch_data = NULL;
MatrixConnectionData *acct;
MatrixRoomEvent *event;
PurpleConnection *pc = conv->account->gc;
GList *queue;
acct = purple_connection_get_protocol_data(pc);
queue = _get_event_queue(conv);
if(queue == NULL) {
/* nothing else to send */
} else if(pc -> wants_to_die) {
/* don't make any more requests if the connection is closing */
purple_debug_info("matrixprpl", "Not sending new events on dying"
" connection");
} else {
event = queue -> data;
g_assert(event != NULL);
if (event->hook)
return event->hook(event, FALSE);
purple_debug_info("matrixprpl", "Sending %s with txn id %s\n",
event->event_type, event->txn_id);
fetch_data = matrix_api_send(acct, conv->name, event->event_type,
event->txn_id, event->content, _event_send_complete,
_event_send_error, _event_send_bad_response, conv);
}
purple_conversation_set_data(conv, PURPLE_CONV_DATA_ACTIVE_SEND,
fetch_data);
}
static void _enqueue_event(PurpleConversation *conv, const gchar *event_type,
JsonObject *event_content,
EventSendHook hook, void *hook_data)
{
MatrixRoomEvent *event;
GList *event_queue;
MatrixApiRequestData *active_send;
event = matrix_event_new(event_type, event_content);
event->txn_id = g_strdup_printf("%"G_GINT64_FORMAT"%"G_GUINT32_FORMAT,
g_get_monotonic_time(), g_random_int());
event->hook = hook;
event->hook_data = hook_data;
event_queue = _get_event_queue(conv);
event_queue = g_list_append(event_queue, event);
purple_conversation_set_data(conv, PURPLE_CONV_DATA_EVENT_QUEUE,
event_queue);
purple_debug_info("matrixprpl", "Enqueued %s with txn id %s\n",
event_type, event->txn_id);
active_send = purple_conversation_get_data(conv,
PURPLE_CONV_DATA_ACTIVE_SEND);
if(active_send != NULL) {
purple_debug_info("matrixprpl", "Event send is already in progress\n");
} else {
_send_queued_event(conv);
}
}
/**
* If there is an event send in progress, cancel it
*/
static void _cancel_event_send(PurpleConversation *conv)
{
MatrixApiRequestData *active_send = purple_conversation_get_data(conv,
PURPLE_CONV_DATA_ACTIVE_SEND);
if(active_send == NULL)
return;
purple_debug_info("matrixprpl", "Cancelling event send");
matrix_api_cancel(active_send);
g_assert(purple_conversation_get_data(conv, PURPLE_CONV_DATA_ACTIVE_SEND)
== NULL);
}
/*****************************************************************************/
void matrix_room_handle_timeline_event(PurpleConversation *conv,
JsonObject *json_event_obj)
{
const gchar *event_type, *sender_id, *transaction_id;