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
|
// 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/common/extensions/manifest.h"
#include "base/basictypes.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/string_split.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/extensions/extension_error_utils.h"
#include "chrome/common/extensions/manifest_feature_provider.h"
namespace errors = extension_manifest_errors;
namespace keys = extension_manifest_keys;
namespace extensions {
Manifest::Manifest(Extension::Location location,
scoped_ptr<DictionaryValue> value)
: location_(location), value_(value.Pass()) {
}
Manifest::~Manifest() {
}
bool Manifest::ValidateManifest(string16* error) const {
for (DictionaryValue::key_iterator key = value_->begin_keys();
key != value_->end_keys(); ++key) {
scoped_ptr<Feature> feature =
ManifestFeatureProvider::GetDefaultInstance()->GetFeature(*key);
if (!feature.get()) {
// When validating the extension manifests, we ignore keys that are not
// recognized for forward compatibility.
// TODO(aa): Consider having an error here in the case of strict error
// checking to let developers know when they screw up.
continue;
}
Feature::Availability result = feature->IsAvailable(
extension_id_, GetType(), Feature::ConvertLocation(location_),
GetManifestVersion());
if (result != Feature::IS_AVAILABLE) {
*error = ExtensionErrorUtils::FormatErrorMessageUTF16(
errors::kFeatureNotAllowed,
*key,
feature->GetErrorMessage(result));
return false;
}
}
return true;
}
bool Manifest::HasKey(const std::string& key) const {
return CanAccessKey(key) && value_->HasKey(key);
}
bool Manifest::Get(
const std::string& path, Value** out_value) const {
return CanAccessPath(path) && value_->Get(path, out_value);
}
bool Manifest::GetBoolean(
const std::string& path, bool* out_value) const {
return CanAccessPath(path) && value_->GetBoolean(path, out_value);
}
bool Manifest::GetInteger(
const std::string& path, int* out_value) const {
return CanAccessPath(path) && value_->GetInteger(path, out_value);
}
bool Manifest::GetString(
const std::string& path, std::string* out_value) const {
return CanAccessPath(path) && value_->GetString(path, out_value);
}
bool Manifest::GetString(
const std::string& path, string16* out_value) const {
return CanAccessPath(path) && value_->GetString(path, out_value);
}
bool Manifest::GetDictionary(
const std::string& path, DictionaryValue** out_value) const {
return CanAccessPath(path) && value_->GetDictionary(path, out_value);
}
bool Manifest::GetList(
const std::string& path, ListValue** out_value) const {
return CanAccessPath(path) && value_->GetList(path, out_value);
}
Manifest* Manifest::DeepCopy() const {
Manifest* manifest = new Manifest(
location_, scoped_ptr<DictionaryValue>(value_->DeepCopy()));
manifest->set_extension_id(extension_id_);
return manifest;
}
bool Manifest::Equals(const Manifest* other) const {
return other && value_->Equals(other->value());
}
int Manifest::GetManifestVersion() const {
int manifest_version = 1; // default to version 1 if no version is specified
value_->GetInteger(keys::kManifestVersion, &manifest_version);
return manifest_version;
}
Extension::Type Manifest::GetType() const {
if (value_->HasKey(keys::kTheme))
return Extension::TYPE_THEME;
bool is_platform_app = false;
if (value_->GetBoolean(keys::kPlatformApp, &is_platform_app) &&
is_platform_app)
return Extension::TYPE_PLATFORM_APP;
if (value_->HasKey(keys::kApp)) {
if (value_->Get(keys::kWebURLs, NULL) ||
value_->Get(keys::kLaunchWebURL, NULL))
return Extension::TYPE_HOSTED_APP;
else
return Extension::TYPE_PACKAGED_APP;
} else {
return Extension::TYPE_EXTENSION;
}
}
bool Manifest::IsTheme() const {
return GetType() == Extension::TYPE_THEME;
}
bool Manifest::IsPlatformApp() const {
return GetType() == Extension::TYPE_PLATFORM_APP;
}
bool Manifest::IsPackagedApp() const {
return GetType() == Extension::TYPE_PACKAGED_APP;
}
bool Manifest::IsHostedApp() const {
return GetType() == Extension::TYPE_HOSTED_APP;
}
bool Manifest::CanAccessPath(const std::string& path) const {
std::vector<std::string> components;
base::SplitString(path, '.', &components);
return CanAccessKey(components[0]);
}
bool Manifest::CanAccessKey(const std::string& key) const {
scoped_ptr<Feature> feature =
ManifestFeatureProvider::GetDefaultInstance()->GetFeature(key);
if (!feature.get())
return false;
return Feature::IS_AVAILABLE == feature->IsAvailable(
extension_id_, GetType(), Feature::ConvertLocation(location_),
GetManifestVersion());
}
} // namespace extensions
|