| // Copyright 2019 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_SHARING_SHARING_SYNC_PREFERENCE_H_ |
| #define CHROME_BROWSER_SHARING_SHARING_SYNC_PREFERENCE_H_ |
| |
| #include <stdint.h> |
| #include <map> |
| #include <set> |
| #include <string> |
| #include <vector> |
| |
| #include "base/macros.h" |
| #include "base/optional.h" |
| #include "base/time/time.h" |
| #include "base/values.h" |
| #include "components/prefs/pref_change_registrar.h" |
| #include "components/sync/protocol/device_info_specifics.pb.h" |
| #include "components/sync_device_info/device_info.h" |
| |
| namespace syncer { |
| class DeviceInfoTracker; |
| class LocalDeviceInfoProvider; |
| } // namespace syncer |
| |
| namespace user_prefs { |
| class PrefRegistrySyncable; |
| } |
| |
| class PrefService; |
| |
| // SharingSyncPreference manages all preferences related to Sharing using Sync, |
| // such as storing list of user devices synced via Chrome and VapidKey used |
| // for authentication. |
| class SharingSyncPreference { |
| public: |
| // FCM registration status of current device. Not synced across devices. |
| struct FCMRegistration { |
| FCMRegistration(std::string authorized_entity, base::Time timestamp); |
| FCMRegistration(FCMRegistration&& other); |
| FCMRegistration& operator=(FCMRegistration&& other); |
| ~FCMRegistration(); |
| |
| // Authorized entity registered with FCM. |
| std::string authorized_entity; |
| |
| // Timestamp of latest registration. |
| base::Time timestamp; |
| }; |
| |
| SharingSyncPreference( |
| PrefService* prefs, |
| syncer::DeviceInfoTracker* device_info_tracker, |
| syncer::LocalDeviceInfoProvider* local_device_info_provider); |
| ~SharingSyncPreference(); |
| |
| static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| |
| // Returns VAPID key from preferences if present, otherwise returns |
| // base::nullopt. |
| // For more information on vapid keys, please see |
| // https://tools.ietf.org/html/draft-thomson-webpush-vapid-02 |
| base::Optional<std::vector<uint8_t>> GetVapidKey() const; |
| |
| // Adds VAPID key to preferences for syncing across devices. |
| void SetVapidKey(const std::vector<uint8_t>& vapid_key) const; |
| |
| // Observes for VAPID key changes. Replaces previously set observer. |
| void SetVapidKeyChangeObserver(const base::RepeatingClosure& obs); |
| |
| // Clears previously set observer. |
| void ClearVapidKeyChangeObserver(); |
| |
| base::Optional<FCMRegistration> GetFCMRegistration() const; |
| |
| void SetFCMRegistration(FCMRegistration registration); |
| |
| void ClearFCMRegistration(); |
| |
| // Returns the SharingInfo from sync with specified |guid|. |
| base::Optional<syncer::DeviceInfo::SharingInfo> GetSharingInfo( |
| const std::string& guid) const; |
| |
| // Returns the SharingInfo from sync with specified |device_info|. |
| base::Optional<syncer::DeviceInfo::SharingInfo> GetSharingInfo( |
| const syncer::DeviceInfo* device_info) const; |
| |
| base::Optional<syncer::DeviceInfo::SharingInfo> GetLocalSharingInfo() const; |
| |
| void SetLocalSharingInfo(syncer::DeviceInfo::SharingInfo sharing_info); |
| |
| void ClearLocalSharingInfo(); |
| |
| private: |
| friend class SharingSyncPreferenceTest; |
| |
| // Returns local SharingInfo stored in preferences. |
| static base::Optional<syncer::DeviceInfo::SharingInfo> GetLocalSharingInfo( |
| PrefService* prefs); |
| |
| // Convert SharingInfo to value readable by legacy devices. |
| static base::Value SharingInfoToValue( |
| const syncer::DeviceInfo::SharingInfo& device); |
| |
| // Read SharingInfo from value created by legacy devices. |
| static base::Optional<syncer::DeviceInfo::SharingInfo> ValueToSharingInfo( |
| const base::Value& value); |
| |
| PrefService* prefs_; |
| syncer::DeviceInfoTracker* device_info_tracker_; |
| syncer::LocalDeviceInfoProvider* local_device_info_provider_; |
| PrefChangeRegistrar pref_change_registrar_; |
| |
| DISALLOW_COPY_AND_ASSIGN(SharingSyncPreference); |
| }; |
| |
| #endif // CHROME_BROWSER_SHARING_SHARING_SYNC_PREFERENCE_H_ |