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
109
110
111
112
113
114
115
116
117
118
119
use candid::{Nat, Principal};
use ic_agent::Agent;
use ic_oss_types::{bucket::Token, cluster::*};
use serde_bytes::{ByteArray, ByteBuf};
use std::{
    collections::{BTreeMap, BTreeSet},
    sync::Arc,
};

use crate::agent::{query_call, update_call};

#[derive(Clone)]
pub struct Client {
    agent: Arc<Agent>,
    cluster: Principal,
}

impl Client {
    pub fn new(agent: Arc<Agent>, cluster: Principal) -> Client {
        Client { agent, cluster }
    }

    /// the caller of agent should be canister controller
    pub async fn admin_set_managers(&self, args: BTreeSet<Principal>) -> Result<(), String> {
        update_call(&self.agent, &self.cluster, "admin_set_managers", (args,)).await?
    }

    /// the caller of agent should be canister manager
    pub async fn admin_sign_access_token(&self, args: Token) -> Result<ByteBuf, String> {
        update_call(
            &self.agent,
            &self.cluster,
            "admin_sign_access_token",
            (args,),
        )
        .await?
    }

    /// the caller of agent should be canister manager
    pub async fn admin_attach_policies(&self, args: Token) -> Result<(), String> {
        update_call(&self.agent, &self.cluster, "admin_attach_policies", (args,)).await?
    }

    /// the caller of agent should be canister manager
    pub async fn admin_detach_policies(&self, args: Token) -> Result<(), String> {
        update_call(&self.agent, &self.cluster, "admin_detach_policies", (args,)).await?
    }

    pub async fn access_token(&self, audience: Principal) -> Result<ByteBuf, String> {
        update_call(&self.agent, &self.cluster, "access_token", (audience,)).await?
    }

    pub async fn get_cluster_info(&self) -> Result<ClusterInfo, String> {
        query_call(&self.agent, &self.cluster, "get_cluster_info", ()).await?
    }

    pub async fn get_bucket_wasm(&self, hash: ByteArray<32>) -> Result<WasmInfo, String> {
        query_call(&self.agent, &self.cluster, "get_bucket_wasm", (hash,)).await?
    }

    pub async fn get_deployed_buckets(&self) -> Result<Vec<BucketDeploymentInfo>, String> {
        query_call(&self.agent, &self.cluster, "get_deployed_buckets", ()).await?
    }

    pub async fn bucket_deployment_logs(
        &self,
        prev: Option<Nat>,
        take: Option<Nat>,
    ) -> Result<Vec<BucketDeploymentInfo>, String> {
        query_call(
            &self.agent,
            &self.cluster,
            "bucket_deployment_logs",
            (prev, take),
        )
        .await?
    }

    pub async fn get_subject_policies(
        &self,
        subject: Principal,
    ) -> Result<BTreeMap<Principal, String>, String> {
        query_call(
            &self.agent,
            &self.cluster,
            "get_subject_policies",
            (subject,),
        )
        .await?
    }

    pub async fn admin_add_wasm(
        &self,
        args: AddWasmInput,
        force_prev_hash: Option<ByteArray<32>>,
    ) -> Result<(), String> {
        update_call(
            &self.agent,
            &self.cluster,
            "admin_add_wasm",
            (args, force_prev_hash),
        )
        .await?
    }

    pub async fn admin_deploy_bucket(&self, args: DeployWasmInput) -> Result<(), String> {
        update_call(&self.agent, &self.cluster, "admin_deploy_bucket", (args,)).await?
    }

    pub async fn admin_upgrade_all_buckets(&self, args: Option<ByteBuf>) -> Result<(), String> {
        update_call(
            &self.agent,
            &self.cluster,
            "admin_upgrade_all_buckets",
            (args,),
        )
        .await?
    }
}