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
|
// Copyright (c) 2013 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/common/extensions/manifest_handlers/theme_handler.h"
#include "base/file_util.h"
#include "base/memory/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/common/extensions/extension_manifest_constants.h"
#include "chrome/common/extensions/manifest.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
using base::DictionaryValue;
namespace extensions {
namespace keys = extension_manifest_keys;
namespace errors = extension_manifest_errors;
namespace {
bool LoadImages(const DictionaryValue* theme_value,
string16* error,
ThemeInfo* theme_info) {
const DictionaryValue* images_value = NULL;
if (theme_value->GetDictionary(keys::kThemeImages, &images_value)) {
// Validate that the images are all strings.
for (DictionaryValue::Iterator iter(*images_value); !iter.IsAtEnd();
iter.Advance()) {
if (!iter.value().IsType(Value::TYPE_STRING)) {
*error = ASCIIToUTF16(errors::kInvalidThemeImages);
return false;
}
}
theme_info->theme_images_.reset(images_value->DeepCopy());
}
return true;
}
bool LoadColors(const DictionaryValue* theme_value,
string16* error,
ThemeInfo* theme_info) {
const DictionaryValue* colors_value = NULL;
if (theme_value->GetDictionary(keys::kThemeColors, &colors_value)) {
// Validate that the colors are RGB or RGBA lists.
for (DictionaryValue::Iterator iter(*colors_value); !iter.IsAtEnd();
iter.Advance()) {
const ListValue* color_list = NULL;
double alpha = 0.0;
int color = 0;
// The color must be a list...
if (!iter.value().GetAsList(&color_list) ||
// ... and either 3 items (RGB) or 4 (RGBA).
((color_list->GetSize() != 3) &&
((color_list->GetSize() != 4) ||
// For RGBA, the fourth item must be a real or int alpha value.
// Note that GetDouble() can get an integer value.
!color_list->GetDouble(3, &alpha))) ||
// For both RGB and RGBA, the first three items must be ints (R,G,B).
!color_list->GetInteger(0, &color) ||
!color_list->GetInteger(1, &color) ||
!color_list->GetInteger(2, &color)) {
*error = ASCIIToUTF16(errors::kInvalidThemeColors);
return false;
}
}
theme_info->theme_colors_.reset(colors_value->DeepCopy());
}
return true;
}
bool LoadTints(const DictionaryValue* theme_value,
string16* error,
ThemeInfo* theme_info) {
const DictionaryValue* tints_value = NULL;
if (!theme_value->GetDictionary(keys::kThemeTints, &tints_value))
return true;
// Validate that the tints are all reals.
for (DictionaryValue::Iterator iter(*tints_value); !iter.IsAtEnd();
iter.Advance()) {
const ListValue* tint_list = NULL;
double v = 0.0;
if (!iter.value().GetAsList(&tint_list) ||
tint_list->GetSize() != 3 ||
!tint_list->GetDouble(0, &v) ||
!tint_list->GetDouble(1, &v) ||
!tint_list->GetDouble(2, &v)) {
*error = ASCIIToUTF16(errors::kInvalidThemeTints);
return false;
}
}
theme_info->theme_tints_.reset(tints_value->DeepCopy());
return true;
}
bool LoadDisplayProperties(const DictionaryValue* theme_value,
string16* error,
ThemeInfo* theme_info) {
const DictionaryValue* display_properties_value = NULL;
if (theme_value->GetDictionary(keys::kThemeDisplayProperties,
&display_properties_value)) {
theme_info->theme_display_properties_.reset(
display_properties_value->DeepCopy());
}
return true;
}
const ThemeInfo* GetInfo(const Extension* extension) {
return static_cast<ThemeInfo*>(extension->GetManifestData(keys::kTheme));
}
} // namespace
ThemeInfo::ThemeInfo() {
}
ThemeInfo::~ThemeInfo() {
}
// static
const DictionaryValue* ThemeInfo::GetImages(const Extension* extension) {
const ThemeInfo* theme_info = GetInfo(extension);
return theme_info ? theme_info->theme_images_.get() : NULL;
}
// static
const DictionaryValue* ThemeInfo::GetColors(const Extension* extension) {
const ThemeInfo* theme_info = GetInfo(extension);
return theme_info ? theme_info->theme_colors_.get() : NULL;
}
// static
const DictionaryValue* ThemeInfo::GetTints(const Extension* extension) {
const ThemeInfo* theme_info = GetInfo(extension);
return theme_info ? theme_info->theme_tints_.get() : NULL;
}
// static
const DictionaryValue* ThemeInfo::GetDisplayProperties(
const Extension* extension) {
const ThemeInfo* theme_info = GetInfo(extension);
return theme_info ? theme_info->theme_display_properties_.get() : NULL;
}
ThemeHandler::ThemeHandler() {
}
ThemeHandler::~ThemeHandler() {
}
bool ThemeHandler::Parse(Extension* extension, string16* error) {
const DictionaryValue* theme_value = NULL;
if (!extension->manifest()->GetDictionary(keys::kTheme, &theme_value)) {
*error = ASCIIToUTF16(errors::kInvalidTheme);
return false;
}
scoped_ptr<ThemeInfo> theme_info(new ThemeInfo);
if (!LoadImages(theme_value, error, theme_info.get()))
return false;
if (!LoadColors(theme_value, error, theme_info.get()))
return false;
if (!LoadTints(theme_value, error, theme_info.get()))
return false;
if (!LoadDisplayProperties(theme_value, error, theme_info.get()))
return false;
extension->SetManifestData(keys::kTheme, theme_info.release());
return true;
}
bool ThemeHandler::Validate(const Extension* extension,
std::string* error,
std::vector<InstallWarning>* warnings) const {
// Validate that theme images exist.
if (extension->is_theme()) {
const DictionaryValue* images_value =
extensions::ThemeInfo::GetImages(extension);
if (images_value) {
for (DictionaryValue::Iterator iter(*images_value); !iter.IsAtEnd();
iter.Advance()) {
std::string val;
if (iter.value().GetAsString(&val)) {
base::FilePath image_path = extension->path().Append(
base::FilePath::FromUTF8Unsafe(val));
if (!file_util::PathExists(image_path)) {
*error =
l10n_util::GetStringFUTF8(IDS_EXTENSION_INVALID_IMAGE_PATH,
image_path.LossyDisplayName());
return false;
}
}
}
}
}
return true;
}
const std::vector<std::string> ThemeHandler::Keys() const {
return SingleKey(keys::kTheme);
}
} // namespace extensions
|