1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "data/data_chat_participant_status.h"
#include "base/unixtime.h"
#include "boxes/peers/edit_peer_permissions_box.h"
#include "data/data_chat.h"
#include "data/data_channel.h"
#include "data/data_forum_topic.h"
#include "data/data_peer_values.h"
#include "data/data_user.h"
#include "lang/lang_keys.h"
#include "ui/chat/attach/attach_prepare.h"
namespace {
[[nodiscard]] ChatAdminRights ChatAdminRightsFlags(
const MTPChatAdminRights &rights) {
return rights.match([](const MTPDchatAdminRights &data) {
return ChatAdminRights::from_raw(int32(data.vflags().v));
});
}
[[nodiscard]] ChatRestrictions ChatBannedRightsFlags(
const MTPChatBannedRights &rights) {
return rights.match([](const MTPDchatBannedRights &data) {
return ChatRestrictions::from_raw(int32(data.vflags().v));
});
}
[[nodiscard]] TimeId ChatBannedRightsUntilDate(
const MTPChatBannedRights &rights) {
return rights.match([](const MTPDchatBannedRights &data) {
return data.vuntil_date().v;
});
}
} // namespace
ChatAdminRightsInfo::ChatAdminRightsInfo(const MTPChatAdminRights &rights)
: flags(ChatAdminRightsFlags(rights)) {
}
ChatRestrictionsInfo::ChatRestrictionsInfo(const MTPChatBannedRights &rights)
: flags(ChatBannedRightsFlags(rights))
, until(ChatBannedRightsUntilDate(rights)) {
}
namespace Data {
std::vector<ChatRestrictions> ListOfRestrictions(
RestrictionsSetOptions options) {
auto labels = RestrictionLabels(options);
return ranges::views::all(labels)
| ranges::views::transform(&RestrictionLabel::flags)
| ranges::to_vector;
}
ChatRestrictions AllSendRestrictions() {
constexpr auto result = [] {
auto result = ChatRestrictions();
for (const auto right : AllSendRestrictionsList()) {
result |= right;
}
return result;
}();
return result;
}
ChatRestrictions FilesSendRestrictions() {
constexpr auto result = [] {
auto result = ChatRestrictions();
for (const auto right : FilesSendRestrictionsList()) {
result |= right;
}
return result;
}();
return result;
}
ChatRestrictions TabbedPanelSendRestrictions() {
constexpr auto result = [] {
auto result = ChatRestrictions();
for (const auto right : TabbedPanelSendRestrictionsList()) {
result |= right;
}
return result;
}();
return result;
}
// Duplicated in CanSendAnyOfValue().
bool CanSendAnyOf(
not_null<const Thread*> thread,
ChatRestrictions rights,
bool forbidInForums) {
const auto peer = thread->peer();
const auto topic = thread->asTopic();
return CanSendAnyOf(peer, rights, forbidInForums && !topic)
&& (!topic || !topic->closed() || topic->canToggleClosed());
}
// Duplicated in CanSendAnyOfValue().
bool CanSendAnyOf(
not_null<const PeerData*> peer,
ChatRestrictions rights,
bool forbidInForums) {
if (const auto user = peer->asUser()) {
if (user->isInaccessible() || user->isRepliesChat()) {
return false;
} else if (rights
& ~(ChatRestriction::SendVoiceMessages
| ChatRestriction::SendVideoMessages
| ChatRestriction::SendPolls)) {
return true;
}
for (const auto right : {
ChatRestriction::SendVoiceMessages,
ChatRestriction::SendVideoMessages,
ChatRestriction::SendPolls,
}) {
if ((rights & right) && !user->amRestricted(right)) {
return true;
}
}
return false;
} else if (const auto chat = peer->asChat()) {
if (!chat->amIn()) {
return false;
}
for (const auto right : AllSendRestrictionsList()) {
if ((rights & right) && !chat->amRestricted(right)) {
return true;
}
}
return false;
} else if (const auto channel = peer->asChannel()) {
using Flag = ChannelDataFlag;
const auto allowed = channel->amIn()
|| ((channel->flags() & Flag::HasLink)
&& !(channel->flags() & Flag::JoinToWrite));
if (!allowed || (forbidInForums && channel->isForum())) {
return false;
} else if (channel->canPublish()) {
return true;
} else if (channel->isBroadcast()) {
return false;
}
for (const auto right : AllSendRestrictionsList()) {
if ((rights & right) && !channel->amRestricted(right)) {
return true;
}
}
return false;
}
Unexpected("Peer type in CanSendAnyOf.");
}
std::optional<QString> RestrictionError(
not_null<PeerData*> peer,
ChatRestriction restriction) {
using Flag = ChatRestriction;
if (const auto restricted = peer->amRestricted(restriction)) {
if (const auto user = peer->asUser()) {
const auto result = (restriction == Flag::SendVoiceMessages)
? tr::lng_restricted_send_voice_messages(
tr::now,
lt_user,
user->name())
: (restriction == Flag::SendVoiceMessages)
? tr::lng_restricted_send_video_messages(
tr::now,
lt_user,
user->name())
: (restriction == Flag::SendPolls)
? u"can't send polls :("_q
: (restriction == Flag::PinMessages)
? u"can't pin :("_q
: std::optional<QString>();
Ensures(result.has_value());
return result;
}
const auto all = restricted.isWithEveryone();
const auto channel = peer->asChannel();
if (!all && channel) {
auto restrictedUntil = channel->restrictedUntil();
if (restrictedUntil > 0
&& !ChannelData::IsRestrictedForever(restrictedUntil)) {
auto restrictedUntilDateTime = base::unixtime::parse(
channel->restrictedUntil());
auto date = QLocale().toString(
restrictedUntilDateTime.date(),
QLocale::ShortFormat);
auto time = QLocale().toString(
restrictedUntilDateTime.time(),
QLocale::ShortFormat);
switch (restriction) {
case Flag::SendPolls:
return tr::lng_restricted_send_polls_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendOther:
return tr::lng_restricted_send_message_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendPhotos:
return tr::lng_restricted_send_photos_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendVideos:
return tr::lng_restricted_send_videos_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendMusic:
return tr::lng_restricted_send_music_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendFiles:
return tr::lng_restricted_send_files_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendVideoMessages:
return tr::lng_restricted_send_video_messages_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendVoiceMessages:
return tr::lng_restricted_send_voice_messages_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendStickers:
return tr::lng_restricted_send_stickers_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendGifs:
return tr::lng_restricted_send_gifs_until(
tr::now, lt_date, date, lt_time, time);
case Flag::SendInline:
case Flag::SendGames:
return tr::lng_restricted_send_inline_until(
tr::now, lt_date, date, lt_time, time);
}
Unexpected("Restriction in Data::RestrictionErrorKey.");
}
}
switch (restriction) {
case Flag::SendPolls:
return all
? tr::lng_restricted_send_polls_all(tr::now)
: tr::lng_restricted_send_polls(tr::now);
case Flag::SendOther:
return all
? tr::lng_restricted_send_message_all(tr::now)
: tr::lng_restricted_send_message(tr::now);
case Flag::SendPhotos:
return all
? tr::lng_restricted_send_photos_all(tr::now)
: tr::lng_restricted_send_photos(tr::now);
case Flag::SendVideos:
return all
? tr::lng_restricted_send_videos_all(tr::now)
: tr::lng_restricted_send_videos(tr::now);
case Flag::SendMusic:
return all
? tr::lng_restricted_send_music_all(tr::now)
: tr::lng_restricted_send_music(tr::now);
case Flag::SendFiles:
return all
? tr::lng_restricted_send_files_all(tr::now)
: tr::lng_restricted_send_files(tr::now);
case Flag::SendVideoMessages:
return all
? tr::lng_restricted_send_video_messages_all(tr::now)
: tr::lng_restricted_send_video_messages_group(tr::now);
case Flag::SendVoiceMessages:
return all
? tr::lng_restricted_send_voice_messages_all(tr::now)
: tr::lng_restricted_send_voice_messages_group(tr::now);
case Flag::SendStickers:
return all
? tr::lng_restricted_send_stickers_all(tr::now)
: tr::lng_restricted_send_stickers(tr::now);
case Flag::SendGifs:
return all
? tr::lng_restricted_send_gifs_all(tr::now)
: tr::lng_restricted_send_gifs(tr::now);
case Flag::SendInline:
case Flag::SendGames:
return all
? tr::lng_restricted_send_inline_all(tr::now)
: tr::lng_restricted_send_inline(tr::now);
}
Unexpected("Restriction in Data::RestrictionErrorKey.");
}
return std::nullopt;
}
std::optional<QString> AnyFileRestrictionError(not_null<PeerData*> peer) {
using Restriction = ChatRestriction;
for (const auto right : FilesSendRestrictionsList()) {
if (!RestrictionError(peer, right)) {
return {};
}
}
return RestrictionError(peer, Restriction::SendFiles);
}
std::optional<QString> FileRestrictionError(
not_null<PeerData*> peer,
const Ui::PreparedList &list,
std::optional<bool> compress) {
const auto slowmode = peer->slowmodeApplied();
if (slowmode) {
if (!list.canBeSentInSlowmode()) {
return tr::lng_slowmode_no_many(tr::now);
} else if (list.files.size() > 1 && list.hasSticker()) {
if (compress == false) {
return tr::lng_slowmode_no_many(tr::now);
} else {
compress = true;
}
}
}
for (const auto &file : list.files) {
if (const auto error = FileRestrictionError(peer, file, compress)) {
return error;
}
}
return {};
}
std::optional<QString> FileRestrictionError(
not_null<PeerData*> peer,
const Ui::PreparedFile &file,
std::optional<bool> compress) {
using Type = Ui::PreparedFile::Type;
using Restriction = ChatRestriction;
const auto stickers = RestrictionError(peer, Restriction::SendStickers);
const auto gifs = RestrictionError(peer, Restriction::SendGifs);
const auto photos = RestrictionError(peer, Restriction::SendPhotos);
const auto videos = RestrictionError(peer, Restriction::SendVideos);
const auto music = RestrictionError(peer, Restriction::SendMusic);
const auto files = RestrictionError(peer, Restriction::SendFiles);
if (!stickers && !gifs && !photos && !videos && !music && !files) {
return {};
}
switch (file.type) {
case Type::Photo:
if (compress == true && photos) {
return photos;
} else if (const auto other = file.isSticker() ? stickers : files) {
if ((compress == false || photos) && other) {
return (file.isSticker() || !photos) ? other : photos;
}
}
break;
case Type::Video:
if (const auto error = file.isGifv() ? gifs : videos) {
return error;
}
break;
case Type::Music:
if (music) {
return music;
}
break;
case Type::File:
if (files) {
return files;
}
break;
}
return {};
}
} // namespace Data
|