settings/privacy/
privacy_controller.rs

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
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use crate::base::SettingInfo;
use crate::handler::base::Request;
use crate::handler::setting_handler::persist::{controller as data_controller, ClientProxy};
use crate::handler::setting_handler::{
    controller, ControllerError, IntoHandlerResult, SettingHandlerResult,
};
use crate::privacy::types::PrivacyInfo;
use async_trait::async_trait;
use settings_storage::device_storage::{DeviceStorage, DeviceStorageCompatible};
use settings_storage::storage_factory::{NoneT, StorageAccess};

impl DeviceStorageCompatible for PrivacyInfo {
    type Loader = NoneT;
    const KEY: &'static str = "privacy_info";
}

impl From<PrivacyInfo> for SettingInfo {
    fn from(info: PrivacyInfo) -> SettingInfo {
        SettingInfo::Privacy(info)
    }
}

pub struct PrivacyController {
    client: ClientProxy,
}

impl StorageAccess for PrivacyController {
    type Storage = DeviceStorage;
    type Data = PrivacyInfo;
    const STORAGE_KEY: &'static str = PrivacyInfo::KEY;
}

#[async_trait(?Send)]
impl data_controller::Create for PrivacyController {
    async fn create(client: ClientProxy) -> Result<Self, ControllerError> {
        Ok(PrivacyController { client })
    }
}

#[async_trait(?Send)]
impl controller::Handle for PrivacyController {
    async fn handle(&self, request: Request) -> Option<SettingHandlerResult> {
        match request {
            Request::SetUserDataSharingConsent(user_data_sharing_consent) => {
                let id = fuchsia_trace::Id::new();
                let mut current = self.client.read_setting::<PrivacyInfo>(id).await;

                // Save the value locally.
                current.user_data_sharing_consent = user_data_sharing_consent;
                Some(self.client.write_setting(current.into(), id).await.into_handler_result())
            }
            Request::Get => Some(
                self.client
                    .read_setting_info::<PrivacyInfo>(fuchsia_trace::Id::new())
                    .await
                    .into_handler_result(),
            ),
            _ => None,
        }
    }
}