OLD | NEW |
| (Empty) |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/extensions/external_policy_extension_provider.h" | |
6 | |
7 #include <string> | |
8 | |
9 #include "base/logging.h" | |
10 #include "base/values.h" | |
11 #include "chrome/browser/browser_thread.h" | |
12 #include "chrome/browser/extensions/stateful_external_extension_provider.h" | |
13 #include "chrome/browser/prefs/pref_service.h" | |
14 | |
15 namespace { | |
16 | |
17 // Check an extension ID and an URL to be syntactically correct. | |
18 bool CheckExtension(std::string id, std::string update_url) { | |
19 GURL url(update_url); | |
20 if (!url.is_valid()) { | |
21 LOG(WARNING) << "Policy specifies invalid update URL for external " | |
22 << "extension: " << update_url; | |
23 return false; | |
24 } | |
25 if (!Extension::IdIsValid(id)) { | |
26 LOG(WARNING) << "Policy specifies invalid ID for external " | |
27 << "extension: " << id; | |
28 return false; | |
29 } | |
30 return true; | |
31 } | |
32 | |
33 } // namespace | |
34 | |
35 ExternalPolicyExtensionProvider::ExternalPolicyExtensionProvider( | |
36 const ListValue* forcelist) | |
37 : StatefulExternalExtensionProvider( | |
38 Extension::INVALID, | |
39 Extension::EXTERNAL_POLICY_DOWNLOAD) { | |
40 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
41 ProcessPreferences(forcelist); | |
42 } | |
43 | |
44 ExternalPolicyExtensionProvider::~ExternalPolicyExtensionProvider() { | |
45 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | |
46 } | |
47 | |
48 void ExternalPolicyExtensionProvider::SetPreferences( | |
49 const ListValue* forcelist) { | |
50 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); | |
51 ProcessPreferences(forcelist); | |
52 } | |
53 | |
54 void ExternalPolicyExtensionProvider::ProcessPreferences( | |
55 const ListValue* forcelist) { | |
56 DictionaryValue* result = new DictionaryValue(); | |
57 if (forcelist != NULL) { | |
58 std::string extension_desc; | |
59 for (ListValue::const_iterator it = forcelist->begin(); | |
60 it != forcelist->end(); ++it) { | |
61 if (!(*it)->GetAsString(&extension_desc)) { | |
62 LOG(WARNING) << "Failed to read forcelist string."; | |
63 } else { | |
64 // Each string item of the list has the following form: | |
65 // extension_id_code;extension_update_url | |
66 // The update URL might also contain semicolons. | |
67 size_t pos = extension_desc.find(';'); | |
68 std::string id = extension_desc.substr(0, pos); | |
69 std::string update_url = extension_desc.substr(pos+1); | |
70 if (CheckExtension(id, update_url)) { | |
71 result->SetString(id + ".external_update_url", update_url); | |
72 } | |
73 } | |
74 } | |
75 } | |
76 set_prefs(result); | |
77 } | |
OLD | NEW |