From a925822141abcc6cfdebffa8e3c39b1d2da01e5a Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 30 Apr 2017 16:31:11 +0300 Subject: [PATCH] Generate and handle new video message links. --- Telegram/SourceFiles/core/click_handler_types.cpp | 2 +- Telegram/SourceFiles/history/history_item.cpp | 14 +++++++++++++- Telegram/SourceFiles/historywidget.cpp | 6 +++--- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Telegram/SourceFiles/core/click_handler_types.cpp b/Telegram/SourceFiles/core/click_handler_types.cpp index c73e67aa5..2bf25b075 100644 --- a/Telegram/SourceFiles/core/click_handler_types.cpp +++ b/Telegram/SourceFiles/core/click_handler_types.cpp @@ -40,7 +40,7 @@ QString tryConvertUrlToLocal(QString url) { using namespace qthelp; auto matchOptions = RegExOption::CaseInsensitive; - auto telegramMeMatch = regex_match(qsl("^https?://(www\\.)?(telegram\\.(me|dog)|t\\.me)/(.+)$"), url, matchOptions); + auto telegramMeMatch = regex_match(qsl("^https?://(www\\.)?(telegram\\.(me|dog)|t\\.me|telesco\\.pe)/(.+)$"), url, matchOptions); if (telegramMeMatch) { auto query = telegramMeMatch->capturedRef(4); if (auto joinChatMatch = regex_match(qsl("^joinchat/([a-zA-Z0-9\\.\\_\\-]+)(\\?|$)"), query, matchOptions)) { diff --git a/Telegram/SourceFiles/history/history_item.cpp b/Telegram/SourceFiles/history/history_item.cpp index d53ecedee..e74301f4a 100644 --- a/Telegram/SourceFiles/history/history_item.cpp +++ b/Telegram/SourceFiles/history/history_item.cpp @@ -796,8 +796,20 @@ bool HistoryItem::canDeleteForEveryone(const QDateTime &cur) const { } QString HistoryItem::directLink() const { - return hasDirectLink() ? Messenger::Instance().createInternalLinkFull(_history->peer->asChannel()->username + '/' + QString::number(id)) : QString(); + if (hasDirectLink()) { + auto query = _history->peer->asChannel()->username + '/' + QString::number(id); + if (auto media = getMedia()) { + if (auto document = media->getDocument()) { + if (document->isRoundVideo()) { + return qsl("https://telesco.pe/") + query; + } + } + } + return Messenger::Instance().createInternalLinkFull(query); + } + return QString(); } + bool HistoryItem::unread() const { // Messages from myself are always read. if (history()->peer->isSelf()) return false; diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index e44a455fe..37957abcd 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -5422,10 +5422,10 @@ void HistoryWidget::onPinnedHide() { } void HistoryWidget::onCopyPostLink() { - HistoryItem *to = App::contextItem(); - if (!to || !to->hasDirectLink()) return; + auto item = App::contextItem(); + if (!item || !item->hasDirectLink()) return; - QApplication::clipboard()->setText(to->directLink()); + QApplication::clipboard()->setText(item->directLink()); } bool HistoryWidget::lastForceReplyReplied(const FullMsgId &replyTo) const {