2013-11-30 05:12:51 -05: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
|
|
|
|
*/
|
2014-01-13 08:05:25 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2014-08-13 08:56:55 -04:00
|
|
|
# include "config.h"
|
2014-01-13 08:05:25 -05:00
|
|
|
#endif
|
|
|
|
|
2013-11-12 19:11:25 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2013-11-29 18:15:10 -05:00
|
|
|
#include <sys/file.h>
|
2013-11-12 19:11:25 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2013-12-23 06:10:53 -05:00
|
|
|
#include <openssl/bn.h>
|
2013-11-12 19:11:25 -05:00
|
|
|
|
|
|
|
#include "binlog.h"
|
|
|
|
#include "mtproto-common.h"
|
|
|
|
#include "net.h"
|
2013-11-14 19:08:24 -05:00
|
|
|
#include "include.h"
|
2013-11-21 14:35:49 -05:00
|
|
|
#include "mtproto-client.h"
|
2014-08-13 08:56:55 -04:00
|
|
|
#include "loop.h"
|
|
|
|
|
|
|
|
#include "tgl.h"
|
2014-08-14 14:03:33 -04:00
|
|
|
#include "auto.h"
|
2013-11-21 14:35:49 -05:00
|
|
|
|
2014-08-14 18:16:01 -04:00
|
|
|
#include "structures.h"
|
|
|
|
|
2013-11-21 14:35:49 -05:00
|
|
|
#include <openssl/sha.h>
|
2013-11-12 19:11:25 -05:00
|
|
|
|
|
|
|
#define BINLOG_BUFFER_SIZE (1 << 20)
|
2014-08-13 08:56:55 -04:00
|
|
|
static int binlog_buffer[BINLOG_BUFFER_SIZE];
|
|
|
|
static int *rptr;
|
|
|
|
static int *wptr;
|
2014-08-13 11:55:16 -04:00
|
|
|
static int binlog_fd;
|
2014-08-13 08:56:55 -04:00
|
|
|
|
2013-11-21 16:40:31 -05:00
|
|
|
|
2013-11-12 19:11:25 -05:00
|
|
|
#define MAX_LOG_EVENT_SIZE (1 << 17)
|
|
|
|
|
|
|
|
char *get_binlog_file_name (void);
|
2014-08-13 11:55:16 -04:00
|
|
|
|
|
|
|
static void *alloc_log_event (int l UU) {
|
2013-11-14 19:08:24 -05:00
|
|
|
return binlog_buffer;
|
|
|
|
}
|
2013-11-12 19:11:25 -05:00
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
static long long binlog_pos;
|
2013-11-21 14:35:49 -05:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_start (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_dc_option (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
int id = fetch_int ();
|
|
|
|
int l1 = prefetch_strlen ();
|
|
|
|
assert (l1 >= 0);
|
|
|
|
char *name = fetch_str (l1);
|
|
|
|
int l2 = prefetch_strlen ();
|
|
|
|
assert (l2 >= 0);
|
|
|
|
char *ip = fetch_str (l2);
|
|
|
|
int port = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
vlogprintf (E_NOTICE, "DC%d '%.*s' update: %.*s:%d\n", id, l1, name, l2, ip, port);
|
2014-08-12 11:15:04 -04:00
|
|
|
|
2014-08-14 14:03:33 -04:00
|
|
|
tglmp_alloc_dc (id, tstrndup (ip, l2), port);
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_auth_key (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
int num = fetch_int ();
|
|
|
|
assert (num >= 0 && num <= MAX_DC_ID);
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (tgl_state.DC_list[num]);
|
|
|
|
tgl_state.DC_list[num]->auth_key_id = fetch_long ();
|
|
|
|
fetch_ints (tgl_state.DC_list[num]->auth_key, 64);
|
|
|
|
tgl_state.DC_list[num]->flags |= 1;
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_default_dc (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
int num = fetch_int ();
|
|
|
|
assert (num >= 0 && num <= MAX_DC_ID);
|
2014-08-13 11:55:16 -04:00
|
|
|
tgl_state.DC_working = tgl_state.DC_list[num];
|
|
|
|
tgl_state.dc_working_num = num;
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_our_id (void *extra) {
|
2014-08-13 08:56:55 -04:00
|
|
|
tgl_state.our_id = fetch_int ();
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.callback.our_id) {
|
|
|
|
tgl_state.callback.our_id (tgl_state.our_id);
|
|
|
|
}
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_dc_signed (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
int num = fetch_int ();
|
|
|
|
assert (num >= 0 && num <= MAX_DC_ID);
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (tgl_state.DC_list[num]);
|
|
|
|
tgl_state.DC_list[num]->has_auth = 1;
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_dc_salt (void *extra) {
|
2014-08-12 11:15:04 -04:00
|
|
|
int num = fetch_int ();
|
|
|
|
assert (num >= 0 && num <= MAX_DC_ID);
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (tgl_state.DC_list[num]);
|
|
|
|
tgl_state.DC_list[num]->server_salt = fetch_long ();
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_dh_params (void *extra) {
|
|
|
|
if (tgl_state.encr_prime) { tfree (tgl_state.encr_prime, 256); }
|
|
|
|
tgl_state.encr_root = fetch_int ();
|
|
|
|
tgl_state.encr_prime = talloc (256);
|
|
|
|
fetch_ints (tgl_state.encr_prime, 64);
|
|
|
|
tgl_state.encr_param_version = fetch_int ();
|
2014-08-12 14:05:18 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_pts (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
int new_pts = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (new_pts >= tgl_state.pts);
|
|
|
|
tgl_state.pts = new_pts;
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_qts (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
int new_qts = fetch_int ();
|
2014-08-12 21:22:15 -04:00
|
|
|
//assert (new_qts >= qts);
|
2014-08-13 11:55:16 -04:00
|
|
|
tgl_state.qts = new_qts;
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_date (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
int new_date = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (new_date >= tgl_state.date);
|
|
|
|
tgl_state.date = new_date;
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_seq (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
int new_seq = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (new_seq >= tgl_state.seq);
|
|
|
|
tgl_state.seq = new_seq;
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2014-08-12 11:15:04 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_add (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *_U = tgl_peer_get (id);
|
2014-08-12 11:15:04 -04:00
|
|
|
if (!_U) {
|
|
|
|
_U = talloc0 (sizeof (*_U));
|
|
|
|
_U->id = id;
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_insert_user (_U);
|
2014-08-12 11:15:04 -04:00
|
|
|
} else {
|
|
|
|
assert (!(_U->flags & FLAG_CREATED));
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_user *U = (void *)_U;
|
2014-08-12 11:15:04 -04:00
|
|
|
U->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
if (tgl_get_peer_id (id) == tgl_state.our_id) {
|
2014-08-12 11:15:04 -04:00
|
|
|
U->flags |= FLAG_USER_SELF;
|
|
|
|
}
|
|
|
|
U->first_name = fetch_str_dup ();
|
|
|
|
U->last_name = fetch_str_dup ();
|
|
|
|
assert (!U->print_name);
|
2014-08-20 18:33:19 -04:00
|
|
|
U->print_name = tgl_state.callback.create_print_name (U->id, U->first_name, U->last_name, 0, 0);
|
2014-08-12 11:15:04 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name ((void *)U);
|
2014-08-12 11:15:04 -04:00
|
|
|
U->access_hash = fetch_long ();
|
|
|
|
U->phone = fetch_str_dup ();
|
|
|
|
if (fetch_int ()) {
|
|
|
|
U->flags |= FLAG_USER_CONTACT;
|
|
|
|
}
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update (U, TGL_UPDATE_CREATED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_delete (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-12 11:15:04 -04:00
|
|
|
assert (U);
|
|
|
|
U->flags |= FLAG_DELETED;
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_DELETED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_access_hash (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
U->user.access_hash = fetch_long ();
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_ACCESS_HASH);
|
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_phone (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
if (U->user.phone) {
|
|
|
|
tfree_str (U->user.phone);
|
|
|
|
}
|
|
|
|
U->user.phone = fetch_str_dup ();
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_PHONE);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_friend (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
if (U->user.phone) {
|
|
|
|
tfree_str (U->user.phone);
|
|
|
|
}
|
|
|
|
int friend = fetch_int ();
|
|
|
|
if (friend) { U->flags |= FLAG_USER_CONTACT; }
|
|
|
|
else { U->flags &= ~FLAG_USER_CONTACT; }
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_CONTACT);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_full_photo (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
if (U->flags & FLAG_HAS_PHOTO) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tgls_free_photo (&U->user.photo);
|
2014-08-11 17:15:22 -04:00
|
|
|
}
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_photo (&U->user.photo);
|
2014-08-11 17:15:22 -04:00
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_PHOTO);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_blocked (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
|
|
|
|
U->user.blocked = fetch_int ();
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_BLOCKED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_real_name (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
2014-08-21 11:38:51 -04:00
|
|
|
assert (U->flags & FLAG_CREATED);
|
2014-08-11 17:15:22 -04:00
|
|
|
|
|
|
|
if (U->user.real_first_name) { tfree_str (U->user.real_first_name); }
|
|
|
|
if (U->user.real_last_name) { tfree_str (U->user.real_last_name); }
|
|
|
|
U->user.real_first_name = fetch_str_dup ();
|
|
|
|
U->user.real_last_name = fetch_str_dup ();
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_REAL_NAME);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_name (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (U);
|
|
|
|
|
|
|
|
if (U->user.first_name) { tfree_str (U->user.first_name); }
|
|
|
|
if (U->user.last_name) { tfree_str (U->user.last_name); }
|
|
|
|
U->user.first_name = fetch_str_dup ();
|
|
|
|
U->user.last_name = fetch_str_dup ();
|
|
|
|
if (U->print_name) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_delete_name (U);
|
2014-08-12 17:32:11 -04:00
|
|
|
tfree_str (U->print_name);
|
|
|
|
}
|
2014-08-20 18:33:19 -04:00
|
|
|
U->print_name = tgl_state.callback.create_print_name (U->id, U->user.first_name, U->user.last_name, 0, 0);
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name ((void *)U);
|
2014-08-12 17:32:11 -04:00
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_NAME);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_user_set_photo (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_USER (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (U);
|
|
|
|
|
|
|
|
|
|
|
|
unsigned y = fetch_int ();
|
|
|
|
if (y == CODE_user_profile_photo_empty) {
|
|
|
|
U->user.photo_id = 0;
|
|
|
|
U->user.photo_big.dc = -2;
|
|
|
|
U->user.photo_small.dc = -2;
|
|
|
|
} else {
|
|
|
|
assert (y == CODE_user_profile_photo);
|
|
|
|
U->user.photo_id = fetch_long ();
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_file_location (&U->user.photo_small);
|
|
|
|
tglf_fetch_file_location (&U->user.photo_big);
|
2014-08-12 17:32:11 -04:00
|
|
|
}
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.user_update) {
|
|
|
|
tgl_state.callback.user_update ((void *)U, TGL_UPDATE_PHOTO);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_delete (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (_U);
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_secret_chat *U = &_U->encr_chat;
|
2014-08-11 17:15:22 -04:00
|
|
|
memset (U->key, 0, sizeof (U->key));
|
|
|
|
U->flags |= FLAG_DELETED;
|
|
|
|
U->state = sc_deleted;
|
|
|
|
if (U->nonce) {
|
|
|
|
tfree_secure (U->nonce, 256);
|
|
|
|
U->nonce = 0;
|
|
|
|
}
|
|
|
|
if (U->g_key) {
|
|
|
|
tfree_secure (U->g_key, 256);
|
|
|
|
U->g_key = 0;
|
|
|
|
}
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.secret_chat_update) {
|
|
|
|
tgl_state.callback.secret_chat_update (U, TGL_UPDATE_DELETED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_requested (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
if (!_U) {
|
|
|
|
_U = talloc0 (sizeof (*_U));
|
|
|
|
_U->id = id;
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_insert_encrypted_chat (_U);
|
2014-08-11 17:15:22 -04:00
|
|
|
} else {
|
|
|
|
assert (!(_U->flags & FLAG_CREATED));
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_secret_chat *U = (void *)_U;
|
2014-08-11 17:15:22 -04:00
|
|
|
U->access_hash = fetch_long ();
|
|
|
|
U->date = fetch_int ();
|
|
|
|
U->admin_id = fetch_int ();
|
|
|
|
U->user_id = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tgl_peer_t *Us = tgl_peer_get (TGL_MK_USER (U->user_id));
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (!U->print_name);
|
|
|
|
if (Us) {
|
2014-08-20 18:33:19 -04:00
|
|
|
U->print_name = tgl_state.callback.create_print_name (id, "!", Us->user.first_name, Us->user.last_name, 0);
|
2014-08-11 17:15:22 -04:00
|
|
|
} else {
|
|
|
|
static char buf[100];
|
|
|
|
tsnprintf (buf, 99, "user#%d", U->user_id);
|
2014-08-20 18:33:19 -04:00
|
|
|
U->print_name = tgl_state.callback.create_print_name (id, "!", buf, 0, 0);
|
2014-08-11 17:15:22 -04:00
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name ((void *)U);
|
2014-08-11 17:15:22 -04:00
|
|
|
U->g_key = talloc (256);
|
|
|
|
U->nonce = talloc (256);
|
|
|
|
fetch_ints (U->g_key, 64);
|
|
|
|
fetch_ints (U->nonce, 64);
|
|
|
|
|
|
|
|
U->flags |= FLAG_CREATED;
|
|
|
|
U->state = sc_request;
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.secret_chat_update) {
|
|
|
|
tgl_state.callback.secret_chat_update (U, TGL_UPDATE_REQUESTED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_set_access_hash (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
U->encr_chat.access_hash = fetch_long ();
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.callback.secret_chat_update) {
|
|
|
|
tgl_state.callback.secret_chat_update ((void *)U, TGL_UPDATE_ACCESS_HASH);
|
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_set_date (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
U->encr_chat.date = fetch_int ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_set_state (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (U);
|
|
|
|
U->encr_chat.state = fetch_int ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_accepted (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (_U);
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_secret_chat *U = &_U->encr_chat;
|
2014-08-11 17:15:22 -04:00
|
|
|
if (!U->g_key) {
|
|
|
|
U->g_key = talloc (256);
|
|
|
|
}
|
|
|
|
if (!U->nonce) {
|
|
|
|
U->nonce = talloc (256);
|
|
|
|
}
|
|
|
|
|
2014-08-12 21:22:15 -04:00
|
|
|
fetch_ints (U->g_key, 64);
|
|
|
|
fetch_ints (U->nonce, 64);
|
2014-08-11 17:15:22 -04:00
|
|
|
U->key_fingerprint = fetch_long ();
|
|
|
|
|
|
|
|
if (U->state == sc_waiting) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tgl_do_create_keys_end (U);
|
2014-08-11 17:15:22 -04:00
|
|
|
}
|
|
|
|
U->state = sc_ok;
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.secret_chat_update) {
|
|
|
|
tgl_state.callback.secret_chat_update (U, TGL_UPDATE_WORKING);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-11 17:15:22 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_set_key (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_U = tgl_peer_get (id);
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (_U);
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_secret_chat *U = &_U->encr_chat;
|
2014-08-11 17:15:22 -04:00
|
|
|
fetch_ints (U->key, 64);
|
|
|
|
U->key_fingerprint = fetch_long ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_encr_chat_init (void *extra) {
|
|
|
|
tgl_peer_t *P = talloc0 (sizeof (*P));
|
|
|
|
P->id = TGL_MK_ENCR_CHAT (fetch_int ());
|
|
|
|
assert (!tgl_peer_get (P->id));
|
2014-08-11 17:15:22 -04:00
|
|
|
P->encr_chat.user_id = fetch_int ();
|
2014-08-13 08:56:55 -04:00
|
|
|
P->encr_chat.admin_id = tgl_state.our_id;
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_insert_encrypted_chat (P);
|
|
|
|
tgl_peer_t *Us = tgl_peer_get (TGL_MK_USER (P->encr_chat.user_id));
|
2014-08-11 17:15:22 -04:00
|
|
|
assert (Us);
|
2014-08-20 18:33:19 -04:00
|
|
|
P->print_name = tgl_state.callback.create_print_name (P->id, "!", Us->user.first_name, Us->user.last_name, 0);
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name (P);
|
2014-08-11 17:15:22 -04:00
|
|
|
|
2014-08-12 21:22:15 -04:00
|
|
|
P->encr_chat.g_key = talloc (256);
|
2014-08-11 17:15:22 -04:00
|
|
|
fetch_ints (P->encr_chat.key, 64);
|
|
|
|
fetch_ints (P->encr_chat.g_key, 64);
|
|
|
|
P->flags |= FLAG_CREATED;
|
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.secret_chat_update) {
|
|
|
|
tgl_state.callback.secret_chat_update ((void *)P, TGL_UPDATE_CREATED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 11:15:04 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_create (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_C = tgl_peer_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!_C) {
|
|
|
|
_C = talloc0 (sizeof (*_C));
|
|
|
|
_C->id = id;
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_insert_chat (_C);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(_C->flags & FLAG_CREATED));
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_chat *C = &_C->chat;
|
2014-08-12 14:05:18 -04:00
|
|
|
C->flags = FLAG_CREATED | fetch_int ();
|
|
|
|
C->title = fetch_str_dup ();
|
|
|
|
assert (!C->print_title);
|
2014-08-20 18:33:19 -04:00
|
|
|
C->print_title = tgl_state.callback.create_print_name (id, C->title, 0, 0, 0);
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name ((void *)C);
|
2014-08-12 14:05:18 -04:00
|
|
|
C->users_num = fetch_int ();
|
|
|
|
C->date = fetch_int ();
|
|
|
|
C->version = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
fetch_data (&C->photo_big, sizeof (struct tgl_file_location));
|
|
|
|
fetch_data (&C->photo_small, sizeof (struct tgl_file_location));
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-19 08:57:55 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
|
|
|
tgl_state.callback.chat_update (C, TGL_UPDATE_CREATED);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_change_flags (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
C->chat.flags |= fetch_int ();
|
|
|
|
C->chat.flags &= ~fetch_int ();
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_FLAGS);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_title (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
|
|
|
|
if (C->chat.title) { tfree_str (C->chat.title); }
|
|
|
|
C->chat.title = fetch_str_dup ();
|
|
|
|
if (C->print_name) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_delete_name ((void *)C);
|
2014-08-12 14:05:18 -04:00
|
|
|
tfree_str (C->print_name);
|
|
|
|
}
|
2014-08-20 18:33:19 -04:00
|
|
|
C->print_name = tgl_state.callback.create_print_name (C->id, C->chat.title, 0, 0, 0);
|
2014-08-13 11:55:16 -04:00
|
|
|
tglp_peer_insert_name ((void *)C);
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_TITLE);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_photo (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
2014-08-13 11:55:16 -04:00
|
|
|
fetch_data (&C->photo_big, sizeof (struct tgl_file_location));
|
|
|
|
fetch_data (&C->photo_small, sizeof (struct tgl_file_location));
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_PHOTO);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_date (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
C->chat.date = fetch_int ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_version (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
C->chat.version = fetch_int ();
|
|
|
|
C->chat.users_num = fetch_int ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_admin (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
C->chat.admin_id = fetch_int ();
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_ADMIN);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_participants (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
C->chat.user_list_version = fetch_int ();
|
|
|
|
if (C->chat.user_list) { tfree (C->chat.user_list, 12 * C->chat.user_list_size); }
|
|
|
|
C->chat.user_list_size = fetch_int ();
|
|
|
|
C->chat.user_list = talloc (12 * C->chat.user_list_size);
|
|
|
|
fetch_ints (C->chat.user_list, 3 * C->chat.user_list_size);
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_MEMBERS);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_set_full_photo (void *extra) {
|
|
|
|
tgl_peer_t *C = tgl_peer_get (TGL_MK_CHAT (fetch_int ()));
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
|
|
|
|
assert (C && (C->flags & FLAG_CREATED));
|
|
|
|
if (C->flags & FLAG_HAS_PHOTO) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tgls_free_photo (&C->chat.photo);
|
2014-08-12 14:05:18 -04:00
|
|
|
}
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_photo (&C->chat.photo);
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update ((void *)C, TGL_UPDATE_PHOTO);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_add_participant (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_C = tgl_peer_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (_C && (_C->flags & FLAG_CREATED));
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_chat *C = &_C->chat;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
|
|
|
int version = fetch_int ();
|
|
|
|
int user = fetch_int ();
|
|
|
|
int inviter = fetch_int ();
|
|
|
|
int date = fetch_int ();
|
|
|
|
assert (C->user_list_version < version);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < C->user_list_size; i++) {
|
|
|
|
assert (C->user_list[i].user_id != user);
|
|
|
|
}
|
|
|
|
|
|
|
|
C->user_list_size ++;
|
|
|
|
C->user_list = trealloc (C->user_list, 12 * C->user_list_size - 12, 12 * C->user_list_size);
|
|
|
|
C->user_list[C->user_list_size - 1].user_id = user;
|
|
|
|
C->user_list[C->user_list_size - 1].inviter_id = inviter;
|
|
|
|
C->user_list[C->user_list_size - 1].date = date;
|
|
|
|
C->user_list_version = version;
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update (C, TGL_UPDATE_MEMBERS);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_chat_del_participant (void *extra) {
|
|
|
|
tgl_peer_id_t id = TGL_MK_CHAT (fetch_int ());
|
|
|
|
tgl_peer_t *_C = tgl_peer_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
assert (_C && (_C->flags & FLAG_CREATED));
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_chat *C = &_C->chat;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
|
|
|
int version = fetch_int ();
|
|
|
|
int user = fetch_int ();
|
|
|
|
assert (C->user_list_version < version);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < C->user_list_size; i++) {
|
|
|
|
if (C->user_list[i].user_id == user) {
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_chat_user t;
|
2014-08-12 14:05:18 -04:00
|
|
|
t = C->user_list[i];
|
|
|
|
C->user_list[i] = C->user_list[C->user_list_size - 1];
|
|
|
|
C->user_list[C->user_list_size - 1] = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert (C->user_list[C->user_list_size - 1].user_id == user);
|
|
|
|
C->user_list_size --;
|
|
|
|
C->user_list = trealloc (C->user_list, 12 * C->user_list_size + 12, 12 * C->user_list_size);
|
|
|
|
C->user_list_version = version;
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
if (tgl_state.callback.chat_update) {
|
2014-08-19 08:57:55 -04:00
|
|
|
tgl_state.callback.chat_update (C, TGL_UPDATE_MEMBERS);
|
2014-08-18 12:39:04 -04:00
|
|
|
}
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_text (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
long long id = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-12 14:05:18 -04:00
|
|
|
M->flags |= FLAG_ENCRYPTED;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_send_message_text (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
long long id = fetch_long ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-12 14:05:18 -04:00
|
|
|
M->flags |= FLAG_ENCRYPTED;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
|
|
|
tglm_message_insert_unsent (M);
|
2014-08-12 14:05:18 -04:00
|
|
|
M->flags |= FLAG_PENDING;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_send_message_action_encr (void *extra) {
|
2014-08-12 21:22:15 -04:00
|
|
|
long long id = fetch_long ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 21:22:15 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 21:22:15 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
|
|
|
|
M->flags |= FLAG_CREATED | FLAG_ENCRYPTED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 21:22:15 -04:00
|
|
|
|
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 21:22:15 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_action_encrypted (&M->action);
|
2014-08-12 21:22:15 -04:00
|
|
|
|
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 21:22:15 -04:00
|
|
|
M->service = 1;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
|
|
|
tglm_message_insert_unsent (M);
|
2014-08-12 21:22:15 -04:00
|
|
|
M->flags |= FLAG_PENDING;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_text_fwd (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
long long id = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-12 14:05:18 -04:00
|
|
|
M->flags |= FLAG_ENCRYPTED;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->fwd_from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->fwd_date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
if (t == TGL_PEER_ENCR_CHAT) {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
2014-08-18 12:39:04 -04:00
|
|
|
M->media.type = tgl_message_media_none;
|
2014-08-12 14:05:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 14:05:18 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_media (void *extra) {
|
2014-08-12 14:05:18 -04:00
|
|
|
int id = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_media (&M->media);
|
2014-08-12 14:05:18 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_media_encr (void *extra) {
|
2014-08-12 21:22:15 -04:00
|
|
|
long long id = fetch_long ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 14:05:18 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED | FLAG_ENCRYPTED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 14:05:18 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_media_encrypted (&M->media);
|
|
|
|
tglf_fetch_encrypted_message_file (&M->media);
|
2014-08-12 14:05:18 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 14:05:18 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_media_fwd (void *extra) {
|
2014-08-12 17:32:11 -04:00
|
|
|
int id = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->fwd_from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->fwd_date = fetch_int ();
|
|
|
|
|
|
|
|
int l = prefetch_strlen ();
|
|
|
|
M->message = talloc (l + 1);
|
|
|
|
memcpy (M->message, fetch_str (l), l);
|
|
|
|
M->message[l] = 0;
|
|
|
|
M->message_len = l;
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_media (&M->media);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 17:32:11 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_service (void *extra) {
|
2014-08-12 17:32:11 -04:00
|
|
|
int id = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_action (&M->action);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 17:32:11 -04:00
|
|
|
M->service = 1;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_service_encr (void *extra) {
|
2014-08-12 21:22:15 -04:00
|
|
|
long long id = fetch_long ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED | FLAG_ENCRYPTED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
assert (t == TGL_PEER_ENCR_CHAT);
|
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->date = fetch_int ();
|
2014-08-12 21:22:15 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_secret_chat *E = (void *)tgl_peer_get (M->to_id);
|
2014-08-12 21:22:15 -04:00
|
|
|
assert (E);
|
2014-08-12 17:32:11 -04:00
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_action_encrypted (&M->action);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 17:32:11 -04:00
|
|
|
M->service = 1;
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
if (!M->out && M->action.type == CODE_decrypted_message_action_notify_layer) {
|
|
|
|
E->layer = M->action.layer;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_create_message_service_fwd (void *extra) {
|
2014-08-12 17:32:11 -04:00
|
|
|
int id = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
struct tgl_message *M = tgl_message_get (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
if (!M) {
|
2014-08-13 11:55:16 -04:00
|
|
|
M = tglm_message_alloc (id);
|
2014-08-12 17:32:11 -04:00
|
|
|
} else {
|
|
|
|
assert (!(M->flags & FLAG_CREATED));
|
|
|
|
}
|
|
|
|
M->flags |= FLAG_CREATED;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
int t = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
M->to_id = tgl_set_peer_id (t, fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->date = fetch_int ();
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
M->fwd_from_id = TGL_MK_USER (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
M->fwd_date = fetch_int ();
|
|
|
|
|
2014-08-13 08:56:55 -04:00
|
|
|
tglf_fetch_message_action (&M->action);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->unread = 1;
|
2014-08-13 11:55:16 -04:00
|
|
|
M->out = tgl_get_peer_id (M->from_id) == tgl_state.our_id;
|
2014-08-12 17:32:11 -04:00
|
|
|
M->service = 1;
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert (M);
|
2014-08-21 11:38:51 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fetch_comb_binlog_message_set_unread_long (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
|
|
|
assert (M);
|
|
|
|
if (M->unread) {
|
|
|
|
M->unread = 0;
|
|
|
|
if (tgl_state.callback.marked_read) {
|
|
|
|
tgl_state.callback.marked_read (1, &M);
|
|
|
|
}
|
|
|
|
}
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_message_set_unread (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_int ());
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (M);
|
2014-08-21 11:38:51 -04:00
|
|
|
if (M->unread) {
|
|
|
|
M->unread = 0;
|
|
|
|
if (tgl_state.callback.marked_read) {
|
|
|
|
tgl_state.callback.marked_read (1, &M);
|
|
|
|
}
|
|
|
|
}
|
2014-08-12 17:32:11 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_message_sent (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (M);
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_remove_unsent (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->flags &= ~FLAG_PENDING;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_set_msg_id (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (M);
|
|
|
|
if (M->flags & FLAG_PENDING) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_remove_unsent (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->flags &= ~FLAG_PENDING;
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_remove_tree (M);
|
|
|
|
tglm_message_del_peer (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->id = fetch_int ();
|
2014-08-13 11:55:16 -04:00
|
|
|
if (tgl_message_get (M->id)) {
|
|
|
|
tgls_free_message (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
tfree (M, sizeof (*M));
|
|
|
|
} else {
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_insert_tree (M);
|
|
|
|
tglm_message_add_peer (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static int fetch_comb_binlog_delete_msg (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (M);
|
|
|
|
if (M->flags & FLAG_PENDING) {
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_remove_unsent (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
M->flags &= ~FLAG_PENDING;
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
tglm_message_remove_tree (M);
|
|
|
|
tglm_message_del_peer (M);
|
|
|
|
tglm_message_del_use (M);
|
|
|
|
tgls_free_message (M);
|
2014-08-12 17:32:11 -04:00
|
|
|
tfree (M, sizeof (*M));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-20 12:36:45 -04:00
|
|
|
|
|
|
|
static int fetch_comb_binlog_msg_seq_update (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
|
|
|
assert (M);
|
|
|
|
tgl_state.seq ++;
|
|
|
|
|
|
|
|
if (tgl_state.callback.msg_receive) {
|
|
|
|
tgl_state.callback.msg_receive (M);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fetch_comb_binlog_msg_update (void *extra) {
|
|
|
|
struct tgl_message *M = tgl_message_get (fetch_long ());
|
|
|
|
assert (M);
|
|
|
|
|
|
|
|
if (tgl_state.callback.msg_receive) {
|
|
|
|
tgl_state.callback.msg_receive (M);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-12 17:32:11 -04:00
|
|
|
#define FETCH_COMBINATOR_FUNCTION(NAME) \
|
|
|
|
case CODE_ ## NAME:\
|
|
|
|
ok = fetch_comb_ ## NAME (0); \
|
|
|
|
break; \
|
|
|
|
|
2014-08-12 14:05:18 -04:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static void replay_log_event (void) {
|
2013-11-12 19:11:25 -05:00
|
|
|
assert (rptr < wptr);
|
|
|
|
int op = *rptr;
|
|
|
|
|
2014-08-13 21:31:24 -04:00
|
|
|
vlogprintf (E_DEBUG, "replay_log_event: log_pos=%lld, op=0x%08x\n", binlog_pos, op);
|
2013-11-29 16:43:56 -05:00
|
|
|
|
|
|
|
in_ptr = rptr;
|
|
|
|
in_end = wptr;
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (skip_type_any (TYPE_TO_PARAM(binlog_update)) >= 0);
|
|
|
|
in_end = in_ptr;
|
|
|
|
in_ptr = rptr;
|
2013-11-29 16:43:56 -05:00
|
|
|
|
2014-08-12 17:32:11 -04:00
|
|
|
int ok = -1;
|
|
|
|
in_ptr ++;
|
2013-11-14 19:08:24 -05:00
|
|
|
|
2014-08-12 17:32:11 -04:00
|
|
|
switch (op) {
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_start)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_dc_option)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_auth_key)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_default_dc)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_our_id)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_dc_signed)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_dc_salt)
|
|
|
|
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_dh_params)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_pts)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_qts)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_date)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_seq)
|
|
|
|
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_add)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_delete)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_access_hash)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_phone)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_friend)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_full_photo)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_blocked)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_name)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_photo)
|
|
|
|
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_user_set_real_name)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_delete)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_requested)
|
2014-08-12 17:51:16 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_set_access_hash)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_set_date)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_set_state)
|
2014-08-12 17:32:11 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_accepted)
|
2014-08-12 17:51:16 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_set_key)
|
2014-08-12 17:32:11 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_encr_chat_init)
|
|
|
|
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_create)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_change_flags)
|
2014-08-12 17:51:16 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_title)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_photo)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_date)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_version)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_admin)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_participants)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_set_full_photo)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_add_participant)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_chat_del_participant)
|
2014-08-12 17:32:11 -04:00
|
|
|
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_text)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_send_message_text)
|
2014-08-12 21:22:15 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_send_message_action_encr)
|
2014-08-12 17:32:11 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_text_fwd)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_media)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_media_encr)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_media_fwd)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_service)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_service_encr)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_create_message_service_fwd)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_message_set_unread)
|
2014-08-21 11:38:51 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_message_set_unread_long)
|
2014-08-12 17:32:11 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_message_sent)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_set_msg_id)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_delete_msg)
|
2014-08-20 12:36:45 -04:00
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_msg_seq_update)
|
|
|
|
FETCH_COMBINATOR_FUNCTION (binlog_msg_update)
|
2014-08-12 17:32:11 -04:00
|
|
|
default:
|
2014-08-13 21:31:24 -04:00
|
|
|
vlogprintf (E_ERROR, "Unknown op 0x%08x\n", op);
|
2013-11-14 19:08:24 -05:00
|
|
|
assert (0);
|
2013-11-12 19:11:25 -05:00
|
|
|
}
|
2014-08-12 17:32:11 -04:00
|
|
|
assert (ok >= 0);
|
|
|
|
|
|
|
|
assert (in_ptr == in_end);
|
|
|
|
binlog_pos += (in_ptr - rptr) * 4;
|
|
|
|
rptr = in_ptr;
|
2013-11-12 19:11:25 -05:00
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static void create_new_binlog (void) {
|
2013-11-12 19:11:25 -05:00
|
|
|
static int s[1000];
|
|
|
|
packet_ptr = s;
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_start);
|
2013-11-21 14:35:49 -05:00
|
|
|
out_int (CODE_binlog_dc_option);
|
2013-11-14 19:08:24 -05:00
|
|
|
out_int (1);
|
2013-11-12 19:11:25 -05:00
|
|
|
out_string ("");
|
2014-08-13 11:55:16 -04:00
|
|
|
out_string (tgl_state.test_mode ? TG_SERVER_TEST : TG_SERVER);
|
2013-11-12 19:11:25 -05:00
|
|
|
out_int (443);
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_default_dc);
|
2013-11-14 19:08:24 -05:00
|
|
|
out_int (1);
|
2013-11-12 19:11:25 -05:00
|
|
|
|
2013-11-14 19:08:24 -05:00
|
|
|
int fd = open (get_binlog_file_name (), O_WRONLY | O_EXCL | O_CREAT, 0600);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror ("Write new binlog");
|
|
|
|
exit (2);
|
|
|
|
}
|
2013-11-12 19:11:25 -05:00
|
|
|
assert (write (fd, s, (packet_ptr - s) * 4) == (packet_ptr - s) * 4);
|
|
|
|
close (fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void tgl_replay_log (void) {
|
2013-11-12 19:11:25 -05:00
|
|
|
if (access (get_binlog_file_name (), F_OK) < 0) {
|
2013-11-14 19:08:24 -05:00
|
|
|
printf ("No binlog found. Creating new one\n");
|
2013-11-12 19:11:25 -05:00
|
|
|
create_new_binlog ();
|
|
|
|
}
|
|
|
|
int fd = open (get_binlog_file_name (), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror ("binlog open");
|
|
|
|
exit (2);
|
|
|
|
}
|
2013-11-14 19:08:24 -05:00
|
|
|
int end = 0;
|
2013-11-12 19:11:25 -05:00
|
|
|
while (1) {
|
|
|
|
if (!end && wptr - rptr < MAX_LOG_EVENT_SIZE / 4) {
|
|
|
|
if (wptr == rptr) {
|
|
|
|
wptr = rptr = binlog_buffer;
|
|
|
|
} else {
|
|
|
|
int x = wptr - rptr;
|
|
|
|
memcpy (binlog_buffer, rptr, 4 * x);
|
2013-11-29 18:15:10 -05:00
|
|
|
wptr -= (rptr - binlog_buffer);
|
|
|
|
rptr = binlog_buffer;
|
2013-11-12 19:11:25 -05:00
|
|
|
}
|
|
|
|
int l = (binlog_buffer + BINLOG_BUFFER_SIZE - wptr) * 4;
|
|
|
|
int k = read (fd, wptr, l);
|
|
|
|
if (k < 0) {
|
|
|
|
perror ("read binlog");
|
|
|
|
exit (2);
|
|
|
|
}
|
|
|
|
assert (!(k & 3));
|
|
|
|
if (k < l) {
|
|
|
|
end = 1;
|
|
|
|
}
|
|
|
|
wptr += (k / 4);
|
|
|
|
}
|
|
|
|
if (wptr == rptr) { break; }
|
|
|
|
replay_log_event ();
|
|
|
|
}
|
|
|
|
close (fd);
|
2013-11-14 19:08:24 -05:00
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void tgl_reopen_binlog_for_writing (void) {
|
2013-11-14 19:08:24 -05:00
|
|
|
binlog_fd = open (get_binlog_file_name (), O_WRONLY);
|
|
|
|
if (binlog_fd < 0) {
|
|
|
|
perror ("binlog open");
|
|
|
|
exit (2);
|
|
|
|
}
|
2013-11-29 18:15:10 -05:00
|
|
|
|
|
|
|
assert (lseek (binlog_fd, binlog_pos, SEEK_SET) == binlog_pos);
|
|
|
|
if (flock (binlog_fd, LOCK_EX | LOCK_NB) < 0) {
|
|
|
|
perror ("get lock");
|
|
|
|
exit (2);
|
|
|
|
}
|
2013-11-14 19:08:24 -05:00
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
static void add_log_event (const int *data, int len) {
|
2014-08-13 21:31:24 -04:00
|
|
|
vlogprintf (E_DEBUG, "Add log event: magic = 0x%08x, len = %d\n", data[0], len);
|
2013-11-21 14:35:49 -05:00
|
|
|
assert (!(len & 3));
|
|
|
|
rptr = (void *)data;
|
|
|
|
wptr = rptr + (len / 4);
|
|
|
|
int *in = in_ptr;
|
|
|
|
int *end = in_end;
|
|
|
|
replay_log_event ();
|
|
|
|
if (rptr != wptr) {
|
2014-08-13 21:31:24 -04:00
|
|
|
vlogprintf (E_ERROR, "Unread %lld ints. Len = %d\n", (long long)(wptr - rptr), len);
|
2013-11-21 14:35:49 -05:00
|
|
|
assert (rptr == wptr);
|
|
|
|
}
|
2014-08-13 11:55:16 -04:00
|
|
|
if (tgl_state.binlog_enabled) {
|
2013-11-29 16:43:56 -05:00
|
|
|
assert (binlog_fd > 0);
|
2013-11-21 14:35:49 -05:00
|
|
|
assert (write (binlog_fd, data, len) == len);
|
|
|
|
}
|
|
|
|
in_ptr = in;
|
|
|
|
in_end = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_auth_key_id (int num, unsigned char *buf) {
|
|
|
|
static unsigned char sha1_buffer[20];
|
|
|
|
SHA1 (buf, 256, sha1_buffer);
|
|
|
|
long long fingerprint = *(long long *)(sha1_buffer + 12);
|
|
|
|
int *ev = alloc_log_event (8 + 8 + 256);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_auth_key;
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[1] = num;
|
|
|
|
*(long long *)(ev + 2) = fingerprint;
|
|
|
|
memcpy (ev + 4, buf, 256);
|
|
|
|
add_log_event (ev, 8 + 8 + 256);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_our_id (int id) {
|
2014-08-13 08:56:55 -04:00
|
|
|
if (tgl_state.our_id) {
|
|
|
|
assert (tgl_state.our_id == id);
|
|
|
|
return;
|
|
|
|
}
|
2013-11-21 14:35:49 -05:00
|
|
|
int *ev = alloc_log_event (8);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_our_id;
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[1] = id;
|
|
|
|
add_log_event (ev, 8);
|
2014-08-14 18:16:01 -04:00
|
|
|
//write_auth_file ();
|
2013-11-21 14:35:49 -05:00
|
|
|
}
|
|
|
|
|
2014-08-12 17:32:11 -04:00
|
|
|
void bl_do_user_add (int id, const char *f, int fl, const char *l, int ll, long long access_token, const char *p, int pl, int contact) {
|
2013-11-21 14:35:49 -05:00
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_user_add);
|
2013-11-21 14:35:49 -05:00
|
|
|
out_int (id);
|
|
|
|
out_cstring (f ? f : "", fl);
|
|
|
|
out_cstring (l ? l : "", ll);
|
|
|
|
out_long (access_token);
|
|
|
|
out_cstring (p ? p : "", pl);
|
|
|
|
out_int (contact);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_delete (struct tgl_user *U) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->flags & FLAG_DELETED) { return; }
|
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_user_delete;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_set_user_profile_photo (struct tgl_user *U, long long photo_id, struct tgl_file_location *big, struct tgl_file_location *small) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (photo_id == U->photo_id) { return; }
|
|
|
|
if (!photo_id) {
|
2014-08-12 17:32:11 -04:00
|
|
|
int *ev = alloc_log_event (12);
|
|
|
|
ev[0] = CODE_binlog_user_set_photo;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[2] = CODE_user_profile_photo_empty;
|
|
|
|
add_log_event (ev, 12);
|
2013-11-21 14:35:49 -05:00
|
|
|
} else {
|
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_user_set_photo);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (U->id));
|
2013-11-21 14:35:49 -05:00
|
|
|
out_int (CODE_user_profile_photo);
|
|
|
|
out_long (photo_id);
|
|
|
|
if (small->dc >= 0) {
|
|
|
|
out_int (CODE_file_location);
|
|
|
|
out_int (small->dc);
|
|
|
|
out_long (small->volume);
|
|
|
|
out_int (small->local_id);
|
|
|
|
out_long (small->secret);
|
|
|
|
} else {
|
|
|
|
out_int (CODE_file_location_unavailable);
|
|
|
|
out_long (small->volume);
|
|
|
|
out_int (small->local_id);
|
|
|
|
out_long (small->secret);
|
|
|
|
}
|
|
|
|
if (big->dc >= 0) {
|
|
|
|
out_int (CODE_file_location);
|
|
|
|
out_int (big->dc);
|
|
|
|
out_long (big->volume);
|
|
|
|
out_int (big->local_id);
|
|
|
|
out_long (big->secret);
|
|
|
|
} else {
|
|
|
|
out_int (CODE_file_location_unavailable);
|
|
|
|
out_long (big->volume);
|
|
|
|
out_int (big->local_id);
|
|
|
|
out_long (big->secret);
|
|
|
|
}
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_name (struct tgl_user *U, const char *f, int fl, const char *l, int ll) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if ((U->first_name && (int)strlen (U->first_name) == fl && !strncmp (U->first_name, f, fl)) &&
|
|
|
|
(U->last_name && (int)strlen (U->last_name) == ll && !strncmp (U->last_name, l, ll))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_user_set_name);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (U->id));
|
2013-11-21 14:35:49 -05:00
|
|
|
out_cstring (f, fl);
|
|
|
|
out_cstring (l, ll);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_access_hash (struct tgl_user *U, long long access_token) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->access_hash == access_token) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_user_set_access_hash;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
*(long long *)(ev + 2) = access_token;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_phone (struct tgl_user *U, const char *p, int pl) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->phone && (int)strlen (U->phone) == pl && !strncmp (U->phone, p, pl)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_user_set_phone);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (U->id));
|
2013-11-21 14:35:49 -05:00
|
|
|
out_cstring (p, pl);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_friend (struct tgl_user *U, int friend) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (friend == ((U->flags & FLAG_USER_CONTACT) != 0)) { return ; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_user_set_friend;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[2] = friend;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_dc_option (int id, int l1, const char *name, int l2, const char *ip, int port) {
|
2014-08-13 11:55:16 -04:00
|
|
|
struct dc *DC = tgl_state.DC_list[id];
|
2013-11-21 14:35:49 -05:00
|
|
|
if (DC) { return; }
|
|
|
|
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_dc_option);
|
|
|
|
out_int (id);
|
|
|
|
out_cstring (name, l1);
|
|
|
|
out_cstring (ip, l2);
|
|
|
|
out_int (port);
|
|
|
|
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_dc_signed (int id) {
|
|
|
|
int *ev = alloc_log_event (8);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_dc_signed;
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[1] = id;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_working_dc (int num) {
|
|
|
|
int *ev = alloc_log_event (8);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_default_dc;
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[1] = num;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_full_photo (struct tgl_user *U, const int *start, int len) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->photo.id == *(long long *)(start + 1)) { return; }
|
|
|
|
int *ev = alloc_log_event (len + 8);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_user_set_full_photo;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
memcpy (ev + 2, start, len);
|
|
|
|
add_log_event (ev, len + 8);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_blocked (struct tgl_user *U, int blocked) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->blocked == blocked) { return; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:32:11 -04:00
|
|
|
ev[0] = CODE_binlog_user_set_blocked;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[2] = blocked;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_user_set_real_name (struct tgl_user *U, const char *f, int fl, const char *l, int ll) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if ((U->real_first_name && (int)strlen (U->real_first_name) == fl && !strncmp (U->real_first_name, f, fl)) &&
|
|
|
|
(U->real_last_name && (int)strlen (U->real_last_name) == ll && !strncmp (U->real_last_name, l, ll))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_user_set_real_name);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (U->id));
|
2013-11-21 14:35:49 -05:00
|
|
|
out_cstring (f, fl);
|
|
|
|
out_cstring (l, ll);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_delete (struct tgl_secret_chat *U) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (!(U->flags & FLAG_CREATED) || U->state == sc_deleted || U->state == sc_none) { return; }
|
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_encr_chat_delete;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_requested (struct tgl_secret_chat *U, long long access_hash, int date, int admin_id, int user_id, unsigned char g_key[], unsigned char nonce[]) {
|
2013-11-29 16:43:56 -05:00
|
|
|
if (U->state != sc_none) { return; }
|
2013-11-21 14:35:49 -05:00
|
|
|
int *ev = alloc_log_event (540);
|
|
|
|
ev[0] = CODE_binlog_encr_chat_requested;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
*(long long *)(ev + 2) = access_hash;
|
|
|
|
ev[4] = date;
|
|
|
|
ev[5] = admin_id;
|
|
|
|
ev[6] = user_id;
|
|
|
|
memcpy (ev + 7, g_key, 256);
|
|
|
|
memcpy (ev + 7 + 64, nonce, 256);
|
|
|
|
add_log_event (ev, 540);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_set_access_hash (struct tgl_secret_chat *U, long long access_hash) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->access_hash == access_hash) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_encr_chat_set_access_hash;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
*(long long *)(ev + 2) = access_hash;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_set_date (struct tgl_secret_chat *U, int date) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->date == date) { return; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_encr_chat_set_date;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[2] = date;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_set_state (struct tgl_secret_chat *U, enum tgl_secret_chat_state state) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->state == state) { return; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_encr_chat_set_state;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
ev[2] = state;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_accepted (struct tgl_secret_chat *U, const unsigned char g_key[], const unsigned char nonce[], long long key_fingerprint) {
|
2013-11-21 14:35:49 -05:00
|
|
|
if (U->state != sc_waiting && U->state != sc_request) { return; }
|
|
|
|
int *ev = alloc_log_event (528);
|
|
|
|
ev[0] = CODE_binlog_encr_chat_accepted;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
memcpy (ev + 2, g_key, 256);
|
|
|
|
memcpy (ev + 66, nonce, 256);
|
|
|
|
*(long long *)(ev + 130) = key_fingerprint;
|
|
|
|
add_log_event (ev, 528);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_encr_chat_set_key (struct tgl_secret_chat *E, unsigned char key[], long long key_fingerprint) {
|
2013-11-21 14:35:49 -05:00
|
|
|
int *ev = alloc_log_event (272);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_encr_chat_set_key;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (E->id);
|
2013-11-21 14:35:49 -05:00
|
|
|
memcpy (ev + 2, key, 256);
|
|
|
|
*(long long *)(ev + 66) = key_fingerprint;
|
|
|
|
add_log_event (ev, 272);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_dh_params (int root, unsigned char prime[], int version) {
|
|
|
|
int *ev = alloc_log_event (268);
|
|
|
|
ev[0] = CODE_binlog_set_dh_params;
|
|
|
|
ev[1] = root;
|
|
|
|
memcpy (ev + 2, prime, 256);
|
|
|
|
ev[66] = version;
|
|
|
|
add_log_event (ev, 268);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_encr_chat_init (int id, int user_id, unsigned char random[], unsigned char g_a[]) {
|
|
|
|
int *ev = alloc_log_event (524);
|
|
|
|
ev[0] = CODE_binlog_encr_chat_init;
|
|
|
|
ev[1] = id;
|
|
|
|
ev[2] = user_id;
|
|
|
|
memcpy (ev + 3, random, 256);
|
|
|
|
memcpy (ev + 67, g_a, 256);
|
|
|
|
add_log_event (ev, 524);
|
2013-11-12 19:11:25 -05:00
|
|
|
}
|
2013-11-21 16:40:31 -05:00
|
|
|
|
|
|
|
void bl_do_set_pts (int pts) {
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.locks & TGL_LOCK_DIFF) { return; }
|
2013-11-21 16:40:31 -05:00
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_set_pts;
|
|
|
|
ev[1] = pts;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_qts (int qts) {
|
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_set_qts;
|
|
|
|
ev[1] = qts;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_date (int date) {
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.locks & TGL_LOCK_DIFF) { return; }
|
2013-11-21 16:40:31 -05:00
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_set_date;
|
|
|
|
ev[1] = date;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_set_seq (int seq) {
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.locks & TGL_LOCK_DIFF) { return; }
|
2013-11-21 16:40:31 -05:00
|
|
|
int *ev = alloc_log_event (8);
|
|
|
|
ev[0] = CODE_binlog_set_seq;
|
|
|
|
ev[1] = seq;
|
|
|
|
add_log_event (ev, 8);
|
|
|
|
}
|
2013-11-22 18:26:35 -05:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_create_chat (struct tgl_chat *C, int y, const char *s, int l, int users_num, int date, int version, struct tgl_file_location *big, struct tgl_file_location *small) {
|
2013-11-22 18:26:35 -05:00
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_chat_create);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (C->id));
|
2013-11-22 18:26:35 -05:00
|
|
|
out_int (y);
|
|
|
|
out_cstring (s, l);
|
|
|
|
out_int (users_num);
|
|
|
|
out_int (date);
|
|
|
|
out_int (version);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_data (big, sizeof (struct tgl_file_location));
|
|
|
|
out_data (small, sizeof (struct tgl_file_location));
|
2013-11-22 18:26:35 -05:00
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_forbid (struct tgl_chat *C, int on) {
|
2013-11-22 18:26:35 -05:00
|
|
|
if (on) {
|
|
|
|
if (C->flags & FLAG_FORBIDDEN) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
|
|
|
ev[0] = CODE_binlog_chat_change_flags;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = FLAG_FORBIDDEN;
|
|
|
|
ev[3] = 0;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
} else {
|
|
|
|
if (!(C->flags & FLAG_FORBIDDEN)) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
|
|
|
ev[0] = CODE_binlog_chat_change_flags;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = 0;
|
|
|
|
ev[3] = FLAG_FORBIDDEN;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_title (struct tgl_chat *C, const char *s, int l) {
|
2013-11-22 18:26:35 -05:00
|
|
|
if (C->title && (int)strlen (C->title) == l && !strncmp (C->title, s, l)) { return; }
|
|
|
|
clear_packet ();
|
2014-08-12 17:51:16 -04:00
|
|
|
out_int (CODE_binlog_chat_set_title);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (C->id));
|
2013-11-22 18:26:35 -05:00
|
|
|
out_cstring (s, l);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_photo (struct tgl_chat *C, struct tgl_file_location *big, struct tgl_file_location *small) {
|
|
|
|
if (!memcmp (&C->photo_small, small, sizeof (struct tgl_file_location)) &&
|
|
|
|
!memcmp (&C->photo_big, big, sizeof (struct tgl_file_location))) { return; }
|
2013-11-22 18:26:35 -05:00
|
|
|
clear_packet ();
|
2014-08-12 17:51:16 -04:00
|
|
|
out_int (CODE_binlog_chat_set_photo);
|
2014-08-13 11:55:16 -04:00
|
|
|
out_int (tgl_get_peer_id (C->id));
|
|
|
|
out_data (big, sizeof (struct tgl_file_location));
|
|
|
|
out_data (small, sizeof (struct tgl_file_location));
|
2013-11-22 18:26:35 -05:00
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_date (struct tgl_chat *C, int date) {
|
2013-11-22 18:26:35 -05:00
|
|
|
if (C->date == date) { return; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_set_date;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = date;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_set_in_chat (struct tgl_chat *C, int on) {
|
2013-11-22 18:26:35 -05:00
|
|
|
if (on) {
|
|
|
|
if (C->flags & FLAG_CHAT_IN_CHAT) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
|
|
|
ev[0] = CODE_binlog_chat_change_flags;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = FLAG_CHAT_IN_CHAT;
|
|
|
|
ev[3] = 0;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
} else {
|
|
|
|
if (!(C->flags & FLAG_CHAT_IN_CHAT)) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
|
|
|
ev[0] = CODE_binlog_chat_change_flags;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = 0;
|
|
|
|
ev[3] = FLAG_CHAT_IN_CHAT;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_version (struct tgl_chat *C, int version, int user_num) {
|
2013-11-22 18:26:35 -05:00
|
|
|
if (C->version >= version) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_set_version;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-22 18:26:35 -05:00
|
|
|
ev[2] = version;
|
|
|
|
ev[3] = user_num;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
2013-11-25 11:13:36 -05:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_admin (struct tgl_chat *C, int admin) {
|
2013-11-25 11:13:36 -05:00
|
|
|
if (C->admin_id == admin) { return; }
|
|
|
|
int *ev = alloc_log_event (12);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_set_admin;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-25 11:13:36 -05:00
|
|
|
ev[2] = admin;
|
|
|
|
add_log_event (ev, 12);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_participants (struct tgl_chat *C, int version, int user_num, struct tgl_chat_user *users) {
|
2013-11-25 11:13:36 -05:00
|
|
|
if (C->user_list_version >= version) { return; }
|
|
|
|
int *ev = alloc_log_event (12 * user_num + 16);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_set_participants;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-25 11:13:36 -05:00
|
|
|
ev[2] = version;
|
|
|
|
ev[3] = user_num;
|
|
|
|
memcpy (ev + 4, users, 12 * user_num);
|
|
|
|
add_log_event (ev, 12 * user_num + 16);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_set_full_photo (struct tgl_chat *U, const int *start, int len) {
|
2013-11-25 11:13:36 -05:00
|
|
|
if (U->photo.id == *(long long *)(start + 1)) { return; }
|
|
|
|
int *ev = alloc_log_event (len + 8);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_set_full_photo;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (U->id);
|
2013-11-25 11:13:36 -05:00
|
|
|
memcpy (ev + 2, start, len);
|
|
|
|
add_log_event (ev, len + 8);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_add_user (struct tgl_chat *C, int version, int user, int inviter, int date) {
|
2013-11-25 11:13:36 -05:00
|
|
|
if (C->user_list_version >= version || !C->user_list_version) { return; }
|
|
|
|
int *ev = alloc_log_event (24);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_add_participant;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-25 11:13:36 -05:00
|
|
|
ev[2] = version;
|
|
|
|
ev[3] = user;
|
|
|
|
ev[4] = inviter;
|
|
|
|
ev[5] = date;
|
|
|
|
add_log_event (ev, 24);
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_chat_del_user (struct tgl_chat *C, int version, int user) {
|
2013-11-25 11:13:36 -05:00
|
|
|
if (C->user_list_version >= version || !C->user_list_version) { return; }
|
|
|
|
int *ev = alloc_log_event (16);
|
2014-08-12 17:51:16 -04:00
|
|
|
ev[0] = CODE_binlog_chat_del_participant;
|
2014-08-13 11:55:16 -04:00
|
|
|
ev[1] = tgl_get_peer_id (C->id);
|
2013-11-25 11:13:36 -05:00
|
|
|
ev[2] = version;
|
|
|
|
ev[3] = user;
|
|
|
|
add_log_event (ev, 16);
|
|
|
|
}
|
2013-11-29 16:43:56 -05:00
|
|
|
|
|
|
|
void bl_do_create_message_text (int msg_id, int from_id, int to_type, int to_id, int date, int l, const char *s) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_text);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_send_message_text (long long msg_id, int from_id, int to_type, int to_id, int date, int l, const char *s) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_send_message_text);
|
|
|
|
out_long (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-12 21:22:15 -04:00
|
|
|
void bl_do_send_message_action_encr (long long msg_id, int from_id, int to_type, int to_id, int date, int l, const int *action) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_send_message_action_encr);
|
|
|
|
out_long (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_ints (action, l);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2013-11-29 16:43:56 -05:00
|
|
|
void bl_do_create_message_text_fwd (int msg_id, int from_id, int to_type, int to_id, int date, int fwd, int fwd_date, int l, const char *s) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_text_fwd);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_int (fwd);
|
|
|
|
out_int (fwd_date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_create_message_media (int msg_id, int from_id, int to_type, int to_id, int date, int l, const char *s, const int *data, int len) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_media);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
out_ints (data, len);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_create_message_media_encr (long long msg_id, int from_id, int to_type, int to_id, int date, int l, const char *s, const int *data, int len, const int *data2, int len2) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_media_encr);
|
|
|
|
out_long (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
out_ints (data, len);
|
|
|
|
out_ints (data2, len2);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_create_message_media_fwd (int msg_id, int from_id, int to_type, int to_id, int date, int fwd, int fwd_date, int l, const char *s, const int *data, int len) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_media_fwd);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_int (fwd);
|
|
|
|
out_int (fwd_date);
|
|
|
|
out_cstring (s, l);
|
|
|
|
out_ints (data, len);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_create_message_service (int msg_id, int from_id, int to_type, int to_id, int date, const int *data, int len) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_service);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_ints (data, len);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
2014-08-12 21:22:15 -04:00
|
|
|
|
2013-11-29 16:43:56 -05:00
|
|
|
void bl_do_create_message_service_encr (long long msg_id, int from_id, int to_type, int to_id, int date, const int *data, int len) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_service_encr);
|
|
|
|
out_long (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_ints (data, len);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_create_message_service_fwd (int msg_id, int from_id, int to_type, int to_id, int date, int fwd, int fwd_date, const int *data, int len) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_create_message_service_fwd);
|
|
|
|
out_int (msg_id);
|
|
|
|
out_int (from_id);
|
|
|
|
out_int (to_type);
|
|
|
|
out_int (to_id);
|
|
|
|
out_int (date);
|
|
|
|
out_int (fwd);
|
|
|
|
out_int (fwd_date);
|
|
|
|
out_ints (data, len);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-21 11:38:51 -04:00
|
|
|
void bl_do_set_unread_long (struct tgl_message *M, int unread) {
|
|
|
|
if (unread || !M->unread) { return; }
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_message_set_unread_long);
|
|
|
|
out_long (M->id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_set_unread (struct tgl_message *M, int unread) {
|
2014-08-21 11:38:51 -04:00
|
|
|
if (M->id != (int)M->id) { bl_do_set_unread_long (M, unread); }
|
2013-11-29 16:43:56 -05:00
|
|
|
if (unread || !M->unread) { return; }
|
|
|
|
clear_packet ();
|
2014-08-12 17:32:11 -04:00
|
|
|
out_int (CODE_binlog_message_set_unread);
|
2013-11-29 16:43:56 -05:00
|
|
|
out_int (M->id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_set_message_sent (struct tgl_message *M) {
|
2013-11-29 16:43:56 -05:00
|
|
|
if (!(M->flags & FLAG_PENDING)) { return; }
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_set_message_sent);
|
|
|
|
out_long (M->id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_set_msg_id (struct tgl_message *M, int id) {
|
2013-11-29 16:43:56 -05:00
|
|
|
if (M->id == id) { return; }
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_set_msg_id);
|
|
|
|
out_long (M->id);
|
|
|
|
out_int (id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
2013-12-06 12:14:41 -05:00
|
|
|
|
2014-08-13 11:55:16 -04:00
|
|
|
void bl_do_delete_msg (struct tgl_message *M) {
|
2013-12-06 12:14:41 -05:00
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_delete_msg);
|
|
|
|
out_long (M->id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
2014-08-20 12:36:45 -04:00
|
|
|
|
|
|
|
void bl_do_msg_seq_update (long long id) {
|
2014-08-21 11:38:51 -04:00
|
|
|
if (tgl_state.locks & TGL_LOCK_DIFF) {
|
|
|
|
return; // We will receive this update in get_difference, that works now
|
|
|
|
}
|
2014-08-20 12:36:45 -04:00
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_msg_seq_update);
|
|
|
|
out_long (id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
void bl_do_msg_update (long long id) {
|
|
|
|
clear_packet ();
|
|
|
|
out_int (CODE_binlog_msg_update);
|
|
|
|
out_long (id);
|
|
|
|
add_log_event (packet_buffer, 4 * (packet_ptr - packet_buffer));
|
|
|
|
}
|