diff --git a/Telegram/Resources/lang.strings b/Telegram/Resources/lang.strings index f4255ae1b..dfe5f260a 100644 --- a/Telegram/Resources/lang.strings +++ b/Telegram/Resources/lang.strings @@ -412,6 +412,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org "lng_create_public_channel_about" = "Everyone will be able to join your channel"; "lng_create_private_channel_title" = "Private Channel"; "lng_create_private_channel_about" = "Only those who have the invitation link will be able to join your channel"; +"lng_create_channel_comments" = "Enable Comments"; +"lng_create_channel_comments_about" = "If you enable comments, members will be able to discuss your posts in the channel"; "lng_create_group_save" = "Save"; "lng_create_group_skip" = "Skip"; @@ -420,6 +422,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org "lng_create_channel_link_too_short" = "This link is too short"; "lng_create_channel_link_bad_symbols" = "This link has bad symbols"; "lng_create_channel_link_available" = "This link is available"; +"lng_create_channel_link_copied" = "The link was copied to clipboard"; "lng_create_group_crop" = "Select square area for group photo"; "lng_create_channel_crop" = "Select square area for channel photo"; diff --git a/Telegram/Resources/style.txt b/Telegram/Resources/style.txt index eaf0af65a..485db1ade 100644 --- a/Telegram/Resources/style.txt +++ b/Telegram/Resources/style.txt @@ -1431,6 +1431,7 @@ newGroupDescription: flatTextarea(taDefFlat) { phFocusColor: #949494; } newGroupDescriptionPadding: margins(5px, 6px, 5px, 6px); +newGroupLinkFadeDuration: 5000; connectionSkip: 20px; inpConnectionHost: flatInput(inpDefGray) { diff --git a/Telegram/SourceFiles/apiwrap.cpp b/Telegram/SourceFiles/apiwrap.cpp index 3d619c976..cbb84fa34 100644 --- a/Telegram/SourceFiles/apiwrap.cpp +++ b/Telegram/SourceFiles/apiwrap.cpp @@ -137,7 +137,7 @@ void ApiWrap::resolveReplyTo() { } MessageIds ids = collectMessageIds(j.value()); if (!ids.isEmpty()) { - mtpRequestId req = MTP::send(MTPmessages_GetChannelMessages(j.key()->input, MTP_vector(ids)), rpcDone(&ApiWrap::gotReplyTo, j.key()), RPCFailHandlerPtr(), 0, 5); + mtpRequestId req = MTP::send(MTPchannels_GetMessages(j.key()->inputChannel, MTP_vector(ids)), rpcDone(&ApiWrap::gotReplyTo, j.key()), RPCFailHandlerPtr(), 0, 5); for (ReplyToRequests::iterator i = j->begin(); i != j->cend(); ++i) { if (i.value().req > 0) continue; i.value().req = req; @@ -207,7 +207,7 @@ void ApiWrap::requestFullPeer(PeerData *peer) { } else if (peer->isChat()) { req = MTP::send(MTPmessages_GetFullChat(peer->asChat()->inputChat), rpcDone(&ApiWrap::gotChatFull, peer), rpcFail(&ApiWrap::gotPeerFullFailed, peer)); } else if (peer->isChannel()) { - req = MTP::send(MTPmessages_GetFullChat(peer->asChannel()->inputChat), rpcDone(&ApiWrap::gotChatFull, peer), rpcFail(&ApiWrap::gotPeerFullFailed, peer)); + req = MTP::send(MTPchannels_GetFullChannel(peer->asChannel()->inputChannel), rpcDone(&ApiWrap::gotChatFull, peer), rpcFail(&ApiWrap::gotPeerFullFailed, peer)); } if (req) _fullPeerRequests.insert(peer, req); } @@ -320,17 +320,19 @@ void ApiWrap::requestPeer(PeerData *peer) { if (peer->isUser()) { req = MTP::send(MTPusers_GetUsers(MTP_vector(1, peer->asUser()->inputUser)), rpcDone(&ApiWrap::gotUser, peer), rpcFail(&ApiWrap::gotPeerFailed, peer)); } else if (peer->isChat()) { - req = MTP::send(MTPmessages_GetChats(MTP_vector(1, peer->asChat()->inputChat)), rpcDone(&ApiWrap::gotChat, peer), rpcFail(&ApiWrap::gotPeerFailed, peer)); + req = MTP::send(MTPmessages_GetChats(MTP_vector(1, peer->asChat()->inputChat)), rpcDone(&ApiWrap::gotChat, peer), rpcFail(&ApiWrap::gotPeerFailed, peer)); } else if (peer->isChannel()) { - req = MTP::send(MTPmessages_GetChats(MTP_vector(1, peer->asChannel()->inputChat)), rpcDone(&ApiWrap::gotChat, peer), rpcFail(&ApiWrap::gotPeerFailed, peer)); + req = MTP::send(MTPchannels_GetChannels(MTP_vector(1, peer->asChannel()->inputChannel)), rpcDone(&ApiWrap::gotChat, peer), rpcFail(&ApiWrap::gotPeerFailed, peer)); } if (req) _peerRequests.insert(peer, req); } void ApiWrap::requestPeers(const QList &peers) { - QVector chats; + QVector chats; + QVector channels; QVector users; chats.reserve(peers.size()); + channels.reserve(peers.size()); users.reserve(peers.size()); for (QList::const_iterator i = peers.cbegin(), e = peers.cend(); i != e; ++i) { if (!*i || _fullPeerRequests.contains(*i) || _peerRequests.contains(*i)) continue; @@ -339,10 +341,11 @@ void ApiWrap::requestPeers(const QList &peers) { } else if ((*i)->isChat()) { chats.push_back((*i)->asChat()->inputChat); } else if ((*i)->isChannel()) { - chats.push_back((*i)->asChannel()->inputChat); + channels.push_back((*i)->asChannel()->inputChannel); } } - if (!chats.isEmpty()) MTP::send(MTPmessages_GetChats(MTP_vector(chats)), rpcDone(&ApiWrap::gotChats)); + if (!chats.isEmpty()) MTP::send(MTPmessages_GetChats(MTP_vector(chats)), rpcDone(&ApiWrap::gotChats)); + if (!channels.isEmpty()) MTP::send(MTPchannels_GetChannels(MTP_vector(channels)), rpcDone(&ApiWrap::gotChats)); if (!users.isEmpty()) MTP::send(MTPusers_GetUsers(MTP_vector(users)), rpcDone(&ApiWrap::gotUsers)); } @@ -576,7 +579,7 @@ void ApiWrap::resolveWebPages() { typedef QVector RequestIds; RequestIds reqsByIndex(idsByChannel.size(), 0); for (MessageIdsByChannel::const_iterator i = idsByChannel.cbegin(), e = idsByChannel.cend(); i != e; ++i) { - reqsByIndex[i.value().first] = MTP::send(MTPmessages_GetChannelMessages(i.key()->input, MTP_vector(i.value().second)), rpcDone(&ApiWrap::gotWebPages, i.key()), RPCFailHandlerPtr(), 0, 5); + reqsByIndex[i.value().first] = MTP::send(MTPchannels_GetMessages(i.key()->inputChannel, MTP_vector(i.value().second)), rpcDone(&ApiWrap::gotWebPages, i.key()), RPCFailHandlerPtr(), 0, 5); } if (req || !reqsByIndex.isEmpty()) { for (WebPagesPending::iterator i = _webPagesPending.begin(); i != _webPagesPending.cend(); ++i) { diff --git a/Telegram/SourceFiles/app.cpp b/Telegram/SourceFiles/app.cpp index 41f2969df..b983577ff 100644 --- a/Telegram/SourceFiles/app.cpp +++ b/Telegram/SourceFiles/app.cpp @@ -521,7 +521,7 @@ namespace App { data->input = MTP_inputPeerChannel(d.vid, d.vaccess_hash); ChannelData *cdata = data->asChannel(); - cdata->inputChat = MTP_inputChannel(d.vid, d.vaccess_hash); + cdata->inputChannel = MTP_inputChannel(d.vid, d.vaccess_hash); QString uname = d.has_username() ? textOneLine(qs(d.vusername)) : QString(); cdata->setName(qs(d.vtitle), uname); @@ -529,13 +529,13 @@ namespace App { cdata->access = d.vaccess_hash.v; cdata->setPhoto(d.vphoto); cdata->date = d.vdate.v; - cdata->adminned = (d.vflags.v & MTPDchannel_flag_is_admin); + cdata->adminned = (d.vflags.v & MTPDchannel_flag_am_admin); cdata->isBroadcast = (d.vflags.v & MTPDchannel_flag_is_broadcast); - cdata->isPublic = (d.vflags.v & MTPDchannel_flag_is_public); + cdata->isPublic = d.has_username(); - cdata->left = (d.vflags.v & MTPDchannel_flag_left); - cdata->forbidden = (d.vflags.v & MTPDchannel_flag_kicked); + cdata->left = (d.vflags.v & MTPDchannel_flag_have_left); + cdata->forbidden = (d.vflags.v & MTPDchannel_flag_was_kicked); if (cdata->version < d.vversion.v) { cdata->version = d.vversion.v; } @@ -548,7 +548,7 @@ namespace App { data->input = MTP_inputPeerChannel(d.vid, d.vaccess_hash); ChannelData *cdata = data->asChannel(); - cdata->inputChat = MTP_inputChannel(d.vid, d.vaccess_hash); + cdata->inputChannel = MTP_inputChannel(d.vid, d.vaccess_hash); cdata->setName(qs(d.vtitle), QString()); diff --git a/Telegram/SourceFiles/application.cpp b/Telegram/SourceFiles/application.cpp index 6db0b553b..dfb67a152 100644 --- a/Telegram/SourceFiles/application.cpp +++ b/Telegram/SourceFiles/application.cpp @@ -337,10 +337,10 @@ void Application::peerClearPhoto(PeerId id) { if (MTP::authedId() && peerToUser(id) == MTP::authedId()) { MTP::send(MTPphotos_UpdateProfilePhoto(MTP_inputPhotoEmpty(), MTP_inputPhotoCropAuto()), rpcDone(&Application::selfPhotoCleared), rpcFail(&Application::peerPhotoFail, id)); } else if (peerIsChat(id)) { - MTP::send(MTPmessages_EditChatPhoto(MTP_inputChat(peerToBareMTPInt(id)), MTP_inputChatPhotoEmpty()), rpcDone(&Application::chatPhotoCleared, id), rpcFail(&Application::peerPhotoFail, id)); + MTP::send(MTPmessages_EditChatPhoto(peerToBareMTPInt(id), MTP_inputChatPhotoEmpty()), rpcDone(&Application::chatPhotoCleared, id), rpcFail(&Application::peerPhotoFail, id)); } else if (peerIsChannel(id)) { if (ChannelData *channel = App::channelLoaded(id)) { - MTP::send(MTPmessages_EditChatPhoto(channel->inputChat, MTP_inputChatPhotoEmpty()), rpcDone(&Application::chatPhotoCleared, id), rpcFail(&Application::peerPhotoFail, id)); + MTP::send(MTPchannels_EditPhoto(channel->inputChannel, MTP_inputChatPhotoEmpty()), rpcDone(&Application::chatPhotoCleared, id), rpcFail(&Application::peerPhotoFail, id)); } } } @@ -398,9 +398,12 @@ void Application::photoUpdated(const FullMsgId &msgId, const MTPInputFile &file) PeerId id = i.value(); if (MTP::authedId() && peerToUser(id) == MTP::authedId()) { MTP::send(MTPphotos_UploadProfilePhoto(file, MTP_string(""), MTP_inputGeoPointEmpty(), MTP_inputPhotoCrop(MTP_double(0), MTP_double(0), MTP_double(100))), rpcDone(&Application::selfPhotoDone), rpcFail(&Application::peerPhotoFail, id)); - } else if (peerIsChat(id) || peerIsChannel(id)) { + } else if (peerIsChat(id)) { History *hist = App::history(id); - hist->sendRequestId = MTP::send(MTPmessages_EditChatPhoto(hist->peer->isChat() ? hist->peer->asChat()->inputChat : hist->peer->asChannel()->inputChat, MTP_inputChatUploadedPhoto(file, MTP_inputPhotoCrop(MTP_double(0), MTP_double(0), MTP_double(100)))), rpcDone(&Application::chatPhotoDone, id), rpcFail(&Application::peerPhotoFail, id), 0, 0, hist->sendRequestId); + hist->sendRequestId = MTP::send(MTPmessages_EditChatPhoto(hist->peer->asChat()->inputChat, MTP_inputChatUploadedPhoto(file, MTP_inputPhotoCrop(MTP_double(0), MTP_double(0), MTP_double(100)))), rpcDone(&Application::chatPhotoDone, id), rpcFail(&Application::peerPhotoFail, id), 0, 0, hist->sendRequestId); + } else if (peerIsChannel(id)) { + History *hist = App::history(id); + hist->sendRequestId = MTP::send(MTPchannels_EditPhoto(hist->peer->asChannel()->inputChannel, MTP_inputChatUploadedPhoto(file, MTP_inputPhotoCrop(MTP_double(0), MTP_double(0), MTP_double(100)))), rpcDone(&Application::chatPhotoDone, id), rpcFail(&Application::peerPhotoFail, id), 0, 0, hist->sendRequestId); } } } diff --git a/Telegram/SourceFiles/boxes/addcontactbox.cpp b/Telegram/SourceFiles/boxes/addcontactbox.cpp index 068ff6ccd..4f5007d7f 100644 --- a/Telegram/SourceFiles/boxes/addcontactbox.cpp +++ b/Telegram/SourceFiles/boxes/addcontactbox.cpp @@ -213,7 +213,7 @@ void AddContactBox::onSend() { if (_peer->isChat()) { _addRequest = MTP::send(MTPmessages_EditChatTitle(_peer->asChat()->inputChat, MTP_string(firstName)), rpcDone(&AddContactBox::onSaveChatDone), rpcFail(&AddContactBox::onSaveFail)); } else if (_peer->isChannel()) { - _addRequest = MTP::send(MTPmessages_EditChatTitle(_peer->asChannel()->inputChat, MTP_string(firstName)), rpcDone(&AddContactBox::onSaveChatDone), rpcFail(&AddContactBox::onSaveFail)); + _addRequest = MTP::send(MTPchannels_EditTitle(_peer->asChannel()->inputChannel, MTP_string(firstName)), rpcDone(&AddContactBox::onSaveChatDone), rpcFail(&AddContactBox::onSaveFail)); } else { _contactId = MTP::nonce(); QVector v(1, MTP_inputPhoneContact(MTP_long(_contactId), MTP_string(_peer->asUser()->phone), MTP_string(firstName), MTP_string(lastName))); diff --git a/Telegram/SourceFiles/boxes/contactsbox.cpp b/Telegram/SourceFiles/boxes/contactsbox.cpp index 913a3da0b..5ab7bdcca 100644 --- a/Telegram/SourceFiles/boxes/contactsbox.cpp +++ b/Telegram/SourceFiles/boxes/contactsbox.cpp @@ -1236,15 +1236,6 @@ void ContactsBox::onInvite() { void ContactsBox::onCreate() { if (_creationRequestId) return; - //if (_inner.creating() == CreatingGroupChannel) { // tmp - // ChannelData *channel = App::channelLoaded(10449997); - // if (channel) { - // App::wnd()->hideLayer(true); - // App::wnd()->showLayer(new SetupChannelBox(channel), true); - // } - // return; - //} - MTPVector users(MTP_vector(_inner.selectedInputs())); const QVector &v(users.c_vector().v); if (v.isEmpty() || (v.size() == 1 && v.at(0).type() == mtpc_inputUserSelf)) { @@ -1414,7 +1405,7 @@ a_description(animFunc(this, &GroupInfoBox::descriptionAnimStep)), _name(this, st::newGroupName, lang(_creating == CreatingGroupChannel ? lng_dlg_new_channel_name : lng_dlg_new_group_name)), _photo(this, lang(lng_create_group_photo), st::newGroupPhoto), _description(this, st::newGroupDescription, lang(lng_create_group_description)), -_next(this, lang(lng_create_group_next), st::btnSelectDone), +_next(this, lang(_creating == CreatingGroupChannel ? lng_create_group_create : lng_create_group_next), st::btnSelectDone), _cancel(this, lang(lng_create_group_back), st::btnSelectCancel), _creationRequestId(0), _createdChannel(0) { @@ -1425,6 +1416,7 @@ _creationRequestId(0), _createdChannel(0) { _description.setMaxHeight(3 * _description.height() + 2 * st::newGroupDescriptionPadding.top() + 2 * st::newGroupDescriptionPadding.bottom()); updateMaxHeight(); + _description.setMaxLength(MaxChannelDescription); connect(&_description, SIGNAL(resized()), this, SLOT(onDescriptionResized())); connect(&_description, SIGNAL(submitted(bool)), this, SLOT(onNext())); connect(&_description, SIGNAL(cancelled()), this, SLOT(onClose())); @@ -1631,7 +1623,7 @@ void GroupInfoBox::onNext() { if (_creating == CreatingGroupGroup) { App::wnd()->replaceLayer(new ContactsBox(name, _photoBig)); } else { - _creationRequestId = MTP::send(MTPmessages_CreateChannel(MTP_int(MTPmessages_CreateChannel_flag_broadcast), MTP_string(name), MTP_string(_description.getLastText().trimmed()), MTP_vector(0)), rpcDone(&GroupInfoBox::creationDone), rpcFail(&GroupInfoBox::creationFail)); + _creationRequestId = MTP::send(MTPchannels_CreateChannel(MTP_int(MTPmessages_CreateChannel_flag_broadcast), MTP_string(name), MTP_string(_description.getLastText().trimmed()), MTP_vector(0)), rpcDone(&GroupInfoBox::creationDone), rpcFail(&GroupInfoBox::creationFail)); } } @@ -1641,7 +1633,7 @@ void GroupInfoBox::creationDone(const MTPUpdates &updates) { onClose(); } else { _createdChannel = result->asChannel(); - _creationRequestId = MTP::send(MTPmessages_ExportChatInvite(_createdChannel->inputChat), rpcDone(&GroupInfoBox::exportDone)); + _creationRequestId = MTP::send(MTPchannels_ExportInvite(_createdChannel->inputChannel), rpcDone(&GroupInfoBox::exportDone)); } } @@ -1727,18 +1719,24 @@ SetupChannelBox::SetupChannelBox(ChannelData *channel) : AbstractBox(), _channel(channel), _public(this, qsl("channel_privacy"), 0, lang(lng_create_public_channel_title), true), _private(this, qsl("channel_privacy"), 1, lang(lng_create_private_channel_title)), +_comments(this, lang(lng_create_channel_comments), true), _aboutPublicWidth(width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft), _aboutPublic(st::normalFont, lang(lng_create_public_channel_about), _defaultOptions, _aboutPublicWidth), _aboutPrivate(st::normalFont, lang(lng_create_private_channel_about), _defaultOptions, _aboutPublicWidth), +_aboutComments(st::normalFont, lang(lng_create_channel_comments_about), _defaultOptions, _aboutPublicWidth), _linkPlaceholder(qsl("telegram.me/")), _link(this, st::newGroupLink, QString()), +_linkOver(false), _save(this, lang(lng_create_group_save), st::btnSelectDone), _skip(this, lang(lng_create_group_skip), st::btnSelectCancel), -_saveRequestId(0), _checkRequestId(0) { +_saveRequestId(0), _checkRequestId(0), +a_goodOpacity(0, 0), a_good(animFunc(this, &SetupChannelBox::goodAnimStep)) { + setMouseTracking(true); + _link.setTextMargin(style::margins(st::newGroupLink.textMrg.left() + st::newGroupLink.font->m.width(_linkPlaceholder), st::newGroupLink.textMrg.top(), st::newGroupLink.textMrg.right(), st::newGroupLink.textMrg.bottom())); _aboutPublicHeight = _aboutPublic.countHeight(_aboutPublicWidth); - setMaxHeight(st::newGroupPadding.top() + _public.height() + _aboutPublicHeight + st::newGroupSkip + _private.height() + _aboutPrivate.countHeight(_aboutPublicWidth) + st::newGroupPadding.bottom() + st::newGroupLinkPadding.top() + _link.height() + st::newGroupLinkPadding.bottom() + _save.height()); + setMaxHeight(st::newGroupPadding.top() + _public.height() + _aboutPublicHeight + st::newGroupSkip + _private.height() + _aboutPrivate.countHeight(_aboutPublicWidth) + st::newGroupSkip + _comments.height() + _aboutComments.countHeight(_aboutPublicWidth) + st::newGroupPadding.bottom() + st::newGroupLinkPadding.top() + _link.height() + st::newGroupLinkPadding.bottom() + _save.height()); connect(&_save, SIGNAL(clicked()), this, SLOT(onSave())); connect(&_skip, SIGNAL(clicked()), this, SLOT(onClose())); @@ -1795,19 +1793,33 @@ void SetupChannelBox::paintEvent(QPaintEvent *e) { p.setPen(st::newGroupAboutFg); - QRect aboutPublic(st::newGroupPadding.left() + st::rbDefFlat.textLeft, _public.y() + _public.height(), width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft, _aboutPublicHeight); - if (rtl()) aboutPublic.setX(width() - aboutPublic.x() - aboutPublic.width()); + QRect aboutPublic = rtlrect(st::newGroupPadding.left() + st::rbDefFlat.textLeft, _public.y() + _public.height(), width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft, _aboutPublicHeight, width()); _aboutPublic.draw(p, aboutPublic.x(), aboutPublic.y(), aboutPublic.width()); - QRect aboutPrivate(st::newGroupPadding.left() + st::rbDefFlat.textLeft, _private.y() + _private.height(), width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft, _aboutPublicHeight); - if (rtl()) aboutPrivate.setX(width() - aboutPrivate.x() - aboutPrivate.width()); + QRect aboutPrivate = rtlrect(st::newGroupPadding.left() + st::rbDefFlat.textLeft, _private.y() + _private.height(), width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft, _aboutPublicHeight, width()); _aboutPrivate.draw(p, aboutPrivate.x(), aboutPrivate.y(), aboutPrivate.width()); + QRect aboutComments = rtlrect(st::newGroupPadding.left() + st::rbDefFlat.textLeft, _comments.y() + _comments.height(), width() - st::newGroupPadding.left() - st::newGroupPadding.right() - st::rbDefFlat.textLeft, _aboutPublicHeight, width()); + _aboutComments.draw(p, aboutComments.x(), aboutComments.y(), aboutComments.width()); + p.setPen(st::black); p.setFont(st::newGroupLinkFont); p.drawTextLeft(st::newGroupPadding.left(), _link.y() - st::newGroupLinkPadding.top() + st::newGroupLinkTop, width(), lang(lng_create_group_link)); - if (!_link.isHidden()) { + if (_link.isHidden()) { + QTextOption option(style::al_left); + option.setWrapMode(QTextOption::WrapAnywhere); + p.setFont(_linkOver ? st::newGroupLink.font->underline() : st::newGroupLink.font); + p.setPen(st::btnDefLink.color); + p.drawText(_invitationLink, _channel->invitationUrl, option); + if (!_goodTextLink.isEmpty() && a_goodOpacity.current() > 0) { + p.setOpacity(a_goodOpacity.current()); + p.setPen(st::setGoodColor->p); + p.setFont(st::setErrFont->f); + p.drawTextRight(st::newGroupPadding.right(), _link.y() - st::newGroupLinkPadding.top() + st::newGroupLinkTop + st::newGroupLinkFont->ascent - st::setErrFont->ascent, width(), _goodTextLink); + p.setOpacity(1); + } + } else { p.setFont(st::newGroupLink.font); p.setPen(st::newGroupLink.phColor); p.drawText(QRect(_link.x() + st::newGroupLink.textMrg.left(), _link.y() + st::newGroupLink.textMrg.top(), _link.width(), _link.height() - st::newGroupLink.textMrg.top() - st::newGroupLink.textMrg.bottom()), _linkPlaceholder, style::al_left); @@ -1833,20 +1845,63 @@ void SetupChannelBox::paintEvent(QPaintEvent *e) { void SetupChannelBox::resizeEvent(QResizeEvent *e) { _public.moveToLeft(st::newGroupPadding.left(), st::newGroupPadding.top(), width()); _private.moveToLeft(st::newGroupPadding.left(), _public.y() + _public.height() + _aboutPublicHeight + st::newGroupSkip, width()); + _comments.moveToLeft(st::newGroupPadding.left(), _private.y() + _private.height() + _aboutPrivate.countHeight(_aboutPublicWidth) + st::newGroupSkip, width()); - _link.setGeometry(st::newGroupLinkPadding.left(), st::newGroupPadding.top() + _public.height() + _aboutPublicHeight + st::newGroupSkip + _private.height() + _aboutPrivate.countHeight(_aboutPublicWidth) + st::newGroupPadding.bottom() + st::newGroupLinkPadding.top(), width() - st::newGroupPadding.left() - st::newGroupPadding.right(), _link.height()); + _link.setGeometry(st::newGroupLinkPadding.left(), _comments.y() + _comments.height() + _aboutComments.countHeight(_aboutPublicWidth) + st::newGroupPadding.bottom() + st::newGroupLinkPadding.top(), width() - st::newGroupPadding.left() - st::newGroupPadding.right(), _link.height()); + _invitationLink = QRect(_link.x(), _link.y() + (_link.height() / 2) - st::newGroupLinkFont->height, _link.width(), 2 * st::newGroupLinkFont->height); int32 buttonTop = _link.y() + _link.height() + st::newGroupLinkPadding.bottom(); _skip.moveToLeft(0, buttonTop, width()); _save.moveToRight(0, buttonTop, width()); } +void SetupChannelBox::mouseMoveEvent(QMouseEvent *e) { + updateSelected(e->globalPos()); +} + +void SetupChannelBox::mousePressEvent(QMouseEvent *e) { + mouseMoveEvent(e); + if (_linkOver) { + App::app()->clipboard()->setText(_channel->invitationUrl); + _goodTextLink = lang(lng_create_channel_link_copied); + a_goodOpacity = anim::fvalue(1, 0); + a_good.start(); + } +} + +void SetupChannelBox::updateSelected(const QPoint &cursorGlobalPosition) { + QPoint p(mapFromGlobal(cursorGlobalPosition)); + + bool linkOver = _invitationLink.contains(p); + if (linkOver != _linkOver) { + _linkOver = linkOver; + update(); + setCursor(_linkOver ? style::cur_pointer : style::cur_default); + } +} + +bool SetupChannelBox::goodAnimStep(float64 ms) { + float dt = ms / st::newGroupLinkFadeDuration; + bool res = true; + if (dt >= 1) { + res = false; + a_goodOpacity.finish(); + } else { + a_goodOpacity.update(dt, anim::linear); + } + update(); + return res; +} + void SetupChannelBox::closePressed() { App::wnd()->showLayer(new ContactsBox(_channel), true); } void SetupChannelBox::onSave() { if (!_public.checked()) { + if (_comments.checked()) { + MTP::send(MTPchannels_ToggleComments(_channel->inputChannel, MTP_bool(true))); + } onClose(); } @@ -1859,8 +1914,11 @@ void SetupChannelBox::onSave() { return; } + if (_comments.checked()) { + MTP::send(MTPchannels_ToggleComments(_channel->inputChannel, MTP_bool(true)), RPCResponseHandler(), 0, 5); + } _sentUsername = link; - _saveRequestId = MTP::send(MTPmessages_UpdateChannelUsername(_channel->inputChat, MTP_string(_sentUsername)), rpcDone(&SetupChannelBox::onUpdateDone), rpcFail(&SetupChannelBox::onUpdateFail)); + _saveRequestId = MTP::send(MTPchannels_UpdateUsername(_channel->inputChannel, MTP_string(_sentUsername)), rpcDone(&SetupChannelBox::onUpdateDone), rpcFail(&SetupChannelBox::onUpdateFail)); } void SetupChannelBox::onChange() { @@ -1907,7 +1965,7 @@ void SetupChannelBox::onCheck() { QString link = _link.text().trimmed(); if (link.size() >= MinUsernameLength) { _checkUsername = link; - _checkRequestId = MTP::send(MTPmessages_CheckChannelUsername(_channel->inputChat, MTP_string(link)), rpcDone(&SetupChannelBox::onCheckDone), rpcFail(&SetupChannelBox::onCheckFail)); + _checkRequestId = MTP::send(MTPchannels_CheckUsername(_channel->inputChannel, MTP_string(link)), rpcDone(&SetupChannelBox::onCheckDone), rpcFail(&SetupChannelBox::onCheckFail)); } } @@ -1917,6 +1975,7 @@ void SetupChannelBox::onPrivacyChange() { _link.setFocus(); } else { _link.hide(); + setFocus(); } update(); } diff --git a/Telegram/SourceFiles/boxes/contactsbox.h b/Telegram/SourceFiles/boxes/contactsbox.h index 95ce9edcd..d8e178ca5 100644 --- a/Telegram/SourceFiles/boxes/contactsbox.h +++ b/Telegram/SourceFiles/boxes/contactsbox.h @@ -317,11 +317,17 @@ public: void keyPressEvent(QKeyEvent *e); void paintEvent(QPaintEvent *e); void resizeEvent(QResizeEvent *e); + void mouseMoveEvent(QMouseEvent *e); + void mousePressEvent(QMouseEvent *e); void closePressed(); void setInnerFocus() { - _link.setFocus(); + if (_link.isHidden()) { + setFocus(); + } else { + _link.setFocus(); + } } public slots: @@ -340,13 +346,19 @@ protected: private: + void updateSelected(const QPoint &cursorGlobalPosition); + bool goodAnimStep(float64 ms); + ChannelData *_channel; FlatRadiobutton _public, _private; + FlatCheckbox _comments; int32 _aboutPublicWidth, _aboutPublicHeight; - Text _aboutPublic, _aboutPrivate; + Text _aboutPublic, _aboutPrivate, _aboutComments; QString _linkPlaceholder; UsernameInput _link; + QRect _invitationLink; + bool _linkOver; FlatButton _save, _skip; void onUpdateDone(const MTPBool &result); @@ -358,5 +370,9 @@ private: mtpRequestId _saveRequestId, _checkRequestId; QString _sentUsername, _checkUsername, _errorText, _goodText; + QString _goodTextLink; + anim::fvalue a_goodOpacity; + Animation a_good; + QTimer _checkTimer; }; diff --git a/Telegram/SourceFiles/config.h b/Telegram/SourceFiles/config.h index 7e2fca159..1199dc9dd 100644 --- a/Telegram/SourceFiles/config.h +++ b/Telegram/SourceFiles/config.h @@ -123,6 +123,8 @@ enum { MaxUsernameLength = 32, UsernameCheckTimeout = 200, + MaxChannelDescription = 255, + MaxMessageSize = 4096, MaxHttpRedirects = 5, // when getting external data/images diff --git a/Telegram/SourceFiles/dialogswidget.cpp b/Telegram/SourceFiles/dialogswidget.cpp index 0b2709988..d88cafbef 100644 --- a/Telegram/SourceFiles/dialogswidget.cpp +++ b/Telegram/SourceFiles/dialogswidget.cpp @@ -1805,7 +1805,7 @@ void DialogsWidget::loadDialogs() { int32 loadCount = _dialogsOffset ? DialogsPerPage : DialogsFirstLoad; _dialogsRequest = MTP::send(MTPmessages_GetDialogs(MTP_int(_dialogsOffset), MTP_int(loadCount)), rpcDone(&DialogsWidget::dialogsReceived), rpcFail(&DialogsWidget::dialogsFailed), 0, _channelDialogsRequest ? 0 : 5); if (!_channelDialogsRequest) { - _channelDialogsRequest = MTP::send(MTPmessages_GetChannelDialogs(MTP_int(0), MTP_int(DialogsPerPage)), rpcDone(&DialogsWidget::dialogsReceived), rpcFail(&DialogsWidget::dialogsFailed)); + _channelDialogsRequest = MTP::send(MTPchannels_GetDialogs(MTP_int(0), MTP_int(DialogsPerPage)), rpcDone(&DialogsWidget::dialogsReceived), rpcFail(&DialogsWidget::dialogsFailed)); } } diff --git a/Telegram/SourceFiles/gui/flattextarea.cpp b/Telegram/SourceFiles/gui/flattextarea.cpp index 59f395175..fe33a4290 100644 --- a/Telegram/SourceFiles/gui/flattextarea.cpp +++ b/Telegram/SourceFiles/gui/flattextarea.cpp @@ -22,7 +22,7 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org #include "window.h" FlatTextarea::FlatTextarea(QWidget *parent, const style::flatTextarea &st, const QString &pholder, const QString &v) : QTextEdit(v, parent), -_minHeight(-1), _maxHeight(-1), _ctrlEnterSubmit(true), +_minHeight(-1), _maxHeight(-1), _maxLength(-1), _ctrlEnterSubmit(true), _ph(pholder), _oldtext(v), _phVisible(!v.length()), a_phLeft(_phVisible ? 0 : st.phShift), a_phAlpha(_phVisible ? 1 : 0), a_phColor(st.phColor->c), _st(st), _undoAvailable(false), _redoAvailable(false), _inDrop(false), _fakeMargin(0), @@ -65,6 +65,10 @@ _touchPress(false), _touchRightButton(false), _touchMove(false), _replacingEmoji if (App::wnd()) connect(this, SIGNAL(selectionChanged()), App::wnd(), SLOT(updateGlobalMenu())); } +void FlatTextarea::setMaxLength(int32 maxLength) { + _maxLength = maxLength; +} + void FlatTextarea::setMinHeight(int32 minHeight) { _minHeight = minHeight; heightAutoupdated(); @@ -658,6 +662,30 @@ void FlatTextarea::processDocumentContentsChange(int position, int charsAdded) { void FlatTextarea::onDocumentContentsChange(int position, int charsRemoved, int charsAdded) { if (_replacingEmojis) return; + _replacingEmojis = true; + if (_maxLength >= 0) { + QTextCursor c(document()->docHandle(), 0); + c.movePosition(QTextCursor::End); + int32 fullSize = c.position(), toRemove = fullSize - _maxLength; + if (toRemove > 0) { + if (toRemove > charsAdded) { + if (charsAdded) { + c.setPosition(position); + c.setPosition((position + charsAdded), QTextCursor::KeepAnchor); + c.removeSelectedText(); + } + c.setPosition(fullSize - (toRemove - charsAdded)); + c.setPosition(fullSize, QTextCursor::KeepAnchor); + c.removeSelectedText(); + } else { + c.setPosition(position + (charsAdded - toRemove)); + c.setPosition(position + charsAdded, QTextCursor::KeepAnchor); + c.removeSelectedText(); + } + } + } + _replacingEmojis = false; + if (!_links.isEmpty()) { bool changed = false; for (LinkRanges::iterator i = _links.begin(); i != _links.end();) { @@ -688,6 +716,7 @@ void FlatTextarea::onDocumentContentsChange(int position, int charsRemoved, int // _insertions.push_back(Insertion(position, charsAdded)); _replacingEmojis = true; + QSizeF s = document()->pageSize(); processDocumentContentsChange(position, charsAdded); if (document()->pageSize() != s) { diff --git a/Telegram/SourceFiles/gui/flattextarea.h b/Telegram/SourceFiles/gui/flattextarea.h index a57fcbb66..159d96fc8 100644 --- a/Telegram/SourceFiles/gui/flattextarea.h +++ b/Telegram/SourceFiles/gui/flattextarea.h @@ -39,6 +39,7 @@ public: void mousePressEvent(QMouseEvent *e); void dropEvent(QDropEvent *e); + void setMaxLength(int32 maxLength); void setMinHeight(int32 minHeight); void setMaxHeight(int32 maxHeight); @@ -107,6 +108,7 @@ private: bool heightAutoupdated(); int32 _minHeight, _maxHeight; // < 0 - no autosize + int32 _maxLength; bool _ctrlEnterSubmit; QString _ph, _phelided, _oldtext; diff --git a/Telegram/SourceFiles/history.h b/Telegram/SourceFiles/history.h index 27a278650..962e6c17c 100644 --- a/Telegram/SourceFiles/history.h +++ b/Telegram/SourceFiles/history.h @@ -733,7 +733,7 @@ public: return _from->isChannel(); } virtual bool needCheck() const { - return out() && (!fromChannel() || id <= 0); + return out(); } virtual bool hasPoint(int32 x, int32 y) const { return false; diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index 80481f5ab..2d510b831 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -3404,7 +3404,7 @@ void HistoryWidget::firstLoadMessages() { from = _showAtMsgId; } if (_peer->isChannel()) { - _firstLoadRequest = MTP::send(MTPmessages_GetImportantHistory(_peer->input, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); + _firstLoadRequest = MTP::send(MTPchannels_GetImportantHistory(_peer->asChannel()->inputChannel, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } else { _firstLoadRequest = MTP::send(MTPmessages_GetHistory(_peer->input, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } @@ -3416,7 +3416,7 @@ void HistoryWidget::loadMessages() { MsgId min = _history->minMsgId(); int32 offset = 0, loadCount = min ? MessagesPerPage : MessagesFirstLoad; if (_peer->isChannel()) { - _preloadRequest = MTP::send(MTPmessages_GetImportantHistory(_peer->input, MTP_int(min), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); + _preloadRequest = MTP::send(MTPchannels_GetImportantHistory(_peer->asChannel()->inputChannel, MTP_int(min), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } else { _preloadRequest = MTP::send(MTPmessages_GetHistory(_peer->input, MTP_int(min), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } @@ -3430,7 +3430,7 @@ void HistoryWidget::loadMessagesDown() { int32 loadCount = MessagesPerPage, offset = -loadCount; if (_peer->isChannel()) { - _preloadDownRequest = MTP::send(MTPmessages_GetImportantHistory(_peer->input, MTP_int(max + 1), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); + _preloadDownRequest = MTP::send(MTPchannels_GetImportantHistory(_peer->asChannel()->inputChannel, MTP_int(max + 1), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } else { _preloadDownRequest = MTP::send(MTPmessages_GetHistory(_peer->input, MTP_int(max + 1), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } @@ -3458,7 +3458,7 @@ void HistoryWidget::delayedShowAt(MsgId showAtMsgId) { offset = -loadCount / 2; } if (_peer->isChannel()) { - _delayedShowAtRequest = MTP::send(MTPmessages_GetImportantHistory(_peer->input, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); + _delayedShowAtRequest = MTP::send(MTPchannels_GetImportantHistory(_peer->asChannel()->inputChannel, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } else { _delayedShowAtRequest = MTP::send(MTPmessages_GetHistory(_peer->input, MTP_int(from), MTP_int(offset), MTP_int(loadCount), MTP_int(0), MTP_int(0)), rpcDone(&HistoryWidget::messagesReceived, _peer), rpcFail(&HistoryWidget::messagesFailed)); } @@ -3588,7 +3588,7 @@ void HistoryWidget::onBotStart() { sendBotCommand(qsl("/start"), 0); } else { uint64 randomId = MTP::nonce(); - MTP::send(MTPmessages_StartBot(_peer->asUser()->inputUser, MTP_inputChatEmpty(), MTP_long(randomId), MTP_string(token)), App::main()->rpcDone(&MainWidget::sentUpdatesReceived), App::main()->rpcFail(&MainWidget::addParticipantFail, _peer->asUser())); + MTP::send(MTPmessages_StartBot(_peer->asUser()->inputUser, MTP_int(0), MTP_long(randomId), MTP_string(token)), App::main()->rpcDone(&MainWidget::sentUpdatesReceived), App::main()->rpcFail(&MainWidget::addParticipantFail, _peer->asUser())); _peer->asUser()->botInfo->startToken = QString(); if (_keyboard.hasMarkup()) { diff --git a/Telegram/SourceFiles/localstorage.cpp b/Telegram/SourceFiles/localstorage.cpp index d40303dcf..0b437d91b 100644 --- a/Telegram/SourceFiles/localstorage.cpp +++ b/Telegram/SourceFiles/localstorage.cpp @@ -2924,7 +2924,7 @@ namespace Local { chat->invitationUrl = invitationUrl; chat->input = MTP_inputPeerChat(MTP_int(peerToChat(chat->id))); - chat->inputChat = MTP_inputChat(MTP_int(peerToChat(chat->id))); + chat->inputChat = MTP_int(peerToChat(chat->id)); chat->photo = photoLoc.isNull() ? ImagePtr(chatDefPhoto(chat->colorIndex)) : ImagePtr(photoLoc); } else if (result->isChannel()) { @@ -2945,7 +2945,7 @@ namespace Local { channel->invitationUrl = invitationUrl; channel->input = MTP_inputPeerChannel(MTP_int(peerToChannel(channel->id)), MTP_long(access)); - channel->inputChat = MTP_inputChannel(MTP_int(peerToChannel(channel->id)), MTP_long(access)); + channel->inputChannel = MTP_inputChannel(MTP_int(peerToChannel(channel->id)), MTP_long(access)); channel->photo = photoLoc.isNull() ? ImagePtr(chatDefPhoto(channel->colorIndex)) : ImagePtr(photoLoc); } diff --git a/Telegram/SourceFiles/mainwidget.cpp b/Telegram/SourceFiles/mainwidget.cpp index e4644ba7c..60ecd2c64 100644 --- a/Telegram/SourceFiles/mainwidget.cpp +++ b/Telegram/SourceFiles/mainwidget.cpp @@ -794,7 +794,7 @@ void MainWidget::deleteHistoryPart(PeerData *peer, const MTPmessages_AffectedHis void MainWidget::deleteMessages(PeerData *peer, const QVector &ids) { if (peer->isChannel()) { - MTP::send(MTPmessages_DeleteChannelMessages(peer->asChannel()->input, MTP_vector(ids)), rpcDone(&MainWidget::messagesAffected, peer)); + MTP::send(MTPchannels_DeleteMessages(peer->asChannel()->inputChannel, MTP_vector(ids)), rpcDone(&MainWidget::messagesAffected, peer)); } else { MTP::send(MTPmessages_DeleteMessages(MTP_vector(ids)), rpcDone(&MainWidget::messagesAffected, peer)); } @@ -832,17 +832,22 @@ void MainWidget::removeContact(UserData *user) { } void MainWidget::addParticipants(PeerData *chatOrChannel, const QVector &users) { - for (QVector::const_iterator i = users.cbegin(), e = users.cend(); i != e; ++i) { - if (chatOrChannel->isChat()) { + if (chatOrChannel->isChat()) { + for (QVector::const_iterator i = users.cbegin(), e = users.cend(); i != e; ++i) { MTP::send(MTPmessages_AddChatUser(chatOrChannel->asChat()->inputChat, (*i)->inputUser, MTP_int(ForwardOnAdd)), rpcDone(&MainWidget::sentUpdatesReceived), rpcFail(&MainWidget::addParticipantFail, *i), 0, 5); - } else if (chatOrChannel->isChannel()) { - MTP::send(MTPmessages_AddChatUser(chatOrChannel->asChannel()->inputChat, (*i)->inputUser, MTP_int(0)), rpcDone(&MainWidget::sentUpdatesReceived), rpcFail(&MainWidget::addParticipantFail, *i), 0, 5); } + } else if (chatOrChannel->isChannel()) { + QVector inputUsers; + inputUsers.reserve(users.size()); + for (QVector::const_iterator i = users.cbegin(), e = users.cend(); i != e; ++i) { + inputUsers.push_back((*i)->inputUser); + } + MTP::send(MTPchannels_InviteToChannel(chatOrChannel->asChannel()->inputChannel, MTP_vector(inputUsers)), rpcDone(&MainWidget::sentUpdatesReceived), rpcFail(&MainWidget::addParticipantsFail), 0, 5); } } bool MainWidget::addParticipantFail(UserData *user, const RPCError &error) { - if (error.type().startsWith(qsl("FLOOD_WAIT_"))) return false; + if (mtpIsFlood(error)) return false; QString text = lang(lng_failed_add_participant); if (error.type() == "USER_LEFT_CHAT") { // trying to return banned user to his group @@ -857,6 +862,20 @@ bool MainWidget::addParticipantFail(UserData *user, const RPCError &error) { return false; } +bool MainWidget::addParticipantsFail(const RPCError &error) { + if (mtpIsFlood(error)) return false; + + QString text = lang(lng_failed_add_participant); + if (error.type() == "USER_LEFT_CHAT") { // trying to return banned user to his group + } else if (error.type() == "USER_NOT_MUTUAL_CONTACT") { // trying to return user who does not have me in contacts + text = lang(lng_failed_add_not_mutual); + } else if (error.type() == "PEER_FLOOD") { + text = lng_cant_invite_not_contact(lt_more_info, textcmdLink(qsl("https://telegram.org/faq?_hash=can-39t-send-messages-to-non-contacts"), lang(lng_cant_more_info))); + } + App::wnd()->showLayer(new ConfirmBox(text, true)); + return false; +} + void MainWidget::kickParticipant(ChatData *chat, UserData *user) { MTP::send(MTPmessages_DeleteChatUser(chat->inputChat, user->inputUser), rpcDone(&MainWidget::sentUpdatesReceived), rpcFail(&MainWidget::kickParticipantFail, chat)); App::wnd()->hideLayer(); @@ -872,7 +891,7 @@ bool MainWidget::kickParticipantFail(ChatData *chat, const RPCError &error) { void MainWidget::checkPeerHistory(PeerData *peer) { if (peer->isChannel()) { - MTP::send(MTPmessages_GetImportantHistory(peer->input, MTP_int(0), MTP_int(0), MTP_int(1), MTP_int(0), MTP_int(0)), rpcDone(&MainWidget::checkedHistory, peer)); + MTP::send(MTPchannels_GetImportantHistory(peer->asChannel()->inputChannel, MTP_int(0), MTP_int(0), MTP_int(1), MTP_int(0), MTP_int(0)), rpcDone(&MainWidget::checkedHistory, peer)); } else { MTP::send(MTPmessages_GetHistory(peer->input, MTP_int(0), MTP_int(0), MTP_int(1), MTP_int(0), MTP_int(0)), rpcDone(&MainWidget::checkedHistory, peer)); } @@ -1516,9 +1535,9 @@ void MainWidget::photosLoaded(History *h, const MTPmessages_Messages &msgs, mtpR void MainWidget::sendReadRequest(PeerData *peer, MsgId upTo) { if (!MTP::authedId()) return; if (peer->isChannel()) { - _readRequests.insert(peer, MTP::send(MTPmessages_ReadChannelHistory(peer->input, MTP_int(upTo)), rpcDone(&MainWidget::channelWasRead, peer), rpcFail(&MainWidget::readRequestFail, peer))); + _readRequests.insert(peer, qMakePair(MTP::send(MTPchannels_ReadHistory(peer->asChannel()->inputChannel, MTP_int(upTo)), rpcDone(&MainWidget::channelWasRead, peer), rpcFail(&MainWidget::readRequestFail, peer)), upTo)); } else { - _readRequests.insert(peer, MTP::send(MTPmessages_ReadHistory(peer->input, MTP_int(upTo), MTP_int(0)), rpcDone(&MainWidget::partWasRead, peer), rpcFail(&MainWidget::readRequestFail, peer))); + _readRequests.insert(peer, qMakePair(MTP::send(MTPmessages_ReadHistory(peer->input, MTP_int(upTo), MTP_int(0)), rpcDone(&MainWidget::partWasRead, peer), rpcFail(&MainWidget::readRequestFail, peer)), upTo)); } } @@ -1531,10 +1550,10 @@ void MainWidget::partWasRead(PeerData *peer, const MTPmessages_AffectedHistory & ptsUpdated(d.vpts.v, d.vpts_count.v); int32 offset = d.voffset.v; - if (!MTP::authedId() || offset <= 0 || true) { + if (!MTP::authedId() || offset <= 0) { readRequestDone(peer); } else { -// _readRequests[peer] = MTP::send(MTPmessages_ReadHistory(peer->input, MTP_int(upTo), MTP_int(offset)), rpcDone(&MainWidget::partWasRead, peer)); + _readRequests[peer].first = MTP::send(MTPmessages_ReadHistory(peer->input, MTP_int(_readRequests[peer].second), MTP_int(offset)), rpcDone(&MainWidget::partWasRead, peer)); } } @@ -3117,7 +3136,7 @@ void MainWidget::getChannelDifference(ChannelData *channel, GetChannelDifference LOG(("Getting channel difference for %1").arg(channel->pts())); channel->ptsSetRequesting(true); - MTP::send(MTPupdates_GetChannelDifference(channel->input, MTP_channelMessagesFilterCollapsed(), MTP_int(channel->pts()), MTP_int(MTPChannelGetDifferenceLimit)), rpcDone(&MainWidget::gotChannelDifference, channel), rpcFail(&MainWidget::failChannelDifference, channel)); + MTP::send(MTPupdates_GetChannelDifference(channel->inputChannel, MTP_channelMessagesFilterCollapsed(), MTP_int(channel->pts()), MTP_int(MTPChannelGetDifferenceLimit)), rpcDone(&MainWidget::gotChannelDifference, channel), rpcFail(&MainWidget::failChannelDifference, channel)); } void MainWidget::mtpPing() { @@ -3298,7 +3317,7 @@ void MainWidget::onInviteImport() { if (_inviteHash.isEmpty()) return; if (_inviteHash.at(0) == '/') { PeerId id = _inviteHash.midRef(1).toULongLong(); - MTP::send(MTPmessages_AddChatUser(MTP_inputChat(MTP_int(peerToChat(id))), App::self()->inputUser, MTP_int(ForwardOnAdd)), rpcDone(&MainWidget::inviteImportDone), rpcFail(&MainWidget::inviteImportFail), 0, 5); + MTP::send(MTPmessages_AddChatUser(MTP_int(peerToChat(id)), App::self()->inputUser, MTP_int(ForwardOnAdd)), rpcDone(&MainWidget::inviteImportDone), rpcFail(&MainWidget::inviteImportFail), 0, 5); } else { MTP::send(MTPmessages_ImportChatInvite(MTP_string(_inviteHash)), rpcDone(&MainWidget::inviteImportDone), rpcFail(&MainWidget::inviteImportFail)); } @@ -4120,18 +4139,17 @@ void MainWidget::feedUpdate(const MTPUpdate &update) { case mtpc_updateReadChannelInbox: { const MTPDupdateReadChannelInbox &d(update.c_updateReadChannelInbox()); - App::feedInboxRead(peerFromMTP(d.vpeer), d.vmax_id.v); + App::feedInboxRead(peerFromChannel(d.vchannel_id.v), d.vmax_id.v); } break; case mtpc_updateDeleteChannelMessages: { const MTPDupdateDeleteChannelMessages &d(update.c_updateDeleteChannelMessages()); - PeerId peer = peerFromMTP(d.vpeer); - if (ChannelData *channel = App::channelLoaded(peerToChannel(peer))) { + if (ChannelData *channel = App::channelLoaded(d.vchannel_id.v)) { if (!channel->ptsUpdated(d.vpts.v, d.vpts_count.v, update)) { return; } } - App::feedWereDeleted(peerToChannel(peer), d.vmessages.c_vector().v); + App::feedWereDeleted(d.vchannel_id.v, d.vmessages.c_vector().v); history.peerMessagesUpdated(); } break; @@ -4154,10 +4172,8 @@ void MainWidget::feedUpdate(const MTPUpdate &update) { case mtpc_updateChannelMessageViews: { const MTPDupdateChannelMessageViews &d(update.c_updateChannelMessageViews()); - if (HistoryItem *item = App::histItemById(peerToChannel(peerFromMTP(d.vpeer)), d.vid.v)) { - if (item->from()->id == peerFromMTP(d.vpeer) && item->channelId() != NoChannel) { - item->setViewsCount(d.vviews.v); - } + if (HistoryItem *item = App::histItemById(d.vchannel_id.v, d.vid.v)) { + item->setViewsCount(d.vviews.v); } } break; diff --git a/Telegram/SourceFiles/mainwidget.h b/Telegram/SourceFiles/mainwidget.h index dc38cd774..ffe6471ee 100644 --- a/Telegram/SourceFiles/mainwidget.h +++ b/Telegram/SourceFiles/mainwidget.h @@ -293,6 +293,7 @@ public: void addParticipants(PeerData *chatOrChannel, const QVector &users); bool addParticipantFail(UserData *user, const RPCError &e); + bool addParticipantsFail(const RPCError &e); // for multi invite in channels void kickParticipant(ChatData *chat, UserData *user); bool kickParticipantFail(ChatData *chat, const RPCError &e); @@ -572,7 +573,7 @@ private: QSet updateNotifySettingPeers; SingleTimer updateNotifySettingTimer; - typedef QMap ReadRequests; + typedef QMap > ReadRequests; ReadRequests _readRequests; typedef QMap ReadRequestsPending; ReadRequestsPending _readRequestsPending; diff --git a/Telegram/SourceFiles/mtproto/mtpConnection.h b/Telegram/SourceFiles/mtproto/mtpConnection.h index 63d9357c4..a8fa4cbbc 100644 --- a/Telegram/SourceFiles/mtproto/mtpConnection.h +++ b/Telegram/SourceFiles/mtproto/mtpConnection.h @@ -54,14 +54,16 @@ enum { MTPDstickerSet_flag_official = (1 << 2), MTPDstickerSet_flag_NOT_LOADED = (1 << 31), // client side flag for not yet loaded set - MTPDchannel_flag_is_admin = (1 << 0), - MTPDchannel_flag_is_broadcast = (1 << 1), - MTPDchannel_flag_is_public = (1 << 2), - MTPDchannel_flag_left = (1 << 3), - MTPDchannel_flag_kicked = (1 << 4), + MTPDchannel_flag_am_admin = (1 << 0), + MTPDchannel_flag_was_kicked = (1 << 1), + MTPDchannel_flag_have_left = (1 << 2), + MTPDchannel_flag_am_publisher = (1 << 3), + MTPDchannel_flag_am_moderator = (1 << 4), + MTPDchannel_flag_is_broadcast = (1 << 5), - MTPDchat_flag_left = (1 << 3), - MTPDchat_flag_kicked = (1 << 4), + MTPDchat_flag_creator = (1 << 0), + MTPDchat_flag_kicked = (1 << 1), + MTPDchat_flag_left = (1 << 2), MTPupdates_ChannelDifference_flag_final = (1 << 0), diff --git a/Telegram/SourceFiles/mtproto/mtpCoreTypes.h b/Telegram/SourceFiles/mtproto/mtpCoreTypes.h index 97da542f7..71f87f590 100644 --- a/Telegram/SourceFiles/mtproto/mtpCoreTypes.h +++ b/Telegram/SourceFiles/mtproto/mtpCoreTypes.h @@ -366,7 +366,7 @@ static const mtpTypeId mtpLayers[] = { mtpc_invokeWithLayer17, mtpc_invokeWithLayer18, }, mtpLayerMaxSingle = sizeof(mtpLayers) / sizeof(mtpLayers[0]); -static const mtpPrime mtpCurrentLayer = 40; +static const mtpPrime mtpCurrentLayer = 38; template class MTPBoxed : public bareT { diff --git a/Telegram/SourceFiles/mtproto/mtpScheme.cpp b/Telegram/SourceFiles/mtproto/mtpScheme.cpp index d2b49fffe..bf7bd42c3 100644 --- a/Telegram/SourceFiles/mtproto/mtpScheme.cpp +++ b/Telegram/SourceFiles/mtproto/mtpScheme.cpp @@ -1253,7 +1253,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP case 1: to.add(" id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" access_hash: "); ++stages.back(); types.push_back(mtpc_long); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 3: to.add(" title: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 4: to.add(" username: "); ++stages.back(); if (flag & MTPDchannel::flag_username) { types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); } else { to.add("[ SKIPPED BY BIT 2 IN FIELD flags ]"); } break; + case 4: to.add(" username: "); ++stages.back(); if (flag & MTPDchannel::flag_username) { types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); } else { to.add("[ SKIPPED BY BIT 6 IN FIELD flags ]"); } break; case 5: to.add(" photo: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 6: to.add(" date: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 7: to.add(" version: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; @@ -1361,21 +1361,6 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_channelParticipants: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ channelParticipants"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" flags: "); ++stages.back(); if (start >= end) throw Exception("start >= end in flags"); else flags.back() = *start; types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" channel_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 2: to.add(" self_participant: "); ++stages.back(); if (flag & MTPDchannelParticipants::flag_self_participant) { types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); } else { to.add("[ SKIPPED BY BIT 0 IN FIELD flags ]"); } break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - case mtpc_chatPhotoEmpty: to.add("{ chatPhotoEmpty }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; @@ -2847,7 +2832,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" max_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -2861,7 +2846,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" messages: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" pts: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 3: to.add(" pts_count: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; @@ -2877,7 +2862,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" views: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; @@ -4571,21 +4556,8 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_inputChatEmpty: - to.add("{ inputChatEmpty }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); - break; - - case mtpc_inputChat: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ inputChat"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } + case mtpc_inputChannelEmpty: + to.add("{ inputChannelEmpty }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; case mtpc_inputChannel: @@ -4602,6 +4574,36 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; + case mtpc_contacts_resolvedPeer: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ contacts_resolvedPeer"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" chats: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" users: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channelParticipants: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channelParticipants"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" flags: "); ++stages.back(); if (start >= end) throw Exception("start >= end in flags"); else flags.back() = *start; types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" channel_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" self_participant: "); ++stages.back(); if (flag & MTPDchannelParticipants::flag_self_participant) { types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); } else { to.add("[ SKIPPED BY BIT 0 IN FIELD flags ]"); } break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_messageRange: if (stage) { to.add(",\n").addSpaces(lev); @@ -4711,21 +4713,6 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("{ channelMessagesFilterCollapsed }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - case mtpc_contacts_resolvedPeer: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ contacts_resolvedPeer"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" chats: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 2: to.add(" users: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - case mtpc_channelParticipant: if (stage) { to.add(",\n").addSpaces(lev); @@ -4756,11 +4743,11 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_channelParticipantPublisher: + case mtpc_channelParticipantEditor: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ channelParticipantPublisher"); + to.add("{ channelParticipantEditor"); to.add("\n").addSpaces(lev); } switch (stage) { @@ -4771,6 +4758,21 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; + case mtpc_channelParticipantKicked: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channelParticipantKicked"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" user_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" kicked_by: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" date: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_channelParticipantCreator: if (stage) { to.add(",\n").addSpaces(lev); @@ -4792,6 +4794,10 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("{ channelParticipantsAdmins }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + case mtpc_channelParticipantsKicked: + to.add("{ channelParticipantsKicked }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); + break; + case mtpc_channelRoleEmpty: to.add("{ channelRoleEmpty }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; @@ -4800,15 +4806,15 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("{ channelRoleModerator }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - case mtpc_channelRolePublisher: - to.add("{ channelRolePublisher }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); + case mtpc_channelRoleEditor: + to.add("{ channelRoleEditor }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - case mtpc_messages_channelParticipants: + case mtpc_channels_channelParticipants: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_channelParticipants"); + to.add("{ channels_channelParticipants"); to.add("\n").addSpaces(lev); } switch (stage) { @@ -4819,6 +4825,20 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; + case mtpc_channels_channelParticipant: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_channelParticipant"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" participant: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" users: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_req_pq: if (stage) { to.add(",\n").addSpaces(lev); @@ -5291,91 +5311,6 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_readChannelHistory: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_readChannelHistory"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" max_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - - case mtpc_messages_incrementMessagesViews: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_incrementMessagesViews"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" id: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - - case mtpc_messages_editChatAbout: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_editChatAbout"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" about: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - - case mtpc_messages_editChatAdmin: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_editChatAdmin"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 2: to.add(" role: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - - case mtpc_messages_checkChannelUsername: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_checkChannelUsername"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" username: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - - case mtpc_messages_updateChannelUsername: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_updateChannelUsername"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" username: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - case mtpc_upload_saveFilePart: if (stage) { to.add(",\n").addSpaces(lev); @@ -5420,6 +5355,77 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; + case mtpc_channels_readHistory: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_readHistory"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" max_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_editAbout: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_editAbout"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" about: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_editAdmin: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_editAdmin"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" role: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_checkUsername: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_checkUsername"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" username: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_updateUsername: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_updateUsername"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" username: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_invokeAfterMsg: if (stage) { to.add(",\n").addSpaces(lev); @@ -5876,6 +5882,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP switch (stage) { case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" id: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" increment: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } break; @@ -5959,15 +5966,15 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_getImportantHistory: + case mtpc_channels_getImportantHistory: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_getImportantHistory"); + to.add("{ channels_getImportantHistory"); to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" offset_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" add_offset: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 3: to.add(" limit: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; @@ -5977,15 +5984,15 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_getChannelMessages: + case mtpc_channels_getMessages: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_getChannelMessages"); + to.add("{ channels_getMessages"); to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" id: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6005,11 +6012,11 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_getChannelDialogs: + case mtpc_channels_getDialogs: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_getChannelDialogs"); + to.add("{ channels_getDialogs"); to.add("\n").addSpaces(lev); } switch (stage) { @@ -6074,15 +6081,15 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_deleteChannelMessages: + case mtpc_channels_deleteMessages: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_deleteChannelMessages"); + to.add("{ channels_deleteMessages"); to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" id: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6163,7 +6170,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" title: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6177,7 +6184,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" photo: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6191,7 +6198,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" fwd_limit: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; @@ -6206,7 +6213,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6279,18 +6286,18 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } switch (stage) { case 0: to.add(" bot: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" random_id: "); ++stages.back(); types.push_back(mtpc_long); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 3: to.add(" start_param: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } break; - case mtpc_messages_createChannel: + case mtpc_channels_createChannel: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_createChannel"); + to.add("{ channels_createChannel"); to.add("\n").addSpaces(lev); } switch (stage) { @@ -6302,20 +6309,116 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_toggleChannelComments: + case mtpc_channels_editTitle: if (stage) { to.add(",\n").addSpaces(lev); } else { - to.add("{ messages_toggleChannelComments"); + to.add("{ channels_editTitle"); to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" title: "); ++stages.back(); types.push_back(mtpc_string); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_editPhoto: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_editPhoto"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" photo: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_toggleComments: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_toggleComments"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" enabled: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } break; + case mtpc_channels_joinChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_joinChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_leaveChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_leaveChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_inviteToChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_inviteToChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" users: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_kickFromChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_kickFromChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" kicked: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_deleteChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_deleteChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_messages_getChats: if (stage) { to.add(",\n").addSpaces(lev); @@ -6324,6 +6427,19 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { + case 0: to.add(" id: "); ++stages.back(); types.push_back(0); vtypes.push_back(mtpc_int); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_getChannels: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_getChannels"); + to.add("\n").addSpaces(lev); + } + switch (stage) { case 0: to.add(" id: "); ++stages.back(); types.push_back(00); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } @@ -6337,7 +6453,20 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_getFullChannel: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_getFullChannel"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } break; @@ -6506,7 +6635,20 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_exportInvite: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_exportInvite"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; } break; @@ -6537,22 +6679,6 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; - case mtpc_messages_getChannelParticipants: - if (stage) { - to.add(",\n").addSpaces(lev); - } else { - to.add("{ messages_getChannelParticipants"); - to.add("\n").addSpaces(lev); - } - switch (stage) { - case 0: to.add(" chat_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 1: to.add(" filter: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 2: to.add(" offset: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - case 3: to.add(" limit: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; - default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; - } - break; - case mtpc_updates_getState: to.add("{ updates_getState }"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; @@ -6580,7 +6706,7 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP to.add("\n").addSpaces(lev); } switch (stage) { - case 0: to.add(" peer: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 1: to.add(" filter: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 2: to.add(" pts: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; case 3: to.add(" limit: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; @@ -6706,6 +6832,36 @@ void mtpTextSerializeType(MTPStringLogger &to, const mtpPrime *&from, const mtpP } break; + case mtpc_channels_getParticipants: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_getParticipants"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" filter: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 2: to.add(" offset: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 3: to.add(" limit: "); ++stages.back(); types.push_back(mtpc_int); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + + case mtpc_channels_getParticipant: + if (stage) { + to.add(",\n").addSpaces(lev); + } else { + to.add("{ channels_getParticipant"); + to.add("\n").addSpaces(lev); + } + switch (stage) { + case 0: to.add(" channel: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + case 1: to.add(" user_id: "); ++stages.back(); types.push_back(0); vtypes.push_back(0); stages.push_back(0); flags.push_back(0); break; + default: to.add("}"); types.pop_back(); vtypes.pop_back(); stages.pop_back(); flags.pop_back(); break; + } + break; + case mtpc_rpc_result: if (stage) { to.add(",\n").addSpaces(lev); diff --git a/Telegram/SourceFiles/mtproto/mtpScheme.h b/Telegram/SourceFiles/mtproto/mtpScheme.h index ac89fcebd..fa3082ade 100644 --- a/Telegram/SourceFiles/mtproto/mtpScheme.h +++ b/Telegram/SourceFiles/mtproto/mtpScheme.h @@ -135,14 +135,13 @@ enum { mtpc_chatEmpty = 0x9ba2d800, mtpc_chat = 0x7312bc48, mtpc_chatForbidden = 0x7328bdb, - mtpc_channel = 0x1bcc63f2, + mtpc_channel = 0x678e9587, mtpc_channelForbidden = 0x2d85832c, mtpc_chatFull = 0x2e02a614, - mtpc_channelFull = 0xb28da8f8, + mtpc_channelFull = 0x36949a50, mtpc_chatParticipant = 0xc8d7493e, mtpc_chatParticipantsForbidden = 0xfc900c2b, mtpc_chatParticipants = 0x7841b415, - mtpc_channelParticipants = 0xb561ad0c, mtpc_chatPhotoEmpty = 0x37c1011c, mtpc_chatPhoto = 0x6153276a, mtpc_messageEmpty = 0x83e5de54, @@ -259,9 +258,9 @@ enum { mtpc_updateChannel = 0xb6d45656, mtpc_updateChannelGroup = 0xc36c1e3c, mtpc_updateNewChannelMessage = 0x62ba04d9, - mtpc_updateReadChannelInbox = 0x87b87b7d, - mtpc_updateDeleteChannelMessages = 0x11da3046, - mtpc_updateChannelMessageViews = 0xf3349b09, + mtpc_updateReadChannelInbox = 0x4214f37f, + mtpc_updateDeleteChannelMessages = 0xc37521c9, + mtpc_updateChannelMessageViews = 0x98a12b4b, mtpc_updates_state = 0xa56c2a3e, mtpc_updates_differenceEmpty = 0x5d75a138, mtpc_updates_difference = 0xf49ca0, @@ -400,9 +399,10 @@ enum { mtpc_messageEntityCode = 0x28a20571, mtpc_messageEntityPre = 0x73924be0, mtpc_messageEntityTextUrl = 0x76a6d327, - mtpc_inputChatEmpty = 0xd9ff343c, - mtpc_inputChat = 0x43a5b9c3, - mtpc_inputChannel = 0x30c6ce73, + mtpc_inputChannelEmpty = 0xee8c1e86, + mtpc_inputChannel = 0xafeb712e, + mtpc_contacts_resolvedPeer = 0x7f077ad9, + mtpc_channelParticipants = 0x57d3e762, mtpc_messageRange = 0xae30253, mtpc_messageGroup = 0xe8346f53, mtpc_updates_channelDifferenceEmpty = 0x3e11affb, @@ -411,17 +411,19 @@ enum { mtpc_channelMessagesFilterEmpty = 0x94d42ee7, mtpc_channelMessagesFilter = 0xcd77d957, mtpc_channelMessagesFilterCollapsed = 0xfa01232e, - mtpc_contacts_resolvedPeer = 0x7f077ad9, mtpc_channelParticipant = 0x506116ea, mtpc_channelParticipantModerator = 0x91057fef, - mtpc_channelParticipantPublisher = 0x375d616, + mtpc_channelParticipantEditor = 0x98192d61, + mtpc_channelParticipantKicked = 0x8cc5e69a, mtpc_channelParticipantCreator = 0xe3e2e1f9, mtpc_channelParticipantsRecent = 0xde3f3c79, mtpc_channelParticipantsAdmins = 0xb4608969, + mtpc_channelParticipantsKicked = 0x3c37bb7a, mtpc_channelRoleEmpty = 0xb285a0c6, mtpc_channelRoleModerator = 0x9618d975, - mtpc_channelRolePublisher = 0x515b5530, - mtpc_messages_channelParticipants = 0xd6891de1, + mtpc_channelRoleEditor = 0x820bfe8c, + mtpc_channels_channelParticipants = 0xf56ee2a8, + mtpc_channels_channelParticipant = 0xd0d9b163, mtpc_invokeAfterMsg = 0xcb9f372d, mtpc_invokeAfterMsgs = 0x3dc4b4f0, mtpc_initConnection = 0x69796de9, @@ -494,12 +496,12 @@ enum { mtpc_messages_sendMedia = 0xc8f16791, mtpc_messages_forwardMessages = 0x708e0195, mtpc_messages_reportSpam = 0xcf1592db, - mtpc_messages_getChats = 0x27ae65b, - mtpc_messages_getFullChat = 0x36a4dfe, - mtpc_messages_editChatTitle = 0x6699d506, - mtpc_messages_editChatPhoto = 0xdd75758d, - mtpc_messages_addChatUser = 0x819183f4, - mtpc_messages_deleteChatUser = 0x9392c06f, + mtpc_messages_getChats = 0x3c6aa187, + mtpc_messages_getFullChat = 0x3b831c66, + mtpc_messages_editChatTitle = 0xdc452855, + mtpc_messages_editChatPhoto = 0xca4c79d8, + mtpc_messages_addChatUser = 0xf9a0aa09, + mtpc_messages_deleteChatUser = 0xe0611f16, mtpc_messages_createChat = 0x9cb126e, mtpc_messages_forwardMessage = 0x33963bf9, mtpc_messages_sendBroadcast = 0xbf73f4da, @@ -517,30 +519,17 @@ enum { mtpc_messages_getStickers = 0xae22e045, mtpc_messages_getAllStickers = 0xaa3bc868, mtpc_messages_getWebPagePreview = 0x25223e24, - mtpc_messages_exportChatInvite = 0xc26902ba, + mtpc_messages_exportChatInvite = 0x7d885289, mtpc_messages_checkChatInvite = 0x3eadb1bb, mtpc_messages_importChatInvite = 0x6c50051c, mtpc_messages_getStickerSet = 0x2619a90e, mtpc_messages_installStickerSet = 0x7b30c3a6, mtpc_messages_uninstallStickerSet = 0xf96e55de, - mtpc_messages_startBot = 0xf4cc052d, - mtpc_messages_getChannelDialogs = 0x92689583, - mtpc_messages_getImportantHistory = 0x24af43a5, - mtpc_messages_readChannelHistory = 0x36a1210e, - mtpc_messages_createChannel = 0x7f44d2c3, - mtpc_messages_toggleChannelComments = 0xb405b8af, - mtpc_messages_deleteChannelMessages = 0x9995a84f, - mtpc_messages_getChannelMessages = 0x5f46b265, - mtpc_messages_incrementMessagesViews = 0x91ffd479, - mtpc_messages_getMessagesViews = 0x9abfbbe1, - mtpc_messages_editChatAbout = 0x8a969b93, - mtpc_messages_getChannelParticipants = 0x38a1db31, - mtpc_messages_editChatAdmin = 0x62394070, - mtpc_messages_checkChannelUsername = 0xe6d2d8f4, - mtpc_messages_updateChannelUsername = 0xce2e9587, + mtpc_messages_startBot = 0x1b3e0ffc, + mtpc_messages_getMessagesViews = 0xc4c8a55d, mtpc_updates_getState = 0xedd4882a, mtpc_updates_getDifference = 0xa041495, - mtpc_updates_getChannelDifference = 0x248af4f5, + mtpc_updates_getChannelDifference = 0xbb32d7c0, mtpc_photos_updateProfilePhoto = 0xeef579a0, mtpc_photos_uploadProfilePhoto = 0xd50f9c88, mtpc_photos_deletePhotos = 0x87cf7f2f, @@ -554,7 +543,30 @@ enum { mtpc_help_saveAppLog = 0x6f02f748, mtpc_help_getInviteText = 0xa4a95186, mtpc_help_getSupport = 0x9cdf08cd, - mtpc_help_getAppChangelog = 0x5bab7fb2 + mtpc_help_getAppChangelog = 0x5bab7fb2, + mtpc_channels_getDialogs = 0xa9d3d249, + mtpc_channels_getImportantHistory = 0xddb929cb, + mtpc_channels_readHistory = 0xcc104937, + mtpc_channels_deleteMessages = 0x84c1fd4e, + mtpc_channels_getMessages = 0x93d7b347, + mtpc_channels_getParticipants = 0x24d98f92, + mtpc_channels_getParticipant = 0x546dd7a6, + mtpc_channels_getChannels = 0xa7f6bbb, + mtpc_channels_getFullChannel = 0x8736a09, + mtpc_channels_createChannel = 0x5521d844, + mtpc_channels_editAbout = 0x13e27f1e, + mtpc_channels_editAdmin = 0x52b16962, + mtpc_channels_editTitle = 0x566decd0, + mtpc_channels_editPhoto = 0xf12e57c9, + mtpc_channels_toggleComments = 0xaaa29e88, + mtpc_channels_checkUsername = 0x10e6bd2c, + mtpc_channels_updateUsername = 0x3514b3de, + mtpc_channels_joinChannel = 0x24b524c5, + mtpc_channels_leaveChannel = 0xf836aa95, + mtpc_channels_inviteToChannel = 0x199f3a6c, + mtpc_channels_kickFromChannel = 0xa672de14, + mtpc_channels_exportInvite = 0xc7560885, + mtpc_channels_deleteChannel = 0xc0111fe3 }; // Type forward declarations @@ -727,7 +739,6 @@ class MTPDchatParticipant; class MTPchatParticipants; class MTPDchatParticipantsForbidden; class MTPDchatParticipants; -class MTPDchannelParticipants; class MTPchatPhoto; class MTPDchatPhoto; @@ -1120,10 +1131,15 @@ class MTPDmessageEntityCode; class MTPDmessageEntityPre; class MTPDmessageEntityTextUrl; -class MTPinputChat; -class MTPDinputChat; +class MTPinputChannel; class MTPDinputChannel; +class MTPcontacts_resolvedPeer; +class MTPDcontacts_resolvedPeer; + +class MTPchannelParticipants; +class MTPDchannelParticipants; + class MTPmessageRange; class MTPDmessageRange; @@ -1138,21 +1154,22 @@ class MTPDupdates_channelDifference; class MTPchannelMessagesFilter; class MTPDchannelMessagesFilter; -class MTPcontacts_resolvedPeer; -class MTPDcontacts_resolvedPeer; - class MTPchannelParticipant; class MTPDchannelParticipant; class MTPDchannelParticipantModerator; -class MTPDchannelParticipantPublisher; +class MTPDchannelParticipantEditor; +class MTPDchannelParticipantKicked; class MTPDchannelParticipantCreator; class MTPchannelParticipantsFilter; class MTPchannelParticipantRole; -class MTPmessages_channelParticipants; -class MTPDmessages_channelParticipants; +class MTPchannels_channelParticipants; +class MTPDchannels_channelParticipants; + +class MTPchannels_channelParticipant; +class MTPDchannels_channelParticipant; // Boxed types definitions @@ -1298,16 +1315,18 @@ typedef MTPBoxed MTPKeyboardButtonRow; typedef MTPBoxed MTPReplyMarkup; typedef MTPBoxed MTPhelp_AppChangelog; typedef MTPBoxed MTPMessageEntity; -typedef MTPBoxed MTPInputChat; +typedef MTPBoxed MTPInputChannel; +typedef MTPBoxed MTPcontacts_ResolvedPeer; +typedef MTPBoxed MTPChannelParticipants; typedef MTPBoxed MTPMessageRange; typedef MTPBoxed MTPMessageGroup; typedef MTPBoxed MTPupdates_ChannelDifference; typedef MTPBoxed MTPChannelMessagesFilter; -typedef MTPBoxed MTPcontacts_ResolvedPeer; typedef MTPBoxed MTPChannelParticipant; typedef MTPBoxed MTPChannelParticipantsFilter; typedef MTPBoxed MTPChannelParticipantRole; -typedef MTPBoxed MTPmessages_ChannelParticipants; +typedef MTPBoxed MTPchannels_ChannelParticipants; +typedef MTPBoxed MTPchannels_ChannelParticipant; // Type classes definitions @@ -3289,7 +3308,7 @@ private: explicit MTPchatFull(MTPDchannelFull *_data); friend MTPchatFull MTP_chatFull(MTPint _id, const MTPChatParticipants &_participants, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite, const MTPVector &_bot_info); - friend MTPchatFull MTP_channelFull(MTPint _id, const MTPChatParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite); + friend MTPchatFull MTP_channelFull(MTPint _id, const MTPChannelParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite); mtpTypeId _type; }; @@ -3358,18 +3377,6 @@ public: return *(const MTPDchatParticipants*)data; } - MTPDchannelParticipants &_channelParticipants() { - if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_channelParticipants) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipants); - split(); - return *(MTPDchannelParticipants*)data; - } - const MTPDchannelParticipants &c_channelParticipants() const { - if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_channelParticipants) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipants); - return *(const MTPDchannelParticipants*)data; - } - uint32 innerLength() const; mtpTypeId type() const; void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons); @@ -3381,11 +3388,9 @@ private: explicit MTPchatParticipants(mtpTypeId type); explicit MTPchatParticipants(MTPDchatParticipantsForbidden *_data); explicit MTPchatParticipants(MTPDchatParticipants *_data); - explicit MTPchatParticipants(MTPDchannelParticipants *_data); friend MTPchatParticipants MTP_chatParticipantsForbidden(MTPint _flags, MTPint _chat_id, const MTPChatParticipant &_self_participant); friend MTPchatParticipants MTP_chatParticipants(MTPint _chat_id, MTPint _admin_id, const MTPVector &_participants, MTPint _version); - friend MTPchatParticipants MTP_channelParticipants(MTPint _flags, MTPint _channel_id, const MTPChatParticipant &_self_participant); mtpTypeId _type; }; @@ -5492,9 +5497,9 @@ private: friend MTPupdate MTP_updateChannel(MTPint _channel_id); friend MTPupdate MTP_updateChannelGroup(MTPint _channel_id, const MTPMessageGroup &_group); friend MTPupdate MTP_updateNewChannelMessage(const MTPMessage &_message, MTPint _pts, MTPint _pts_count); - friend MTPupdate MTP_updateReadChannelInbox(const MTPPeer &_peer, MTPint _max_id); - friend MTPupdate MTP_updateDeleteChannelMessages(const MTPPeer &_peer, const MTPVector &_messages, MTPint _pts, MTPint _pts_count); - friend MTPupdate MTP_updateChannelMessageViews(const MTPPeer &_peer, MTPint _id, MTPint _views); + friend MTPupdate MTP_updateReadChannelInbox(MTPint _channel_id, MTPint _max_id); + friend MTPupdate MTP_updateDeleteChannelMessages(MTPint _channel_id, const MTPVector &_messages, MTPint _pts, MTPint _pts_count); + friend MTPupdate MTP_updateChannelMessageViews(MTPint _channel_id, MTPint _id, MTPint _views); mtpTypeId _type; }; @@ -8176,26 +8181,14 @@ private: }; typedef MTPBoxed MTPMessageEntity; -class MTPinputChat : private mtpDataOwner { +class MTPinputChannel : private mtpDataOwner { public: - MTPinputChat() : mtpDataOwner(0), _type(0) { + MTPinputChannel() : mtpDataOwner(0), _type(0) { } - MTPinputChat(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) : mtpDataOwner(0), _type(0) { + MTPinputChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) : mtpDataOwner(0), _type(0) { read(from, end, cons); } - MTPDinputChat &_inputChat() { - if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_inputChat) throw mtpErrorWrongTypeId(_type, mtpc_inputChat); - split(); - return *(MTPDinputChat*)data; - } - const MTPDinputChat &c_inputChat() const { - if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_inputChat) throw mtpErrorWrongTypeId(_type, mtpc_inputChat); - return *(const MTPDinputChat*)data; - } - MTPDinputChannel &_inputChannel() { if (!data) throw mtpErrorUninitialized(); if (_type != mtpc_inputChannel) throw mtpErrorWrongTypeId(_type, mtpc_inputChannel); @@ -8216,17 +8209,77 @@ public: typedef void ResponseType; private: - explicit MTPinputChat(mtpTypeId type); - explicit MTPinputChat(MTPDinputChat *_data); - explicit MTPinputChat(MTPDinputChannel *_data); + explicit MTPinputChannel(mtpTypeId type); + explicit MTPinputChannel(MTPDinputChannel *_data); - friend MTPinputChat MTP_inputChatEmpty(); - friend MTPinputChat MTP_inputChat(MTPint _chat_id); - friend MTPinputChat MTP_inputChannel(MTPint _channel_id, const MTPlong &_access_hash); + friend MTPinputChannel MTP_inputChannelEmpty(); + friend MTPinputChannel MTP_inputChannel(MTPint _channel_id, const MTPlong &_access_hash); mtpTypeId _type; }; -typedef MTPBoxed MTPInputChat; +typedef MTPBoxed MTPInputChannel; + +class MTPcontacts_resolvedPeer : private mtpDataOwner { +public: + MTPcontacts_resolvedPeer(); + MTPcontacts_resolvedPeer(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_contacts_resolvedPeer) : mtpDataOwner(0) { + read(from, end, cons); + } + + MTPDcontacts_resolvedPeer &_contacts_resolvedPeer() { + if (!data) throw mtpErrorUninitialized(); + split(); + return *(MTPDcontacts_resolvedPeer*)data; + } + const MTPDcontacts_resolvedPeer &c_contacts_resolvedPeer() const { + if (!data) throw mtpErrorUninitialized(); + return *(const MTPDcontacts_resolvedPeer*)data; + } + + uint32 innerLength() const; + mtpTypeId type() const; + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_contacts_resolvedPeer); + void write(mtpBuffer &to) const; + + typedef void ResponseType; + +private: + explicit MTPcontacts_resolvedPeer(MTPDcontacts_resolvedPeer *_data); + + friend MTPcontacts_resolvedPeer MTP_contacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users); +}; +typedef MTPBoxed MTPcontacts_ResolvedPeer; + +class MTPchannelParticipants : private mtpDataOwner { +public: + MTPchannelParticipants(); + MTPchannelParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channelParticipants) : mtpDataOwner(0) { + read(from, end, cons); + } + + MTPDchannelParticipants &_channelParticipants() { + if (!data) throw mtpErrorUninitialized(); + split(); + return *(MTPDchannelParticipants*)data; + } + const MTPDchannelParticipants &c_channelParticipants() const { + if (!data) throw mtpErrorUninitialized(); + return *(const MTPDchannelParticipants*)data; + } + + uint32 innerLength() const; + mtpTypeId type() const; + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channelParticipants); + void write(mtpBuffer &to) const; + + typedef void ResponseType; + +private: + explicit MTPchannelParticipants(MTPDchannelParticipants *_data); + + friend MTPchannelParticipants MTP_channelParticipants(MTPint _flags, MTPint _channel_id, const MTPChannelParticipant &_self_participant); +}; +typedef MTPBoxed MTPChannelParticipants; class MTPmessageRange : private mtpDataOwner { public: @@ -8394,37 +8447,6 @@ private: }; typedef MTPBoxed MTPChannelMessagesFilter; -class MTPcontacts_resolvedPeer : private mtpDataOwner { -public: - MTPcontacts_resolvedPeer(); - MTPcontacts_resolvedPeer(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_contacts_resolvedPeer) : mtpDataOwner(0) { - read(from, end, cons); - } - - MTPDcontacts_resolvedPeer &_contacts_resolvedPeer() { - if (!data) throw mtpErrorUninitialized(); - split(); - return *(MTPDcontacts_resolvedPeer*)data; - } - const MTPDcontacts_resolvedPeer &c_contacts_resolvedPeer() const { - if (!data) throw mtpErrorUninitialized(); - return *(const MTPDcontacts_resolvedPeer*)data; - } - - uint32 innerLength() const; - mtpTypeId type() const; - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_contacts_resolvedPeer); - void write(mtpBuffer &to) const; - - typedef void ResponseType; - -private: - explicit MTPcontacts_resolvedPeer(MTPDcontacts_resolvedPeer *_data); - - friend MTPcontacts_resolvedPeer MTP_contacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users); -}; -typedef MTPBoxed MTPcontacts_ResolvedPeer; - class MTPchannelParticipant : private mtpDataOwner { public: MTPchannelParticipant() : mtpDataOwner(0), _type(0) { @@ -8457,16 +8479,28 @@ public: return *(const MTPDchannelParticipantModerator*)data; } - MTPDchannelParticipantPublisher &_channelParticipantPublisher() { + MTPDchannelParticipantEditor &_channelParticipantEditor() { if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_channelParticipantPublisher) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantPublisher); + if (_type != mtpc_channelParticipantEditor) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantEditor); split(); - return *(MTPDchannelParticipantPublisher*)data; + return *(MTPDchannelParticipantEditor*)data; } - const MTPDchannelParticipantPublisher &c_channelParticipantPublisher() const { + const MTPDchannelParticipantEditor &c_channelParticipantEditor() const { if (!data) throw mtpErrorUninitialized(); - if (_type != mtpc_channelParticipantPublisher) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantPublisher); - return *(const MTPDchannelParticipantPublisher*)data; + if (_type != mtpc_channelParticipantEditor) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantEditor); + return *(const MTPDchannelParticipantEditor*)data; + } + + MTPDchannelParticipantKicked &_channelParticipantKicked() { + if (!data) throw mtpErrorUninitialized(); + if (_type != mtpc_channelParticipantKicked) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantKicked); + split(); + return *(MTPDchannelParticipantKicked*)data; + } + const MTPDchannelParticipantKicked &c_channelParticipantKicked() const { + if (!data) throw mtpErrorUninitialized(); + if (_type != mtpc_channelParticipantKicked) throw mtpErrorWrongTypeId(_type, mtpc_channelParticipantKicked); + return *(const MTPDchannelParticipantKicked*)data; } MTPDchannelParticipantCreator &_channelParticipantCreator() { @@ -8492,12 +8526,14 @@ private: explicit MTPchannelParticipant(mtpTypeId type); explicit MTPchannelParticipant(MTPDchannelParticipant *_data); explicit MTPchannelParticipant(MTPDchannelParticipantModerator *_data); - explicit MTPchannelParticipant(MTPDchannelParticipantPublisher *_data); + explicit MTPchannelParticipant(MTPDchannelParticipantEditor *_data); + explicit MTPchannelParticipant(MTPDchannelParticipantKicked *_data); explicit MTPchannelParticipant(MTPDchannelParticipantCreator *_data); friend MTPchannelParticipant MTP_channelParticipant(MTPint _user_id, MTPint _inviter_id, MTPint _date); friend MTPchannelParticipant MTP_channelParticipantModerator(MTPint _user_id, MTPint _inviter_id, MTPint _date); - friend MTPchannelParticipant MTP_channelParticipantPublisher(MTPint _user_id, MTPint _inviter_id, MTPint _date); + friend MTPchannelParticipant MTP_channelParticipantEditor(MTPint _user_id, MTPint _inviter_id, MTPint _date); + friend MTPchannelParticipant MTP_channelParticipantKicked(MTPint _user_id, MTPint _kicked_by, MTPint _date); friend MTPchannelParticipant MTP_channelParticipantCreator(MTPint _user_id); mtpTypeId _type; @@ -8524,6 +8560,7 @@ private: friend MTPchannelParticipantsFilter MTP_channelParticipantsRecent(); friend MTPchannelParticipantsFilter MTP_channelParticipantsAdmins(); + friend MTPchannelParticipantsFilter MTP_channelParticipantsKicked(); mtpTypeId _type; }; @@ -8549,42 +8586,73 @@ private: friend MTPchannelParticipantRole MTP_channelRoleEmpty(); friend MTPchannelParticipantRole MTP_channelRoleModerator(); - friend MTPchannelParticipantRole MTP_channelRolePublisher(); + friend MTPchannelParticipantRole MTP_channelRoleEditor(); mtpTypeId _type; }; typedef MTPBoxed MTPChannelParticipantRole; -class MTPmessages_channelParticipants : private mtpDataOwner { +class MTPchannels_channelParticipants : private mtpDataOwner { public: - MTPmessages_channelParticipants(); - MTPmessages_channelParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_channelParticipants) : mtpDataOwner(0) { + MTPchannels_channelParticipants(); + MTPchannels_channelParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_channelParticipants) : mtpDataOwner(0) { read(from, end, cons); } - MTPDmessages_channelParticipants &_messages_channelParticipants() { + MTPDchannels_channelParticipants &_channels_channelParticipants() { if (!data) throw mtpErrorUninitialized(); split(); - return *(MTPDmessages_channelParticipants*)data; + return *(MTPDchannels_channelParticipants*)data; } - const MTPDmessages_channelParticipants &c_messages_channelParticipants() const { + const MTPDchannels_channelParticipants &c_channels_channelParticipants() const { if (!data) throw mtpErrorUninitialized(); - return *(const MTPDmessages_channelParticipants*)data; + return *(const MTPDchannels_channelParticipants*)data; } uint32 innerLength() const; mtpTypeId type() const; - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_channelParticipants); + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_channelParticipants); void write(mtpBuffer &to) const; typedef void ResponseType; private: - explicit MTPmessages_channelParticipants(MTPDmessages_channelParticipants *_data); + explicit MTPchannels_channelParticipants(MTPDchannels_channelParticipants *_data); - friend MTPmessages_channelParticipants MTP_messages_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users); + friend MTPchannels_channelParticipants MTP_channels_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users); }; -typedef MTPBoxed MTPmessages_ChannelParticipants; +typedef MTPBoxed MTPchannels_ChannelParticipants; + +class MTPchannels_channelParticipant : private mtpDataOwner { +public: + MTPchannels_channelParticipant(); + MTPchannels_channelParticipant(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_channelParticipant) : mtpDataOwner(0) { + read(from, end, cons); + } + + MTPDchannels_channelParticipant &_channels_channelParticipant() { + if (!data) throw mtpErrorUninitialized(); + split(); + return *(MTPDchannels_channelParticipant*)data; + } + const MTPDchannels_channelParticipant &c_channels_channelParticipant() const { + if (!data) throw mtpErrorUninitialized(); + return *(const MTPDchannels_channelParticipant*)data; + } + + uint32 innerLength() const; + mtpTypeId type() const; + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_channelParticipant); + void write(mtpBuffer &to) const; + + typedef void ResponseType; + +private: + explicit MTPchannels_channelParticipant(MTPDchannels_channelParticipant *_data); + + friend MTPchannels_channelParticipant MTP_channels_channelParticipant(const MTPChannelParticipant &_participant, const MTPVector &_users); +}; +typedef MTPBoxed MTPchannels_ChannelParticipant; // Type constructors with data @@ -9483,7 +9551,7 @@ public: MTPint vversion; enum { - flag_username = (1 << 2), + flag_username = (1 << 6), }; bool has_username() const { return vflags.v & flag_username; } @@ -9520,11 +9588,11 @@ class MTPDchannelFull : public mtpDataImpl { public: MTPDchannelFull() { } - MTPDchannelFull(MTPint _id, const MTPChatParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite) : vid(_id), vparticipants(_participants), vabout(_about), vread_inbox_max_id(_read_inbox_max_id), vunread_count(_unread_count), vunread_important_count(_unread_important_count), vchat_photo(_chat_photo), vnotify_settings(_notify_settings), vexported_invite(_exported_invite) { + MTPDchannelFull(MTPint _id, const MTPChannelParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite) : vid(_id), vparticipants(_participants), vabout(_about), vread_inbox_max_id(_read_inbox_max_id), vunread_count(_unread_count), vunread_important_count(_unread_important_count), vchat_photo(_chat_photo), vnotify_settings(_notify_settings), vexported_invite(_exported_invite) { } MTPint vid; - MTPChatParticipants vparticipants; + MTPChannelParticipants vparticipants; MTPstring vabout; MTPint vread_inbox_max_id; MTPint vunread_count; @@ -9577,24 +9645,6 @@ public: MTPint vversion; }; -class MTPDchannelParticipants : public mtpDataImpl { -public: - MTPDchannelParticipants() { - } - MTPDchannelParticipants(MTPint _flags, MTPint _channel_id, const MTPChatParticipant &_self_participant) : vflags(_flags), vchannel_id(_channel_id), vself_participant(_self_participant) { - } - - MTPint vflags; - MTPint vchannel_id; - MTPChatParticipant vself_participant; - - enum { - flag_self_participant = (1 << 0), - }; - - bool has_self_participant() const { return vflags.v & flag_self_participant; } -}; - class MTPDchatPhoto : public mtpDataImpl { public: MTPDchatPhoto() { @@ -10722,10 +10772,10 @@ class MTPDupdateReadChannelInbox : public mtpDataImpl &_messages, MTPint _pts, MTPint _pts_count) : vpeer(_peer), vmessages(_messages), vpts(_pts), vpts_count(_pts_count) { + MTPDupdateDeleteChannelMessages(MTPint _channel_id, const MTPVector &_messages, MTPint _pts, MTPint _pts_count) : vchannel_id(_channel_id), vmessages(_messages), vpts(_pts), vpts_count(_pts_count) { } - MTPPeer vpeer; + MTPint vchannel_id; MTPVector vmessages; MTPint vpts; MTPint vpts_count; @@ -10746,10 +10796,10 @@ class MTPDupdateChannelMessageViews : public mtpDataImpl { -public: - MTPDinputChat() { - } - MTPDinputChat(MTPint _chat_id) : vchat_id(_chat_id) { - } - - MTPint vchat_id; -}; - class MTPDinputChannel : public mtpDataImpl { public: MTPDinputChannel() { @@ -12084,6 +12124,36 @@ public: MTPlong vaccess_hash; }; +class MTPDcontacts_resolvedPeer : public mtpDataImpl { +public: + MTPDcontacts_resolvedPeer() { + } + MTPDcontacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users) : vpeer(_peer), vchats(_chats), vusers(_users) { + } + + MTPPeer vpeer; + MTPVector vchats; + MTPVector vusers; +}; + +class MTPDchannelParticipants : public mtpDataImpl { +public: + MTPDchannelParticipants() { + } + MTPDchannelParticipants(MTPint _flags, MTPint _channel_id, const MTPChannelParticipant &_self_participant) : vflags(_flags), vchannel_id(_channel_id), vself_participant(_self_participant) { + } + + MTPint vflags; + MTPint vchannel_id; + MTPChannelParticipant vself_participant; + + enum { + flag_self_participant = (1 << 0), + }; + + bool has_self_participant() const { return vflags.v & flag_self_participant; } +}; + class MTPDmessageRange : public mtpDataImpl { public: MTPDmessageRange() { @@ -12185,18 +12255,6 @@ public: MTPVector vranges; }; -class MTPDcontacts_resolvedPeer : public mtpDataImpl { -public: - MTPDcontacts_resolvedPeer() { - } - MTPDcontacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users) : vpeer(_peer), vchats(_chats), vusers(_users) { - } - - MTPPeer vpeer; - MTPVector vchats; - MTPVector vusers; -}; - class MTPDchannelParticipant : public mtpDataImpl { public: MTPDchannelParticipant() { @@ -12221,11 +12279,11 @@ public: MTPint vdate; }; -class MTPDchannelParticipantPublisher : public mtpDataImpl { +class MTPDchannelParticipantEditor : public mtpDataImpl { public: - MTPDchannelParticipantPublisher() { + MTPDchannelParticipantEditor() { } - MTPDchannelParticipantPublisher(MTPint _user_id, MTPint _inviter_id, MTPint _date) : vuser_id(_user_id), vinviter_id(_inviter_id), vdate(_date) { + MTPDchannelParticipantEditor(MTPint _user_id, MTPint _inviter_id, MTPint _date) : vuser_id(_user_id), vinviter_id(_inviter_id), vdate(_date) { } MTPint vuser_id; @@ -12233,6 +12291,18 @@ public: MTPint vdate; }; +class MTPDchannelParticipantKicked : public mtpDataImpl { +public: + MTPDchannelParticipantKicked() { + } + MTPDchannelParticipantKicked(MTPint _user_id, MTPint _kicked_by, MTPint _date) : vuser_id(_user_id), vkicked_by(_kicked_by), vdate(_date) { + } + + MTPint vuser_id; + MTPint vkicked_by; + MTPint vdate; +}; + class MTPDchannelParticipantCreator : public mtpDataImpl { public: MTPDchannelParticipantCreator() { @@ -12243,11 +12313,11 @@ public: MTPint vuser_id; }; -class MTPDmessages_channelParticipants : public mtpDataImpl { +class MTPDchannels_channelParticipants : public mtpDataImpl { public: - MTPDmessages_channelParticipants() { + MTPDchannels_channelParticipants() { } - MTPDmessages_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users) : vcount(_count), vparticipants(_participants), vusers(_users) { + MTPDchannels_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users) : vcount(_count), vparticipants(_participants), vusers(_users) { } MTPint vcount; @@ -12255,6 +12325,17 @@ public: MTPVector vusers; }; +class MTPDchannels_channelParticipant : public mtpDataImpl { +public: + MTPDchannels_channelParticipant() { + } + MTPDchannels_channelParticipant(const MTPChannelParticipant &_participant, const MTPVector &_users) : vparticipant(_participant), vusers(_users) { + } + + MTPChannelParticipant vparticipant; + MTPVector vusers; +}; + // RPC methods class MTPreq_pq { // RPC method 'req_pq' @@ -15623,14 +15704,14 @@ public: class MTPmessages_getChats { // RPC method 'messages.getChats' public: - MTPVector vid; + MTPVector vid; MTPmessages_getChats() { } MTPmessages_getChats(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChats) { read(from, end, cons); } - MTPmessages_getChats(const MTPVector &_id) : vid(_id) { + MTPmessages_getChats(const MTPVector &_id) : vid(_id) { } uint32 innerLength() const { @@ -15656,20 +15737,20 @@ public: } MTPmessages_GetChats(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_GetChats(const MTPVector &_id) : MTPBoxed(MTPmessages_getChats(_id)) { + MTPmessages_GetChats(const MTPVector &_id) : MTPBoxed(MTPmessages_getChats(_id)) { } }; class MTPmessages_getFullChat { // RPC method 'messages.getFullChat' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPmessages_getFullChat() { } MTPmessages_getFullChat(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getFullChat) { read(from, end, cons); } - MTPmessages_getFullChat(const MTPInputChat &_chat_id) : vchat_id(_chat_id) { + MTPmessages_getFullChat(MTPint _chat_id) : vchat_id(_chat_id) { } uint32 innerLength() const { @@ -15695,13 +15776,13 @@ public: } MTPmessages_GetFullChat(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_GetFullChat(const MTPInputChat &_chat_id) : MTPBoxed(MTPmessages_getFullChat(_chat_id)) { + MTPmessages_GetFullChat(MTPint _chat_id) : MTPBoxed(MTPmessages_getFullChat(_chat_id)) { } }; class MTPmessages_editChatTitle { // RPC method 'messages.editChatTitle' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPstring vtitle; MTPmessages_editChatTitle() { @@ -15709,7 +15790,7 @@ public: MTPmessages_editChatTitle(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatTitle) { read(from, end, cons); } - MTPmessages_editChatTitle(const MTPInputChat &_chat_id, const MTPstring &_title) : vchat_id(_chat_id), vtitle(_title) { + MTPmessages_editChatTitle(MTPint _chat_id, const MTPstring &_title) : vchat_id(_chat_id), vtitle(_title) { } uint32 innerLength() const { @@ -15737,13 +15818,13 @@ public: } MTPmessages_EditChatTitle(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_EditChatTitle(const MTPInputChat &_chat_id, const MTPstring &_title) : MTPBoxed(MTPmessages_editChatTitle(_chat_id, _title)) { + MTPmessages_EditChatTitle(MTPint _chat_id, const MTPstring &_title) : MTPBoxed(MTPmessages_editChatTitle(_chat_id, _title)) { } }; class MTPmessages_editChatPhoto { // RPC method 'messages.editChatPhoto' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPInputChatPhoto vphoto; MTPmessages_editChatPhoto() { @@ -15751,7 +15832,7 @@ public: MTPmessages_editChatPhoto(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatPhoto) { read(from, end, cons); } - MTPmessages_editChatPhoto(const MTPInputChat &_chat_id, const MTPInputChatPhoto &_photo) : vchat_id(_chat_id), vphoto(_photo) { + MTPmessages_editChatPhoto(MTPint _chat_id, const MTPInputChatPhoto &_photo) : vchat_id(_chat_id), vphoto(_photo) { } uint32 innerLength() const { @@ -15779,13 +15860,13 @@ public: } MTPmessages_EditChatPhoto(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_EditChatPhoto(const MTPInputChat &_chat_id, const MTPInputChatPhoto &_photo) : MTPBoxed(MTPmessages_editChatPhoto(_chat_id, _photo)) { + MTPmessages_EditChatPhoto(MTPint _chat_id, const MTPInputChatPhoto &_photo) : MTPBoxed(MTPmessages_editChatPhoto(_chat_id, _photo)) { } }; class MTPmessages_addChatUser { // RPC method 'messages.addChatUser' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPInputUser vuser_id; MTPint vfwd_limit; @@ -15794,7 +15875,7 @@ public: MTPmessages_addChatUser(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_addChatUser) { read(from, end, cons); } - MTPmessages_addChatUser(const MTPInputChat &_chat_id, const MTPInputUser &_user_id, MTPint _fwd_limit) : vchat_id(_chat_id), vuser_id(_user_id), vfwd_limit(_fwd_limit) { + MTPmessages_addChatUser(MTPint _chat_id, const MTPInputUser &_user_id, MTPint _fwd_limit) : vchat_id(_chat_id), vuser_id(_user_id), vfwd_limit(_fwd_limit) { } uint32 innerLength() const { @@ -15824,13 +15905,13 @@ public: } MTPmessages_AddChatUser(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_AddChatUser(const MTPInputChat &_chat_id, const MTPInputUser &_user_id, MTPint _fwd_limit) : MTPBoxed(MTPmessages_addChatUser(_chat_id, _user_id, _fwd_limit)) { + MTPmessages_AddChatUser(MTPint _chat_id, const MTPInputUser &_user_id, MTPint _fwd_limit) : MTPBoxed(MTPmessages_addChatUser(_chat_id, _user_id, _fwd_limit)) { } }; class MTPmessages_deleteChatUser { // RPC method 'messages.deleteChatUser' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPInputUser vuser_id; MTPmessages_deleteChatUser() { @@ -15838,7 +15919,7 @@ public: MTPmessages_deleteChatUser(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_deleteChatUser) { read(from, end, cons); } - MTPmessages_deleteChatUser(const MTPInputChat &_chat_id, const MTPInputUser &_user_id) : vchat_id(_chat_id), vuser_id(_user_id) { + MTPmessages_deleteChatUser(MTPint _chat_id, const MTPInputUser &_user_id) : vchat_id(_chat_id), vuser_id(_user_id) { } uint32 innerLength() const { @@ -15866,7 +15947,7 @@ public: } MTPmessages_DeleteChatUser(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_DeleteChatUser(const MTPInputChat &_chat_id, const MTPInputUser &_user_id) : MTPBoxed(MTPmessages_deleteChatUser(_chat_id, _user_id)) { + MTPmessages_DeleteChatUser(MTPint _chat_id, const MTPInputUser &_user_id) : MTPBoxed(MTPmessages_deleteChatUser(_chat_id, _user_id)) { } }; @@ -16598,14 +16679,14 @@ public: class MTPmessages_exportChatInvite { // RPC method 'messages.exportChatInvite' public: - MTPInputChat vchat_id; + MTPint vchat_id; MTPmessages_exportChatInvite() { } MTPmessages_exportChatInvite(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_exportChatInvite) { read(from, end, cons); } - MTPmessages_exportChatInvite(const MTPInputChat &_chat_id) : vchat_id(_chat_id) { + MTPmessages_exportChatInvite(MTPint _chat_id) : vchat_id(_chat_id) { } uint32 innerLength() const { @@ -16631,7 +16712,7 @@ public: } MTPmessages_ExportChatInvite(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_ExportChatInvite(const MTPInputChat &_chat_id) : MTPBoxed(MTPmessages_exportChatInvite(_chat_id)) { + MTPmessages_ExportChatInvite(MTPint _chat_id) : MTPBoxed(MTPmessages_exportChatInvite(_chat_id)) { } }; @@ -16836,7 +16917,7 @@ public: class MTPmessages_startBot { // RPC method 'messages.startBot' public: MTPInputUser vbot; - MTPInputChat vchat_id; + MTPint vchat_id; MTPlong vrandom_id; MTPstring vstart_param; @@ -16845,7 +16926,7 @@ public: MTPmessages_startBot(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_startBot) { read(from, end, cons); } - MTPmessages_startBot(const MTPInputUser &_bot, const MTPInputChat &_chat_id, const MTPlong &_random_id, const MTPstring &_start_param) : vbot(_bot), vchat_id(_chat_id), vrandom_id(_random_id), vstart_param(_start_param) { + MTPmessages_startBot(const MTPInputUser &_bot, MTPint _chat_id, const MTPlong &_random_id, const MTPstring &_start_param) : vbot(_bot), vchat_id(_chat_id), vrandom_id(_random_id), vstart_param(_start_param) { } uint32 innerLength() const { @@ -16877,361 +16958,7 @@ public: } MTPmessages_StartBot(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_StartBot(const MTPInputUser &_bot, const MTPInputChat &_chat_id, const MTPlong &_random_id, const MTPstring &_start_param) : MTPBoxed(MTPmessages_startBot(_bot, _chat_id, _random_id, _start_param)) { - } -}; - -class MTPmessages_getChannelDialogs { // RPC method 'messages.getChannelDialogs' -public: - MTPint voffset; - MTPint vlimit; - - MTPmessages_getChannelDialogs() { - } - MTPmessages_getChannelDialogs(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelDialogs) { - read(from, end, cons); - } - MTPmessages_getChannelDialogs(MTPint _offset, MTPint _limit) : voffset(_offset), vlimit(_limit) { - } - - uint32 innerLength() const { - return voffset.innerLength() + vlimit.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_getChannelDialogs; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelDialogs) { - voffset.read(from, end); - vlimit.read(from, end); - } - void write(mtpBuffer &to) const { - voffset.write(to); - vlimit.write(to); - } - - typedef MTPmessages_Dialogs ResponseType; -}; -class MTPmessages_GetChannelDialogs : public MTPBoxed { -public: - MTPmessages_GetChannelDialogs() { - } - MTPmessages_GetChannelDialogs(const MTPmessages_getChannelDialogs &v) : MTPBoxed(v) { - } - MTPmessages_GetChannelDialogs(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_GetChannelDialogs(MTPint _offset, MTPint _limit) : MTPBoxed(MTPmessages_getChannelDialogs(_offset, _limit)) { - } -}; - -class MTPmessages_getImportantHistory { // RPC method 'messages.getImportantHistory' -public: - MTPInputPeer vpeer; - MTPint voffset_id; - MTPint vadd_offset; - MTPint vlimit; - MTPint vmax_id; - MTPint vmin_id; - - MTPmessages_getImportantHistory() { - } - MTPmessages_getImportantHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getImportantHistory) { - read(from, end, cons); - } - MTPmessages_getImportantHistory(const MTPInputPeer &_peer, MTPint _offset_id, MTPint _add_offset, MTPint _limit, MTPint _max_id, MTPint _min_id) : vpeer(_peer), voffset_id(_offset_id), vadd_offset(_add_offset), vlimit(_limit), vmax_id(_max_id), vmin_id(_min_id) { - } - - uint32 innerLength() const { - return vpeer.innerLength() + voffset_id.innerLength() + vadd_offset.innerLength() + vlimit.innerLength() + vmax_id.innerLength() + vmin_id.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_getImportantHistory; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getImportantHistory) { - vpeer.read(from, end); - voffset_id.read(from, end); - vadd_offset.read(from, end); - vlimit.read(from, end); - vmax_id.read(from, end); - vmin_id.read(from, end); - } - void write(mtpBuffer &to) const { - vpeer.write(to); - voffset_id.write(to); - vadd_offset.write(to); - vlimit.write(to); - vmax_id.write(to); - vmin_id.write(to); - } - - typedef MTPmessages_Messages ResponseType; -}; -class MTPmessages_GetImportantHistory : public MTPBoxed { -public: - MTPmessages_GetImportantHistory() { - } - MTPmessages_GetImportantHistory(const MTPmessages_getImportantHistory &v) : MTPBoxed(v) { - } - MTPmessages_GetImportantHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_GetImportantHistory(const MTPInputPeer &_peer, MTPint _offset_id, MTPint _add_offset, MTPint _limit, MTPint _max_id, MTPint _min_id) : MTPBoxed(MTPmessages_getImportantHistory(_peer, _offset_id, _add_offset, _limit, _max_id, _min_id)) { - } -}; - -class MTPmessages_readChannelHistory { // RPC method 'messages.readChannelHistory' -public: - MTPInputPeer vpeer; - MTPint vmax_id; - - MTPmessages_readChannelHistory() { - } - MTPmessages_readChannelHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_readChannelHistory) { - read(from, end, cons); - } - MTPmessages_readChannelHistory(const MTPInputPeer &_peer, MTPint _max_id) : vpeer(_peer), vmax_id(_max_id) { - } - - uint32 innerLength() const { - return vpeer.innerLength() + vmax_id.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_readChannelHistory; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_readChannelHistory) { - vpeer.read(from, end); - vmax_id.read(from, end); - } - void write(mtpBuffer &to) const { - vpeer.write(to); - vmax_id.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_ReadChannelHistory : public MTPBoxed { -public: - MTPmessages_ReadChannelHistory() { - } - MTPmessages_ReadChannelHistory(const MTPmessages_readChannelHistory &v) : MTPBoxed(v) { - } - MTPmessages_ReadChannelHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_ReadChannelHistory(const MTPInputPeer &_peer, MTPint _max_id) : MTPBoxed(MTPmessages_readChannelHistory(_peer, _max_id)) { - } -}; - -class MTPmessages_createChannel { // RPC method 'messages.createChannel' -public: - MTPint vflags; - MTPstring vtitle; - MTPstring vabout; - MTPVector vusers; - - MTPmessages_createChannel() { - } - MTPmessages_createChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_createChannel) { - read(from, end, cons); - } - MTPmessages_createChannel(MTPint _flags, const MTPstring &_title, const MTPstring &_about, const MTPVector &_users) : vflags(_flags), vtitle(_title), vabout(_about), vusers(_users) { - } - - uint32 innerLength() const { - return vflags.innerLength() + vtitle.innerLength() + vabout.innerLength() + vusers.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_createChannel; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_createChannel) { - vflags.read(from, end); - vtitle.read(from, end); - vabout.read(from, end); - vusers.read(from, end); - } - void write(mtpBuffer &to) const { - vflags.write(to); - vtitle.write(to); - vabout.write(to); - vusers.write(to); - } - - typedef MTPUpdates ResponseType; -}; -class MTPmessages_CreateChannel : public MTPBoxed { -public: - MTPmessages_CreateChannel() { - } - MTPmessages_CreateChannel(const MTPmessages_createChannel &v) : MTPBoxed(v) { - } - MTPmessages_CreateChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_CreateChannel(MTPint _flags, const MTPstring &_title, const MTPstring &_about, const MTPVector &_users) : MTPBoxed(MTPmessages_createChannel(_flags, _title, _about, _users)) { - } -}; - -class MTPmessages_toggleChannelComments { // RPC method 'messages.toggleChannelComments' -public: - MTPInputChat vchat_id; - MTPBool venabled; - - MTPmessages_toggleChannelComments() { - } - MTPmessages_toggleChannelComments(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_toggleChannelComments) { - read(from, end, cons); - } - MTPmessages_toggleChannelComments(const MTPInputChat &_chat_id, MTPBool _enabled) : vchat_id(_chat_id), venabled(_enabled) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + venabled.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_toggleChannelComments; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_toggleChannelComments) { - vchat_id.read(from, end); - venabled.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - venabled.write(to); - } - - typedef MTPUpdates ResponseType; -}; -class MTPmessages_ToggleChannelComments : public MTPBoxed { -public: - MTPmessages_ToggleChannelComments() { - } - MTPmessages_ToggleChannelComments(const MTPmessages_toggleChannelComments &v) : MTPBoxed(v) { - } - MTPmessages_ToggleChannelComments(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_ToggleChannelComments(const MTPInputChat &_chat_id, MTPBool _enabled) : MTPBoxed(MTPmessages_toggleChannelComments(_chat_id, _enabled)) { - } -}; - -class MTPmessages_deleteChannelMessages { // RPC method 'messages.deleteChannelMessages' -public: - MTPInputPeer vpeer; - MTPVector vid; - - MTPmessages_deleteChannelMessages() { - } - MTPmessages_deleteChannelMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_deleteChannelMessages) { - read(from, end, cons); - } - MTPmessages_deleteChannelMessages(const MTPInputPeer &_peer, const MTPVector &_id) : vpeer(_peer), vid(_id) { - } - - uint32 innerLength() const { - return vpeer.innerLength() + vid.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_deleteChannelMessages; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_deleteChannelMessages) { - vpeer.read(from, end); - vid.read(from, end); - } - void write(mtpBuffer &to) const { - vpeer.write(to); - vid.write(to); - } - - typedef MTPmessages_AffectedMessages ResponseType; -}; -class MTPmessages_DeleteChannelMessages : public MTPBoxed { -public: - MTPmessages_DeleteChannelMessages() { - } - MTPmessages_DeleteChannelMessages(const MTPmessages_deleteChannelMessages &v) : MTPBoxed(v) { - } - MTPmessages_DeleteChannelMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_DeleteChannelMessages(const MTPInputPeer &_peer, const MTPVector &_id) : MTPBoxed(MTPmessages_deleteChannelMessages(_peer, _id)) { - } -}; - -class MTPmessages_getChannelMessages { // RPC method 'messages.getChannelMessages' -public: - MTPInputPeer vpeer; - MTPVector vid; - - MTPmessages_getChannelMessages() { - } - MTPmessages_getChannelMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelMessages) { - read(from, end, cons); - } - MTPmessages_getChannelMessages(const MTPInputPeer &_peer, const MTPVector &_id) : vpeer(_peer), vid(_id) { - } - - uint32 innerLength() const { - return vpeer.innerLength() + vid.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_getChannelMessages; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelMessages) { - vpeer.read(from, end); - vid.read(from, end); - } - void write(mtpBuffer &to) const { - vpeer.write(to); - vid.write(to); - } - - typedef MTPmessages_Messages ResponseType; -}; -class MTPmessages_GetChannelMessages : public MTPBoxed { -public: - MTPmessages_GetChannelMessages() { - } - MTPmessages_GetChannelMessages(const MTPmessages_getChannelMessages &v) : MTPBoxed(v) { - } - MTPmessages_GetChannelMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_GetChannelMessages(const MTPInputPeer &_peer, const MTPVector &_id) : MTPBoxed(MTPmessages_getChannelMessages(_peer, _id)) { - } -}; - -class MTPmessages_incrementMessagesViews { // RPC method 'messages.incrementMessagesViews' -public: - MTPInputPeer vpeer; - MTPVector vid; - - MTPmessages_incrementMessagesViews() { - } - MTPmessages_incrementMessagesViews(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_incrementMessagesViews) { - read(from, end, cons); - } - MTPmessages_incrementMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id) : vpeer(_peer), vid(_id) { - } - - uint32 innerLength() const { - return vpeer.innerLength() + vid.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_incrementMessagesViews; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_incrementMessagesViews) { - vpeer.read(from, end); - vid.read(from, end); - } - void write(mtpBuffer &to) const { - vpeer.write(to); - vid.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_IncrementMessagesViews : public MTPBoxed { -public: - MTPmessages_IncrementMessagesViews() { - } - MTPmessages_IncrementMessagesViews(const MTPmessages_incrementMessagesViews &v) : MTPBoxed(v) { - } - MTPmessages_IncrementMessagesViews(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_IncrementMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id) : MTPBoxed(MTPmessages_incrementMessagesViews(_peer, _id)) { + MTPmessages_StartBot(const MTPInputUser &_bot, MTPint _chat_id, const MTPlong &_random_id, const MTPstring &_start_param) : MTPBoxed(MTPmessages_startBot(_bot, _chat_id, _random_id, _start_param)) { } }; @@ -17239,17 +16966,18 @@ class MTPmessages_getMessagesViews { // RPC method 'messages.getMessagesViews' public: MTPInputPeer vpeer; MTPVector vid; + MTPBool vincrement; MTPmessages_getMessagesViews() { } MTPmessages_getMessagesViews(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getMessagesViews) { read(from, end, cons); } - MTPmessages_getMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id) : vpeer(_peer), vid(_id) { + MTPmessages_getMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id, MTPBool _increment) : vpeer(_peer), vid(_id), vincrement(_increment) { } uint32 innerLength() const { - return vpeer.innerLength() + vid.innerLength(); + return vpeer.innerLength() + vid.innerLength() + vincrement.innerLength(); } mtpTypeId type() const { return mtpc_messages_getMessagesViews; @@ -17257,10 +16985,12 @@ public: void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getMessagesViews) { vpeer.read(from, end); vid.read(from, end); + vincrement.read(from, end); } void write(mtpBuffer &to) const { vpeer.write(to); vid.write(to); + vincrement.write(to); } typedef MTPVector ResponseType; @@ -17273,226 +17003,7 @@ public: } MTPmessages_GetMessagesViews(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPmessages_GetMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id) : MTPBoxed(MTPmessages_getMessagesViews(_peer, _id)) { - } -}; - -class MTPmessages_editChatAbout { // RPC method 'messages.editChatAbout' -public: - MTPInputChat vchat_id; - MTPstring vabout; - - MTPmessages_editChatAbout() { - } - MTPmessages_editChatAbout(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatAbout) { - read(from, end, cons); - } - MTPmessages_editChatAbout(const MTPInputChat &_chat_id, const MTPstring &_about) : vchat_id(_chat_id), vabout(_about) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + vabout.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_editChatAbout; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatAbout) { - vchat_id.read(from, end); - vabout.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - vabout.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_EditChatAbout : public MTPBoxed { -public: - MTPmessages_EditChatAbout() { - } - MTPmessages_EditChatAbout(const MTPmessages_editChatAbout &v) : MTPBoxed(v) { - } - MTPmessages_EditChatAbout(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_EditChatAbout(const MTPInputChat &_chat_id, const MTPstring &_about) : MTPBoxed(MTPmessages_editChatAbout(_chat_id, _about)) { - } -}; - -class MTPmessages_getChannelParticipants { // RPC method 'messages.getChannelParticipants' -public: - MTPInputChat vchat_id; - MTPChannelParticipantsFilter vfilter; - MTPint voffset; - MTPint vlimit; - - MTPmessages_getChannelParticipants() { - } - MTPmessages_getChannelParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelParticipants) { - read(from, end, cons); - } - MTPmessages_getChannelParticipants(const MTPInputChat &_chat_id, const MTPChannelParticipantsFilter &_filter, MTPint _offset, MTPint _limit) : vchat_id(_chat_id), vfilter(_filter), voffset(_offset), vlimit(_limit) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + vfilter.innerLength() + voffset.innerLength() + vlimit.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_getChannelParticipants; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_getChannelParticipants) { - vchat_id.read(from, end); - vfilter.read(from, end); - voffset.read(from, end); - vlimit.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - vfilter.write(to); - voffset.write(to); - vlimit.write(to); - } - - typedef MTPmessages_ChannelParticipants ResponseType; -}; -class MTPmessages_GetChannelParticipants : public MTPBoxed { -public: - MTPmessages_GetChannelParticipants() { - } - MTPmessages_GetChannelParticipants(const MTPmessages_getChannelParticipants &v) : MTPBoxed(v) { - } - MTPmessages_GetChannelParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_GetChannelParticipants(const MTPInputChat &_chat_id, const MTPChannelParticipantsFilter &_filter, MTPint _offset, MTPint _limit) : MTPBoxed(MTPmessages_getChannelParticipants(_chat_id, _filter, _offset, _limit)) { - } -}; - -class MTPmessages_editChatAdmin { // RPC method 'messages.editChatAdmin' -public: - MTPInputChat vchat_id; - MTPInputUser vuser_id; - MTPChannelParticipantRole vrole; - - MTPmessages_editChatAdmin() { - } - MTPmessages_editChatAdmin(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatAdmin) { - read(from, end, cons); - } - MTPmessages_editChatAdmin(const MTPInputChat &_chat_id, const MTPInputUser &_user_id, const MTPChannelParticipantRole &_role) : vchat_id(_chat_id), vuser_id(_user_id), vrole(_role) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + vuser_id.innerLength() + vrole.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_editChatAdmin; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_editChatAdmin) { - vchat_id.read(from, end); - vuser_id.read(from, end); - vrole.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - vuser_id.write(to); - vrole.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_EditChatAdmin : public MTPBoxed { -public: - MTPmessages_EditChatAdmin() { - } - MTPmessages_EditChatAdmin(const MTPmessages_editChatAdmin &v) : MTPBoxed(v) { - } - MTPmessages_EditChatAdmin(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_EditChatAdmin(const MTPInputChat &_chat_id, const MTPInputUser &_user_id, const MTPChannelParticipantRole &_role) : MTPBoxed(MTPmessages_editChatAdmin(_chat_id, _user_id, _role)) { - } -}; - -class MTPmessages_checkChannelUsername { // RPC method 'messages.checkChannelUsername' -public: - MTPInputChat vchat_id; - MTPstring vusername; - - MTPmessages_checkChannelUsername() { - } - MTPmessages_checkChannelUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_checkChannelUsername) { - read(from, end, cons); - } - MTPmessages_checkChannelUsername(const MTPInputChat &_chat_id, const MTPstring &_username) : vchat_id(_chat_id), vusername(_username) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + vusername.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_checkChannelUsername; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_checkChannelUsername) { - vchat_id.read(from, end); - vusername.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - vusername.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_CheckChannelUsername : public MTPBoxed { -public: - MTPmessages_CheckChannelUsername() { - } - MTPmessages_CheckChannelUsername(const MTPmessages_checkChannelUsername &v) : MTPBoxed(v) { - } - MTPmessages_CheckChannelUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_CheckChannelUsername(const MTPInputChat &_chat_id, const MTPstring &_username) : MTPBoxed(MTPmessages_checkChannelUsername(_chat_id, _username)) { - } -}; - -class MTPmessages_updateChannelUsername { // RPC method 'messages.updateChannelUsername' -public: - MTPInputChat vchat_id; - MTPstring vusername; - - MTPmessages_updateChannelUsername() { - } - MTPmessages_updateChannelUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_updateChannelUsername) { - read(from, end, cons); - } - MTPmessages_updateChannelUsername(const MTPInputChat &_chat_id, const MTPstring &_username) : vchat_id(_chat_id), vusername(_username) { - } - - uint32 innerLength() const { - return vchat_id.innerLength() + vusername.innerLength(); - } - mtpTypeId type() const { - return mtpc_messages_updateChannelUsername; - } - void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_messages_updateChannelUsername) { - vchat_id.read(from, end); - vusername.read(from, end); - } - void write(mtpBuffer &to) const { - vchat_id.write(to); - vusername.write(to); - } - - typedef MTPBool ResponseType; -}; -class MTPmessages_UpdateChannelUsername : public MTPBoxed { -public: - MTPmessages_UpdateChannelUsername() { - } - MTPmessages_UpdateChannelUsername(const MTPmessages_updateChannelUsername &v) : MTPBoxed(v) { - } - MTPmessages_UpdateChannelUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { - } - MTPmessages_UpdateChannelUsername(const MTPInputChat &_chat_id, const MTPstring &_username) : MTPBoxed(MTPmessages_updateChannelUsername(_chat_id, _username)) { + MTPmessages_GetMessagesViews(const MTPInputPeer &_peer, const MTPVector &_id, MTPBool _increment) : MTPBoxed(MTPmessages_getMessagesViews(_peer, _id, _increment)) { } }; @@ -17574,7 +17085,7 @@ public: class MTPupdates_getChannelDifference { // RPC method 'updates.getChannelDifference' public: - MTPInputPeer vpeer; + MTPInputChannel vchannel; MTPChannelMessagesFilter vfilter; MTPint vpts; MTPint vlimit; @@ -17584,23 +17095,23 @@ public: MTPupdates_getChannelDifference(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_updates_getChannelDifference) { read(from, end, cons); } - MTPupdates_getChannelDifference(const MTPInputPeer &_peer, const MTPChannelMessagesFilter &_filter, MTPint _pts, MTPint _limit) : vpeer(_peer), vfilter(_filter), vpts(_pts), vlimit(_limit) { + MTPupdates_getChannelDifference(const MTPInputChannel &_channel, const MTPChannelMessagesFilter &_filter, MTPint _pts, MTPint _limit) : vchannel(_channel), vfilter(_filter), vpts(_pts), vlimit(_limit) { } uint32 innerLength() const { - return vpeer.innerLength() + vfilter.innerLength() + vpts.innerLength() + vlimit.innerLength(); + return vchannel.innerLength() + vfilter.innerLength() + vpts.innerLength() + vlimit.innerLength(); } mtpTypeId type() const { return mtpc_updates_getChannelDifference; } void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_updates_getChannelDifference) { - vpeer.read(from, end); + vchannel.read(from, end); vfilter.read(from, end); vpts.read(from, end); vlimit.read(from, end); } void write(mtpBuffer &to) const { - vpeer.write(to); + vchannel.write(to); vfilter.write(to); vpts.write(to); vlimit.write(to); @@ -17616,7 +17127,7 @@ public: } MTPupdates_GetChannelDifference(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { } - MTPupdates_GetChannelDifference(const MTPInputPeer &_peer, const MTPChannelMessagesFilter &_filter, MTPint _pts, MTPint _limit) : MTPBoxed(MTPupdates_getChannelDifference(_peer, _filter, _pts, _limit)) { + MTPupdates_GetChannelDifference(const MTPInputChannel &_channel, const MTPChannelMessagesFilter &_filter, MTPint _pts, MTPint _limit) : MTPBoxed(MTPupdates_getChannelDifference(_channel, _filter, _pts, _limit)) { } }; @@ -18202,6 +17713,984 @@ public: } }; +class MTPchannels_getDialogs { // RPC method 'channels.getDialogs' +public: + MTPint voffset; + MTPint vlimit; + + MTPchannels_getDialogs() { + } + MTPchannels_getDialogs(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getDialogs) { + read(from, end, cons); + } + MTPchannels_getDialogs(MTPint _offset, MTPint _limit) : voffset(_offset), vlimit(_limit) { + } + + uint32 innerLength() const { + return voffset.innerLength() + vlimit.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getDialogs; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getDialogs) { + voffset.read(from, end); + vlimit.read(from, end); + } + void write(mtpBuffer &to) const { + voffset.write(to); + vlimit.write(to); + } + + typedef MTPmessages_Dialogs ResponseType; +}; +class MTPchannels_GetDialogs : public MTPBoxed { +public: + MTPchannels_GetDialogs() { + } + MTPchannels_GetDialogs(const MTPchannels_getDialogs &v) : MTPBoxed(v) { + } + MTPchannels_GetDialogs(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetDialogs(MTPint _offset, MTPint _limit) : MTPBoxed(MTPchannels_getDialogs(_offset, _limit)) { + } +}; + +class MTPchannels_getImportantHistory { // RPC method 'channels.getImportantHistory' +public: + MTPInputChannel vchannel; + MTPint voffset_id; + MTPint vadd_offset; + MTPint vlimit; + MTPint vmax_id; + MTPint vmin_id; + + MTPchannels_getImportantHistory() { + } + MTPchannels_getImportantHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getImportantHistory) { + read(from, end, cons); + } + MTPchannels_getImportantHistory(const MTPInputChannel &_channel, MTPint _offset_id, MTPint _add_offset, MTPint _limit, MTPint _max_id, MTPint _min_id) : vchannel(_channel), voffset_id(_offset_id), vadd_offset(_add_offset), vlimit(_limit), vmax_id(_max_id), vmin_id(_min_id) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + voffset_id.innerLength() + vadd_offset.innerLength() + vlimit.innerLength() + vmax_id.innerLength() + vmin_id.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getImportantHistory; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getImportantHistory) { + vchannel.read(from, end); + voffset_id.read(from, end); + vadd_offset.read(from, end); + vlimit.read(from, end); + vmax_id.read(from, end); + vmin_id.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + voffset_id.write(to); + vadd_offset.write(to); + vlimit.write(to); + vmax_id.write(to); + vmin_id.write(to); + } + + typedef MTPmessages_Messages ResponseType; +}; +class MTPchannels_GetImportantHistory : public MTPBoxed { +public: + MTPchannels_GetImportantHistory() { + } + MTPchannels_GetImportantHistory(const MTPchannels_getImportantHistory &v) : MTPBoxed(v) { + } + MTPchannels_GetImportantHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetImportantHistory(const MTPInputChannel &_channel, MTPint _offset_id, MTPint _add_offset, MTPint _limit, MTPint _max_id, MTPint _min_id) : MTPBoxed(MTPchannels_getImportantHistory(_channel, _offset_id, _add_offset, _limit, _max_id, _min_id)) { + } +}; + +class MTPchannels_readHistory { // RPC method 'channels.readHistory' +public: + MTPInputChannel vchannel; + MTPint vmax_id; + + MTPchannels_readHistory() { + } + MTPchannels_readHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_readHistory) { + read(from, end, cons); + } + MTPchannels_readHistory(const MTPInputChannel &_channel, MTPint _max_id) : vchannel(_channel), vmax_id(_max_id) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vmax_id.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_readHistory; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_readHistory) { + vchannel.read(from, end); + vmax_id.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vmax_id.write(to); + } + + typedef MTPBool ResponseType; +}; +class MTPchannels_ReadHistory : public MTPBoxed { +public: + MTPchannels_ReadHistory() { + } + MTPchannels_ReadHistory(const MTPchannels_readHistory &v) : MTPBoxed(v) { + } + MTPchannels_ReadHistory(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_ReadHistory(const MTPInputChannel &_channel, MTPint _max_id) : MTPBoxed(MTPchannels_readHistory(_channel, _max_id)) { + } +}; + +class MTPchannels_deleteMessages { // RPC method 'channels.deleteMessages' +public: + MTPInputChannel vchannel; + MTPVector vid; + + MTPchannels_deleteMessages() { + } + MTPchannels_deleteMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_deleteMessages) { + read(from, end, cons); + } + MTPchannels_deleteMessages(const MTPInputChannel &_channel, const MTPVector &_id) : vchannel(_channel), vid(_id) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vid.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_deleteMessages; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_deleteMessages) { + vchannel.read(from, end); + vid.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vid.write(to); + } + + typedef MTPmessages_AffectedMessages ResponseType; +}; +class MTPchannels_DeleteMessages : public MTPBoxed { +public: + MTPchannels_DeleteMessages() { + } + MTPchannels_DeleteMessages(const MTPchannels_deleteMessages &v) : MTPBoxed(v) { + } + MTPchannels_DeleteMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_DeleteMessages(const MTPInputChannel &_channel, const MTPVector &_id) : MTPBoxed(MTPchannels_deleteMessages(_channel, _id)) { + } +}; + +class MTPchannels_getMessages { // RPC method 'channels.getMessages' +public: + MTPInputChannel vchannel; + MTPVector vid; + + MTPchannels_getMessages() { + } + MTPchannels_getMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getMessages) { + read(from, end, cons); + } + MTPchannels_getMessages(const MTPInputChannel &_channel, const MTPVector &_id) : vchannel(_channel), vid(_id) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vid.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getMessages; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getMessages) { + vchannel.read(from, end); + vid.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vid.write(to); + } + + typedef MTPmessages_Messages ResponseType; +}; +class MTPchannels_GetMessages : public MTPBoxed { +public: + MTPchannels_GetMessages() { + } + MTPchannels_GetMessages(const MTPchannels_getMessages &v) : MTPBoxed(v) { + } + MTPchannels_GetMessages(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetMessages(const MTPInputChannel &_channel, const MTPVector &_id) : MTPBoxed(MTPchannels_getMessages(_channel, _id)) { + } +}; + +class MTPchannels_getParticipants { // RPC method 'channels.getParticipants' +public: + MTPInputChannel vchannel; + MTPChannelParticipantsFilter vfilter; + MTPint voffset; + MTPint vlimit; + + MTPchannels_getParticipants() { + } + MTPchannels_getParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getParticipants) { + read(from, end, cons); + } + MTPchannels_getParticipants(const MTPInputChannel &_channel, const MTPChannelParticipantsFilter &_filter, MTPint _offset, MTPint _limit) : vchannel(_channel), vfilter(_filter), voffset(_offset), vlimit(_limit) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vfilter.innerLength() + voffset.innerLength() + vlimit.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getParticipants; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getParticipants) { + vchannel.read(from, end); + vfilter.read(from, end); + voffset.read(from, end); + vlimit.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vfilter.write(to); + voffset.write(to); + vlimit.write(to); + } + + typedef MTPchannels_ChannelParticipants ResponseType; +}; +class MTPchannels_GetParticipants : public MTPBoxed { +public: + MTPchannels_GetParticipants() { + } + MTPchannels_GetParticipants(const MTPchannels_getParticipants &v) : MTPBoxed(v) { + } + MTPchannels_GetParticipants(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetParticipants(const MTPInputChannel &_channel, const MTPChannelParticipantsFilter &_filter, MTPint _offset, MTPint _limit) : MTPBoxed(MTPchannels_getParticipants(_channel, _filter, _offset, _limit)) { + } +}; + +class MTPchannels_getParticipant { // RPC method 'channels.getParticipant' +public: + MTPInputChannel vchannel; + MTPInputUser vuser_id; + + MTPchannels_getParticipant() { + } + MTPchannels_getParticipant(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getParticipant) { + read(from, end, cons); + } + MTPchannels_getParticipant(const MTPInputChannel &_channel, const MTPInputUser &_user_id) : vchannel(_channel), vuser_id(_user_id) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vuser_id.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getParticipant; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getParticipant) { + vchannel.read(from, end); + vuser_id.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vuser_id.write(to); + } + + typedef MTPchannels_ChannelParticipant ResponseType; +}; +class MTPchannels_GetParticipant : public MTPBoxed { +public: + MTPchannels_GetParticipant() { + } + MTPchannels_GetParticipant(const MTPchannels_getParticipant &v) : MTPBoxed(v) { + } + MTPchannels_GetParticipant(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetParticipant(const MTPInputChannel &_channel, const MTPInputUser &_user_id) : MTPBoxed(MTPchannels_getParticipant(_channel, _user_id)) { + } +}; + +class MTPchannels_getChannels { // RPC method 'channels.getChannels' +public: + MTPVector vid; + + MTPchannels_getChannels() { + } + MTPchannels_getChannels(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getChannels) { + read(from, end, cons); + } + MTPchannels_getChannels(const MTPVector &_id) : vid(_id) { + } + + uint32 innerLength() const { + return vid.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getChannels; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getChannels) { + vid.read(from, end); + } + void write(mtpBuffer &to) const { + vid.write(to); + } + + typedef MTPmessages_Chats ResponseType; +}; +class MTPchannels_GetChannels : public MTPBoxed { +public: + MTPchannels_GetChannels() { + } + MTPchannels_GetChannels(const MTPchannels_getChannels &v) : MTPBoxed(v) { + } + MTPchannels_GetChannels(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetChannels(const MTPVector &_id) : MTPBoxed(MTPchannels_getChannels(_id)) { + } +}; + +class MTPchannels_getFullChannel { // RPC method 'channels.getFullChannel' +public: + MTPInputChannel vchannel; + + MTPchannels_getFullChannel() { + } + MTPchannels_getFullChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getFullChannel) { + read(from, end, cons); + } + MTPchannels_getFullChannel(const MTPInputChannel &_channel) : vchannel(_channel) { + } + + uint32 innerLength() const { + return vchannel.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_getFullChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_getFullChannel) { + vchannel.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + } + + typedef MTPmessages_ChatFull ResponseType; +}; +class MTPchannels_GetFullChannel : public MTPBoxed { +public: + MTPchannels_GetFullChannel() { + } + MTPchannels_GetFullChannel(const MTPchannels_getFullChannel &v) : MTPBoxed(v) { + } + MTPchannels_GetFullChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_GetFullChannel(const MTPInputChannel &_channel) : MTPBoxed(MTPchannels_getFullChannel(_channel)) { + } +}; + +class MTPchannels_createChannel { // RPC method 'channels.createChannel' +public: + MTPint vflags; + MTPstring vtitle; + MTPstring vabout; + MTPVector vusers; + + MTPchannels_createChannel() { + } + MTPchannels_createChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_createChannel) { + read(from, end, cons); + } + MTPchannels_createChannel(MTPint _flags, const MTPstring &_title, const MTPstring &_about, const MTPVector &_users) : vflags(_flags), vtitle(_title), vabout(_about), vusers(_users) { + } + + uint32 innerLength() const { + return vflags.innerLength() + vtitle.innerLength() + vabout.innerLength() + vusers.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_createChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_createChannel) { + vflags.read(from, end); + vtitle.read(from, end); + vabout.read(from, end); + vusers.read(from, end); + } + void write(mtpBuffer &to) const { + vflags.write(to); + vtitle.write(to); + vabout.write(to); + vusers.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_CreateChannel : public MTPBoxed { +public: + MTPchannels_CreateChannel() { + } + MTPchannels_CreateChannel(const MTPchannels_createChannel &v) : MTPBoxed(v) { + } + MTPchannels_CreateChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_CreateChannel(MTPint _flags, const MTPstring &_title, const MTPstring &_about, const MTPVector &_users) : MTPBoxed(MTPchannels_createChannel(_flags, _title, _about, _users)) { + } +}; + +class MTPchannels_editAbout { // RPC method 'channels.editAbout' +public: + MTPInputChannel vchannel; + MTPstring vabout; + + MTPchannels_editAbout() { + } + MTPchannels_editAbout(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editAbout) { + read(from, end, cons); + } + MTPchannels_editAbout(const MTPInputChannel &_channel, const MTPstring &_about) : vchannel(_channel), vabout(_about) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vabout.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_editAbout; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editAbout) { + vchannel.read(from, end); + vabout.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vabout.write(to); + } + + typedef MTPBool ResponseType; +}; +class MTPchannels_EditAbout : public MTPBoxed { +public: + MTPchannels_EditAbout() { + } + MTPchannels_EditAbout(const MTPchannels_editAbout &v) : MTPBoxed(v) { + } + MTPchannels_EditAbout(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_EditAbout(const MTPInputChannel &_channel, const MTPstring &_about) : MTPBoxed(MTPchannels_editAbout(_channel, _about)) { + } +}; + +class MTPchannels_editAdmin { // RPC method 'channels.editAdmin' +public: + MTPInputChannel vchannel; + MTPInputUser vuser_id; + MTPChannelParticipantRole vrole; + + MTPchannels_editAdmin() { + } + MTPchannels_editAdmin(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editAdmin) { + read(from, end, cons); + } + MTPchannels_editAdmin(const MTPInputChannel &_channel, const MTPInputUser &_user_id, const MTPChannelParticipantRole &_role) : vchannel(_channel), vuser_id(_user_id), vrole(_role) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vuser_id.innerLength() + vrole.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_editAdmin; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editAdmin) { + vchannel.read(from, end); + vuser_id.read(from, end); + vrole.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vuser_id.write(to); + vrole.write(to); + } + + typedef MTPBool ResponseType; +}; +class MTPchannels_EditAdmin : public MTPBoxed { +public: + MTPchannels_EditAdmin() { + } + MTPchannels_EditAdmin(const MTPchannels_editAdmin &v) : MTPBoxed(v) { + } + MTPchannels_EditAdmin(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_EditAdmin(const MTPInputChannel &_channel, const MTPInputUser &_user_id, const MTPChannelParticipantRole &_role) : MTPBoxed(MTPchannels_editAdmin(_channel, _user_id, _role)) { + } +}; + +class MTPchannels_editTitle { // RPC method 'channels.editTitle' +public: + MTPInputChannel vchannel; + MTPstring vtitle; + + MTPchannels_editTitle() { + } + MTPchannels_editTitle(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editTitle) { + read(from, end, cons); + } + MTPchannels_editTitle(const MTPInputChannel &_channel, const MTPstring &_title) : vchannel(_channel), vtitle(_title) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vtitle.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_editTitle; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editTitle) { + vchannel.read(from, end); + vtitle.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vtitle.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_EditTitle : public MTPBoxed { +public: + MTPchannels_EditTitle() { + } + MTPchannels_EditTitle(const MTPchannels_editTitle &v) : MTPBoxed(v) { + } + MTPchannels_EditTitle(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_EditTitle(const MTPInputChannel &_channel, const MTPstring &_title) : MTPBoxed(MTPchannels_editTitle(_channel, _title)) { + } +}; + +class MTPchannels_editPhoto { // RPC method 'channels.editPhoto' +public: + MTPInputChannel vchannel; + MTPInputChatPhoto vphoto; + + MTPchannels_editPhoto() { + } + MTPchannels_editPhoto(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editPhoto) { + read(from, end, cons); + } + MTPchannels_editPhoto(const MTPInputChannel &_channel, const MTPInputChatPhoto &_photo) : vchannel(_channel), vphoto(_photo) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vphoto.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_editPhoto; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_editPhoto) { + vchannel.read(from, end); + vphoto.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vphoto.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_EditPhoto : public MTPBoxed { +public: + MTPchannels_EditPhoto() { + } + MTPchannels_EditPhoto(const MTPchannels_editPhoto &v) : MTPBoxed(v) { + } + MTPchannels_EditPhoto(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_EditPhoto(const MTPInputChannel &_channel, const MTPInputChatPhoto &_photo) : MTPBoxed(MTPchannels_editPhoto(_channel, _photo)) { + } +}; + +class MTPchannels_toggleComments { // RPC method 'channels.toggleComments' +public: + MTPInputChannel vchannel; + MTPBool venabled; + + MTPchannels_toggleComments() { + } + MTPchannels_toggleComments(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_toggleComments) { + read(from, end, cons); + } + MTPchannels_toggleComments(const MTPInputChannel &_channel, MTPBool _enabled) : vchannel(_channel), venabled(_enabled) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + venabled.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_toggleComments; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_toggleComments) { + vchannel.read(from, end); + venabled.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + venabled.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_ToggleComments : public MTPBoxed { +public: + MTPchannels_ToggleComments() { + } + MTPchannels_ToggleComments(const MTPchannels_toggleComments &v) : MTPBoxed(v) { + } + MTPchannels_ToggleComments(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_ToggleComments(const MTPInputChannel &_channel, MTPBool _enabled) : MTPBoxed(MTPchannels_toggleComments(_channel, _enabled)) { + } +}; + +class MTPchannels_checkUsername { // RPC method 'channels.checkUsername' +public: + MTPInputChannel vchannel; + MTPstring vusername; + + MTPchannels_checkUsername() { + } + MTPchannels_checkUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_checkUsername) { + read(from, end, cons); + } + MTPchannels_checkUsername(const MTPInputChannel &_channel, const MTPstring &_username) : vchannel(_channel), vusername(_username) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vusername.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_checkUsername; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_checkUsername) { + vchannel.read(from, end); + vusername.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vusername.write(to); + } + + typedef MTPBool ResponseType; +}; +class MTPchannels_CheckUsername : public MTPBoxed { +public: + MTPchannels_CheckUsername() { + } + MTPchannels_CheckUsername(const MTPchannels_checkUsername &v) : MTPBoxed(v) { + } + MTPchannels_CheckUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_CheckUsername(const MTPInputChannel &_channel, const MTPstring &_username) : MTPBoxed(MTPchannels_checkUsername(_channel, _username)) { + } +}; + +class MTPchannels_updateUsername { // RPC method 'channels.updateUsername' +public: + MTPInputChannel vchannel; + MTPstring vusername; + + MTPchannels_updateUsername() { + } + MTPchannels_updateUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_updateUsername) { + read(from, end, cons); + } + MTPchannels_updateUsername(const MTPInputChannel &_channel, const MTPstring &_username) : vchannel(_channel), vusername(_username) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vusername.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_updateUsername; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_updateUsername) { + vchannel.read(from, end); + vusername.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vusername.write(to); + } + + typedef MTPBool ResponseType; +}; +class MTPchannels_UpdateUsername : public MTPBoxed { +public: + MTPchannels_UpdateUsername() { + } + MTPchannels_UpdateUsername(const MTPchannels_updateUsername &v) : MTPBoxed(v) { + } + MTPchannels_UpdateUsername(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_UpdateUsername(const MTPInputChannel &_channel, const MTPstring &_username) : MTPBoxed(MTPchannels_updateUsername(_channel, _username)) { + } +}; + +class MTPchannels_joinChannel { // RPC method 'channels.joinChannel' +public: + MTPInputChannel vchannel; + + MTPchannels_joinChannel() { + } + MTPchannels_joinChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_joinChannel) { + read(from, end, cons); + } + MTPchannels_joinChannel(const MTPInputChannel &_channel) : vchannel(_channel) { + } + + uint32 innerLength() const { + return vchannel.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_joinChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_joinChannel) { + vchannel.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_JoinChannel : public MTPBoxed { +public: + MTPchannels_JoinChannel() { + } + MTPchannels_JoinChannel(const MTPchannels_joinChannel &v) : MTPBoxed(v) { + } + MTPchannels_JoinChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_JoinChannel(const MTPInputChannel &_channel) : MTPBoxed(MTPchannels_joinChannel(_channel)) { + } +}; + +class MTPchannels_leaveChannel { // RPC method 'channels.leaveChannel' +public: + MTPInputChannel vchannel; + + MTPchannels_leaveChannel() { + } + MTPchannels_leaveChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_leaveChannel) { + read(from, end, cons); + } + MTPchannels_leaveChannel(const MTPInputChannel &_channel) : vchannel(_channel) { + } + + uint32 innerLength() const { + return vchannel.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_leaveChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_leaveChannel) { + vchannel.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_LeaveChannel : public MTPBoxed { +public: + MTPchannels_LeaveChannel() { + } + MTPchannels_LeaveChannel(const MTPchannels_leaveChannel &v) : MTPBoxed(v) { + } + MTPchannels_LeaveChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_LeaveChannel(const MTPInputChannel &_channel) : MTPBoxed(MTPchannels_leaveChannel(_channel)) { + } +}; + +class MTPchannels_inviteToChannel { // RPC method 'channels.inviteToChannel' +public: + MTPInputChannel vchannel; + MTPVector vusers; + + MTPchannels_inviteToChannel() { + } + MTPchannels_inviteToChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_inviteToChannel) { + read(from, end, cons); + } + MTPchannels_inviteToChannel(const MTPInputChannel &_channel, const MTPVector &_users) : vchannel(_channel), vusers(_users) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vusers.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_inviteToChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_inviteToChannel) { + vchannel.read(from, end); + vusers.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vusers.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_InviteToChannel : public MTPBoxed { +public: + MTPchannels_InviteToChannel() { + } + MTPchannels_InviteToChannel(const MTPchannels_inviteToChannel &v) : MTPBoxed(v) { + } + MTPchannels_InviteToChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_InviteToChannel(const MTPInputChannel &_channel, const MTPVector &_users) : MTPBoxed(MTPchannels_inviteToChannel(_channel, _users)) { + } +}; + +class MTPchannels_kickFromChannel { // RPC method 'channels.kickFromChannel' +public: + MTPInputChannel vchannel; + MTPInputUser vuser_id; + MTPBool vkicked; + + MTPchannels_kickFromChannel() { + } + MTPchannels_kickFromChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_kickFromChannel) { + read(from, end, cons); + } + MTPchannels_kickFromChannel(const MTPInputChannel &_channel, const MTPInputUser &_user_id, MTPBool _kicked) : vchannel(_channel), vuser_id(_user_id), vkicked(_kicked) { + } + + uint32 innerLength() const { + return vchannel.innerLength() + vuser_id.innerLength() + vkicked.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_kickFromChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_kickFromChannel) { + vchannel.read(from, end); + vuser_id.read(from, end); + vkicked.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + vuser_id.write(to); + vkicked.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_KickFromChannel : public MTPBoxed { +public: + MTPchannels_KickFromChannel() { + } + MTPchannels_KickFromChannel(const MTPchannels_kickFromChannel &v) : MTPBoxed(v) { + } + MTPchannels_KickFromChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_KickFromChannel(const MTPInputChannel &_channel, const MTPInputUser &_user_id, MTPBool _kicked) : MTPBoxed(MTPchannels_kickFromChannel(_channel, _user_id, _kicked)) { + } +}; + +class MTPchannels_exportInvite { // RPC method 'channels.exportInvite' +public: + MTPInputChannel vchannel; + + MTPchannels_exportInvite() { + } + MTPchannels_exportInvite(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_exportInvite) { + read(from, end, cons); + } + MTPchannels_exportInvite(const MTPInputChannel &_channel) : vchannel(_channel) { + } + + uint32 innerLength() const { + return vchannel.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_exportInvite; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_exportInvite) { + vchannel.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + } + + typedef MTPExportedChatInvite ResponseType; +}; +class MTPchannels_ExportInvite : public MTPBoxed { +public: + MTPchannels_ExportInvite() { + } + MTPchannels_ExportInvite(const MTPchannels_exportInvite &v) : MTPBoxed(v) { + } + MTPchannels_ExportInvite(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_ExportInvite(const MTPInputChannel &_channel) : MTPBoxed(MTPchannels_exportInvite(_channel)) { + } +}; + +class MTPchannels_deleteChannel { // RPC method 'channels.deleteChannel' +public: + MTPInputChannel vchannel; + + MTPchannels_deleteChannel() { + } + MTPchannels_deleteChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_deleteChannel) { + read(from, end, cons); + } + MTPchannels_deleteChannel(const MTPInputChannel &_channel) : vchannel(_channel) { + } + + uint32 innerLength() const { + return vchannel.innerLength(); + } + mtpTypeId type() const { + return mtpc_channels_deleteChannel; + } + void read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = mtpc_channels_deleteChannel) { + vchannel.read(from, end); + } + void write(mtpBuffer &to) const { + vchannel.write(to); + } + + typedef MTPUpdates ResponseType; +}; +class MTPchannels_DeleteChannel : public MTPBoxed { +public: + MTPchannels_DeleteChannel() { + } + MTPchannels_DeleteChannel(const MTPchannels_deleteChannel &v) : MTPBoxed(v) { + } + MTPchannels_DeleteChannel(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons = 0) : MTPBoxed(from, end, cons) { + } + MTPchannels_DeleteChannel(const MTPInputChannel &_channel) : MTPBoxed(MTPchannels_deleteChannel(_channel)) { + } +}; + // Inline methods definition inline MTPresPQ::MTPresPQ() : mtpDataOwner(new MTPDresPQ()) { @@ -20853,7 +21342,7 @@ inline MTPchatFull::MTPchatFull(MTPDchannelFull *_data) : mtpDataOwner(_data), _ inline MTPchatFull MTP_chatFull(MTPint _id, const MTPChatParticipants &_participants, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite, const MTPVector &_bot_info) { return MTPchatFull(new MTPDchatFull(_id, _participants, _chat_photo, _notify_settings, _exported_invite, _bot_info)); } -inline MTPchatFull MTP_channelFull(MTPint _id, const MTPChatParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite) { +inline MTPchatFull MTP_channelFull(MTPint _id, const MTPChannelParticipants &_participants, const MTPstring &_about, MTPint _read_inbox_max_id, MTPint _unread_count, MTPint _unread_important_count, const MTPPhoto &_chat_photo, const MTPPeerNotifySettings &_notify_settings, const MTPExportedChatInvite &_exported_invite) { return MTPchatFull(new MTPDchannelFull(_id, _participants, _about, _read_inbox_max_id, _unread_count, _unread_important_count, _chat_photo, _notify_settings, _exported_invite)); } @@ -20898,10 +21387,6 @@ inline uint32 MTPchatParticipants::innerLength() const { const MTPDchatParticipants &v(c_chatParticipants()); return v.vchat_id.innerLength() + v.vadmin_id.innerLength() + v.vparticipants.innerLength() + v.vversion.innerLength(); } - case mtpc_channelParticipants: { - const MTPDchannelParticipants &v(c_channelParticipants()); - return v.vflags.innerLength() + v.vchannel_id.innerLength() + (v.has_self_participant() ? v.vself_participant.innerLength() : 0); - } } return 0; } @@ -20927,13 +21412,6 @@ inline void MTPchatParticipants::read(const mtpPrime *&from, const mtpPrime *end v.vparticipants.read(from, end); v.vversion.read(from, end); } break; - case mtpc_channelParticipants: _type = cons; { - if (!data) setData(new MTPDchannelParticipants()); - MTPDchannelParticipants &v(_channelParticipants()); - v.vflags.read(from, end); - v.vchannel_id.read(from, end); - if (v.has_self_participant()) { v.vself_participant.read(from, end); } else { v.vself_participant = MTPChatParticipant(); } - } break; default: throw mtpErrorUnexpected(cons, "MTPchatParticipants"); } } @@ -20952,19 +21430,12 @@ inline void MTPchatParticipants::write(mtpBuffer &to) const { v.vparticipants.write(to); v.vversion.write(to); } break; - case mtpc_channelParticipants: { - const MTPDchannelParticipants &v(c_channelParticipants()); - v.vflags.write(to); - v.vchannel_id.write(to); - if (v.has_self_participant()) v.vself_participant.write(to); - } break; } } inline MTPchatParticipants::MTPchatParticipants(mtpTypeId type) : mtpDataOwner(0), _type(type) { switch (type) { case mtpc_chatParticipantsForbidden: setData(new MTPDchatParticipantsForbidden()); break; case mtpc_chatParticipants: setData(new MTPDchatParticipants()); break; - case mtpc_channelParticipants: setData(new MTPDchannelParticipants()); break; default: throw mtpErrorBadTypeId(type, "MTPchatParticipants"); } } @@ -20972,17 +21443,12 @@ inline MTPchatParticipants::MTPchatParticipants(MTPDchatParticipantsForbidden *_ } inline MTPchatParticipants::MTPchatParticipants(MTPDchatParticipants *_data) : mtpDataOwner(_data), _type(mtpc_chatParticipants) { } -inline MTPchatParticipants::MTPchatParticipants(MTPDchannelParticipants *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipants) { -} inline MTPchatParticipants MTP_chatParticipantsForbidden(MTPint _flags, MTPint _chat_id, const MTPChatParticipant &_self_participant) { return MTPchatParticipants(new MTPDchatParticipantsForbidden(_flags, _chat_id, _self_participant)); } inline MTPchatParticipants MTP_chatParticipants(MTPint _chat_id, MTPint _admin_id, const MTPVector &_participants, MTPint _version) { return MTPchatParticipants(new MTPDchatParticipants(_chat_id, _admin_id, _participants, _version)); } -inline MTPchatParticipants MTP_channelParticipants(MTPint _flags, MTPint _channel_id, const MTPChatParticipant &_self_participant) { - return MTPchatParticipants(new MTPDchannelParticipants(_flags, _channel_id, _self_participant)); -} inline uint32 MTPchatPhoto::innerLength() const { switch (_type) { @@ -23235,15 +23701,15 @@ inline uint32 MTPupdate::innerLength() const { } case mtpc_updateReadChannelInbox: { const MTPDupdateReadChannelInbox &v(c_updateReadChannelInbox()); - return v.vpeer.innerLength() + v.vmax_id.innerLength(); + return v.vchannel_id.innerLength() + v.vmax_id.innerLength(); } case mtpc_updateDeleteChannelMessages: { const MTPDupdateDeleteChannelMessages &v(c_updateDeleteChannelMessages()); - return v.vpeer.innerLength() + v.vmessages.innerLength() + v.vpts.innerLength() + v.vpts_count.innerLength(); + return v.vchannel_id.innerLength() + v.vmessages.innerLength() + v.vpts.innerLength() + v.vpts_count.innerLength(); } case mtpc_updateChannelMessageViews: { const MTPDupdateChannelMessageViews &v(c_updateChannelMessageViews()); - return v.vpeer.innerLength() + v.vid.innerLength() + v.vviews.innerLength(); + return v.vchannel_id.innerLength() + v.vid.innerLength() + v.vviews.innerLength(); } } return 0; @@ -23469,13 +23935,13 @@ inline void MTPupdate::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeI case mtpc_updateReadChannelInbox: _type = cons; { if (!data) setData(new MTPDupdateReadChannelInbox()); MTPDupdateReadChannelInbox &v(_updateReadChannelInbox()); - v.vpeer.read(from, end); + v.vchannel_id.read(from, end); v.vmax_id.read(from, end); } break; case mtpc_updateDeleteChannelMessages: _type = cons; { if (!data) setData(new MTPDupdateDeleteChannelMessages()); MTPDupdateDeleteChannelMessages &v(_updateDeleteChannelMessages()); - v.vpeer.read(from, end); + v.vchannel_id.read(from, end); v.vmessages.read(from, end); v.vpts.read(from, end); v.vpts_count.read(from, end); @@ -23483,7 +23949,7 @@ inline void MTPupdate::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeI case mtpc_updateChannelMessageViews: _type = cons; { if (!data) setData(new MTPDupdateChannelMessageViews()); MTPDupdateChannelMessageViews &v(_updateChannelMessageViews()); - v.vpeer.read(from, end); + v.vchannel_id.read(from, end); v.vid.read(from, end); v.vviews.read(from, end); } break; @@ -23673,19 +24139,19 @@ inline void MTPupdate::write(mtpBuffer &to) const { } break; case mtpc_updateReadChannelInbox: { const MTPDupdateReadChannelInbox &v(c_updateReadChannelInbox()); - v.vpeer.write(to); + v.vchannel_id.write(to); v.vmax_id.write(to); } break; case mtpc_updateDeleteChannelMessages: { const MTPDupdateDeleteChannelMessages &v(c_updateDeleteChannelMessages()); - v.vpeer.write(to); + v.vchannel_id.write(to); v.vmessages.write(to); v.vpts.write(to); v.vpts_count.write(to); } break; case mtpc_updateChannelMessageViews: { const MTPDupdateChannelMessageViews &v(c_updateChannelMessageViews()); - v.vpeer.write(to); + v.vchannel_id.write(to); v.vid.write(to); v.vviews.write(to); } break; @@ -23897,14 +24363,14 @@ inline MTPupdate MTP_updateChannelGroup(MTPint _channel_id, const MTPMessageGrou inline MTPupdate MTP_updateNewChannelMessage(const MTPMessage &_message, MTPint _pts, MTPint _pts_count) { return MTPupdate(new MTPDupdateNewChannelMessage(_message, _pts, _pts_count)); } -inline MTPupdate MTP_updateReadChannelInbox(const MTPPeer &_peer, MTPint _max_id) { - return MTPupdate(new MTPDupdateReadChannelInbox(_peer, _max_id)); +inline MTPupdate MTP_updateReadChannelInbox(MTPint _channel_id, MTPint _max_id) { + return MTPupdate(new MTPDupdateReadChannelInbox(_channel_id, _max_id)); } -inline MTPupdate MTP_updateDeleteChannelMessages(const MTPPeer &_peer, const MTPVector &_messages, MTPint _pts, MTPint _pts_count) { - return MTPupdate(new MTPDupdateDeleteChannelMessages(_peer, _messages, _pts, _pts_count)); +inline MTPupdate MTP_updateDeleteChannelMessages(MTPint _channel_id, const MTPVector &_messages, MTPint _pts, MTPint _pts_count) { + return MTPupdate(new MTPDupdateDeleteChannelMessages(_channel_id, _messages, _pts, _pts_count)); } -inline MTPupdate MTP_updateChannelMessageViews(const MTPPeer &_peer, MTPint _id, MTPint _views) { - return MTPupdate(new MTPDupdateChannelMessageViews(_peer, _id, _views)); +inline MTPupdate MTP_updateChannelMessageViews(MTPint _channel_id, MTPint _id, MTPint _views) { + return MTPupdate(new MTPDupdateChannelMessageViews(_channel_id, _id, _views)); } inline MTPupdates_state::MTPupdates_state() : mtpDataOwner(new MTPDupdates_state()) { @@ -27465,12 +27931,8 @@ inline MTPmessageEntity MTP_messageEntityTextUrl(MTPint _offset, MTPint _length, return MTPmessageEntity(new MTPDmessageEntityTextUrl(_offset, _length, _url)); } -inline uint32 MTPinputChat::innerLength() const { +inline uint32 MTPinputChannel::innerLength() const { switch (_type) { - case mtpc_inputChat: { - const MTPDinputChat &v(c_inputChat()); - return v.vchat_id.innerLength(); - } case mtpc_inputChannel: { const MTPDinputChannel &v(c_inputChannel()); return v.vchannel_id.innerLength() + v.vaccess_hash.innerLength(); @@ -27478,34 +27940,25 @@ inline uint32 MTPinputChat::innerLength() const { } return 0; } -inline mtpTypeId MTPinputChat::type() const { +inline mtpTypeId MTPinputChannel::type() const { if (!_type) throw mtpErrorUninitialized(); return _type; } -inline void MTPinputChat::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { +inline void MTPinputChannel::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { if (cons != _type) setData(0); switch (cons) { - case mtpc_inputChatEmpty: _type = cons; break; - case mtpc_inputChat: _type = cons; { - if (!data) setData(new MTPDinputChat()); - MTPDinputChat &v(_inputChat()); - v.vchat_id.read(from, end); - } break; + case mtpc_inputChannelEmpty: _type = cons; break; case mtpc_inputChannel: _type = cons; { if (!data) setData(new MTPDinputChannel()); MTPDinputChannel &v(_inputChannel()); v.vchannel_id.read(from, end); v.vaccess_hash.read(from, end); } break; - default: throw mtpErrorUnexpected(cons, "MTPinputChat"); + default: throw mtpErrorUnexpected(cons, "MTPinputChannel"); } } -inline void MTPinputChat::write(mtpBuffer &to) const { +inline void MTPinputChannel::write(mtpBuffer &to) const { switch (_type) { - case mtpc_inputChat: { - const MTPDinputChat &v(c_inputChat()); - v.vchat_id.write(to); - } break; case mtpc_inputChannel: { const MTPDinputChannel &v(c_inputChannel()); v.vchannel_id.write(to); @@ -27513,26 +27966,82 @@ inline void MTPinputChat::write(mtpBuffer &to) const { } break; } } -inline MTPinputChat::MTPinputChat(mtpTypeId type) : mtpDataOwner(0), _type(type) { +inline MTPinputChannel::MTPinputChannel(mtpTypeId type) : mtpDataOwner(0), _type(type) { switch (type) { - case mtpc_inputChatEmpty: break; - case mtpc_inputChat: setData(new MTPDinputChat()); break; + case mtpc_inputChannelEmpty: break; case mtpc_inputChannel: setData(new MTPDinputChannel()); break; - default: throw mtpErrorBadTypeId(type, "MTPinputChat"); + default: throw mtpErrorBadTypeId(type, "MTPinputChannel"); } } -inline MTPinputChat::MTPinputChat(MTPDinputChat *_data) : mtpDataOwner(_data), _type(mtpc_inputChat) { +inline MTPinputChannel::MTPinputChannel(MTPDinputChannel *_data) : mtpDataOwner(_data), _type(mtpc_inputChannel) { } -inline MTPinputChat::MTPinputChat(MTPDinputChannel *_data) : mtpDataOwner(_data), _type(mtpc_inputChannel) { +inline MTPinputChannel MTP_inputChannelEmpty() { + return MTPinputChannel(mtpc_inputChannelEmpty); } -inline MTPinputChat MTP_inputChatEmpty() { - return MTPinputChat(mtpc_inputChatEmpty); +inline MTPinputChannel MTP_inputChannel(MTPint _channel_id, const MTPlong &_access_hash) { + return MTPinputChannel(new MTPDinputChannel(_channel_id, _access_hash)); } -inline MTPinputChat MTP_inputChat(MTPint _chat_id) { - return MTPinputChat(new MTPDinputChat(_chat_id)); + +inline MTPcontacts_resolvedPeer::MTPcontacts_resolvedPeer() : mtpDataOwner(new MTPDcontacts_resolvedPeer()) { } -inline MTPinputChat MTP_inputChannel(MTPint _channel_id, const MTPlong &_access_hash) { - return MTPinputChat(new MTPDinputChannel(_channel_id, _access_hash)); + +inline uint32 MTPcontacts_resolvedPeer::innerLength() const { + const MTPDcontacts_resolvedPeer &v(c_contacts_resolvedPeer()); + return v.vpeer.innerLength() + v.vchats.innerLength() + v.vusers.innerLength(); +} +inline mtpTypeId MTPcontacts_resolvedPeer::type() const { + return mtpc_contacts_resolvedPeer; +} +inline void MTPcontacts_resolvedPeer::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { + if (cons != mtpc_contacts_resolvedPeer) throw mtpErrorUnexpected(cons, "MTPcontacts_resolvedPeer"); + + if (!data) setData(new MTPDcontacts_resolvedPeer()); + MTPDcontacts_resolvedPeer &v(_contacts_resolvedPeer()); + v.vpeer.read(from, end); + v.vchats.read(from, end); + v.vusers.read(from, end); +} +inline void MTPcontacts_resolvedPeer::write(mtpBuffer &to) const { + const MTPDcontacts_resolvedPeer &v(c_contacts_resolvedPeer()); + v.vpeer.write(to); + v.vchats.write(to); + v.vusers.write(to); +} +inline MTPcontacts_resolvedPeer::MTPcontacts_resolvedPeer(MTPDcontacts_resolvedPeer *_data) : mtpDataOwner(_data) { +} +inline MTPcontacts_resolvedPeer MTP_contacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users) { + return MTPcontacts_resolvedPeer(new MTPDcontacts_resolvedPeer(_peer, _chats, _users)); +} + +inline MTPchannelParticipants::MTPchannelParticipants() : mtpDataOwner(new MTPDchannelParticipants()) { +} + +inline uint32 MTPchannelParticipants::innerLength() const { + const MTPDchannelParticipants &v(c_channelParticipants()); + return v.vflags.innerLength() + v.vchannel_id.innerLength() + (v.has_self_participant() ? v.vself_participant.innerLength() : 0); +} +inline mtpTypeId MTPchannelParticipants::type() const { + return mtpc_channelParticipants; +} +inline void MTPchannelParticipants::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { + if (cons != mtpc_channelParticipants) throw mtpErrorUnexpected(cons, "MTPchannelParticipants"); + + if (!data) setData(new MTPDchannelParticipants()); + MTPDchannelParticipants &v(_channelParticipants()); + v.vflags.read(from, end); + v.vchannel_id.read(from, end); + if (v.has_self_participant()) { v.vself_participant.read(from, end); } else { v.vself_participant = MTPChannelParticipant(); } +} +inline void MTPchannelParticipants::write(mtpBuffer &to) const { + const MTPDchannelParticipants &v(c_channelParticipants()); + v.vflags.write(to); + v.vchannel_id.write(to); + if (v.has_self_participant()) v.vself_participant.write(to); +} +inline MTPchannelParticipants::MTPchannelParticipants(MTPDchannelParticipants *_data) : mtpDataOwner(_data) { +} +inline MTPchannelParticipants MTP_channelParticipants(MTPint _flags, MTPint _channel_id, const MTPChannelParticipant &_self_participant) { + return MTPchannelParticipants(new MTPDchannelParticipants(_flags, _channel_id, _self_participant)); } inline MTPmessageRange::MTPmessageRange() : mtpDataOwner(new MTPDmessageRange()) { @@ -27771,37 +28280,6 @@ inline MTPchannelMessagesFilter MTP_channelMessagesFilterCollapsed() { return MTPchannelMessagesFilter(mtpc_channelMessagesFilterCollapsed); } -inline MTPcontacts_resolvedPeer::MTPcontacts_resolvedPeer() : mtpDataOwner(new MTPDcontacts_resolvedPeer()) { -} - -inline uint32 MTPcontacts_resolvedPeer::innerLength() const { - const MTPDcontacts_resolvedPeer &v(c_contacts_resolvedPeer()); - return v.vpeer.innerLength() + v.vchats.innerLength() + v.vusers.innerLength(); -} -inline mtpTypeId MTPcontacts_resolvedPeer::type() const { - return mtpc_contacts_resolvedPeer; -} -inline void MTPcontacts_resolvedPeer::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { - if (cons != mtpc_contacts_resolvedPeer) throw mtpErrorUnexpected(cons, "MTPcontacts_resolvedPeer"); - - if (!data) setData(new MTPDcontacts_resolvedPeer()); - MTPDcontacts_resolvedPeer &v(_contacts_resolvedPeer()); - v.vpeer.read(from, end); - v.vchats.read(from, end); - v.vusers.read(from, end); -} -inline void MTPcontacts_resolvedPeer::write(mtpBuffer &to) const { - const MTPDcontacts_resolvedPeer &v(c_contacts_resolvedPeer()); - v.vpeer.write(to); - v.vchats.write(to); - v.vusers.write(to); -} -inline MTPcontacts_resolvedPeer::MTPcontacts_resolvedPeer(MTPDcontacts_resolvedPeer *_data) : mtpDataOwner(_data) { -} -inline MTPcontacts_resolvedPeer MTP_contacts_resolvedPeer(const MTPPeer &_peer, const MTPVector &_chats, const MTPVector &_users) { - return MTPcontacts_resolvedPeer(new MTPDcontacts_resolvedPeer(_peer, _chats, _users)); -} - inline uint32 MTPchannelParticipant::innerLength() const { switch (_type) { case mtpc_channelParticipant: { @@ -27812,10 +28290,14 @@ inline uint32 MTPchannelParticipant::innerLength() const { const MTPDchannelParticipantModerator &v(c_channelParticipantModerator()); return v.vuser_id.innerLength() + v.vinviter_id.innerLength() + v.vdate.innerLength(); } - case mtpc_channelParticipantPublisher: { - const MTPDchannelParticipantPublisher &v(c_channelParticipantPublisher()); + case mtpc_channelParticipantEditor: { + const MTPDchannelParticipantEditor &v(c_channelParticipantEditor()); return v.vuser_id.innerLength() + v.vinviter_id.innerLength() + v.vdate.innerLength(); } + case mtpc_channelParticipantKicked: { + const MTPDchannelParticipantKicked &v(c_channelParticipantKicked()); + return v.vuser_id.innerLength() + v.vkicked_by.innerLength() + v.vdate.innerLength(); + } case mtpc_channelParticipantCreator: { const MTPDchannelParticipantCreator &v(c_channelParticipantCreator()); return v.vuser_id.innerLength(); @@ -27844,13 +28326,20 @@ inline void MTPchannelParticipant::read(const mtpPrime *&from, const mtpPrime *e v.vinviter_id.read(from, end); v.vdate.read(from, end); } break; - case mtpc_channelParticipantPublisher: _type = cons; { - if (!data) setData(new MTPDchannelParticipantPublisher()); - MTPDchannelParticipantPublisher &v(_channelParticipantPublisher()); + case mtpc_channelParticipantEditor: _type = cons; { + if (!data) setData(new MTPDchannelParticipantEditor()); + MTPDchannelParticipantEditor &v(_channelParticipantEditor()); v.vuser_id.read(from, end); v.vinviter_id.read(from, end); v.vdate.read(from, end); } break; + case mtpc_channelParticipantKicked: _type = cons; { + if (!data) setData(new MTPDchannelParticipantKicked()); + MTPDchannelParticipantKicked &v(_channelParticipantKicked()); + v.vuser_id.read(from, end); + v.vkicked_by.read(from, end); + v.vdate.read(from, end); + } break; case mtpc_channelParticipantCreator: _type = cons; { if (!data) setData(new MTPDchannelParticipantCreator()); MTPDchannelParticipantCreator &v(_channelParticipantCreator()); @@ -27873,12 +28362,18 @@ inline void MTPchannelParticipant::write(mtpBuffer &to) const { v.vinviter_id.write(to); v.vdate.write(to); } break; - case mtpc_channelParticipantPublisher: { - const MTPDchannelParticipantPublisher &v(c_channelParticipantPublisher()); + case mtpc_channelParticipantEditor: { + const MTPDchannelParticipantEditor &v(c_channelParticipantEditor()); v.vuser_id.write(to); v.vinviter_id.write(to); v.vdate.write(to); } break; + case mtpc_channelParticipantKicked: { + const MTPDchannelParticipantKicked &v(c_channelParticipantKicked()); + v.vuser_id.write(to); + v.vkicked_by.write(to); + v.vdate.write(to); + } break; case mtpc_channelParticipantCreator: { const MTPDchannelParticipantCreator &v(c_channelParticipantCreator()); v.vuser_id.write(to); @@ -27889,7 +28384,8 @@ inline MTPchannelParticipant::MTPchannelParticipant(mtpTypeId type) : mtpDataOwn switch (type) { case mtpc_channelParticipant: setData(new MTPDchannelParticipant()); break; case mtpc_channelParticipantModerator: setData(new MTPDchannelParticipantModerator()); break; - case mtpc_channelParticipantPublisher: setData(new MTPDchannelParticipantPublisher()); break; + case mtpc_channelParticipantEditor: setData(new MTPDchannelParticipantEditor()); break; + case mtpc_channelParticipantKicked: setData(new MTPDchannelParticipantKicked()); break; case mtpc_channelParticipantCreator: setData(new MTPDchannelParticipantCreator()); break; default: throw mtpErrorBadTypeId(type, "MTPchannelParticipant"); } @@ -27898,7 +28394,9 @@ inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipant *_dat } inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipantModerator *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipantModerator) { } -inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipantPublisher *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipantPublisher) { +inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipantEditor *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipantEditor) { +} +inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipantKicked *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipantKicked) { } inline MTPchannelParticipant::MTPchannelParticipant(MTPDchannelParticipantCreator *_data) : mtpDataOwner(_data), _type(mtpc_channelParticipantCreator) { } @@ -27908,8 +28406,11 @@ inline MTPchannelParticipant MTP_channelParticipant(MTPint _user_id, MTPint _inv inline MTPchannelParticipant MTP_channelParticipantModerator(MTPint _user_id, MTPint _inviter_id, MTPint _date) { return MTPchannelParticipant(new MTPDchannelParticipantModerator(_user_id, _inviter_id, _date)); } -inline MTPchannelParticipant MTP_channelParticipantPublisher(MTPint _user_id, MTPint _inviter_id, MTPint _date) { - return MTPchannelParticipant(new MTPDchannelParticipantPublisher(_user_id, _inviter_id, _date)); +inline MTPchannelParticipant MTP_channelParticipantEditor(MTPint _user_id, MTPint _inviter_id, MTPint _date) { + return MTPchannelParticipant(new MTPDchannelParticipantEditor(_user_id, _inviter_id, _date)); +} +inline MTPchannelParticipant MTP_channelParticipantKicked(MTPint _user_id, MTPint _kicked_by, MTPint _date) { + return MTPchannelParticipant(new MTPDchannelParticipantKicked(_user_id, _kicked_by, _date)); } inline MTPchannelParticipant MTP_channelParticipantCreator(MTPint _user_id) { return MTPchannelParticipant(new MTPDchannelParticipantCreator(_user_id)); @@ -27926,6 +28427,7 @@ inline void MTPchannelParticipantsFilter::read(const mtpPrime *&from, const mtpP switch (cons) { case mtpc_channelParticipantsRecent: _type = cons; break; case mtpc_channelParticipantsAdmins: _type = cons; break; + case mtpc_channelParticipantsKicked: _type = cons; break; default: throw mtpErrorUnexpected(cons, "MTPchannelParticipantsFilter"); } } @@ -27937,6 +28439,7 @@ inline MTPchannelParticipantsFilter::MTPchannelParticipantsFilter(mtpTypeId type switch (type) { case mtpc_channelParticipantsRecent: break; case mtpc_channelParticipantsAdmins: break; + case mtpc_channelParticipantsKicked: break; default: throw mtpErrorBadTypeId(type, "MTPchannelParticipantsFilter"); } } @@ -27946,6 +28449,9 @@ inline MTPchannelParticipantsFilter MTP_channelParticipantsRecent() { inline MTPchannelParticipantsFilter MTP_channelParticipantsAdmins() { return MTPchannelParticipantsFilter(mtpc_channelParticipantsAdmins); } +inline MTPchannelParticipantsFilter MTP_channelParticipantsKicked() { + return MTPchannelParticipantsFilter(mtpc_channelParticipantsKicked); +} inline uint32 MTPchannelParticipantRole::innerLength() const { return 0; @@ -27958,7 +28464,7 @@ inline void MTPchannelParticipantRole::read(const mtpPrime *&from, const mtpPrim switch (cons) { case mtpc_channelRoleEmpty: _type = cons; break; case mtpc_channelRoleModerator: _type = cons; break; - case mtpc_channelRolePublisher: _type = cons; break; + case mtpc_channelRoleEditor: _type = cons; break; default: throw mtpErrorUnexpected(cons, "MTPchannelParticipantRole"); } } @@ -27970,7 +28476,7 @@ inline MTPchannelParticipantRole::MTPchannelParticipantRole(mtpTypeId type) : _t switch (type) { case mtpc_channelRoleEmpty: break; case mtpc_channelRoleModerator: break; - case mtpc_channelRolePublisher: break; + case mtpc_channelRoleEditor: break; default: throw mtpErrorBadTypeId(type, "MTPchannelParticipantRole"); } } @@ -27980,39 +28486,68 @@ inline MTPchannelParticipantRole MTP_channelRoleEmpty() { inline MTPchannelParticipantRole MTP_channelRoleModerator() { return MTPchannelParticipantRole(mtpc_channelRoleModerator); } -inline MTPchannelParticipantRole MTP_channelRolePublisher() { - return MTPchannelParticipantRole(mtpc_channelRolePublisher); +inline MTPchannelParticipantRole MTP_channelRoleEditor() { + return MTPchannelParticipantRole(mtpc_channelRoleEditor); } -inline MTPmessages_channelParticipants::MTPmessages_channelParticipants() : mtpDataOwner(new MTPDmessages_channelParticipants()) { +inline MTPchannels_channelParticipants::MTPchannels_channelParticipants() : mtpDataOwner(new MTPDchannels_channelParticipants()) { } -inline uint32 MTPmessages_channelParticipants::innerLength() const { - const MTPDmessages_channelParticipants &v(c_messages_channelParticipants()); +inline uint32 MTPchannels_channelParticipants::innerLength() const { + const MTPDchannels_channelParticipants &v(c_channels_channelParticipants()); return v.vcount.innerLength() + v.vparticipants.innerLength() + v.vusers.innerLength(); } -inline mtpTypeId MTPmessages_channelParticipants::type() const { - return mtpc_messages_channelParticipants; +inline mtpTypeId MTPchannels_channelParticipants::type() const { + return mtpc_channels_channelParticipants; } -inline void MTPmessages_channelParticipants::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { - if (cons != mtpc_messages_channelParticipants) throw mtpErrorUnexpected(cons, "MTPmessages_channelParticipants"); +inline void MTPchannels_channelParticipants::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { + if (cons != mtpc_channels_channelParticipants) throw mtpErrorUnexpected(cons, "MTPchannels_channelParticipants"); - if (!data) setData(new MTPDmessages_channelParticipants()); - MTPDmessages_channelParticipants &v(_messages_channelParticipants()); + if (!data) setData(new MTPDchannels_channelParticipants()); + MTPDchannels_channelParticipants &v(_channels_channelParticipants()); v.vcount.read(from, end); v.vparticipants.read(from, end); v.vusers.read(from, end); } -inline void MTPmessages_channelParticipants::write(mtpBuffer &to) const { - const MTPDmessages_channelParticipants &v(c_messages_channelParticipants()); +inline void MTPchannels_channelParticipants::write(mtpBuffer &to) const { + const MTPDchannels_channelParticipants &v(c_channels_channelParticipants()); v.vcount.write(to); v.vparticipants.write(to); v.vusers.write(to); } -inline MTPmessages_channelParticipants::MTPmessages_channelParticipants(MTPDmessages_channelParticipants *_data) : mtpDataOwner(_data) { +inline MTPchannels_channelParticipants::MTPchannels_channelParticipants(MTPDchannels_channelParticipants *_data) : mtpDataOwner(_data) { } -inline MTPmessages_channelParticipants MTP_messages_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users) { - return MTPmessages_channelParticipants(new MTPDmessages_channelParticipants(_count, _participants, _users)); +inline MTPchannels_channelParticipants MTP_channels_channelParticipants(MTPint _count, const MTPVector &_participants, const MTPVector &_users) { + return MTPchannels_channelParticipants(new MTPDchannels_channelParticipants(_count, _participants, _users)); +} + +inline MTPchannels_channelParticipant::MTPchannels_channelParticipant() : mtpDataOwner(new MTPDchannels_channelParticipant()) { +} + +inline uint32 MTPchannels_channelParticipant::innerLength() const { + const MTPDchannels_channelParticipant &v(c_channels_channelParticipant()); + return v.vparticipant.innerLength() + v.vusers.innerLength(); +} +inline mtpTypeId MTPchannels_channelParticipant::type() const { + return mtpc_channels_channelParticipant; +} +inline void MTPchannels_channelParticipant::read(const mtpPrime *&from, const mtpPrime *end, mtpTypeId cons) { + if (cons != mtpc_channels_channelParticipant) throw mtpErrorUnexpected(cons, "MTPchannels_channelParticipant"); + + if (!data) setData(new MTPDchannels_channelParticipant()); + MTPDchannels_channelParticipant &v(_channels_channelParticipant()); + v.vparticipant.read(from, end); + v.vusers.read(from, end); +} +inline void MTPchannels_channelParticipant::write(mtpBuffer &to) const { + const MTPDchannels_channelParticipant &v(c_channels_channelParticipant()); + v.vparticipant.write(to); + v.vusers.write(to); +} +inline MTPchannels_channelParticipant::MTPchannels_channelParticipant(MTPDchannels_channelParticipant *_data) : mtpDataOwner(_data) { +} +inline MTPchannels_channelParticipant MTP_channels_channelParticipant(const MTPChannelParticipant &_participant, const MTPVector &_users) { + return MTPchannels_channelParticipant(new MTPDchannels_channelParticipant(_participant, _users)); } // Human-readable text serialization diff --git a/Telegram/SourceFiles/mtproto/scheme.tl b/Telegram/SourceFiles/mtproto/scheme.tl index 9236eb9c8..aec1ab483 100644 --- a/Telegram/SourceFiles/mtproto/scheme.tl +++ b/Telegram/SourceFiles/mtproto/scheme.tl @@ -218,17 +218,16 @@ userStatusLastMonth#77ebc742 = UserStatus; chatEmpty#9ba2d800 id:int = Chat; chat#7312bc48 flags:# id:int title:string photo:ChatPhoto participants_count:int date:int version:int = Chat; chatForbidden#7328bdb id:int title:string = Chat; -channel#1bcc63f2 flags:# id:int access_hash:long title:string username:flags.2?string photo:ChatPhoto date:int version:int = Chat; +channel#678e9587 flags:# id:int access_hash:long title:string username:flags.6?string photo:ChatPhoto date:int version:int = Chat; channelForbidden#2d85832c id:int access_hash:long title:string = Chat; chatFull#2e02a614 id:int participants:ChatParticipants chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:ExportedChatInvite bot_info:Vector = ChatFull; -channelFull#b28da8f8 id:int participants:ChatParticipants about:string read_inbox_max_id:int unread_count:int unread_important_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:ExportedChatInvite = ChatFull; +channelFull#36949a50 id:int participants:ChannelParticipants about:string read_inbox_max_id:int unread_count:int unread_important_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:ExportedChatInvite = ChatFull; chatParticipant#c8d7493e user_id:int inviter_id:int date:int = ChatParticipant; chatParticipantsForbidden#fc900c2b flags:# chat_id:int self_participant:flags.0?ChatParticipant = ChatParticipants; chatParticipants#7841b415 chat_id:int admin_id:int participants:Vector version:int = ChatParticipants; -channelParticipants#b561ad0c flags:# channel_id:int self_participant:flags.0?ChatParticipant = ChatParticipants; chatPhotoEmpty#37c1011c = ChatPhoto; chatPhoto#6153276a photo_small:FileLocation photo_big:FileLocation = ChatPhoto; @@ -382,9 +381,9 @@ updateChannelTooLong#60946422 channel_id:int = Update; updateChannel#b6d45656 channel_id:int = Update; updateChannelGroup#c36c1e3c channel_id:int group:MessageGroup = Update; updateNewChannelMessage#62ba04d9 message:Message pts:int pts_count:int = Update; -updateReadChannelInbox#87b87b7d peer:Peer max_id:int = Update; -updateDeleteChannelMessages#11da3046 peer:Peer messages:Vector pts:int pts_count:int = Update; -updateChannelMessageViews#f3349b09 peer:Peer id:int views:int = Update; +updateReadChannelInbox#4214f37f channel_id:int max_id:int = Update; +updateDeleteChannelMessages#c37521c9 channel_id:int messages:Vector pts:int pts_count:int = Update; +updateChannelMessageViews#98a12b4b channel_id:int id:int views:int = Update; updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State; @@ -584,9 +583,12 @@ messageEntityCode#28a20571 offset:int length:int = MessageEntity; messageEntityPre#73924be0 offset:int length:int language:string = MessageEntity; messageEntityTextUrl#76a6d327 offset:int length:int url:string = MessageEntity; -inputChatEmpty#d9ff343c = InputChat; -inputChat#43a5b9c3 chat_id:int = InputChat; -inputChannel#30c6ce73 channel_id:int access_hash:long = InputChat; +inputChannelEmpty#ee8c1e86 = InputChannel; +inputChannel#afeb712e channel_id:int access_hash:long = InputChannel; + +contacts.resolvedPeer#7f077ad9 peer:Peer chats:Vector users:Vector = contacts.ResolvedPeer; + +channelParticipants#57d3e762 flags:# channel_id:int self_participant:flags.0?ChannelParticipant = ChannelParticipants; messageRange#ae30253 min_id:int max_id:int = MessageRange; @@ -600,21 +602,23 @@ channelMessagesFilterEmpty#94d42ee7 = ChannelMessagesFilter; channelMessagesFilter#cd77d957 flags:# ranges:Vector = ChannelMessagesFilter; channelMessagesFilterCollapsed#fa01232e = ChannelMessagesFilter; -contacts.resolvedPeer#7f077ad9 peer:Peer chats:Vector users:Vector = contacts.ResolvedPeer; - channelParticipant#506116ea user_id:int inviter_id:int date:int = ChannelParticipant; channelParticipantModerator#91057fef user_id:int inviter_id:int date:int = ChannelParticipant; -channelParticipantPublisher#375d616 user_id:int inviter_id:int date:int = ChannelParticipant; +channelParticipantEditor#98192d61 user_id:int inviter_id:int date:int = ChannelParticipant; +channelParticipantKicked#8cc5e69a user_id:int kicked_by:int date:int = ChannelParticipant; channelParticipantCreator#e3e2e1f9 user_id:int = ChannelParticipant; channelParticipantsRecent#de3f3c79 = ChannelParticipantsFilter; channelParticipantsAdmins#b4608969 = ChannelParticipantsFilter; +channelParticipantsKicked#3c37bb7a = ChannelParticipantsFilter; channelRoleEmpty#b285a0c6 = ChannelParticipantRole; channelRoleModerator#9618d975 = ChannelParticipantRole; -channelRolePublisher#515b5530 = ChannelParticipantRole; +channelRoleEditor#820bfe8c = ChannelParticipantRole; -messages.channelParticipants#d6891de1 count:int participants:Vector users:Vector = messages.ChannelParticipants; +channels.channelParticipants#f56ee2a8 count:int participants:Vector users:Vector = channels.ChannelParticipants; + +channels.channelParticipant#d0d9b163 participant:ChannelParticipant users:Vector = channels.ChannelParticipant; ---functions--- @@ -695,12 +699,12 @@ messages.sendMessage#fa88427a flags:# peer:InputPeer reply_to_msg_id:flags.0?int messages.sendMedia#c8f16791 flags:# peer:InputPeer reply_to_msg_id:flags.0?int media:InputMedia random_id:long reply_markup:flags.2?ReplyMarkup = Updates; messages.forwardMessages#708e0195 flags:# from_peer:InputPeer id:Vector random_id:Vector to_peer:InputPeer = Updates; messages.reportSpam#cf1592db peer:InputPeer = Bool; -messages.getChats#27ae65b id:Vector = messages.Chats; -messages.getFullChat#36a4dfe chat_id:InputChat = messages.ChatFull; -messages.editChatTitle#6699d506 chat_id:InputChat title:string = Updates; -messages.editChatPhoto#dd75758d chat_id:InputChat photo:InputChatPhoto = Updates; -messages.addChatUser#819183f4 chat_id:InputChat user_id:InputUser fwd_limit:int = Updates; -messages.deleteChatUser#9392c06f chat_id:InputChat user_id:InputUser = Updates; +messages.getChats#3c6aa187 id:Vector = messages.Chats; +messages.getFullChat#3b831c66 chat_id:int = messages.ChatFull; +messages.editChatTitle#dc452855 chat_id:int title:string = Updates; +messages.editChatPhoto#ca4c79d8 chat_id:int photo:InputChatPhoto = Updates; +messages.addChatUser#f9a0aa09 chat_id:int user_id:InputUser fwd_limit:int = Updates; +messages.deleteChatUser#e0611f16 chat_id:int user_id:InputUser = Updates; messages.createChat#9cb126e users:Vector title:string = Updates; messages.forwardMessage#33963bf9 peer:InputPeer id:int random_id:long = Updates; messages.sendBroadcast#bf73f4da contacts:Vector random_id:Vector message:string media:InputMedia = Updates; @@ -718,31 +722,18 @@ messages.readMessageContents#36a73f77 id:Vector = messages.AffectedMessages messages.getStickers#ae22e045 emoticon:string hash:string = messages.Stickers; messages.getAllStickers#aa3bc868 hash:string = messages.AllStickers; messages.getWebPagePreview#25223e24 message:string = MessageMedia; -messages.exportChatInvite#c26902ba chat_id:InputChat = ExportedChatInvite; +messages.exportChatInvite#7d885289 chat_id:int = ExportedChatInvite; messages.checkChatInvite#3eadb1bb hash:string = ChatInvite; messages.importChatInvite#6c50051c hash:string = Updates; messages.getStickerSet#2619a90e stickerset:InputStickerSet = messages.StickerSet; messages.installStickerSet#7b30c3a6 stickerset:InputStickerSet disabled:Bool = Bool; messages.uninstallStickerSet#f96e55de stickerset:InputStickerSet = Bool; -messages.startBot#f4cc052d bot:InputUser chat_id:InputChat random_id:long start_param:string = Updates; -messages.getChannelDialogs#92689583 offset:int limit:int = messages.Dialogs; -messages.getImportantHistory#24af43a5 peer:InputPeer offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages; -messages.readChannelHistory#36a1210e peer:InputPeer max_id:int = Bool; -messages.createChannel#7f44d2c3 flags:# title:string about:string users:Vector = Updates; -messages.toggleChannelComments#b405b8af chat_id:InputChat enabled:Bool = Updates; -messages.deleteChannelMessages#9995a84f peer:InputPeer id:Vector = messages.AffectedMessages; -messages.getChannelMessages#5f46b265 peer:InputPeer id:Vector = messages.Messages; -messages.incrementMessagesViews#91ffd479 peer:InputPeer id:Vector = Bool; -messages.getMessagesViews#9abfbbe1 peer:InputPeer id:Vector = Vector; -messages.editChatAbout#8a969b93 chat_id:InputChat about:string = Bool; -messages.getChannelParticipants#38a1db31 chat_id:InputChat filter:ChannelParticipantsFilter offset:int limit:int = messages.ChannelParticipants; -messages.editChatAdmin#62394070 chat_id:InputChat user_id:InputUser role:ChannelParticipantRole = Bool; -messages.checkChannelUsername#e6d2d8f4 chat_id:InputChat username:string = Bool; -messages.updateChannelUsername#ce2e9587 chat_id:InputChat username:string = Bool; +messages.startBot#1b3e0ffc bot:InputUser chat_id:int random_id:long start_param:string = Updates; +messages.getMessagesViews#c4c8a55d peer:InputPeer id:Vector increment:Bool = Vector; updates.getState#edd4882a = updates.State; updates.getDifference#a041495 pts:int date:int qts:int = updates.Difference; -updates.getChannelDifference#248af4f5 peer:InputPeer filter:ChannelMessagesFilter pts:int limit:int = updates.ChannelDifference; +updates.getChannelDifference#bb32d7c0 channel:InputChannel filter:ChannelMessagesFilter pts:int limit:int = updates.ChannelDifference; photos.updateProfilePhoto#eef579a0 id:InputPhoto crop:InputPhotoCrop = UserProfilePhoto; photos.uploadProfilePhoto#d50f9c88 file:InputFile caption:string geo_point:InputGeoPoint crop:InputPhotoCrop = photos.Photo; @@ -760,3 +751,27 @@ help.saveAppLog#6f02f748 events:Vector = Bool; help.getInviteText#a4a95186 lang_code:string = help.InviteText; help.getSupport#9cdf08cd = help.Support; help.getAppChangelog#5bab7fb2 device_model:string system_version:string app_version:string lang_code:string = help.AppChangelog; + +channels.getDialogs#a9d3d249 offset:int limit:int = messages.Dialogs; +channels.getImportantHistory#ddb929cb channel:InputChannel offset_id:int add_offset:int limit:int max_id:int min_id:int = messages.Messages; +channels.readHistory#cc104937 channel:InputChannel max_id:int = Bool; +channels.deleteMessages#84c1fd4e channel:InputChannel id:Vector = messages.AffectedMessages; +channels.getMessages#93d7b347 channel:InputChannel id:Vector = messages.Messages; +channels.getParticipants#24d98f92 channel:InputChannel filter:ChannelParticipantsFilter offset:int limit:int = channels.ChannelParticipants; +channels.getParticipant#546dd7a6 channel:InputChannel user_id:InputUser = channels.ChannelParticipant; +channels.getChannels#a7f6bbb id:Vector = messages.Chats; +channels.getFullChannel#8736a09 channel:InputChannel = messages.ChatFull; +channels.createChannel#5521d844 flags:# title:string about:string users:Vector = Updates; +channels.editAbout#13e27f1e channel:InputChannel about:string = Bool; +channels.editAdmin#52b16962 channel:InputChannel user_id:InputUser role:ChannelParticipantRole = Bool; +channels.editTitle#566decd0 channel:InputChannel title:string = Updates; +channels.editPhoto#f12e57c9 channel:InputChannel photo:InputChatPhoto = Updates; +channels.toggleComments#aaa29e88 channel:InputChannel enabled:Bool = Updates; +channels.checkUsername#10e6bd2c channel:InputChannel username:string = Bool; +channels.updateUsername#3514b3de channel:InputChannel username:string = Bool; +channels.joinChannel#24b524c5 channel:InputChannel = Updates; +channels.leaveChannel#f836aa95 channel:InputChannel = Updates; +channels.inviteToChannel#199f3a6c channel:InputChannel users:Vector = Updates; +channels.kickFromChannel#a672de14 channel:InputChannel user_id:InputUser kicked:Bool = Updates; +channels.exportInvite#c7560885 channel:InputChannel = ExportedChatInvite; +channels.deleteChannel#c0111fe3 channel:InputChannel = Updates; diff --git a/Telegram/SourceFiles/profilewidget.cpp b/Telegram/SourceFiles/profilewidget.cpp index a20238425..5be6c6e5e 100644 --- a/Telegram/SourceFiles/profilewidget.cpp +++ b/Telegram/SourceFiles/profilewidget.cpp @@ -104,10 +104,9 @@ ProfileInner::ProfileInner(ProfileWidget *profile, ScrollArea *scroll, const Pee if (chatPhoto && chatPhoto->date) { _photoLink = TextLinkPtr(new PhotoLink(chatPhoto, _peer)); } - if (_peerChannel->photoId == UnknownPeerPhotoId) { + if (_peerChannel->photoId == UnknownPeerPhotoId || (_peerChannel->invitationUrl.isEmpty() && _peerChannel->adminned)) { App::api()->requestFullPeer(_peer); } -// MTP::send(MTPmessages_UpdateChannelUsername(_peerChannel->inputChat, MTP_string("tdesktop_channel"))); } // profile @@ -382,7 +381,11 @@ void ProfileInner::onCreateInvitationLink() { void ProfileInner::onCreateInvitationLinkSure() { if (!_peerChat && !_peerChannel) return; - MTP::send(MTPmessages_ExportChatInvite(_peerChat ? _peerChat->inputChat : _peerChannel->inputChat), rpcDone(&ProfileInner::chatInviteDone)); + if (_peerChat) { + MTP::send(MTPmessages_ExportChatInvite(_peerChat->inputChat), rpcDone(&ProfileInner::chatInviteDone)); + } else if (_peerChannel) { + MTP::send(MTPchannels_ExportInvite(_peerChannel->inputChannel), rpcDone(&ProfileInner::chatInviteDone)); + } } void ProfileInner::chatInviteDone(const MTPExportedChatInvite &result) { diff --git a/Telegram/SourceFiles/structs.h b/Telegram/SourceFiles/structs.h index 142d3d2c5..a87087858 100644 --- a/Telegram/SourceFiles/structs.h +++ b/Telegram/SourceFiles/structs.h @@ -345,11 +345,11 @@ public: class ChatData : public PeerData { public: - ChatData(const PeerId &id) : PeerData(id), inputChat(MTP_inputChat(MTP_int(bareId()))), count(0), date(0), version(0), admin(0), inviterForSpamReport(0), left(false), forbidden(true), botStatus(0) { + ChatData(const PeerId &id) : PeerData(id), inputChat(MTP_int(bareId())), count(0), date(0), version(0), admin(0), inviterForSpamReport(0), left(false), forbidden(true), botStatus(0) { } void setPhoto(const MTPChatPhoto &photo, const PhotoId &phId = UnknownPeerPhotoId); - MTPInputChat inputChat; + MTPint inputChat; int32 count; int32 date; @@ -415,7 +415,7 @@ private: class ChannelData : public PeerData { public: - ChannelData(const PeerId &id) : PeerData(id), access(0), inputChat(MTP_inputChannel(MTP_int(bareId()), MTP_long(0))), date(0), version(0), isBroadcast(false), isPublic(false), adminned(false), left(false), forbidden(true), botStatus(-1) { + ChannelData(const PeerId &id) : PeerData(id), access(0), inputChannel(MTP_inputChannel(MTP_int(bareId()), MTP_long(0))), date(0), version(0), isBroadcast(false), isPublic(false), adminned(false), left(false), forbidden(true), botStatus(-1) { setName(QString(), QString()); } void setPhoto(const MTPChatPhoto &photo, const PhotoId &phId = UnknownPeerPhotoId); @@ -423,7 +423,7 @@ public: uint64 access; - MTPInputChat inputChat; + MTPinputChannel inputChannel; QString username; int32 date;