blob: 6f4b7dc91714aa3ed8f7fc1f9853d7786e693c46 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_
#define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/prefs/pref_change_registrar.h"
#include "components/keyed_service/core/keyed_service.h"
class Profile;
class ServiceProcessControl;
namespace base {
class DictionaryValue;
} // namespace base
namespace cloud_print {
struct CloudPrintProxyInfo;
} // namespace cloud_print
// Layer between the browser user interface and the cloud print proxy code
// running in the service process.
class CloudPrintProxyService : public KeyedService {
public:
explicit CloudPrintProxyService(Profile* profile);
~CloudPrintProxyService() override;
typedef base::Callback<void(const std::vector<std::string>&)>
PrintersCallback;
// Initializes the object. This should be called every time an object of this
// class is constructed.
void Initialize();
// Returns list of printer names available for registration.
void GetPrinters(const PrintersCallback& callback);
// Enables/disables cloud printing for the user
virtual void EnableForUserWithRobot(
const std::string& robot_auth_code,
const std::string& robot_email,
const std::string& user_email,
const base::DictionaryValue& user_settings);
virtual void DisableForUser();
// Query the service process for the status of the cloud print proxy and
// update the browser prefs.
void RefreshStatusFromService();
// Disable the service if the policy to do so is set, and once the
// disablement is verified, quit the browser. Returns true if the policy is
// not set or the connector was not enabled.
bool EnforceCloudPrintConnectorPolicyAndQuit();
std::string proxy_id() const { return proxy_id_; }
private:
// NotificationDelegate implementation for the token expired notification.
class TokenExpiredNotificationDelegate;
friend class TokenExpiredNotificationDelegate;
// Methods that send an IPC to the service.
void GetCloudPrintProxyPrinters(const PrintersCallback& callback);
void RefreshCloudPrintProxyStatus();
void EnableCloudPrintProxyWithRobot(
const std::string& robot_auth_code,
const std::string& robot_email,
const std::string& user_email,
const base::DictionaryValue* user_preferences);
void DisableCloudPrintProxy();
// Callback that gets the cloud print proxy info.
void ProxyInfoCallback(
const cloud_print::CloudPrintProxyInfo& proxy_info);
// Invoke a task that gets run after the service process successfully
// launches. The task typically involves sending an IPC to the service
// process.
bool InvokeServiceTask(const base::Closure& task);
// Checks the policy. Returns true if nothing needs to be done (the policy is
// not set or the connector is not enabled).
bool ApplyCloudPrintConnectorPolicy();
Profile* profile_;
std::string proxy_id_;
// Virtual for testing.
virtual ServiceProcessControl* GetServiceProcessControl();
// For watching for connector policy changes.
PrefChangeRegistrar pref_change_registrar_;
// If set, continue trying to disable the connector, and quit the process
// once successful.
bool enforcing_connector_policy_;
base::WeakPtrFactory<CloudPrintProxyService> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(CloudPrintProxyService);
};
#endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_