summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/printing/cloud_print/cloud_print_proxy_service.h
blob: 32cf5b39a990056529a024e3a38ca7a18990b0e0 (plain)
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
// 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/callback_forward.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/common/cloud_print.mojom.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "printing/buildflags/buildflags.h"

#if !BUILDFLAG(ENABLE_PRINT_PREVIEW) || defined(OS_CHROMEOS)
#error "Print Preview must be enabled / Not supported on ChromeOS"
#endif

class Profile;
class ServiceProcessControl;

// 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;

  using PrintersCallback =
      base::OnceCallback<void(const std::vector<std::string>&)>;

  // 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(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,
                                      base::Value user_settings);
  virtual void DisableForUser();

  // Query the service process for the status of the cloud print proxy and
  // update the browser prefs.
  void RefreshStatusFromService();

  const 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(PrintersCallback callback);
  void RefreshCloudPrintProxyStatus();
  void EnableCloudPrintProxyWithRobot(const std::string& robot_auth_code,
                                      const std::string& robot_email,
                                      const std::string& user_email,
                                      base::Value user_preferences);
  void DisableCloudPrintProxy();

  // Callback that gets the cloud print proxy info.
  void ProxyInfoCallback(bool enabled,
                         const std::string& email,
                         const std::string& proxy_id);

  // 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(base::OnceClosure 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();

  cloud_print::mojom::CloudPrint& GetCloudPrintProxy();

  // Virtual for testing.
  virtual ServiceProcessControl* GetServiceProcessControl();

  void OnReadCloudPrintSetupProxyList(PrintersCallback callback,
                                      const std::string& printers_json);

  Profile* const profile_;
  std::string proxy_id_;

  // For watching for connector policy changes.
  PrefChangeRegistrar pref_change_registrar_;

  cloud_print::mojom::CloudPrintPtr cloud_print_proxy_;

  base::WeakPtrFactory<CloudPrintProxyService> weak_factory_{this};

  DISALLOW_COPY_AND_ASSIGN(CloudPrintProxyService);
};

#endif  // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_PROXY_SERVICE_H_