Index: src/Notification.cpp |
diff --git a/src/Notification.cpp b/src/Notification.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0791f3db86d0464c162812bce203f6fb9a03f0ca |
--- /dev/null |
+++ b/src/Notification.cpp |
@@ -0,0 +1,113 @@ |
+/* |
+ * This file is part of Adblock Plus <https://adblockplus.org/>, |
+ * Copyright (C) 2006-2015 Eyeo GmbH |
+ * |
+ * Adblock Plus is free software: you can redistribute it and/or modify |
+ * it under the terms of the GNU General Public License version 3 as |
+ * published by the Free Software Foundation. |
+ * |
+ * Adblock Plus 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. |
+ * |
+ * You should have received a copy of the GNU General Public License |
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
+ */ |
+ |
+#include <AdblockPlus/JsValue.h> |
+#include <AdblockPlus/JsEngine.h> |
+#include <AdblockPlus/Notification.h> |
+#include <algorithm> |
+ |
+using namespace AdblockPlus; |
+ |
+namespace |
+{ |
+ typedef std::pair<NotificationType, std::string> NotificationTypeString; |
+ typedef std::vector<NotificationTypeString> NotificationTypes; |
+ NotificationTypes InitNotificationTypes() |
+ { |
+ NotificationTypes retValue; |
+ retValue.push_back(std::make_pair(NotificationType::NOTIFICATION_TYPE_QUESTION, "question")); |
+ retValue.push_back(std::make_pair(NotificationType::NOTIFICATION_TYPE_CRITICAL, "critical")); |
+ retValue.push_back(std::make_pair(NotificationType::NOTIFICATION_TYPE_INFORMATION, "information")); |
+ return retValue; |
+ } |
+ |
+ const NotificationTypes notificationTypes = InitNotificationTypes(); |
+ |
+ NotificationType StringToNotificationType(const std::string& value) |
+ { |
+ struct IsSecondEqualToPredicate |
+ { |
+ std::string value; |
+ bool operator()(const NotificationTypeString& pair) const |
+ { |
+ return value == pair.second; |
+ } |
+ } findBySecond = {value}; |
+ NotificationTypes::const_iterator notificationTypeIterator = std::find_if( |
+ notificationTypes.begin(), notificationTypes.end(), findBySecond); |
+ if (notificationTypeIterator == notificationTypes.end()) |
+ { |
+ return NotificationType::NOTIFICATION_TYPE_INFORMATION; |
+ } |
+ return notificationTypeIterator->first; |
+ } |
+} |
+ |
+Notification::Notification(const JsValuePtr& jsValue) |
+ : JsValue(jsValue) |
+{ |
+} |
+ |
+NotificationType Notification::GetType() const |
+{ |
+ return type; |
+} |
+ |
+const std::string& Notification::GetTitle() const |
+{ |
+ return title; |
+} |
+ |
+const std::string& Notification::GetMessageString() const |
+{ |
+ return message; |
+} |
+ |
+void Notification::MarkAsShown() |
+{ |
+ JsValueList params; |
+ params.push_back(GetProperty("id")); |
+ jsEngine->Evaluate("API.markNotificationAsShown")->Call(params); |
+} |
+ |
+NotificationPtr Notification::JsValueToNotification(const JsValuePtr& jsValue) |
+{ |
+ if (!jsValue || !jsValue->IsObject()) |
+ { |
+ return NotificationPtr(); |
+ } |
+ |
+ NotificationPtr notification(new Notification(jsValue)); |
+ JsValuePtr jsType = notification->GetProperty("type"); |
+ notification->type = StringToNotificationType(jsType ? jsType->AsString() : ""); |
+ |
+ JsValueList params; |
+ params.push_back(notification); |
+ JsValuePtr func = notification->jsEngine->Evaluate("API.getNotificationTexts"); |
+ JsValuePtr jsTexts = func->Call(params); |
+ JsValuePtr jsTitle = jsTexts->GetProperty("title"); |
+ if (jsTitle->IsString()) |
+ { |
+ notification->title = jsTitle->AsString(); |
+ } |
+ JsValuePtr jsMessage = jsTexts->GetProperty("message"); |
+ if (jsMessage->IsString()) |
+ { |
+ notification->message = jsMessage->AsString(); |
+ } |
+ return notification; |
+} |