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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
// 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/service/cloud_print/cloud_print_proxy.h"
#include "base/bind.h"
#include "base/command_line.h"
#include "base/path_service.h"
#include "base/process_util.h"
#include "base/values.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/cloud_print/cloud_print_proxy_info.h"
#include "chrome/common/net/gaia/gaia_oauth_client.h"
#include "chrome/common/pref_names.h"
#include "chrome/service/cloud_print/cloud_print_consts.h"
#include "chrome/service/cloud_print/print_system.h"
#include "chrome/service/service_process.h"
#include "chrome/service/service_process_prefs.h"
#include "googleurl/src/gurl.h"
namespace {
void LaunchBrowserProcessWithSwitch(const std::string& switch_string) {
DCHECK(g_service_process->io_thread()->message_loop_proxy()->
BelongsToCurrentThread());
FilePath exe_path;
PathService::Get(base::FILE_EXE, &exe_path);
if (exe_path.empty()) {
NOTREACHED() << "Unable to get browser process binary name.";
}
CommandLine cmd_line(exe_path);
const CommandLine& process_command_line = *CommandLine::ForCurrentProcess();
FilePath user_data_dir =
process_command_line.GetSwitchValuePath(switches::kUserDataDir);
if (!user_data_dir.empty())
cmd_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir);
cmd_line.AppendSwitch(switch_string);
#if defined(OS_POSIX) && !defined(OS_MACOSX)
base::ProcessHandle pid = 0;
base::LaunchProcess(cmd_line, base::LaunchOptions(), &pid);
base::EnsureProcessGetsReaped(pid);
#else
base::LaunchProcess(cmd_line, base::LaunchOptions(), NULL);
#endif
}
// This method is invoked on the IO thread to launch the browser process to
// display a desktop notification that the Cloud Print token is invalid and
// needs re-authentication.
void ShowTokenExpiredNotificationInBrowser() {
LaunchBrowserProcessWithSwitch(switches::kNotifyCloudPrintTokenExpired);
}
void CheckCloudPrintProxyPolicyInBrowser() {
LaunchBrowserProcessWithSwitch(switches::kCheckCloudPrintConnectorPolicy);
}
} // namespace
CloudPrintProxy::CloudPrintProxy()
: service_prefs_(NULL),
client_(NULL),
enabled_(false) {
}
CloudPrintProxy::~CloudPrintProxy() {
DCHECK(CalledOnValidThread());
ShutdownBackend();
}
void CloudPrintProxy::Initialize(ServiceProcessPrefs* service_prefs,
Client* client) {
DCHECK(CalledOnValidThread());
service_prefs_ = service_prefs;
client_ = client;
}
void CloudPrintProxy::EnableForUser(const std::string& lsid) {
DCHECK(CalledOnValidThread());
if (!CreateBackend())
return;
DCHECK(backend_.get());
// Read persisted robot credentials because we may decide to reuse it if the
// passed in LSID belongs the same user.
std::string robot_refresh_token;
service_prefs_->GetString(prefs::kCloudPrintRobotRefreshToken,
&robot_refresh_token);
std::string robot_email;
service_prefs_->GetString(prefs::kCloudPrintRobotEmail,
&robot_email);
service_prefs_->GetString(prefs::kCloudPrintEmail, &user_email_);
// If we have been passed in an LSID, we want to use this to authenticate.
// Else we will try and retrieve the last used auth tokens from prefs.
if (!lsid.empty()) {
backend_->InitializeWithLsid(lsid,
proxy_id_,
robot_refresh_token,
robot_email,
user_email_);
} else {
// See if we have persisted robot credentials.
if (!robot_refresh_token.empty()) {
DCHECK(!robot_email.empty());
backend_->InitializeWithRobotToken(robot_refresh_token,
robot_email,
proxy_id_);
} else {
// Finally see if we have persisted user credentials (legacy case).
std::string cloud_print_token;
service_prefs_->GetString(prefs::kCloudPrintAuthToken,
&cloud_print_token);
DCHECK(!cloud_print_token.empty());
backend_->InitializeWithToken(cloud_print_token, proxy_id_);
}
}
if (client_) {
client_->OnCloudPrintProxyEnabled(true);
}
}
void CloudPrintProxy::EnableForUserWithRobot(
const std::string& robot_auth_code,
const std::string& robot_email,
const std::string& user_email) {
DCHECK(CalledOnValidThread());
if (!CreateBackend())
return;
DCHECK(backend_.get());
user_email_ = user_email;
backend_->InitializeWithRobotAuthCode(robot_auth_code,
robot_email,
proxy_id_);
if (client_) {
client_->OnCloudPrintProxyEnabled(true);
}
}
bool CloudPrintProxy::CreateBackend() {
DCHECK(CalledOnValidThread());
if (backend_.get())
return false;
service_prefs_->GetString(prefs::kCloudPrintProxyId, &proxy_id_);
if (proxy_id_.empty()) {
proxy_id_ = cloud_print::PrintSystem::GenerateProxyId();
service_prefs_->SetString(prefs::kCloudPrintProxyId, proxy_id_);
service_prefs_->WritePrefs();
}
// Getting print system specific settings from the preferences.
const DictionaryValue* print_system_settings = NULL;
service_prefs_->GetDictionary(prefs::kCloudPrintPrintSystemSettings,
&print_system_settings);
// Check if there is an override for the cloud print server URL.
std::string cloud_print_server_url_str;
service_prefs_->GetString(prefs::kCloudPrintServiceURL,
&cloud_print_server_url_str);
if (cloud_print_server_url_str.empty()) {
cloud_print_server_url_str = kDefaultCloudPrintServerUrl;
}
// By default we don't poll for jobs when we lose XMPP connection. But this
// behavior can be overridden by a preference.
bool enable_job_poll = false;
service_prefs_->GetBoolean(prefs::kCloudPrintEnableJobPoll,
&enable_job_poll);
// TODO(sanjeevr): Allow overriding OAuthClientInfo in prefs.
gaia::OAuthClientInfo oauth_client_info;
oauth_client_info.client_id = kDefaultCloudPrintOAuthClientId;
oauth_client_info.client_secret = kDefaultCloudPrintOAuthClientSecret;
cloud_print_server_url_ = GURL(cloud_print_server_url_str.c_str());
DCHECK(cloud_print_server_url_.is_valid());
backend_.reset(new CloudPrintProxyBackend(this, proxy_id_,
cloud_print_server_url_,
print_system_settings,
oauth_client_info,
enable_job_poll));
return true;
}
void CloudPrintProxy::UnregisterPrintersAndDisableForUser() {
DCHECK(CalledOnValidThread());
if (backend_.get()) {
// Try getting auth and printers info from the backend.
// We'll get notified in this case.
backend_->UnregisterPrinters();
} else {
// If no backend avaialble, disable connector immidiately.
DisableForUser();
}
}
void CloudPrintProxy::DisableForUser() {
DCHECK(CalledOnValidThread());
user_email_.clear();
enabled_ = false;
if (client_) {
client_->OnCloudPrintProxyDisabled(true);
}
ShutdownBackend();
}
void CloudPrintProxy::GetProxyInfo(cloud_print::CloudPrintProxyInfo* info) {
info->enabled = enabled_;
info->email.clear();
if (enabled_)
info->email = user_email();
info->proxy_id = proxy_id_;
// If the Cloud Print service is not enabled, we may need to read the old
// value of proxy_id from prefs.
if (info->proxy_id.empty())
service_prefs_->GetString(prefs::kCloudPrintProxyId, &info->proxy_id);
}
void CloudPrintProxy::CheckCloudPrintProxyPolicy() {
g_service_process->io_thread()->message_loop_proxy()->PostTask(
FROM_HERE, base::Bind(&CheckCloudPrintProxyPolicyInBrowser));
}
void CloudPrintProxy::OnAuthenticated(
const std::string& robot_oauth_refresh_token,
const std::string& robot_email,
const std::string& user_email) {
DCHECK(CalledOnValidThread());
service_prefs_->SetString(prefs::kCloudPrintRobotRefreshToken,
robot_oauth_refresh_token);
service_prefs_->SetString(prefs::kCloudPrintRobotEmail,
robot_email);
// If authenticating from a robot, the user email will be empty.
if (!user_email.empty()) {
user_email_ = user_email;
}
service_prefs_->SetString(prefs::kCloudPrintEmail, user_email_);
enabled_ = true;
DCHECK(!user_email_.empty());
service_prefs_->WritePrefs();
}
void CloudPrintProxy::OnAuthenticationFailed() {
DCHECK(CalledOnValidThread());
// If authenticated failed, we will disable the cloud print proxy.
// We can't delete printers at this point.
DisableForUser();
// Also delete the cached robot credentials since they may not be valid any
// longer.
service_prefs_->RemovePref(prefs::kCloudPrintRobotRefreshToken);
service_prefs_->RemovePref(prefs::kCloudPrintRobotEmail);
service_prefs_->WritePrefs();
// Launch the browser to display a notification that the credentials have
// expired (unless error dialogs are disabled).
if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kNoErrorDialogs))
g_service_process->io_thread()->message_loop_proxy()->PostTask(
FROM_HERE, base::Bind(&ShowTokenExpiredNotificationInBrowser));
}
void CloudPrintProxy::OnPrintSystemUnavailable() {
// If the print system is unavailable, we want to shutdown the proxy and
// disable it non-persistently.
ShutdownBackend();
if (client_) {
client_->OnCloudPrintProxyDisabled(false);
}
}
void CloudPrintProxy::OnUnregisterPrinters(
const std::string& auth_token,
const std::list<std::string>& printer_ids) {
ShutdownBackend();
wipeout_.reset(new CloudPrintWipeout(this, cloud_print_server_url_));
wipeout_->UnregisterPrinters(auth_token, printer_ids);
}
void CloudPrintProxy::OnUnregisterPrintersComplete() {
wipeout_.reset();
// Finish disabling cloud print for this user.
DisableForUser();
}
void CloudPrintProxy::ShutdownBackend() {
DCHECK(CalledOnValidThread());
if (backend_.get())
backend_->Shutdown();
backend_.reset();
}
|