2015-11-04 10:13:52 -08:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
2017-03-23 12:48:22 -07:00
|
|
|
// Copyright (c) 2015 Felix Rieseberg <feriese@microsoft.com> and
|
|
|
|
// Jason Poon <jason.poon@microsoft.com>. All rights reserved.
|
2015-11-04 10:13:52 -08:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/notifications/win/notification_presenter_win.h"
|
2015-11-10 20:07:12 +08:00
|
|
|
|
2018-09-12 19:25:56 -05:00
|
|
|
#include <memory>
|
2017-05-18 15:06:57 -07:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-12-13 16:31:02 -08:00
|
|
|
#include "base/environment.h"
|
2015-12-24 20:03:54 +08:00
|
|
|
#include "base/files/file_util.h"
|
2019-04-20 13:20:37 -04:00
|
|
|
#include "base/hash/md5.h"
|
2020-07-13 18:13:34 -07:00
|
|
|
#include "base/logging.h"
|
2024-01-17 09:17:43 -06:00
|
|
|
#include "base/strings/string_number_conversions.h"
|
2015-12-24 20:03:54 +08:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2018-01-03 17:32:18 +09:00
|
|
|
#include "base/time/time.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/notifications/win/windows_toast_notification.h"
|
2022-11-17 14:59:23 -05:00
|
|
|
#include "shell/common/thread_restrictions.h"
|
2015-11-07 19:41:29 -08:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2015-12-24 20:03:54 +08:00
|
|
|
#include "ui/gfx/codec/png_codec.h"
|
2015-11-07 19:41:29 -08:00
|
|
|
|
2015-11-04 10:13:52 -08:00
|
|
|
#pragma comment(lib, "runtimeobject.lib")
|
|
|
|
|
2018-10-17 20:01:11 +02:00
|
|
|
namespace electron {
|
2015-11-04 10:13:52 -08:00
|
|
|
|
2015-11-10 20:23:08 +08:00
|
|
|
namespace {
|
|
|
|
|
2017-12-13 16:25:49 -08:00
|
|
|
bool IsDebuggingNotifications() {
|
|
|
|
return base::Environment::Create()->HasVar("ELECTRON_DEBUG_NOTIFICATIONS");
|
|
|
|
}
|
|
|
|
|
2015-12-24 20:03:54 +08:00
|
|
|
bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {
|
|
|
|
std::vector<unsigned char> png_data;
|
|
|
|
if (!gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false, &png_data))
|
|
|
|
return false;
|
|
|
|
|
2024-08-20 16:54:27 +02:00
|
|
|
return base::WriteFile(path, png_data);
|
2015-12-24 20:03:54 +08:00
|
|
|
}
|
|
|
|
|
2015-11-10 20:23:08 +08:00
|
|
|
} // namespace
|
|
|
|
|
2015-11-04 10:13:52 -08:00
|
|
|
// static
|
2024-09-19 22:11:48 -05:00
|
|
|
std::unique_ptr<NotificationPresenter> NotificationPresenter::Create() {
|
2015-12-24 20:03:54 +08:00
|
|
|
if (!WindowsToastNotification::Initialize())
|
2024-09-19 22:11:48 -05:00
|
|
|
return {};
|
2021-06-07 19:00:05 -07:00
|
|
|
auto presenter = std::make_unique<NotificationPresenterWin>();
|
2015-12-24 20:03:54 +08:00
|
|
|
if (!presenter->Init())
|
2024-09-19 22:11:48 -05:00
|
|
|
return {};
|
2017-12-13 16:31:02 -08:00
|
|
|
|
|
|
|
if (IsDebuggingNotifications())
|
2017-12-13 16:25:49 -08:00
|
|
|
LOG(INFO) << "Successfully created Windows notifications presenter";
|
|
|
|
|
2024-09-19 22:11:48 -05:00
|
|
|
return presenter;
|
2015-11-04 10:13:52 -08:00
|
|
|
}
|
|
|
|
|
2021-06-03 21:16:13 -07:00
|
|
|
NotificationPresenterWin::NotificationPresenterWin() = default;
|
2015-11-04 10:13:52 -08:00
|
|
|
|
2021-06-03 21:16:13 -07:00
|
|
|
NotificationPresenterWin::~NotificationPresenterWin() = default;
|
2015-11-04 10:13:52 -08:00
|
|
|
|
2015-12-24 20:03:54 +08:00
|
|
|
bool NotificationPresenterWin::Init() {
|
2022-11-17 14:59:23 -05:00
|
|
|
ScopedAllowBlockingForElectron allow_blocking;
|
2015-12-24 20:03:54 +08:00
|
|
|
return temp_dir_.CreateUniqueTempDir();
|
|
|
|
}
|
|
|
|
|
2021-03-18 15:55:51 -04:00
|
|
|
std::wstring NotificationPresenterWin::SaveIconToFilesystem(
|
2018-04-17 21:56:12 -04:00
|
|
|
const SkBitmap& icon,
|
|
|
|
const GURL& origin) {
|
2017-09-25 13:51:16 -07:00
|
|
|
std::string filename;
|
|
|
|
|
|
|
|
if (origin.is_valid()) {
|
|
|
|
filename = base::MD5String(origin.spec()) + ".png";
|
|
|
|
} else {
|
2024-01-17 09:17:43 -06:00
|
|
|
const int64_t now_usec = base::Time::Now().since_origin().InMicroseconds();
|
|
|
|
filename = base::NumberToString(now_usec) + ".png";
|
2017-09-25 13:51:16 -07:00
|
|
|
}
|
|
|
|
|
2022-11-17 14:59:23 -05:00
|
|
|
ScopedAllowBlockingForElectron allow_blocking;
|
2021-03-18 15:55:51 -04:00
|
|
|
base::FilePath path = temp_dir_.GetPath().Append(base::UTF8ToWide(filename));
|
2015-12-24 20:03:54 +08:00
|
|
|
if (base::PathExists(path))
|
|
|
|
return path.value();
|
|
|
|
if (SaveIconToPath(icon, path))
|
|
|
|
return path.value();
|
2021-03-18 15:55:51 -04:00
|
|
|
return base::UTF8ToWide(origin.spec());
|
2015-12-24 20:03:54 +08:00
|
|
|
}
|
|
|
|
|
2017-04-03 10:38:21 +02:00
|
|
|
Notification* NotificationPresenterWin::CreateNotificationObject(
|
|
|
|
NotificationDelegate* delegate) {
|
2017-01-10 16:34:41 +01:00
|
|
|
return new WindowsToastNotification(delegate, this);
|
|
|
|
}
|
|
|
|
|
2018-10-17 20:01:11 +02:00
|
|
|
} // namespace electron
|