2019-05-09 21:27:36 +02:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2019-05-09 21:27:36 +02:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/telegram/BackgroundType.h"
|
|
|
|
|
2021-05-26 19:17:05 +02:00
|
|
|
#include "td/utils/HttpUrl.h"
|
2019-05-14 16:26:13 +02:00
|
|
|
#include "td/utils/logging.h"
|
2021-05-21 00:49:59 +02:00
|
|
|
#include "td/utils/misc.h"
|
2019-12-23 18:48:30 +01:00
|
|
|
#include "td/utils/Slice.h"
|
2021-05-17 14:21:11 +02:00
|
|
|
#include "td/utils/SliceBuilder.h"
|
2019-05-14 16:26:13 +02:00
|
|
|
|
2019-05-09 21:27:36 +02:00
|
|
|
namespace td {
|
|
|
|
|
2019-12-22 02:42:22 +01:00
|
|
|
static string get_color_hex_string(int32 color) {
|
2019-05-10 14:36:37 +02:00
|
|
|
string result;
|
|
|
|
for (int i = 20; i >= 0; i -= 4) {
|
2021-05-21 00:49:59 +02:00
|
|
|
result += "0123456789abcdef"[(color >> i) & 0xF];
|
2019-05-10 14:36:37 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-05-20 00:57:38 +02:00
|
|
|
static bool is_valid_color(int32 color) {
|
|
|
|
return 0 <= color && color <= 0xFFFFFF;
|
|
|
|
}
|
|
|
|
|
2021-05-21 00:49:59 +02:00
|
|
|
static bool is_valid_rotation_angle(int32 rotation_angle) {
|
|
|
|
return 0 <= rotation_angle && rotation_angle < 360 && rotation_angle % 45 == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundFill::BackgroundFill(const telegram_api::wallPaperSettings *settings) {
|
|
|
|
if (settings == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto flags = settings->flags_;
|
|
|
|
if ((flags & telegram_api::wallPaperSettings::BACKGROUND_COLOR_MASK) != 0) {
|
|
|
|
top_color = settings->background_color_;
|
|
|
|
if (!is_valid_color(top_color)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
top_color = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((flags & telegram_api::wallPaperSettings::FOURTH_BACKGROUND_COLOR_MASK) != 0 ||
|
|
|
|
(flags & telegram_api::wallPaperSettings::THIRD_BACKGROUND_COLOR_MASK) != 0) {
|
|
|
|
bottom_color = settings->second_background_color_;
|
|
|
|
if (!is_valid_color(bottom_color)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
bottom_color = 0;
|
|
|
|
}
|
|
|
|
third_color = settings->third_background_color_;
|
|
|
|
if (!is_valid_color(third_color)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
third_color = 0;
|
|
|
|
}
|
|
|
|
if ((flags & telegram_api::wallPaperSettings::FOURTH_BACKGROUND_COLOR_MASK) != 0) {
|
|
|
|
fourth_color = settings->fourth_background_color_;
|
|
|
|
if (!is_valid_color(fourth_color)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
fourth_color = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((flags & telegram_api::wallPaperSettings::SECOND_BACKGROUND_COLOR_MASK) != 0) {
|
|
|
|
bottom_color = settings->second_background_color_;
|
|
|
|
if (!is_valid_color(bottom_color)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
bottom_color = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
rotation_angle = settings->rotation_;
|
|
|
|
if (!is_valid_rotation_angle(rotation_angle)) {
|
|
|
|
LOG(ERROR) << "Receive " << to_string(*settings);
|
|
|
|
rotation_angle = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-20 00:57:38 +02:00
|
|
|
static Result<BackgroundFill> get_background_fill(const td_api::BackgroundFill *fill) {
|
|
|
|
if (fill == nullptr) {
|
|
|
|
return Status::Error(400, "Background fill info must be non-empty");
|
|
|
|
}
|
2019-12-22 18:11:54 +01:00
|
|
|
switch (fill->get_id()) {
|
|
|
|
case td_api::backgroundFillSolid::ID: {
|
|
|
|
auto solid = static_cast<const td_api::backgroundFillSolid *>(fill);
|
2021-05-20 00:57:38 +02:00
|
|
|
if (!is_valid_color(solid->color_)) {
|
|
|
|
return Status::Error(400, "Invalid solid fill color value");
|
|
|
|
}
|
2019-12-22 19:01:51 +01:00
|
|
|
return BackgroundFill(solid->color_);
|
2019-12-22 18:11:54 +01:00
|
|
|
}
|
|
|
|
case td_api::backgroundFillGradient::ID: {
|
|
|
|
auto gradient = static_cast<const td_api::backgroundFillGradient *>(fill);
|
2021-05-20 00:57:38 +02:00
|
|
|
if (!is_valid_color(gradient->top_color_)) {
|
|
|
|
return Status::Error(400, "Invalid top gradient color value");
|
|
|
|
}
|
|
|
|
if (!is_valid_color(gradient->bottom_color_)) {
|
|
|
|
return Status::Error(400, "Invalid bottom gradient color value");
|
|
|
|
}
|
2021-05-21 00:49:59 +02:00
|
|
|
if (!is_valid_rotation_angle(gradient->rotation_angle_)) {
|
2021-05-20 00:57:38 +02:00
|
|
|
return Status::Error(400, "Invalid rotation angle value");
|
|
|
|
}
|
2019-12-22 20:32:01 +01:00
|
|
|
return BackgroundFill(gradient->top_color_, gradient->bottom_color_, gradient->rotation_angle_);
|
2019-12-22 18:11:54 +01:00
|
|
|
}
|
2021-05-21 00:49:59 +02:00
|
|
|
case td_api::backgroundFillFreeformGradient::ID: {
|
|
|
|
auto freeform = static_cast<const td_api::backgroundFillFreeformGradient *>(fill);
|
|
|
|
if (freeform->colors_.size() != 3 && freeform->colors_.size() != 4) {
|
|
|
|
return Status::Error(400, "Wrong number of gradient colors");
|
|
|
|
}
|
|
|
|
for (auto &color : freeform->colors_) {
|
|
|
|
if (!is_valid_color(color)) {
|
|
|
|
return Status::Error(400, "Invalid freeform gradient color value");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return BackgroundFill(freeform->colors_[0], freeform->colors_[1], freeform->colors_[2],
|
|
|
|
freeform->colors_.size() == 3 ? -1 : freeform->colors_[3]);
|
|
|
|
}
|
2019-12-22 18:11:54 +01:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-21 00:49:59 +02:00
|
|
|
Result<BackgroundFill> BackgroundFill::get_background_fill(Slice name) {
|
|
|
|
name = name.substr(0, name.find('#'));
|
|
|
|
|
|
|
|
Slice parameters;
|
|
|
|
auto parameters_pos = name.find('?');
|
|
|
|
if (parameters_pos != Slice::npos) {
|
|
|
|
parameters = name.substr(parameters_pos + 1);
|
|
|
|
name = name.substr(0, parameters_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto get_color = [](Slice color_string) -> Result<int32> {
|
|
|
|
auto r_color = hex_to_integer_safe<uint32>(color_string);
|
|
|
|
if (r_color.is_error() || color_string.size() > 6) {
|
|
|
|
return Status::Error(400, "WALLPAPER_INVALID");
|
|
|
|
}
|
|
|
|
return static_cast<int32>(r_color.ok());
|
|
|
|
};
|
|
|
|
|
2021-05-26 19:17:05 +02:00
|
|
|
size_t hyphen_pos = name.find('-');
|
2021-05-21 00:49:59 +02:00
|
|
|
if (name.find('~') < name.size()) {
|
|
|
|
vector<Slice> color_strings = full_split(name, '~');
|
2021-05-26 19:17:05 +02:00
|
|
|
CHECK(color_strings.size() >= 2);
|
|
|
|
if (color_strings.size() == 2) {
|
|
|
|
hyphen_pos = color_strings[0].size();
|
|
|
|
} else {
|
|
|
|
if (color_strings.size() > 4) {
|
|
|
|
return Status::Error(400, "WALLPAPER_INVALID");
|
|
|
|
}
|
2021-05-21 00:49:59 +02:00
|
|
|
|
2021-05-26 19:17:05 +02:00
|
|
|
TRY_RESULT(first_color, get_color(color_strings[0]));
|
|
|
|
TRY_RESULT(second_color, get_color(color_strings[1]));
|
|
|
|
TRY_RESULT(third_color, get_color(color_strings[2]));
|
|
|
|
int32 fourth_color = -1;
|
|
|
|
if (color_strings.size() == 4) {
|
|
|
|
TRY_RESULT_ASSIGN(fourth_color, get_color(color_strings[3]));
|
|
|
|
}
|
|
|
|
return BackgroundFill(first_color, second_color, third_color, fourth_color);
|
2021-05-21 00:49:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hyphen_pos < name.size()) {
|
|
|
|
TRY_RESULT(top_color, get_color(name.substr(0, hyphen_pos)));
|
|
|
|
TRY_RESULT(bottom_color, get_color(name.substr(hyphen_pos + 1)));
|
|
|
|
int32 rotation_angle = 0;
|
|
|
|
|
|
|
|
Slice prefix("rotation=");
|
|
|
|
if (begins_with(parameters, prefix)) {
|
|
|
|
rotation_angle = to_integer<int32>(parameters.substr(prefix.size()));
|
|
|
|
if (!is_valid_rotation_angle(rotation_angle)) {
|
|
|
|
rotation_angle = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return BackgroundFill(top_color, bottom_color, rotation_angle);
|
|
|
|
}
|
|
|
|
|
|
|
|
TRY_RESULT(color, get_color(name));
|
|
|
|
return BackgroundFill(color);
|
|
|
|
}
|
|
|
|
|
2019-12-22 20:32:01 +01:00
|
|
|
static string get_background_fill_color_hex_string(const BackgroundFill &fill, bool is_first) {
|
2021-05-20 01:21:20 +02:00
|
|
|
switch (fill.get_type()) {
|
|
|
|
case BackgroundFill::Type::Solid:
|
|
|
|
return get_color_hex_string(fill.top_color);
|
2021-05-26 19:17:05 +02:00
|
|
|
case BackgroundFill::Type::Gradient:
|
|
|
|
return PSTRING() << get_color_hex_string(fill.top_color) << '-' << get_color_hex_string(fill.bottom_color)
|
|
|
|
<< (is_first ? '?' : '&') << "rotation=" << fill.rotation_angle;
|
2021-05-21 00:49:59 +02:00
|
|
|
case BackgroundFill::Type::FreeformGradient: {
|
|
|
|
SliceBuilder sb;
|
|
|
|
sb << get_color_hex_string(fill.top_color) << '~' << get_color_hex_string(fill.bottom_color) << '~'
|
|
|
|
<< get_color_hex_string(fill.third_color);
|
|
|
|
if (fill.fourth_color != -1) {
|
|
|
|
sb << '~' << get_color_hex_string(fill.fourth_color);
|
|
|
|
}
|
|
|
|
return sb.as_cslice().str();
|
|
|
|
}
|
2021-05-20 01:21:20 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return string();
|
2019-12-22 20:32:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool is_valid_intensity(int32 intensity) {
|
2021-06-04 15:05:29 +02:00
|
|
|
return -100 <= intensity && intensity <= 100;
|
2019-12-22 20:32:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int64 BackgroundFill::get_id() const {
|
|
|
|
CHECK(is_valid_color(top_color));
|
|
|
|
CHECK(is_valid_color(bottom_color));
|
2021-05-20 01:21:20 +02:00
|
|
|
switch (get_type()) {
|
|
|
|
case Type::Solid:
|
|
|
|
return static_cast<int64>(top_color) + 1;
|
|
|
|
case Type::Gradient:
|
2021-05-21 00:49:59 +02:00
|
|
|
CHECK(is_valid_rotation_angle(rotation_angle));
|
2021-05-20 01:21:20 +02:00
|
|
|
return (rotation_angle / 45) * 0x1000001000001 + (static_cast<int64>(top_color) << 24) + bottom_color +
|
|
|
|
(1 << 24) + 1;
|
2021-05-21 00:49:59 +02:00
|
|
|
case Type::FreeformGradient: {
|
|
|
|
CHECK(is_valid_color(third_color));
|
|
|
|
CHECK(fourth_color == -1 || is_valid_color(fourth_color));
|
|
|
|
const uint64 mul = 123456789;
|
|
|
|
uint64 result = static_cast<uint64>(top_color);
|
|
|
|
result = result * mul + static_cast<uint64>(bottom_color);
|
|
|
|
result = result * mul + static_cast<uint64>(third_color);
|
|
|
|
result = result * mul + static_cast<uint64>(fourth_color);
|
2021-06-08 00:10:19 +02:00
|
|
|
return static_cast<int64>(result % 0x8000008000008);
|
2021-05-21 00:49:59 +02:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BackgroundFill::is_dark() const {
|
|
|
|
switch (get_type()) {
|
|
|
|
case Type::Solid:
|
|
|
|
return (top_color & 0x808080) == 0;
|
|
|
|
case Type::Gradient:
|
|
|
|
return (top_color & 0x808080) == 0 && (bottom_color & 0x808080) == 0;
|
|
|
|
case Type::FreeformGradient:
|
|
|
|
return (top_color & 0x808080) == 0 && (bottom_color & 0x808080) == 0 && (third_color & 0x808080) == 0 &&
|
|
|
|
(fourth_color == -1 || (fourth_color & 0x808080) == 0);
|
2021-05-20 01:21:20 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return 0;
|
2019-12-22 19:01:51 +01:00
|
|
|
}
|
2019-12-22 20:32:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BackgroundFill::is_valid_id(int64 id) {
|
2021-06-08 00:10:19 +02:00
|
|
|
return 0 < id && id < 0x8000008000008;
|
2019-12-22 19:01:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const BackgroundFill &lhs, const BackgroundFill &rhs) {
|
2019-12-22 20:32:01 +01:00
|
|
|
return lhs.top_color == rhs.top_color && lhs.bottom_color == rhs.bottom_color &&
|
2021-05-21 00:49:59 +02:00
|
|
|
lhs.rotation_angle == rhs.rotation_angle && lhs.third_color == rhs.third_color &&
|
|
|
|
lhs.fourth_color == rhs.fourth_color;
|
2019-12-22 02:34:39 +01:00
|
|
|
}
|
|
|
|
|
2021-05-26 19:17:05 +02:00
|
|
|
void BackgroundType::apply_parameters_from_link(Slice name) {
|
|
|
|
const auto query = parse_url_query(name);
|
|
|
|
|
|
|
|
is_blurred = false;
|
|
|
|
is_moving = false;
|
|
|
|
auto modes = full_split(query.get_arg("mode"), ' ');
|
|
|
|
for (auto &mode : modes) {
|
|
|
|
if (type != Type::Pattern && to_lower(mode) == "blur") {
|
|
|
|
is_blurred = true;
|
|
|
|
}
|
|
|
|
if (to_lower(mode) == "motion") {
|
|
|
|
is_moving = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == Type::Pattern) {
|
2021-06-04 15:05:29 +02:00
|
|
|
intensity = -101;
|
2021-05-26 19:17:05 +02:00
|
|
|
auto intensity_arg = query.get_arg("intensity");
|
|
|
|
if (!intensity_arg.empty()) {
|
|
|
|
intensity = to_integer<int32>(intensity_arg);
|
|
|
|
}
|
|
|
|
if (!is_valid_intensity(intensity)) {
|
|
|
|
intensity = 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto bg_color = query.get_arg("bg_color");
|
|
|
|
if (!bg_color.empty()) {
|
|
|
|
auto r_fill = BackgroundFill::get_background_fill(
|
|
|
|
PSLICE() << url_encode(bg_color) << "?rotation=" << url_encode(query.get_arg("rotation")));
|
|
|
|
if (r_fill.is_ok()) {
|
|
|
|
fill = r_fill.move_as_ok();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 02:34:39 +01:00
|
|
|
string BackgroundType::get_link() const {
|
|
|
|
string mode;
|
|
|
|
if (is_blurred) {
|
|
|
|
mode = "blur";
|
|
|
|
}
|
|
|
|
if (is_moving) {
|
|
|
|
if (!mode.empty()) {
|
|
|
|
mode += '+';
|
|
|
|
}
|
|
|
|
mode += "motion";
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case BackgroundType::Type::Wallpaper: {
|
|
|
|
if (!mode.empty()) {
|
|
|
|
return PSTRING() << "mode=" << mode;
|
|
|
|
}
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
case BackgroundType::Type::Pattern: {
|
2019-12-22 19:01:51 +01:00
|
|
|
string link = PSTRING() << "intensity=" << intensity
|
2019-12-22 20:32:01 +01:00
|
|
|
<< "&bg_color=" << get_background_fill_color_hex_string(fill, false);
|
2019-12-22 02:34:39 +01:00
|
|
|
if (!mode.empty()) {
|
|
|
|
link += "&mode=";
|
|
|
|
link += mode;
|
|
|
|
}
|
|
|
|
return link;
|
|
|
|
}
|
2019-12-22 19:01:51 +01:00
|
|
|
case BackgroundType::Type::Fill:
|
2019-12-22 20:32:01 +01:00
|
|
|
return get_background_fill_color_hex_string(fill, true);
|
2019-12-22 02:34:39 +01:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 14:36:37 +02:00
|
|
|
bool operator==(const BackgroundType &lhs, const BackgroundType &rhs) {
|
|
|
|
return lhs.type == rhs.type && lhs.is_blurred == rhs.is_blurred && lhs.is_moving == rhs.is_moving &&
|
2019-12-22 19:01:51 +01:00
|
|
|
lhs.intensity == rhs.intensity && lhs.fill == rhs.fill;
|
2019-05-10 14:36:37 +02:00
|
|
|
}
|
|
|
|
|
2019-12-22 02:34:39 +01:00
|
|
|
static StringBuilder &operator<<(StringBuilder &string_builder, const BackgroundType::Type &type) {
|
|
|
|
switch (type) {
|
2019-05-10 14:36:37 +02:00
|
|
|
case BackgroundType::Type::Wallpaper:
|
2019-12-22 02:34:39 +01:00
|
|
|
return string_builder << "Wallpaper";
|
2019-05-10 14:36:37 +02:00
|
|
|
case BackgroundType::Type::Pattern:
|
2019-12-22 02:34:39 +01:00
|
|
|
return string_builder << "Pattern";
|
2019-12-22 19:01:51 +01:00
|
|
|
case BackgroundType::Type::Fill:
|
|
|
|
return string_builder << "Fill";
|
2019-05-10 14:36:37 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return string_builder;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 02:34:39 +01:00
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const BackgroundType &type) {
|
|
|
|
return string_builder << "type " << type.type << '[' << type.get_link() << ']';
|
|
|
|
}
|
|
|
|
|
2019-05-09 21:27:36 +02:00
|
|
|
Result<BackgroundType> get_background_type(const td_api::BackgroundType *type) {
|
|
|
|
if (type == nullptr) {
|
2020-05-18 21:54:18 +02:00
|
|
|
return Status::Error(400, "Type must be non-empty");
|
2019-05-09 21:27:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundType result;
|
|
|
|
switch (type->get_id()) {
|
|
|
|
case td_api::backgroundTypeWallpaper::ID: {
|
|
|
|
auto wallpaper = static_cast<const td_api::backgroundTypeWallpaper *>(type);
|
|
|
|
result = BackgroundType(wallpaper->is_blurred_, wallpaper->is_moving_);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case td_api::backgroundTypePattern::ID: {
|
|
|
|
auto pattern = static_cast<const td_api::backgroundTypePattern *>(type);
|
2021-05-20 00:57:38 +02:00
|
|
|
TRY_RESULT(background_fill, get_background_fill(pattern->fill_.get()));
|
|
|
|
if (!is_valid_intensity(pattern->intensity_)) {
|
|
|
|
return Status::Error(400, "Wrong intensity value");
|
2019-12-22 21:02:36 +01:00
|
|
|
}
|
2021-05-20 00:57:38 +02:00
|
|
|
result = BackgroundType(pattern->is_moving_, std::move(background_fill), pattern->intensity_);
|
2019-05-09 21:27:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2019-12-22 18:11:54 +01:00
|
|
|
case td_api::backgroundTypeFill::ID: {
|
|
|
|
auto fill = static_cast<const td_api::backgroundTypeFill *>(type);
|
2021-05-20 00:57:38 +02:00
|
|
|
TRY_RESULT(background_fill, get_background_fill(fill->fill_.get()));
|
|
|
|
result = BackgroundType(std::move(background_fill));
|
2019-12-21 03:28:07 +01:00
|
|
|
break;
|
|
|
|
}
|
2019-05-09 21:27:36 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundType get_background_type(bool is_pattern,
|
|
|
|
telegram_api::object_ptr<telegram_api::wallPaperSettings> settings) {
|
|
|
|
bool is_blurred = false;
|
|
|
|
bool is_moving = false;
|
2021-05-21 00:49:59 +02:00
|
|
|
BackgroundFill fill(settings.get());
|
2019-05-09 21:27:36 +02:00
|
|
|
int32 intensity = 0;
|
|
|
|
if (settings) {
|
|
|
|
auto flags = settings->flags_;
|
|
|
|
is_blurred = (flags & telegram_api::wallPaperSettings::BLUR_MASK) != 0;
|
|
|
|
is_moving = (flags & telegram_api::wallPaperSettings::MOTION_MASK) != 0;
|
2019-12-22 21:02:36 +01:00
|
|
|
|
2019-05-09 21:27:36 +02:00
|
|
|
if ((flags & telegram_api::wallPaperSettings::INTENSITY_MASK) != 0) {
|
|
|
|
intensity = settings->intensity_;
|
2019-12-22 02:02:39 +01:00
|
|
|
if (!is_valid_intensity(intensity)) {
|
2019-05-09 21:27:36 +02:00
|
|
|
LOG(ERROR) << "Receive " << to_string(settings);
|
2021-06-04 15:05:29 +02:00
|
|
|
intensity = 50;
|
2019-05-09 21:27:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_pattern) {
|
2019-12-22 21:02:36 +01:00
|
|
|
return BackgroundType(is_moving, fill, intensity);
|
2019-05-09 21:27:36 +02:00
|
|
|
} else {
|
|
|
|
return BackgroundType(is_blurred, is_moving);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 19:01:51 +01:00
|
|
|
static td_api::object_ptr<td_api::BackgroundFill> get_background_fill_object(const BackgroundFill &fill) {
|
2021-05-20 01:21:20 +02:00
|
|
|
switch (fill.get_type()) {
|
|
|
|
case BackgroundFill::Type::Solid:
|
|
|
|
return td_api::make_object<td_api::backgroundFillSolid>(fill.top_color);
|
|
|
|
case BackgroundFill::Type::Gradient:
|
|
|
|
return td_api::make_object<td_api::backgroundFillGradient>(fill.top_color, fill.bottom_color,
|
|
|
|
fill.rotation_angle);
|
2021-05-21 00:49:59 +02:00
|
|
|
case BackgroundFill::Type::FreeformGradient: {
|
|
|
|
vector<int32> colors{fill.top_color, fill.bottom_color, fill.third_color, fill.fourth_color};
|
|
|
|
if (colors.back() == -1) {
|
|
|
|
colors.pop_back();
|
|
|
|
}
|
|
|
|
return td_api::make_object<td_api::backgroundFillFreeformGradient>(std::move(colors));
|
|
|
|
}
|
2021-05-20 01:21:20 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return nullptr;
|
2019-12-22 18:11:54 +01:00
|
|
|
}
|
2019-12-22 01:17:52 +01:00
|
|
|
}
|
|
|
|
|
2019-05-09 21:27:36 +02:00
|
|
|
td_api::object_ptr<td_api::BackgroundType> get_background_type_object(const BackgroundType &type) {
|
|
|
|
switch (type.type) {
|
|
|
|
case BackgroundType::Type::Wallpaper:
|
|
|
|
return td_api::make_object<td_api::backgroundTypeWallpaper>(type.is_blurred, type.is_moving);
|
|
|
|
case BackgroundType::Type::Pattern:
|
2019-12-22 21:02:36 +01:00
|
|
|
return td_api::make_object<td_api::backgroundTypePattern>(get_background_fill_object(type.fill), type.intensity,
|
|
|
|
type.is_moving);
|
2019-12-22 19:01:51 +01:00
|
|
|
case BackgroundType::Type::Fill:
|
|
|
|
return td_api::make_object<td_api::backgroundTypeFill>(get_background_fill_object(type.fill));
|
2019-05-09 21:27:36 +02:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 14:36:37 +02:00
|
|
|
telegram_api::object_ptr<telegram_api::wallPaperSettings> get_input_wallpaper_settings(const BackgroundType &type) {
|
2021-05-20 01:21:20 +02:00
|
|
|
CHECK(type.is_server());
|
|
|
|
|
2019-05-10 14:36:37 +02:00
|
|
|
int32 flags = 0;
|
|
|
|
if (type.is_blurred) {
|
|
|
|
flags |= telegram_api::wallPaperSettings::BLUR_MASK;
|
|
|
|
}
|
|
|
|
if (type.is_moving) {
|
|
|
|
flags |= telegram_api::wallPaperSettings::MOTION_MASK;
|
|
|
|
}
|
2021-05-20 01:21:20 +02:00
|
|
|
switch (type.fill.get_type()) {
|
2021-05-21 00:49:59 +02:00
|
|
|
case BackgroundFill::Type::FreeformGradient:
|
|
|
|
if (type.fill.fourth_color != -1) {
|
|
|
|
flags |= telegram_api::wallPaperSettings::FOURTH_BACKGROUND_COLOR_MASK;
|
|
|
|
}
|
|
|
|
flags |= telegram_api::wallPaperSettings::THIRD_BACKGROUND_COLOR_MASK;
|
|
|
|
// fallthrough
|
2021-05-20 01:21:20 +02:00
|
|
|
case BackgroundFill::Type::Gradient:
|
|
|
|
flags |= telegram_api::wallPaperSettings::SECOND_BACKGROUND_COLOR_MASK;
|
|
|
|
// fallthrough
|
|
|
|
case BackgroundFill::Type::Solid:
|
|
|
|
flags |= telegram_api::wallPaperSettings::BACKGROUND_COLOR_MASK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
2019-12-22 19:01:51 +01:00
|
|
|
}
|
2021-05-20 01:21:20 +02:00
|
|
|
if (type.intensity != 0) {
|
2019-05-10 14:36:37 +02:00
|
|
|
flags |= telegram_api::wallPaperSettings::INTENSITY_MASK;
|
|
|
|
}
|
2021-05-21 00:49:59 +02:00
|
|
|
return telegram_api::make_object<telegram_api::wallPaperSettings>(
|
|
|
|
flags, false /*ignored*/, false /*ignored*/, type.fill.top_color, type.fill.bottom_color, type.fill.third_color,
|
|
|
|
type.fill.fourth_color, type.intensity, type.fill.rotation_angle);
|
2019-05-10 14:36:37 +02:00
|
|
|
}
|
|
|
|
|
2019-05-09 21:27:36 +02:00
|
|
|
} // namespace td
|