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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
use super::*;
use crate::{common::AuthorizeTarget, deposit_indexed_event, impl_wrapper};

/// `DID`'s controller.
#[derive(Encode, Decode, Clone, Debug, PartialEq, Eq, Copy, Ord, PartialOrd, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(omit_prefix)]
pub struct Controller(pub DidOrDidMethodKey);

impl_wrapper!(Controller(DidOrDidMethodKey));

impl Controller {
    fn ensure_controller_for<T: Config>(&self, controlled: &Did) -> Result<(), Error<T>> {
        ensure!(
            Pallet::<T>::is_controller(controlled, self),
            Error::<T>::OnlyControllerCanUpdate
        );

        Ok(())
    }
}

impl<T> AuthorizeTarget<T, Did, DidKey> for Controller
where
    T: crate::did::Config,
{
    fn ensure_authorizes_target<A>(
        &self,
        key: &DidKey,
        action: &A,
        _: Option<&<Did as Associated<T>>::Value>,
    ) -> DispatchResult
    where
        A: Action<Target = Did>,
    {
        ensure!(
            key.can_control(),
            Error::<T>::InsufficientVerificationRelationship
        );
        self.ensure_controller_for::<T>(&action.target())?;

        Ok(())
    }
}

impl<T> AuthorizeTarget<T, Did, DidMethodKey> for Controller
where
    T: crate::did::Config,
{
    fn ensure_authorizes_target<A>(
        &self,
        _: &DidMethodKey,
        action: &A,
        _: Option<&<Did as Associated<T>>::Value>,
    ) -> DispatchResult
    where
        A: Action<Target = Did>,
    {
        self.ensure_controller_for::<T>(&action.target())?;

        Ok(())
    }
}

impl<T: Config> Pallet<T> {
    pub(crate) fn add_controllers_(
        AddControllers {
            did, controllers, ..
        }: AddControllers<T>,
        OnChainDidDetails {
            active_controllers, ..
        }: &mut OnChainDidDetails,
    ) -> DispatchResult {
        for ctrl in &controllers {
            ensure!(
                !Self::is_controller(&did, ctrl),
                Error::<T>::ControllerIsAlreadyAdded
            )
        }

        for ctrl in &controllers {
            DidControllers::<T>::insert(did, ctrl, ());
            *active_controllers += 1;
        }

        deposit_indexed_event!(DidControllersAdded(did));
        Ok(())
    }

    pub(crate) fn remove_controllers_(
        RemoveControllers {
            did, controllers, ..
        }: RemoveControllers<T>,
        OnChainDidDetails {
            active_controllers, ..
        }: &mut OnChainDidDetails,
    ) -> DispatchResult {
        for controller_did in &controllers {
            ensure!(
                Self::is_controller(&did, controller_did),
                Error::<T>::NoControllerForDid
            )
        }

        for controller_did in &controllers {
            DidControllers::<T>::remove(did, controller_did);
            *active_controllers -= 1;
        }

        deposit_indexed_event!(DidControllersRemoved(did));
        Ok(())
    }

    /// Throws an error if `controller` is not the controller of `controlled`
    pub fn ensure_controller(controlled: &Did, controller: &Controller) -> Result<(), Error<T>> {
        ensure!(
            Self::is_controller(controlled, controller),
            Error::<T>::OnlyControllerCanUpdate
        );

        Ok(())
    }

    /// Returns true if given `controlled` DID is controlled by the `controller` DID.
    pub fn is_controller(controlled: &Did, controller: &Controller) -> bool {
        Self::bound_controller(controlled, controller).is_some()
    }

    /// Returns true if DID controls itself, else false.
    pub fn is_self_controlled(did: &Did) -> bool {
        Self::is_controller(did, &Controller((*did).into()))
    }
}