OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "extensions/common/extension_urls.h" | 5 #include "extensions/common/extension_urls.h" |
6 | 6 |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "extensions/common/constants.h" | 9 #include "extensions/common/constants.h" |
| 10 #include "extensions/common/extensions_client.h" |
| 11 #include "net/base/escape.h" |
| 12 #include "net/base/url_util.h" |
10 #include "url/gurl.h" | 13 #include "url/gurl.h" |
11 | 14 |
12 namespace extensions { | 15 namespace extensions { |
13 | 16 |
14 const char kEventBindings[] = "event_bindings"; | 17 const char kEventBindings[] = "event_bindings"; |
15 | 18 |
16 const char kSchemaUtils[] = "schemaUtils"; | 19 const char kSchemaUtils[] = "schemaUtils"; |
17 | 20 |
18 bool IsSourceFromAnExtension(const base::string16& source) { | 21 bool IsSourceFromAnExtension(const base::string16& source) { |
19 return GURL(source).SchemeIs(kExtensionScheme) || | 22 return GURL(source).SchemeIs(kExtensionScheme) || |
20 StartsWith(source, | 23 StartsWith(source, |
21 base::ASCIIToUTF16("extensions::"), | 24 base::ASCIIToUTF16("extensions::"), |
22 true /* case-sensitive */); | 25 true /* case-sensitive */); |
23 } | 26 } |
24 | 27 |
25 } // namespace extensions | 28 } // namespace extensions |
| 29 |
| 30 namespace extension_urls { |
| 31 |
| 32 std::string GetWebstoreLaunchURL() { |
| 33 return extensions::ExtensionsClient::Get()->GetWebstoreBaseURL(); |
| 34 } |
| 35 |
| 36 std::string GetExtensionGalleryURL() { |
| 37 return GetWebstoreLaunchURL() + "/category/extensions"; |
| 38 } |
| 39 |
| 40 std::string GetWebstoreItemDetailURLPrefix() { |
| 41 return GetWebstoreLaunchURL() + "/detail/"; |
| 42 } |
| 43 |
| 44 GURL GetWebstoreItemJsonDataURL(const std::string& extension_id) { |
| 45 return GURL(GetWebstoreLaunchURL() + "/inlineinstall/detail/" + extension_id); |
| 46 } |
| 47 |
| 48 GURL GetWebstoreJsonSearchUrl(const std::string& query, const std::string& hl) { |
| 49 GURL url(GetWebstoreLaunchURL() + "/jsonsearch"); |
| 50 url = net::AppendQueryParameter(url, "q", query); |
| 51 url = net::AppendQueryParameter(url, "hl", hl); |
| 52 return url; |
| 53 } |
| 54 |
| 55 GURL GetWebstoreSearchPageUrl(const std::string& query) { |
| 56 return GURL(GetWebstoreLaunchURL() + "/search/" + |
| 57 net::EscapeQueryParamValue(query, false)); |
| 58 } |
| 59 |
| 60 GURL GetWebstoreUpdateUrl() { |
| 61 return GURL(extensions::ExtensionsClient::Get()->GetWebstoreUpdateURL()); |
| 62 } |
| 63 |
| 64 bool IsWebstoreUpdateUrl(const GURL& update_url) { |
| 65 GURL store_url = GetWebstoreUpdateUrl(); |
| 66 if (update_url == store_url) { |
| 67 return true; |
| 68 } else { |
| 69 return (update_url.host() == store_url.host() && |
| 70 update_url.path() == store_url.path()); |
| 71 } |
| 72 } |
| 73 |
| 74 bool IsBlacklistUpdateUrl(const GURL& url) { |
| 75 return extensions::ExtensionsClient::Get()->IsBlacklistUpdateURL(url); |
| 76 } |
| 77 |
| 78 } // namespace extension_urls |
OLD | NEW |