Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: extensions/browser/api/networking_config/networking_config_api.cc

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adressed comments by kalman, stevenjb and asvitkine Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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 <string>
6
7 #include "base/strings/string_number_conversions.h"
8 #include "base/strings/utf_string_conversions.h"
9 #include "extensions/browser/api/networking_config/networking_config_api.h"
10 #include "extensions/browser/api/networking_config/networking_config_service.h"
11 #include "extensions/browser/api/networking_config/networking_config_service_fac tory.h"
12 #include "ui/base/l10n/l10n_util.h"
13
14 namespace extensions {
15
16 namespace {
17
18 const char kAuthenticationResultFailed[] =
19 "Failed to set AuthenticationResult.";
20 const char kMalformedFilterDescription[] = "Malformed filter description.";
21 const char kMalformedFilterDescriptionWithSSID[] =
22 "Malformed filter description. Failed to register network with SSID "
23 "(hex): *";
24 const char kUnsupportedNetworkType[] = "Unsupported network type.";
25
26 } // namespace
27
28 NetworkingConfigSetNetworkFilterFunction::
29 NetworkingConfigSetNetworkFilterFunction() {
30 }
31
32 ExtensionFunction::ResponseAction
33 NetworkingConfigSetNetworkFilterFunction::Run() {
34 parameters_ =
35 core_api::networking_config::SetNetworkFilter::Params::Create(*args_);
36 EXTENSION_FUNCTION_VALIDATE(parameters_.get());
37
38 NetworkingConfigService* service =
39 NetworkingConfigServiceFactory::GetForBrowserContext(browser_context());
40 DCHECK(service);
41
42 // Remove previously registered networks.
43 service->UnregisterExtension(extension_id());
44
45 for (linked_ptr<core_api::networking_config::NetworkInfo>& ni :
46 parameters_->networks) {
47 // |Type| field must be set to |WiFi|
48 if (ni->type != core_api::networking_config::NETWORK_TYPE_WIFI)
49 return RespondNow(Error(kUnsupportedNetworkType));
50
51 // Either |ssid| or |hex_ssid| must be set.
52 if (!ni->ssid.get() && !ni->hex_ssid.get())
53 return RespondNow(Error(kMalformedFilterDescription));
54
55 std::string hex_ssid;
56 if (ni->ssid.get()) {
57 auto ssid_field = ni->ssid.get();
58 hex_ssid = base::HexEncode(ssid_field->c_str(), ssid_field->size());
59 }
60 if (ni->hex_ssid.get())
61 hex_ssid = *ni->hex_ssid.get();
62
63 if (!service->RegisterHexSsid(hex_ssid, extension_id()))
64 return RespondNow(Error(kMalformedFilterDescriptionWithSSID, hex_ssid));
65 }
66
67 return RespondNow(NoArguments());
68 }
69
70 NetworkingConfigSetNetworkFilterFunction::
71 ~NetworkingConfigSetNetworkFilterFunction() {
72 }
73
74 NetworkingConfigFinishAuthenticationFunction::
75 NetworkingConfigFinishAuthenticationFunction() {
76 }
77
78 ExtensionFunction::ResponseAction
79 NetworkingConfigFinishAuthenticationFunction::Run() {
80 parameters_ =
81 core_api::networking_config::FinishAuthentication::Params::Create(*args_);
82 EXTENSION_FUNCTION_VALIDATE(parameters_.get());
83
84 NetworkingConfigService* service =
85 NetworkingConfigServiceFactory::GetForBrowserContext(browser_context());
86 DCHECK(service);
87
88 const NetworkingConfigService::AuthenticationResult& last_result =
89 service->GetAuthenticationResult();
90 if (last_result.authentication_state != NetworkingConfigService::NOTRY ||
91 last_result.guid != parameters_->guid) {
92 RespondNow(Error(kAuthenticationResultFailed));
93 }
94
95 // Populate NetworkingCaptivePortalAPI::AuthenticationResult.
96 NetworkingConfigService::AuthenticationResult authentication_result = {
97 extension_id(), parameters_->guid, NetworkingConfigService::FAILED,
98 };
99 switch (parameters_->result) {
100 case core_api::networking_config::AUTHENTICATION_RESULT_NONE:
101 NOTREACHED();
102 break;
103 case core_api::networking_config::AUTHENTICATION_RESULT_UNHANDLED:
104 authentication_result.authentication_state =
105 NetworkingConfigService::FAILED;
106 break;
107 case core_api::networking_config::AUTHENTICATION_RESULT_REJECTED:
108 authentication_result.authentication_state =
109 NetworkingConfigService::REJECTED;
110 break;
111 case core_api::networking_config::AUTHENTICATION_RESULT_FAILED:
112 authentication_result.authentication_state =
113 NetworkingConfigService::FAILED;
114 break;
115 case core_api::networking_config::AUTHENTICATION_RESULT_SUCCEEDED:
116 authentication_result.authentication_state =
117 NetworkingConfigService::SUCCESS;
118 break;
119 }
120 service->SetAuthenticationResult(authentication_result);
121 return RespondNow(NoArguments());
122 }
123
124 NetworkingConfigFinishAuthenticationFunction::
125 ~NetworkingConfigFinishAuthenticationFunction() {
126 }
127
128 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698