blob: 1b4db766fa478ec2233e944664aa176e201a9843 (
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
|
// Copyright (c) 2011 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_POLICY_CLOUD_POLICY_IDENTITY_STRATEGY_H_
#define CHROME_BROWSER_POLICY_CLOUD_POLICY_IDENTITY_STRATEGY_H_
#pragma once
#include <string>
#include "base/observer_list.h"
#include "chrome/browser/policy/proto/device_management_backend.pb.h"
namespace policy {
namespace em = enterprise_management;
// Manages a device management token, i.e. an identifier that represents a
// registration with the device management service, and the associated
// credentials. Responsibilities include storing and loading the token from
// disk, observing and triggering relevant notifications.
class CloudPolicyIdentityStrategy {
public:
class Observer {
public:
virtual ~Observer() {}
// Notifies observers that the effective token for fetching policy has
// changed. The token can be queried by calling GetDeviceToken().
virtual void OnDeviceTokenChanged() = 0;
// Authentication credentials for talking to the device management service
// changed. New auth data is available through GetCredentials().
virtual void OnCredentialsChanged() = 0;
};
CloudPolicyIdentityStrategy();
virtual ~CloudPolicyIdentityStrategy();
void AddObserver(Observer* obs);
void RemoveObserver(Observer* obs);
// Returns the device management token, if available. Returns the empty string
// if the device token is currently unavailable.
virtual std::string GetDeviceToken() = 0;
// Returns the device ID for this device. This is a unique identifier that is
// randomly generated at registration time on the client side. It always has
// to be sent along with the device token to the server.
virtual std::string GetDeviceID() = 0;
// Returns physical machine ID for this device.
virtual std::string GetMachineID() = 0;
// Returns the policy type to be used for registering at the device management
// server.
virtual em::DeviceRegisterRequest_Type GetPolicyRegisterType() = 0;
// Returns the policy type to be used for requesting policies from the device
// management server.
virtual std::string GetPolicyType() = 0;
// Retrieves authentication credentials to use when talking to the device
// management service. Returns true if the data is available and writes the
// values to the provided pointers.
virtual bool GetCredentials(std::string* username,
std::string* auth_token) = 0;
// Notifies the identity strategy that a new token has been fetched. It is up
// to the identity strategy to store the token, decide whether it is going
// to be used, send out an appropriate OnDeviceTokenChanged() notification
// and return the new token in GetDeviceToken() calls.
virtual void OnDeviceTokenAvailable(const std::string& token) = 0;
protected:
// Notify observers that the effective token has changed.
void NotifyDeviceTokenChanged();
// Notify observers about authentication data change.
void NotifyAuthChanged();
private:
ObserverList<Observer, true> observer_list_;
DISALLOW_COPY_AND_ASSIGN(CloudPolicyIdentityStrategy);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_CLOUD_POLICY_IDENTITY_STRATEGY_H_
|