2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00
tdesktop/Telegram/SourceFiles/api/api_common.cpp

48 lines
1.2 KiB
C++
Raw Normal View History

2022-11-01 08:46:31 +04:00
/*
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 "api/api_common.h"
#include "base/qt/qt_key_modifiers.h"
#include "data/data_histories.h"
2022-11-01 08:46:31 +04:00
#include "data/data_thread.h"
#include "history/history.h"
2022-11-01 08:46:31 +04:00
namespace Api {
2025-06-13 14:39:30 +04:00
MTPSuggestedPost SuggestToMTP(SuggestPostOptions suggest) {
2025-06-13 13:40:46 +04:00
using Flag = MTPDsuggestedPost::Flag;
2025-06-13 14:39:30 +04:00
return suggest.exists
2025-06-13 13:40:46 +04:00
? MTP_suggestedPost(
2025-06-13 14:39:30 +04:00
MTP_flags(suggest.date ? Flag::f_schedule_date : Flag()),
MTP_long(suggest.stars),
MTP_int(suggest.date))
2025-06-13 13:40:46 +04:00
: MTPSuggestedPost();
}
2022-11-01 08:46:31 +04:00
SendAction::SendAction(
not_null<Data::Thread*> thread,
SendOptions options)
: history(thread->owningHistory())
, options(options)
2023-10-10 10:49:22 +04:00
, replyTo({ .messageId = { history->peer->id, thread->topicRootId() } }) {
replyTo.topicRootId = replyTo.messageId.msg;
2022-11-01 08:46:31 +04:00
}
SendOptions DefaultSendWhenOnlineOptions() {
return {
.scheduled = kScheduledUntilOnlineTimestamp,
.silent = base::IsCtrlPressed(),
};
}
MTPInputReplyTo SendAction::mtpReplyTo() const {
2023-10-10 10:49:22 +04:00
return Data::ReplyToForMTP(history, replyTo);
}
2022-11-01 08:46:31 +04:00
} // namespace Api