2013-10-23 10:26:17 -04:00
|
|
|
/*
|
|
|
|
This file is part of telegram-client.
|
|
|
|
|
|
|
|
Telegram-client 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.
|
|
|
|
|
|
|
|
Telegram-client 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 telegram-client. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
Copyright Vitaly Valtman 2013
|
|
|
|
*/
|
2013-10-11 16:52:20 -04:00
|
|
|
#include <assert.h>
|
2013-10-31 19:18:34 -04:00
|
|
|
#include <string.h>
|
2013-10-11 16:52:20 -04:00
|
|
|
#include "structures.h"
|
|
|
|
#include "mtproto-common.h"
|
2013-10-13 06:18:08 -04:00
|
|
|
#include "telegram.h"
|
|
|
|
#include "tree.h"
|
2013-10-18 15:30:24 -04:00
|
|
|
#include "loop.h"
|
2013-10-16 15:19:39 -04:00
|
|
|
int verbosity;
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *Peers[MAX_USER_NUM];
|
2013-10-16 15:19:39 -04:00
|
|
|
|
2013-10-11 16:52:20 -04:00
|
|
|
void fetch_file_location (struct file_location *loc) {
|
|
|
|
int x = fetch_int ();
|
|
|
|
if (x == CODE_file_location_unavailable) {
|
|
|
|
loc->dc = -1;
|
|
|
|
loc->volume = fetch_long ();
|
|
|
|
loc->local_id = fetch_int ();
|
|
|
|
loc->secret = fetch_long ();
|
|
|
|
} else {
|
|
|
|
assert (x == CODE_file_location);
|
|
|
|
loc->dc = fetch_int ();;
|
|
|
|
loc->volume = fetch_long ();
|
|
|
|
loc->local_id = fetch_int ();
|
|
|
|
loc->secret = fetch_long ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_user_status (struct user_status *S) {
|
|
|
|
int x = fetch_int ();
|
|
|
|
switch (x) {
|
|
|
|
case CODE_user_status_empty:
|
|
|
|
S->online = 0;
|
|
|
|
break;
|
|
|
|
case CODE_user_status_online:
|
|
|
|
S->online = 1;
|
|
|
|
S->when = fetch_int ();
|
|
|
|
break;
|
|
|
|
case CODE_user_status_offline:
|
|
|
|
S->online = -1;
|
|
|
|
S->when = fetch_int ();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-18 15:30:24 -04:00
|
|
|
int our_id;
|
2013-10-24 18:56:11 -04:00
|
|
|
int user_num;
|
|
|
|
int chat_num;
|
|
|
|
|
2013-10-11 16:52:20 -04:00
|
|
|
void fetch_user (struct user *U) {
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
assert (x == CODE_user_empty || x == CODE_user_self || x == CODE_user_contact || x == CODE_user_request || x == CODE_user_foreign || x == CODE_user_deleted);
|
2013-10-31 19:18:34 -04:00
|
|
|
U->id = MK_USER (fetch_int ());
|
2013-10-24 13:04:44 -04:00
|
|
|
U->flags &= ~(FLAG_EMPTY | FLAG_DELETED | FLAG_USER_SELF | FLAG_USER_FOREIGN | FLAG_USER_CONTACT);
|
2013-10-11 16:52:20 -04:00
|
|
|
if (x == CODE_user_empty) {
|
2013-10-24 13:04:44 -04:00
|
|
|
U->flags |= FLAG_EMPTY;
|
2013-10-11 16:52:20 -04:00
|
|
|
return;
|
|
|
|
}
|
2013-10-18 15:30:24 -04:00
|
|
|
if (x == CODE_user_self) {
|
2013-10-31 19:18:34 -04:00
|
|
|
assert (!our_id || (our_id == get_peer_id (U->id)));
|
2013-10-18 15:30:24 -04:00
|
|
|
if (!our_id) {
|
2013-10-31 19:18:34 -04:00
|
|
|
our_id = get_peer_id (U->id);
|
2013-10-18 15:30:24 -04:00
|
|
|
write_auth_file ();
|
|
|
|
}
|
|
|
|
}
|
2013-10-24 13:04:44 -04:00
|
|
|
if (U->first_name) { free (U->first_name); }
|
|
|
|
if (U->last_name) { free (U->last_name); }
|
|
|
|
if (U->print_name) { free (U->print_name); }
|
2013-10-11 16:52:20 -04:00
|
|
|
U->first_name = fetch_str_dup ();
|
|
|
|
U->last_name = fetch_str_dup ();
|
2013-10-13 06:18:08 -04:00
|
|
|
if (!strlen (U->first_name)) {
|
|
|
|
if (!strlen (U->last_name)) {
|
|
|
|
U->print_name = strdup ("none");
|
|
|
|
} else {
|
|
|
|
U->print_name = strdup (U->last_name);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!strlen (U->last_name)) {
|
|
|
|
U->print_name = strdup (U->first_name);
|
|
|
|
} else {
|
|
|
|
U->print_name = malloc (strlen (U->first_name) + strlen (U->last_name) + 2);
|
|
|
|
sprintf (U->print_name, "%s_%s", U->first_name, U->last_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
char *s = U->print_name;
|
|
|
|
while (*s) {
|
|
|
|
if (*s == ' ') { *s = '_'; }
|
|
|
|
s++;
|
|
|
|
}
|
2013-10-24 18:56:11 -04:00
|
|
|
int cc = 0;
|
|
|
|
while (1) {
|
|
|
|
int ok = 1;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < user_num + chat_num; i++) {
|
2013-10-28 13:51:54 -04:00
|
|
|
if (Peers[i] != (void *)U && Peers[i]->print_name && !strcmp (Peers[i]->print_name, U->print_name)) {
|
2013-10-24 18:56:11 -04:00
|
|
|
ok = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ok) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cc ++;
|
|
|
|
assert (cc <= 99);
|
|
|
|
if (cc == 1) {
|
|
|
|
int l = strlen (U->print_name);
|
|
|
|
char *s = malloc (l + 3);
|
|
|
|
memcpy (s, U->print_name, l);
|
|
|
|
s[l + 2] = 0;
|
|
|
|
s[l] = '#';
|
|
|
|
s[l + 1] = '1';
|
|
|
|
free (U->print_name);
|
|
|
|
U->print_name = s;
|
|
|
|
} else if (cc == 10) {
|
|
|
|
int l = strlen (U->print_name);
|
|
|
|
char *s = malloc (l + 2);
|
|
|
|
memcpy (s, U->print_name, l);
|
|
|
|
s[l + 1] = 0;
|
|
|
|
s[l] = '0';
|
|
|
|
s[l - 1] = '1';
|
|
|
|
free (U->print_name);
|
|
|
|
U->print_name = s;
|
|
|
|
} else {
|
|
|
|
int l = strlen (U->print_name);
|
|
|
|
U->print_name[l - 1] ++;
|
|
|
|
if (U->print_name[l - 1] > '9') {
|
|
|
|
U->print_name[l - 1] = '0';
|
|
|
|
U->print_name[l - 2] ++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 16:52:20 -04:00
|
|
|
if (x == CODE_user_deleted) {
|
2013-10-24 13:04:44 -04:00
|
|
|
U->flags |= FLAG_DELETED;
|
2013-10-11 16:52:20 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (x == CODE_user_self) {
|
2013-10-24 13:04:44 -04:00
|
|
|
U->flags |= FLAG_USER_SELF;
|
2013-10-11 16:52:20 -04:00
|
|
|
} else {
|
|
|
|
U->access_hash = fetch_long ();
|
|
|
|
}
|
|
|
|
if (x == CODE_user_foreign) {
|
2013-10-24 03:38:32 -04:00
|
|
|
U->flags |= FLAG_USER_FOREIGN;
|
2013-10-25 15:50:10 -04:00
|
|
|
U->phone = 0;
|
2013-10-11 16:52:20 -04:00
|
|
|
} else {
|
2013-10-24 13:04:44 -04:00
|
|
|
if (U->phone) { free (U->phone); }
|
2013-10-11 16:52:20 -04:00
|
|
|
U->phone = fetch_str_dup ();
|
|
|
|
}
|
2013-10-25 15:50:10 -04:00
|
|
|
//logprintf ("name = %s, surname = %s, phone = %s\n", U->first_name, U->last_name, U->phone);
|
2013-10-11 16:52:20 -04:00
|
|
|
unsigned y = fetch_int ();
|
2013-10-25 15:50:10 -04:00
|
|
|
//fprintf (stderr, "y = 0x%08x\n", y);
|
2013-10-11 16:52:20 -04:00
|
|
|
if (y == CODE_user_profile_photo_empty) {
|
|
|
|
U->photo_small.dc = -2;
|
|
|
|
U->photo_big.dc = -2;
|
|
|
|
} else {
|
2013-10-25 15:50:10 -04:00
|
|
|
assert (y == CODE_user_profile_photo || y == 0x990d1493);
|
|
|
|
if (y == CODE_user_profile_photo) {
|
|
|
|
fetch_long ();
|
|
|
|
}
|
2013-10-11 16:52:20 -04:00
|
|
|
fetch_file_location (&U->photo_small);
|
|
|
|
fetch_file_location (&U->photo_big);
|
|
|
|
}
|
|
|
|
fetch_user_status (&U->status);
|
|
|
|
if (x == CODE_user_self) {
|
|
|
|
assert (fetch_int () == (int)CODE_bool_false);
|
|
|
|
}
|
|
|
|
if (x == CODE_user_contact) {
|
2013-10-24 03:38:32 -04:00
|
|
|
U->flags |= FLAG_USER_CONTACT;
|
2013-10-11 16:52:20 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-13 06:18:08 -04:00
|
|
|
|
2013-10-25 13:29:02 -04:00
|
|
|
void fetch_notify_settings (void);
|
|
|
|
void fetch_user_full (struct user *U) {
|
|
|
|
assert (fetch_int () == CODE_user_full);
|
|
|
|
fetch_alloc_user ();
|
|
|
|
unsigned x;
|
|
|
|
assert (fetch_int () == (int)CODE_contacts_link);
|
|
|
|
x = fetch_int ();
|
|
|
|
assert (x == CODE_contacts_my_link_empty || x == CODE_contacts_my_link_requested || x == CODE_contacts_my_link_contact);
|
|
|
|
U->flags &= ~(FLAG_USER_IN_CONTACT | FLAG_USER_OUT_CONTACT);
|
|
|
|
if (x == CODE_contacts_my_link_contact) {
|
|
|
|
U->flags |= FLAG_USER_IN_CONTACT;
|
|
|
|
}
|
|
|
|
if (x == CODE_contacts_my_link_requested) {
|
|
|
|
fetch_bool ();
|
|
|
|
}
|
|
|
|
x = fetch_int ();
|
|
|
|
assert (x == CODE_contacts_foreign_link_unknown || x == CODE_contacts_foreign_link_requested || x == CODE_contacts_foreign_link_mutual);
|
|
|
|
U->flags &= ~(FLAG_USER_IN_CONTACT | FLAG_USER_OUT_CONTACT);
|
|
|
|
if (x == CODE_contacts_foreign_link_mutual) {
|
|
|
|
U->flags |= FLAG_USER_IN_CONTACT | FLAG_USER_OUT_CONTACT;
|
|
|
|
}
|
2013-10-25 13:33:18 -04:00
|
|
|
if (x == CODE_contacts_foreign_link_requested) {
|
2013-10-25 13:29:02 -04:00
|
|
|
U->flags |= FLAG_USER_OUT_CONTACT;
|
|
|
|
fetch_bool ();
|
|
|
|
}
|
|
|
|
fetch_alloc_user ();
|
|
|
|
if (U->flags & FLAG_HAS_PHOTO) {
|
|
|
|
free_photo (&U->photo);
|
|
|
|
}
|
|
|
|
fetch_photo (&U->photo);
|
|
|
|
fetch_notify_settings ();
|
|
|
|
U->blocked = fetch_int ();
|
|
|
|
if (U->real_first_name) { free (U->real_first_name); }
|
|
|
|
if (U->real_last_name) { free (U->real_last_name); }
|
|
|
|
U->real_first_name = fetch_str_dup ();
|
|
|
|
U->real_last_name = fetch_str_dup ();
|
|
|
|
}
|
|
|
|
|
2013-10-13 08:30:53 -04:00
|
|
|
void fetch_chat (struct chat *C) {
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
assert (x == CODE_chat_empty || x == CODE_chat || x == CODE_chat_forbidden);
|
2013-10-31 19:18:34 -04:00
|
|
|
C->id = MK_CHAT (fetch_int ());
|
2013-10-24 13:04:44 -04:00
|
|
|
C->flags &= ~(FLAG_EMPTY | FLAG_DELETED | FLAG_FORBIDDEN | FLAG_CHAT_IN_CHAT);
|
2013-10-13 08:30:53 -04:00
|
|
|
if (x == CODE_chat_empty) {
|
2013-10-24 13:04:44 -04:00
|
|
|
C->flags |= FLAG_EMPTY;
|
2013-10-13 08:30:53 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (x == CODE_chat_forbidden) {
|
2013-10-24 03:38:32 -04:00
|
|
|
C->flags |= FLAG_FORBIDDEN;
|
2013-10-13 08:30:53 -04:00
|
|
|
}
|
2013-10-24 13:04:44 -04:00
|
|
|
if (C->title) { free (C->title); }
|
|
|
|
if (C->print_title) { free (C->print_title); }
|
2013-10-13 08:30:53 -04:00
|
|
|
C->title = fetch_str_dup ();
|
|
|
|
C->print_title = strdup (C->title);
|
|
|
|
char *s = C->print_title;
|
|
|
|
while (*s) {
|
|
|
|
if (*s == ' ') { *s = '_'; }
|
|
|
|
s ++;
|
|
|
|
}
|
|
|
|
if (x == CODE_chat) {
|
|
|
|
unsigned y = fetch_int ();
|
|
|
|
if (y == CODE_chat_photo_empty) {
|
|
|
|
C->photo_small.dc = -2;
|
|
|
|
C->photo_big.dc = -2;
|
|
|
|
} else {
|
|
|
|
assert (y == CODE_chat_photo);
|
|
|
|
fetch_file_location (&C->photo_small);
|
|
|
|
fetch_file_location (&C->photo_big);
|
|
|
|
}
|
2013-10-24 13:04:44 -04:00
|
|
|
C->users_num = fetch_int ();
|
2013-10-14 13:26:25 -04:00
|
|
|
C->date = fetch_int ();
|
|
|
|
if (fetch_int () == (int)CODE_bool_true) {
|
2013-10-24 03:38:32 -04:00
|
|
|
C->flags |= FLAG_CHAT_IN_CHAT;
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
C->version = fetch_int ();
|
|
|
|
} else {
|
|
|
|
C->photo_small.dc = -2;
|
|
|
|
C->photo_big.dc = -2;
|
2013-10-24 13:04:44 -04:00
|
|
|
C->users_num = -1;
|
2013-10-14 13:26:25 -04:00
|
|
|
C->date = fetch_int ();
|
|
|
|
C->version = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-24 13:04:44 -04:00
|
|
|
void fetch_notify_settings (void) {
|
|
|
|
unsigned x = fetch_int ();
|
2013-10-25 18:03:36 -04:00
|
|
|
assert (x == CODE_peer_notify_settings || x == CODE_peer_notify_settings_empty || x == CODE_peer_notify_settings_old);
|
|
|
|
if (x == CODE_peer_notify_settings_old) {
|
2013-10-24 13:04:44 -04:00
|
|
|
fetch_int (); // mute_until
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
fetch_str (l);
|
|
|
|
fetch_bool (); // show_previews
|
|
|
|
fetch_int (); // peer notify events
|
|
|
|
}
|
2013-10-25 18:03:36 -04:00
|
|
|
if (x == CODE_peer_notify_settings) {
|
|
|
|
fetch_int (); // mute_until
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
fetch_str (l);
|
|
|
|
fetch_bool (); // show_previews
|
|
|
|
fetch_int (); // events_mask
|
|
|
|
}
|
2013-10-24 13:04:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_chat_full (struct chat *C) {
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
assert (x == CODE_messages_chat_full);
|
|
|
|
assert (fetch_int () == CODE_chat_full);
|
2013-10-31 19:18:34 -04:00
|
|
|
C->id = MK_CHAT (fetch_int ());
|
2013-10-24 13:04:44 -04:00
|
|
|
C->flags &= ~(FLAG_EMPTY | FLAG_DELETED | FLAG_FORBIDDEN | FLAG_CHAT_IN_CHAT);
|
|
|
|
x = fetch_int ();
|
|
|
|
if (x == CODE_chat_participants) {
|
2013-10-31 19:18:34 -04:00
|
|
|
assert (fetch_int () == get_peer_id (C->id));
|
2013-10-24 13:04:44 -04:00
|
|
|
C->admin_id = fetch_int ();
|
|
|
|
assert (fetch_int () == CODE_vector);
|
|
|
|
if (C->users) {
|
|
|
|
free (C->users);
|
|
|
|
}
|
|
|
|
C->users_num = fetch_int ();
|
|
|
|
C->users = malloc (sizeof (struct chat_user) * C->users_num);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < C->users_num; i++) {
|
|
|
|
assert (fetch_int () == (int)CODE_chat_participant);
|
|
|
|
C->users[i].user_id = fetch_int ();
|
|
|
|
C->users[i].inviter_id = fetch_int ();
|
|
|
|
C->users[i].date = fetch_int ();
|
|
|
|
}
|
|
|
|
C->version = fetch_int ();
|
|
|
|
} else {
|
|
|
|
C->flags |= FLAG_FORBIDDEN;
|
|
|
|
assert (x == CODE_chat_participants_forbidden);
|
|
|
|
}
|
|
|
|
if (C->flags & FLAG_HAS_PHOTO) {
|
|
|
|
free_photo (&C->photo);
|
|
|
|
}
|
|
|
|
fetch_photo (&C->photo);
|
|
|
|
C->flags |= FLAG_HAS_PHOTO;
|
|
|
|
fetch_notify_settings ();
|
|
|
|
|
|
|
|
int n, i;
|
|
|
|
assert (fetch_int () == CODE_vector);
|
|
|
|
n = fetch_int ();
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
fetch_alloc_chat ();
|
|
|
|
}
|
|
|
|
assert (fetch_int () == CODE_vector);
|
|
|
|
n = fetch_int ();
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
fetch_alloc_user ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
void fetch_photo_size (struct photo_size *S) {
|
2013-10-18 12:00:47 -04:00
|
|
|
memset (S, 0, sizeof (*S));
|
2013-10-14 13:26:25 -04:00
|
|
|
unsigned x = fetch_int ();
|
2013-10-21 15:27:29 -04:00
|
|
|
assert (x == CODE_photo_size || x == CODE_photo_cached_size || x == CODE_photo_size_empty);
|
2013-10-14 13:26:25 -04:00
|
|
|
S->type = fetch_str_dup ();
|
2013-10-21 15:27:29 -04:00
|
|
|
if (x != CODE_photo_size_empty) {
|
|
|
|
fetch_file_location (&S->loc);
|
|
|
|
S->w = fetch_int ();
|
|
|
|
S->h = fetch_int ();
|
|
|
|
if (x == CODE_photo_size) {
|
|
|
|
S->size = fetch_int ();
|
|
|
|
} else {
|
2013-10-27 15:35:02 -04:00
|
|
|
S->size = prefetch_strlen ();
|
|
|
|
S->data = malloc (S->size);
|
|
|
|
memcpy (S->data, fetch_str (S->size), S->size);
|
2013-10-21 15:27:29 -04:00
|
|
|
}
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_geo (struct geo *G) {
|
2013-10-18 12:00:47 -04:00
|
|
|
unsigned x = fetch_int ();
|
|
|
|
if (x == CODE_geo_point) {
|
|
|
|
G->longitude = fetch_double ();
|
|
|
|
G->latitude = fetch_double ();
|
|
|
|
} else {
|
|
|
|
assert (x == CODE_geo_point_empty);
|
|
|
|
G->longitude = 0;
|
|
|
|
G->latitude = 0;
|
|
|
|
}
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_photo (struct photo *P) {
|
|
|
|
memset (P, 0, sizeof (*P));
|
|
|
|
unsigned x = fetch_int ();
|
2013-10-24 13:04:44 -04:00
|
|
|
assert (x == CODE_photo_empty || x == CODE_photo);
|
2013-10-14 13:26:25 -04:00
|
|
|
P->id = fetch_long ();
|
|
|
|
if (x == CODE_photo_empty) { return; }
|
|
|
|
P->access_hash = fetch_long ();
|
|
|
|
P->user_id = fetch_int ();
|
|
|
|
P->date = fetch_int ();
|
|
|
|
P->caption = fetch_str_dup ();
|
|
|
|
fetch_geo (&P->geo);
|
|
|
|
assert (fetch_int () == CODE_vector);
|
|
|
|
P->sizes_num = fetch_int ();
|
|
|
|
P->sizes = malloc (sizeof (struct photo_size) * P->sizes_num);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < P->sizes_num; i++) {
|
|
|
|
fetch_photo_size (&P->sizes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_video (struct video *V) {
|
|
|
|
memset (V, 0, sizeof (*V));
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
V->id = fetch_long ();
|
|
|
|
if (x == CODE_video_empty) { return; }
|
|
|
|
V->access_hash = fetch_long ();
|
|
|
|
V->user_id = fetch_int ();
|
|
|
|
V->date = fetch_int ();
|
|
|
|
V->caption = fetch_str_dup ();
|
|
|
|
V->duration = fetch_int ();
|
|
|
|
V->size = fetch_int ();
|
|
|
|
fetch_photo_size (&V->thumb);
|
|
|
|
V->dc_id = fetch_int ();
|
|
|
|
V->w = fetch_int ();
|
|
|
|
V->h = fetch_int ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_message_action (struct message_action *M) {
|
|
|
|
memset (M, 0, sizeof (*M));
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
M->type = x;
|
|
|
|
switch (x) {
|
|
|
|
case CODE_message_action_empty:
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_create:
|
|
|
|
M->title = fetch_str_dup ();
|
|
|
|
assert (fetch_int () == (int)CODE_vector);
|
|
|
|
M->user_num = fetch_int ();
|
|
|
|
M->users = malloc (M->user_num * 4);
|
|
|
|
fetch_ints (M->users, M->user_num);
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_edit_title:
|
|
|
|
M->new_title = fetch_str_dup ();
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_edit_photo:
|
|
|
|
fetch_photo (&M->photo);
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_delete_photo:
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_add_user:
|
|
|
|
M->user = fetch_int ();
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_delete_user:
|
|
|
|
M->user = fetch_int ();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:19:39 -04:00
|
|
|
void fetch_message_short (struct message *M) {
|
|
|
|
memset (M, 0, sizeof (*M));
|
|
|
|
M->id = fetch_int ();
|
2013-10-31 19:18:34 -04:00
|
|
|
M->to_id = MK_USER (our_id);
|
|
|
|
M->from_id = MK_USER (fetch_int ());
|
2013-10-16 15:19:39 -04:00
|
|
|
M->message = fetch_str_dup ();
|
|
|
|
fetch_int (); // pts
|
|
|
|
M->date = fetch_int ();
|
|
|
|
fetch_int (); // seq
|
2013-10-18 12:00:47 -04:00
|
|
|
M->media.type = CODE_message_media_empty;
|
2013-10-23 06:25:41 -04:00
|
|
|
M->unread = 1;
|
2013-10-16 15:19:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void fetch_message_short_chat (struct message *M) {
|
|
|
|
memset (M, 0, sizeof (*M));
|
|
|
|
M->id = fetch_int ();
|
2013-10-31 19:18:34 -04:00
|
|
|
M->from_id = MK_USER (fetch_int ());
|
|
|
|
M->to_id = MK_CHAT (fetch_int ());
|
2013-10-16 15:19:39 -04:00
|
|
|
M->message = fetch_str_dup ();
|
|
|
|
fetch_int (); // pts
|
|
|
|
M->date = fetch_int ();
|
|
|
|
fetch_int (); // seq
|
2013-10-18 12:00:47 -04:00
|
|
|
M->media.type = CODE_message_media_empty;
|
2013-10-23 06:25:41 -04:00
|
|
|
M->unread = 1;
|
2013-10-16 15:19:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
void fetch_message_media (struct message_media *M) {
|
|
|
|
memset (M, 0, sizeof (*M));
|
|
|
|
M->type = fetch_int ();
|
|
|
|
switch (M->type) {
|
|
|
|
case CODE_message_media_empty:
|
|
|
|
break;
|
|
|
|
case CODE_message_media_photo:
|
|
|
|
fetch_photo (&M->photo);
|
|
|
|
break;
|
|
|
|
case CODE_message_media_video:
|
|
|
|
fetch_video (&M->video);
|
|
|
|
break;
|
|
|
|
case CODE_message_media_geo:
|
|
|
|
fetch_geo (&M->geo);
|
|
|
|
break;
|
|
|
|
case CODE_message_media_contact:
|
|
|
|
M->phone = fetch_str_dup ();
|
|
|
|
M->first_name = fetch_str_dup ();
|
|
|
|
M->last_name = fetch_str_dup ();
|
|
|
|
M->user_id = fetch_int ();
|
|
|
|
break;
|
|
|
|
case CODE_message_media_unsupported:
|
|
|
|
M->data = fetch_str_dup ();
|
|
|
|
break;
|
|
|
|
default:
|
2013-10-18 12:00:47 -04:00
|
|
|
logprintf ("type = 0x%08x\n", M->type);
|
2013-10-14 13:26:25 -04:00
|
|
|
assert (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_id_t fetch_peer_id (void) {
|
2013-10-18 12:00:47 -04:00
|
|
|
unsigned x =fetch_int ();
|
|
|
|
if (x == CODE_peer_user) {
|
2013-10-31 19:18:34 -04:00
|
|
|
return MK_USER (fetch_int ());
|
2013-10-18 12:00:47 -04:00
|
|
|
} else {
|
|
|
|
assert (CODE_peer_chat);
|
2013-10-31 19:18:34 -04:00
|
|
|
return MK_CHAT (fetch_int ());
|
2013-10-18 12:00:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
void fetch_message (struct message *M) {
|
|
|
|
memset (M, 0, sizeof (*M));
|
|
|
|
unsigned x = fetch_int ();
|
|
|
|
assert (x == CODE_message_empty || x == CODE_message || x == CODE_message_forwarded || x == CODE_message_service);
|
|
|
|
M->id = fetch_int ();
|
|
|
|
if (x == CODE_message_empty) {
|
|
|
|
M->flags |= 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (x == CODE_message_forwarded) {
|
2013-10-31 19:18:34 -04:00
|
|
|
M->fwd_from_id = MK_USER (fetch_int ());
|
2013-10-14 13:26:25 -04:00
|
|
|
M->fwd_date = fetch_int ();
|
|
|
|
}
|
2013-10-31 19:18:34 -04:00
|
|
|
M->from_id = MK_USER (fetch_int ());
|
2013-10-18 12:00:47 -04:00
|
|
|
M->to_id = fetch_peer_id ();
|
|
|
|
M->out = fetch_bool ();
|
|
|
|
M->unread = fetch_bool ();
|
2013-10-14 13:26:25 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
if (x == CODE_message_service) {
|
|
|
|
M->service = 1;
|
|
|
|
fetch_message_action (&M->action);
|
|
|
|
} else {
|
|
|
|
M->message = fetch_str_dup ();
|
|
|
|
fetch_message_media (&M->media);
|
2013-10-13 08:30:53 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-13 06:18:08 -04:00
|
|
|
|
2013-10-31 19:18:34 -04:00
|
|
|
#define id_cmp(a,b) ((a)->id - (b)->id)
|
|
|
|
#define peer_cmp(a,b) (cmp_peer_id (a->id, b->id))
|
2013-10-13 06:18:08 -04:00
|
|
|
|
2013-10-31 19:18:34 -04:00
|
|
|
DEFINE_TREE(peer,peer_t *,peer_cmp,0)
|
|
|
|
DEFINE_TREE(message,struct message *,id_cmp,0)
|
2013-10-14 13:26:25 -04:00
|
|
|
struct tree_peer *peer_tree;
|
|
|
|
struct tree_message *message_tree;
|
2013-10-13 06:18:08 -04:00
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
int chat_num;
|
2013-10-13 06:18:08 -04:00
|
|
|
int user_num;
|
|
|
|
int users_allocated;
|
2013-10-14 13:26:25 -04:00
|
|
|
int chats_allocated;
|
|
|
|
int messages_allocated;
|
|
|
|
|
|
|
|
struct message message_list = {
|
|
|
|
.next_use = &message_list,
|
|
|
|
.prev_use = &message_list
|
|
|
|
};
|
2013-10-13 06:18:08 -04:00
|
|
|
|
|
|
|
struct user *fetch_alloc_user (void) {
|
2013-10-24 13:04:44 -04:00
|
|
|
int data[2];
|
|
|
|
prefetch_data (data, 8);
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *U = user_chat_get (MK_USER (data[1]));
|
2013-10-24 13:04:44 -04:00
|
|
|
if (U) {
|
|
|
|
fetch_user (&U->user);
|
|
|
|
return &U->user;
|
2013-10-13 06:18:08 -04:00
|
|
|
} else {
|
2013-10-24 13:04:44 -04:00
|
|
|
users_allocated ++;
|
|
|
|
U = malloc (sizeof (*U));
|
|
|
|
memset (U, 0, sizeof (*U));
|
|
|
|
fetch_user (&U->user);
|
2013-10-14 13:26:25 -04:00
|
|
|
peer_tree = tree_insert_peer (peer_tree, U, lrand48 ());
|
|
|
|
Peers[chat_num + (user_num ++)] = U;
|
|
|
|
return &U->user;
|
2013-10-13 06:18:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 13:29:02 -04:00
|
|
|
struct user *fetch_alloc_user_full (void) {
|
|
|
|
int data[3];
|
|
|
|
prefetch_data (data, 12);
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *U = user_chat_get (MK_USER (data[2]));
|
2013-10-25 13:29:02 -04:00
|
|
|
if (U) {
|
|
|
|
fetch_user_full (&U->user);
|
|
|
|
return &U->user;
|
|
|
|
} else {
|
|
|
|
users_allocated ++;
|
|
|
|
U = malloc (sizeof (*U));
|
|
|
|
memset (U, 0, sizeof (*U));
|
2013-10-31 19:18:34 -04:00
|
|
|
U->id = MK_USER (data[2]);
|
2013-10-25 13:29:02 -04:00
|
|
|
peer_tree = tree_insert_peer (peer_tree, U, lrand48 ());
|
|
|
|
fetch_user_full (&U->user);
|
|
|
|
Peers[chat_num + (user_num ++ )] = U;
|
|
|
|
return &U->user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-13 06:18:08 -04:00
|
|
|
void free_user (struct user *U) {
|
|
|
|
if (U->first_name) { free (U->first_name); }
|
|
|
|
if (U->last_name) { free (U->last_name); }
|
|
|
|
if (U->print_name) { free (U->print_name); }
|
|
|
|
if (U->phone) { free (U->phone); }
|
|
|
|
}
|
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
void free_photo_size (struct photo_size *S) {
|
|
|
|
free (S->type);
|
2013-10-18 12:00:47 -04:00
|
|
|
if (S->data) {
|
|
|
|
free (S->data);
|
|
|
|
}
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_photo (struct photo *P) {
|
2013-10-18 12:00:47 -04:00
|
|
|
if (!P->access_hash) { return; }
|
|
|
|
if (P->caption) { free (P->caption); }
|
|
|
|
if (P->sizes) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < P->sizes_num; i++) {
|
|
|
|
free_photo_size (&P->sizes[i]);
|
|
|
|
}
|
|
|
|
free (P->sizes);
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_video (struct video *V) {
|
2013-10-18 12:00:47 -04:00
|
|
|
if (!V->access_hash) { return; }
|
2013-10-14 13:26:25 -04:00
|
|
|
free (V->caption);
|
2013-10-18 12:00:47 -04:00
|
|
|
free_photo_size (&V->thumb);
|
2013-10-14 13:26:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_message_media (struct message_media *M) {
|
|
|
|
switch (M->type) {
|
|
|
|
case CODE_message_media_empty:
|
2013-10-19 07:46:41 -04:00
|
|
|
case CODE_message_media_geo:
|
2013-10-14 13:26:25 -04:00
|
|
|
return;
|
|
|
|
case CODE_message_media_photo:
|
|
|
|
free_photo (&M->photo);
|
|
|
|
return;
|
|
|
|
case CODE_message_media_video:
|
|
|
|
free_video (&M->video);
|
|
|
|
return;
|
|
|
|
case CODE_message_media_contact:
|
|
|
|
free (M->phone);
|
|
|
|
free (M->first_name);
|
|
|
|
free (M->last_name);
|
|
|
|
return;
|
|
|
|
case CODE_message_media_unsupported:
|
|
|
|
free (M->data);
|
|
|
|
return;
|
|
|
|
default:
|
2013-10-19 07:46:41 -04:00
|
|
|
logprintf ("%08x\n", M->type);
|
2013-10-14 13:26:25 -04:00
|
|
|
assert (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_message_action (struct message_action *M) {
|
|
|
|
switch (M->type) {
|
|
|
|
case CODE_message_action_empty:
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_create:
|
|
|
|
free (M->title);
|
|
|
|
free (M->users);
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_edit_title:
|
|
|
|
free (M->new_title);
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_edit_photo:
|
|
|
|
free_photo (&M->photo);
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_delete_photo:
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_add_user:
|
|
|
|
break;
|
|
|
|
case CODE_message_action_chat_delete_user:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_message (struct message *M) {
|
|
|
|
if (!M->service) {
|
|
|
|
if (M->message) { free (M->message); }
|
|
|
|
free_message_media (&M->media);
|
|
|
|
} else {
|
|
|
|
free_message_action (&M->action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void message_del_use (struct message *M) {
|
|
|
|
M->next_use->prev_use = M->prev_use;
|
|
|
|
M->prev_use->next_use = M->next_use;
|
|
|
|
}
|
|
|
|
|
|
|
|
void message_add_use (struct message *M) {
|
|
|
|
M->next_use = message_list.next_use;
|
|
|
|
M->prev_use = &message_list;
|
|
|
|
M->next_use->prev_use = M;
|
|
|
|
M->prev_use->next_use = M;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *fetch_alloc_message (void) {
|
|
|
|
struct message *M = malloc (sizeof (*M));
|
|
|
|
fetch_message (M);
|
|
|
|
struct message *M1 = tree_lookup_message (message_tree, M);
|
|
|
|
messages_allocated ++;
|
|
|
|
if (M1) {
|
|
|
|
message_del_use (M1);
|
|
|
|
free_message (M1);
|
|
|
|
memcpy (M1, M, sizeof (*M));
|
|
|
|
free (M);
|
|
|
|
message_add_use (M1);
|
|
|
|
messages_allocated --;
|
|
|
|
return M1;
|
|
|
|
} else {
|
|
|
|
message_add_use (M);
|
|
|
|
message_tree = tree_insert_message (message_tree, M, lrand48 ());
|
|
|
|
return M;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-16 15:19:39 -04:00
|
|
|
struct message *fetch_alloc_message_short (void) {
|
|
|
|
struct message *M = malloc (sizeof (*M));
|
|
|
|
fetch_message_short (M);
|
|
|
|
struct message *M1 = tree_lookup_message (message_tree, M);
|
|
|
|
messages_allocated ++;
|
|
|
|
if (M1) {
|
|
|
|
message_del_use (M1);
|
|
|
|
free_message (M1);
|
|
|
|
memcpy (M1, M, sizeof (*M));
|
|
|
|
free (M);
|
|
|
|
message_add_use (M1);
|
|
|
|
messages_allocated --;
|
|
|
|
return M1;
|
|
|
|
} else {
|
|
|
|
message_add_use (M);
|
|
|
|
message_tree = tree_insert_message (message_tree, M, lrand48 ());
|
|
|
|
return M;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *fetch_alloc_message_short_chat (void) {
|
|
|
|
struct message *M = malloc (sizeof (*M));
|
|
|
|
fetch_message_short_chat (M);
|
|
|
|
if (verbosity >= 2) {
|
|
|
|
logprintf ("Read message with id %d\n", M->id);
|
|
|
|
}
|
|
|
|
struct message *M1 = tree_lookup_message (message_tree, M);
|
|
|
|
messages_allocated ++;
|
|
|
|
if (M1) {
|
|
|
|
message_del_use (M1);
|
|
|
|
free_message (M1);
|
|
|
|
memcpy (M1, M, sizeof (*M));
|
|
|
|
free (M);
|
|
|
|
message_add_use (M1);
|
|
|
|
messages_allocated --;
|
|
|
|
return M1;
|
|
|
|
} else {
|
|
|
|
message_add_use (M);
|
|
|
|
message_tree = tree_insert_message (message_tree, M, lrand48 ());
|
|
|
|
return M;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 13:26:25 -04:00
|
|
|
struct chat *fetch_alloc_chat (void) {
|
2013-10-24 13:04:44 -04:00
|
|
|
int data[2];
|
|
|
|
prefetch_data (data, 8);
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *U = user_chat_get (MK_CHAT (data[1]));
|
2013-10-24 13:04:44 -04:00
|
|
|
if (U) {
|
|
|
|
fetch_chat (&U->chat);
|
|
|
|
return &U->chat;
|
|
|
|
} else {
|
|
|
|
chats_allocated ++;
|
|
|
|
U = malloc (sizeof (*U));
|
|
|
|
memset (U, 0, sizeof (*U));
|
|
|
|
fetch_chat (&U->chat);
|
|
|
|
peer_tree = tree_insert_peer (peer_tree, U, lrand48 ());
|
|
|
|
Peers[(chat_num ++) + user_num] = U;
|
|
|
|
return &U->chat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct chat *fetch_alloc_chat_full (void) {
|
|
|
|
int data[3];
|
|
|
|
prefetch_data (data, 12);
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *U = user_chat_get (MK_CHAT (data[2]));
|
2013-10-24 13:04:44 -04:00
|
|
|
if (U) {
|
|
|
|
fetch_chat_full (&U->chat);
|
|
|
|
return &U->chat;
|
2013-10-14 13:26:25 -04:00
|
|
|
} else {
|
2013-10-24 13:04:44 -04:00
|
|
|
chats_allocated ++;
|
|
|
|
U = malloc (sizeof (*U));
|
|
|
|
memset (U, 0, sizeof (*U));
|
2013-10-31 19:18:34 -04:00
|
|
|
U->id = MK_CHAT (data[2]);
|
2013-10-14 13:26:25 -04:00
|
|
|
peer_tree = tree_insert_peer (peer_tree, U, lrand48 ());
|
2013-10-24 13:04:44 -04:00
|
|
|
fetch_chat_full (&U->chat);
|
2013-10-14 13:26:25 -04:00
|
|
|
Peers[(chat_num ++) + user_num] = U;
|
|
|
|
return &U->chat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_chat (struct chat *U) {
|
|
|
|
if (U->title) { free (U->title); }
|
|
|
|
if (U->print_title) { free (U->print_title); }
|
|
|
|
}
|
|
|
|
|
2013-10-13 06:18:08 -04:00
|
|
|
int print_stat (char *s, int len) {
|
|
|
|
return snprintf (s, len,
|
2013-10-14 13:26:25 -04:00
|
|
|
"users_allocated\t%d\n"
|
|
|
|
"chats_allocated\t%d\n"
|
|
|
|
"messages_allocated\t%d\n",
|
|
|
|
users_allocated,
|
|
|
|
chats_allocated,
|
|
|
|
messages_allocated
|
|
|
|
);
|
2013-10-13 06:18:08 -04:00
|
|
|
}
|
2013-10-16 15:19:39 -04:00
|
|
|
|
2013-10-31 19:18:34 -04:00
|
|
|
peer_t *user_chat_get (peer_id_t id) {
|
|
|
|
peer_t U;
|
2013-10-16 15:19:39 -04:00
|
|
|
U.id = id;
|
|
|
|
return tree_lookup_peer (peer_tree, &U);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct message *message_get (int id) {
|
|
|
|
struct message M;
|
|
|
|
M.id = id;
|
|
|
|
return tree_lookup_message (message_tree, &M);
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_message_id (struct message *M, int id) {
|
|
|
|
message_tree = tree_delete_message (message_tree, M);
|
|
|
|
M->id = id;
|
|
|
|
message_tree = tree_insert_message (message_tree, M, lrand48 ());
|
|
|
|
}
|
2013-10-18 15:30:24 -04:00
|
|
|
|
|
|
|
void message_insert (struct message *M) {
|
|
|
|
message_add_use (M);
|
|
|
|
message_tree = tree_insert_message (message_tree, M, lrand48 ());
|
|
|
|
}
|