2024-02-26 17:09:58 +01:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
|
|
|
//
|
|
|
|
// 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/BusinessGreetingMessage.h"
|
|
|
|
|
|
|
|
#include "td/telegram/ContactsManager.h"
|
|
|
|
#include "td/telegram/DialogId.h"
|
|
|
|
#include "td/telegram/DialogManager.h"
|
|
|
|
#include "td/telegram/Td.h"
|
|
|
|
|
|
|
|
#include "td/utils/algorithm.h"
|
2024-02-26 18:15:16 +01:00
|
|
|
#include "td/utils/misc.h"
|
2024-02-26 17:09:58 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
BusinessGreetingMessage::BusinessGreetingMessage(
|
2024-02-27 00:07:21 +01:00
|
|
|
telegram_api::object_ptr<telegram_api::businessGreetingMessage> greeting_message) {
|
|
|
|
if (greeting_message == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shortcut_id_ = QuickReplyShortcutId(greeting_message->shortcut_id_);
|
|
|
|
recipients_ = BusinessRecipients(std::move(greeting_message->recipients_));
|
|
|
|
inactivity_days_ = clamp(greeting_message->no_activity_days_ / 7 * 7, 7, 28);
|
2024-02-26 17:09:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BusinessGreetingMessage::BusinessGreetingMessage(
|
|
|
|
td_api::object_ptr<td_api::businessGreetingMessageSettings> greeting_message) {
|
|
|
|
if (greeting_message == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto inactivity_days = greeting_message->inactivity_days_;
|
|
|
|
if (inactivity_days < 7 || inactivity_days > 28 || inactivity_days % 7 != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shortcut_id_ = QuickReplyShortcutId(greeting_message->shortcut_id_);
|
|
|
|
recipients_ = BusinessRecipients(std::move(greeting_message->recipients_));
|
|
|
|
inactivity_days_ = inactivity_days;
|
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::businessGreetingMessageSettings>
|
|
|
|
BusinessGreetingMessage::get_business_greeting_message_settings_object(Td *td) const {
|
2024-02-27 00:07:21 +01:00
|
|
|
if (is_empty()) {
|
2024-02-26 17:09:58 +01:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return td_api::make_object<td_api::businessGreetingMessageSettings>(
|
|
|
|
shortcut_id_.get(), recipients_.get_business_recipients_object(td), inactivity_days_);
|
|
|
|
}
|
|
|
|
|
|
|
|
telegram_api::object_ptr<telegram_api::inputBusinessGreetingMessage>
|
|
|
|
BusinessGreetingMessage::get_input_business_greeting_message(Td *td) const {
|
|
|
|
return telegram_api::make_object<telegram_api::inputBusinessGreetingMessage>(
|
|
|
|
shortcut_id_.get(), recipients_.get_input_business_recipients(td), inactivity_days_);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const BusinessGreetingMessage &lhs, const BusinessGreetingMessage &rhs) {
|
|
|
|
return lhs.shortcut_id_ == rhs.shortcut_id_ && lhs.recipients_ == rhs.recipients_ &&
|
|
|
|
lhs.inactivity_days_ == rhs.inactivity_days_;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const BusinessGreetingMessage &greeting_message) {
|
|
|
|
return string_builder << "greeting message " << greeting_message.shortcut_id_ << ' ' << greeting_message.recipients_
|
|
|
|
<< " after " << greeting_message.inactivity_days_ << " inactivity days";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|