2016-10-02 09:30:28 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
2016-10-02 13:54:27 +00:00
|
|
|
#include "window/notifications_manager.h"
|
2016-10-02 09:30:28 +00:00
|
|
|
|
|
|
|
#include "platform/platform_notifications_manager.h"
|
2016-10-02 13:54:27 +00:00
|
|
|
#include "window/notifications_manager_default.h"
|
2016-10-02 09:30:28 +00:00
|
|
|
#include "lang.h"
|
2016-10-02 16:32:46 +00:00
|
|
|
#include "mainwindow.h"
|
2016-10-02 17:06:34 +00:00
|
|
|
#include "mainwidget.h"
|
2016-10-02 09:30:28 +00:00
|
|
|
|
|
|
|
namespace Window {
|
|
|
|
namespace Notifications {
|
|
|
|
|
|
|
|
void start() {
|
2016-10-02 13:54:27 +00:00
|
|
|
Default::start();
|
2016-10-02 09:30:28 +00:00
|
|
|
Platform::Notifications::start();
|
|
|
|
}
|
|
|
|
|
2016-10-02 13:54:27 +00:00
|
|
|
Manager *manager() {
|
2016-10-02 09:30:28 +00:00
|
|
|
if (auto result = Platform::Notifications::manager()) {
|
|
|
|
return result;
|
|
|
|
}
|
2016-10-02 13:54:27 +00:00
|
|
|
return Default::manager();
|
2016-10-02 09:30:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void finish() {
|
|
|
|
Platform::Notifications::finish();
|
2016-10-02 13:54:27 +00:00
|
|
|
Default::finish();
|
2016-10-02 09:30:28 +00:00
|
|
|
}
|
|
|
|
|
2016-10-08 08:38:53 +00:00
|
|
|
Manager::DisplayOptions Manager::getNotificationOptions(HistoryItem *item) {
|
|
|
|
auto hideEverything = (App::passcoded() || Global::ScreenIsLocked());
|
|
|
|
|
|
|
|
DisplayOptions result;
|
|
|
|
result.hideNameAndPhoto = hideEverything || (Global::NotifyView() > dbinvShowName);
|
|
|
|
result.hideMessageText = hideEverything || (Global::NotifyView() > dbinvShowPreview);
|
|
|
|
result.hideReplyButton = result.hideMessageText || !item || !item->history()->peer->canWrite();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-10-02 16:32:46 +00:00
|
|
|
void Manager::notificationActivated(PeerId peerId, MsgId msgId) {
|
|
|
|
onBeforeNotificationActivated(peerId, msgId);
|
|
|
|
if (auto window = App::wnd()) {
|
|
|
|
auto history = App::history(peerId);
|
|
|
|
window->showFromTray();
|
2016-12-20 13:03:51 +00:00
|
|
|
#if defined Q_OS_LINUX32 || defined Q_OS_LINUX64
|
2017-01-01 17:49:44 +00:00
|
|
|
window->reActivateWindow();
|
2016-12-20 13:03:51 +00:00
|
|
|
#endif
|
2016-10-02 16:32:46 +00:00
|
|
|
if (App::passcoded()) {
|
|
|
|
window->setInnerFocus();
|
|
|
|
window->notifyClear();
|
|
|
|
} else {
|
|
|
|
auto tomsg = !history->peer->isUser() && (msgId > 0);
|
|
|
|
if (tomsg) {
|
|
|
|
auto item = App::histItemById(peerToChannel(peerId), msgId);
|
|
|
|
if (!item || !item->mentionsMe()) {
|
|
|
|
tomsg = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ui::showPeerHistory(history, tomsg ? msgId : ShowAtUnreadMsgId);
|
|
|
|
window->notifyClear(history);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onAfterNotificationActivated(peerId, msgId);
|
|
|
|
}
|
|
|
|
|
2016-10-02 17:06:34 +00:00
|
|
|
void Manager::notificationReplied(PeerId peerId, MsgId msgId, const QString &reply) {
|
|
|
|
if (!peerId) return;
|
|
|
|
|
|
|
|
auto history = App::history(peerId);
|
|
|
|
|
|
|
|
MainWidget::MessageToSend message;
|
|
|
|
message.history = history;
|
|
|
|
message.textWithTags = { reply, TextWithTags::Tags() };
|
|
|
|
message.replyTo = (msgId > 0 && !history->peer->isUser()) ? msgId : 0;
|
|
|
|
message.silent = false;
|
|
|
|
message.clearDraft = false;
|
|
|
|
if (auto main = App::main()) {
|
|
|
|
main->sendMessage(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 13:54:27 +00:00
|
|
|
void NativeManager::doShowNotification(HistoryItem *item, int forwardedCount) {
|
2016-10-08 08:38:53 +00:00
|
|
|
auto options = getNotificationOptions(item);
|
2016-10-02 09:30:28 +00:00
|
|
|
|
2016-10-08 08:38:53 +00:00
|
|
|
QString title = options.hideNameAndPhoto ? qsl("Telegram Desktop") : item->history()->peer->name;
|
|
|
|
QString subtitle = options.hideNameAndPhoto ? QString() : item->notificationHeader();
|
|
|
|
QString text = options.hideMessageText ? lang(lng_notification_preview) : (forwardedCount < 2 ? item->notificationText() : lng_forward_messages(lt_count, forwardedCount));
|
2016-10-02 09:30:28 +00:00
|
|
|
|
2016-10-08 08:38:53 +00:00
|
|
|
doShowNativeNotification(item->history()->peer, item->id, title, subtitle, text, options.hideNameAndPhoto, options.hideReplyButton);
|
2016-10-02 09:30:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Notifications
|
|
|
|
} // namespace Window
|