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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
use super::super::*;
use crate::{
common::TypesAndLimits,
deposit_indexed_event,
util::{StorageRef, WithNonce},
};
pub type StoredOnChainDidDetails<T> = WithNonce<T, OnChainDidDetails>;
#[derive(Encode, Decode, Debug, Clone, PartialEq, Eq, Default, 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 OnChainDidDetails {
pub last_key_id: IncId,
pub active_controller_keys: u32,
pub active_controllers: u32,
}
impl<T: TypesAndLimits> From<StoredOnChainDidDetails<T>> for StoredDidDetails<T> {
fn from(details: StoredOnChainDidDetails<T>) -> Self {
Self::OnChain(details)
}
}
impl<T: Config> TryFrom<StoredDidDetails<T>> for StoredOnChainDidDetails<T> {
type Error = Error<T>;
fn try_from(details: StoredDidDetails<T>) -> Result<Self, Self::Error> {
details.into_onchain().ok_or(Error::<T>::ExpectedOnChainDid)
}
}
impl<T: TypesAndLimits> Associated<T> for Did {
type Value = StoredDidDetails<T>;
}
impl<T: Config> StorageRef<T> for Did {
fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
where
F: FnOnce(&mut Option<StoredDidDetails<T>>) -> Result<R, E>,
{
Dids::<T>::try_mutate_exists(self, |details| details.update_with(f))
}
fn view_associated<F, R>(self, f: F) -> R
where
F: FnOnce(Option<StoredDidDetails<T>>) -> R,
{
f(Dids::<T>::get(self))
}
}
impl OnChainDidDetails {
pub fn new(last_key_id: IncId, active_controller_keys: u32, active_controllers: u32) -> Self {
Self {
last_key_id,
active_controller_keys,
active_controllers,
}
}
}
impl<T: Config> Pallet<T> {
pub(crate) fn new_onchain_(
did: Did,
keys: Vec<UncheckedDidKey>,
mut controllers: BTreeSet<Controller>,
) -> DispatchResult {
ensure!(!Dids::<T>::contains_key(did), Error::<T>::DidAlreadyExists);
let keys: Vec<_> = keys
.into_iter()
.map(DidKey::try_from)
.collect::<Result<_, _>>()
.map_err(Error::<T>::from)?;
let controller_keys_count = keys.iter().filter(|key| key.can_control()).count() as u32;
if controller_keys_count > 0 {
controllers.insert(Controller(did.into()));
}
ensure!(!controllers.is_empty(), Error::<T>::NoControllerProvided);
let mut last_key_id = IncId::new();
for (key, key_id) in keys.into_iter().zip(&mut last_key_id) {
DidKeys::<T>::insert(did, key_id, key);
}
for ctrl in &controllers {
DidControllers::<T>::insert(did, ctrl, ());
}
let did_details = WithNonce::new(OnChainDidDetails::new(
last_key_id,
controller_keys_count,
controllers.len() as u32,
));
Self::insert_did_details(did, did_details);
deposit_indexed_event!(OnChainDidAdded(did));
Ok(())
}
pub(crate) fn remove_onchain_did_(
DidRemoval { did, .. }: DidRemoval<T>,
details: &mut Option<OnChainDidDetails>,
) -> DispatchResult {
details.take().ok_or(Error::<T>::OnchainDidDoesntExist)?;
let _ = DidKeys::<T>::clear_prefix(did, u32::MAX, None);
let _ = DidControllers::<T>::clear_prefix(did, u32::MAX, None);
let _ = DidServiceEndpoints::<T>::clear_prefix(did, u32::MAX, None);
let _ = T::OnDidRemoval::on_did_removal(did);
deposit_indexed_event!(OnChainDidRemoved(did));
Ok(())
}
pub fn is_onchain_did(did: &Did) -> Result<bool, Error<T>> {
Self::did(did)
.as_ref()
.map(StoredDidDetails::is_onchain)
.ok_or(Error::<T>::DidDoesNotExist)
}
pub fn onchain_did_details(did: &Did) -> Result<StoredOnChainDidDetails<T>, Error<T>> {
Self::did(did)
.ok_or(Error::<T>::DidDoesNotExist)?
.try_into()
}
}