1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/convert_web_app.h"
#include <stddef.h>
#include <stdint.h>
#include <limits>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/base64.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/json/json_file_value_serializer.h"
#include "base/logging.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/browser/web_applications/components/web_app_helpers.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h"
#include "chrome/common/extensions/manifest_handlers/app_theme_color_info.h"
#include "chrome/common/web_application_info.h"
#include "crypto/sha2.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/file_util.h"
#include "extensions/common/image_util.h"
#include "extensions/common/manifest_constants.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/geometry/safe_integer_conversions.h"
#include "url/gurl.h"
namespace extensions {
namespace keys = manifest_keys;
namespace {
const char kIconsDirName[] = "icons";
const char kScopeUrlHandlerId[] = "scope";
} // namespace
std::unique_ptr<base::DictionaryValue> CreateURLHandlersForBookmarkApp(
const GURL& scope_url,
const base::string16& title) {
auto matches = std::make_unique<base::ListValue>();
matches->AppendString(scope_url.GetOrigin().Resolve(scope_url.path()).spec() +
"*");
auto scope_handler = std::make_unique<base::DictionaryValue>();
scope_handler->SetList(keys::kMatches, std::move(matches));
// The URL handler title is not used anywhere but we set it to the
// web app's title just in case.
scope_handler->SetString(keys::kUrlHandlerTitle, base::UTF16ToUTF8(title));
auto url_handlers = std::make_unique<base::DictionaryValue>();
// Use "scope" as the url handler's identifier.
url_handlers->SetDictionary(kScopeUrlHandlerId, std::move(scope_handler));
return url_handlers;
}
GURL GetScopeURLFromBookmarkApp(const Extension* extension) {
DCHECK(extension->from_bookmark());
const std::vector<UrlHandlerInfo>* url_handlers =
UrlHandlers::GetUrlHandlers(extension);
if (!url_handlers)
return GURL();
// A Bookmark app created by us should only have a url_handler with id
// kScopeUrlHandlerId. This URL handler should have a single pattern which
// corresponds to the web manifest's scope. The URL handler's pattern should
// be the Web Manifest's scope's origin + path with a wildcard, '*', appended
// to it.
auto handler_it = std::find_if(
url_handlers->begin(), url_handlers->end(),
[](const UrlHandlerInfo& info) { return info.id == kScopeUrlHandlerId; });
if (handler_it == url_handlers->end()) {
return GURL();
}
const auto& patterns = handler_it->patterns;
DCHECK(patterns.size() == 1);
const auto& pattern_iter = patterns.begin();
// Remove the '*' character at the end (which was added when creating the URL
// handler, see CreateURLHandlersForBookmarkApp()).
const std::string& pattern_str = pattern_iter->GetAsString();
DCHECK_EQ(pattern_str.back(), '*');
return GURL(pattern_str.substr(0, pattern_str.size() - 1));
}
// Generates a version for the converted app using the current date. This isn't
// really needed, but it seems like useful information.
std::string ConvertTimeToExtensionVersion(const base::Time& create_time) {
base::Time::Exploded create_time_exploded;
create_time.UTCExplode(&create_time_exploded);
double micros = static_cast<double>(
(create_time_exploded.millisecond *
base::Time::kMicrosecondsPerMillisecond) +
(create_time_exploded.second * base::Time::kMicrosecondsPerSecond) +
(create_time_exploded.minute * base::Time::kMicrosecondsPerMinute) +
(create_time_exploded.hour * base::Time::kMicrosecondsPerHour));
double day_fraction = micros / base::Time::kMicrosecondsPerDay;
int stamp =
gfx::ToRoundedInt(day_fraction * std::numeric_limits<uint16_t>::max());
return base::StringPrintf("%i.%i.%i.%i", create_time_exploded.year,
create_time_exploded.month,
create_time_exploded.day_of_month, stamp);
}
scoped_refptr<Extension> ConvertWebAppToExtension(
const WebApplicationInfo& web_app,
const base::Time& create_time,
const base::FilePath& extensions_dir,
int extra_creation_flags,
Manifest::Location install_source) {
base::FilePath install_temp_dir =
file_util::GetInstallTempDir(extensions_dir);
if (install_temp_dir.empty()) {
LOG(ERROR) << "Could not get path to profile temporary directory.";
return NULL;
}
base::ScopedTempDir temp_dir;
if (!temp_dir.CreateUniqueTempDirUnderPath(install_temp_dir)) {
LOG(ERROR) << "Could not create temporary directory.";
return NULL;
}
// Create the manifest
std::unique_ptr<base::DictionaryValue> root(new base::DictionaryValue);
root->SetString(keys::kPublicKey,
web_app::GenerateAppKeyFromURL(web_app.app_url));
root->SetString(keys::kName, base::UTF16ToUTF8(web_app.title));
root->SetString(keys::kVersion, ConvertTimeToExtensionVersion(create_time));
root->SetString(keys::kDescription, base::UTF16ToUTF8(web_app.description));
root->SetString(keys::kLaunchWebURL, web_app.app_url.spec());
if (web_app.generated_icon_color != SK_ColorTRANSPARENT) {
root->SetString(keys::kAppIconColor, image_util::GenerateHexColorString(
web_app.generated_icon_color));
}
if (web_app.theme_color) {
root->SetString(keys::kAppThemeColor, color_utils::SkColorToRgbaString(
web_app.theme_color.value()));
}
if (!web_app.scope.is_empty()) {
root->SetDictionary(keys::kUrlHandlers, CreateURLHandlersForBookmarkApp(
web_app.scope, web_app.title));
}
// Add the icons and linked icon information.
auto icons = std::make_unique<base::DictionaryValue>();
auto linked_icons = std::make_unique<base::ListValue>();
for (const auto& icon : web_app.icons) {
std::string size = base::StringPrintf("%i", icon.width);
std::string icon_path = base::StringPrintf("%s/%s.png", kIconsDirName,
size.c_str());
icons->SetString(size, icon_path);
if (icon.url.is_valid()) {
std::unique_ptr<base::DictionaryValue> linked_icon(
new base::DictionaryValue());
linked_icon->SetString(keys::kLinkedAppIconURL, icon.url.spec());
linked_icon->SetInteger(keys::kLinkedAppIconSize, icon.width);
linked_icons->Append(std::move(linked_icon));
}
}
root->Set(keys::kIcons, std::move(icons));
root->Set(keys::kLinkedAppIcons, std::move(linked_icons));
// Write the manifest.
base::FilePath manifest_path = temp_dir.GetPath().Append(kManifestFilename);
JSONFileValueSerializer serializer(manifest_path);
if (!serializer.Serialize(*root)) {
LOG(ERROR) << "Could not serialize manifest.";
return NULL;
}
// Write the icon files.
base::FilePath icons_dir = temp_dir.GetPath().AppendASCII(kIconsDirName);
if (!base::CreateDirectory(icons_dir)) {
LOG(ERROR) << "Could not create icons directory.";
return NULL;
}
for (size_t i = 0; i < web_app.icons.size(); ++i) {
// Skip unfetched bitmaps.
if (web_app.icons[i].data.colorType() == kUnknown_SkColorType)
continue;
base::FilePath icon_file = icons_dir.AppendASCII(
base::StringPrintf("%i.png", web_app.icons[i].width));
std::vector<unsigned char> image_data;
if (!gfx::PNGCodec::EncodeBGRASkBitmap(web_app.icons[i].data,
false,
&image_data)) {
LOG(ERROR) << "Could not create icon file.";
return NULL;
}
const char* image_data_ptr = reinterpret_cast<const char*>(&image_data[0]);
int size = base::checked_cast<int>(image_data.size());
if (base::WriteFile(icon_file, image_data_ptr, size) != size) {
LOG(ERROR) << "Could not write icon file.";
return NULL;
}
}
// Finally, create the extension object to represent the unpacked directory.
std::string error;
scoped_refptr<Extension> extension = Extension::Create(
temp_dir.GetPath(), install_source, *root,
Extension::FROM_BOOKMARK | extra_creation_flags, &error);
if (!extension.get()) {
LOG(ERROR) << error;
return NULL;
}
temp_dir.Take(); // The caller takes ownership of the directory.
return extension;
}
} // namespace extensions
|