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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
use crate::{
    common::{AuthorizeTarget, TypesAndLimits},
    impl_wrapper,
};
use codec::{Decode, Encode, MaxEncodedLen};
use sp_std::{
    fmt::Debug,
    ops::{Index, RangeFull},
};

use super::*;

pub mod did_method_key;
pub mod offchain;
pub mod onchain;
pub mod signature;

pub use did_method_key::*;
pub use offchain::*;
pub use onchain::*;
pub use signature::*;

/// Either `did:dock:*` or `did:key:*`.
#[derive(Encode, Decode, Clone, Debug, PartialEq, Eq, Copy, Ord, PartialOrd, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(scale_info_derive::TypeInfo)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(omit_prefix)]
pub enum DidOrDidMethodKey {
    Did(Did),
    DidMethodKey(DidMethodKey),
}

impl<T, Target> AuthorizeTarget<T, Target, DidKey> for DidOrDidMethodKey
where
    T: Config,
    Did: AuthorizeTarget<T, Target, DidKey>,
    Target: Associated<T>,
{
    fn ensure_authorizes_target<A>(
        &self,
        key: &DidKey,
        action: &A,
        value: Option<&Target::Value>,
    ) -> DispatchResult
    where
        A: Action<Target = Target>,
    {
        match self {
            DidOrDidMethodKey::Did(did) => did.ensure_authorizes_target(key, action, value),
            _ => Err(Error::<T>::ExpectedDid.into()),
        }
    }
}

impl<T, Target> AuthorizeTarget<T, Target, DidMethodKey> for DidOrDidMethodKey
where
    T: Config,
    DidMethodKey: AuthorizeTarget<T, Target, DidMethodKey>,
    Target: Associated<T>,
{
    fn ensure_authorizes_target<A>(
        &self,
        key: &DidMethodKey,
        action: &A,
        value: Option<&Target::Value>,
    ) -> DispatchResult
    where
        A: Action<Target = Target>,
    {
        match self {
            DidOrDidMethodKey::DidMethodKey(did_method_key) => {
                did_method_key.ensure_authorizes_target(key, action, value)
            }
            _ => Err(Error::<T>::ExpectedDidMethodKey.into()),
        }
    }
}

impl From<Did> for DidOrDidMethodKey {
    fn from(did: Did) -> Self {
        Self::Did(did)
    }
}

impl From<DidMethodKey> for DidOrDidMethodKey {
    fn from(did: DidMethodKey) -> Self {
        Self::DidMethodKey(did)
    }
}
impl TryFrom<DidOrDidMethodKey> for Did {
    type Error = DidMethodKey;

    fn try_from(did_or_did_method_key: DidOrDidMethodKey) -> Result<Self, Self::Error> {
        match did_or_did_method_key {
            DidOrDidMethodKey::Did(did) => Ok(did),
            DidOrDidMethodKey::DidMethodKey(did_key) => Err(did_key),
        }
    }
}

impl TryFrom<DidOrDidMethodKey> for DidMethodKey {
    type Error = Did;

    fn try_from(did_or_did_key: DidOrDidMethodKey) -> Result<Self, Self::Error> {
        match did_or_did_key {
            DidOrDidMethodKey::Did(did) => Err(did),
            DidOrDidMethodKey::DidMethodKey(did_key) => Ok(did_key),
        }
    }
}

/// The type of the Dock `DID`.
#[derive(Encode, Decode, Clone, PartialEq, Eq, Copy, Ord, PartialOrd, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(omit_prefix)]
pub struct Did(#[cfg_attr(feature = "serde", serde(with = "crate::util::serde_hex"))] pub RawDid);

crate::hex_debug!(Did);

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

        Ok(())
    }
}

impl Did {
    /// Size of the Dock DID in bytes
    pub const BYTE_SIZE: usize = 32;
}

impl_wrapper! { Did(RawDid), with tests as did_tests }

/// Raw DID representation.
pub type RawDid = [u8; Did::BYTE_SIZE];

impl Index<RangeFull> for Did {
    type Output = RawDid;

    fn index(&self, _: RangeFull) -> &Self::Output {
        &self.0
    }
}

/// Contains underlying DID describing its storage type.
#[derive(Encode, Decode, DebugNoBound, Clone, PartialEq, Eq, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "serde",
    serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub enum StoredDidDetails<T: TypesAndLimits> {
    /// For off-chain DID, most data is stored off-chain.
    OffChain(OffChainDidDetails<T>),
    /// For on-chain DID, all data is stored on the chain.
    OnChain(StoredOnChainDidDetails<T>),
}

impl<T: TypesAndLimits> StoredDidDetails<T> {
    pub fn is_onchain(&self) -> bool {
        matches!(self, StoredDidDetails::OnChain(_))
    }

    pub fn is_offchain(&self) -> bool {
        matches!(self, StoredDidDetails::OffChain(_))
    }

    pub fn into_offchain(self) -> Option<OffChainDidDetails<T>> {
        match self {
            StoredDidDetails::OffChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn into_onchain(self) -> Option<StoredOnChainDidDetails<T>> {
        match self {
            StoredDidDetails::OnChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn to_offchain(&self) -> Option<&OffChainDidDetails<T>> {
        match self {
            StoredDidDetails::OffChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn to_onchain(&self) -> Option<&StoredOnChainDidDetails<T>> {
        match self {
            StoredDidDetails::OnChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn to_offchain_mut(&mut self) -> Option<&mut OffChainDidDetails<T>> {
        match self {
            StoredDidDetails::OffChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn to_onchain_mut(&mut self) -> Option<&mut StoredOnChainDidDetails<T>> {
        match self {
            StoredDidDetails::OnChain(details) => Some(details),
            _ => None,
        }
    }

    pub fn nonce(&self) -> Option<T::BlockNumber> {
        self.to_onchain().map(|with_nonce| with_nonce.nonce)
    }

    pub fn try_update_onchain(
        &mut self,
        nonce: <T as Types>::BlockNumber,
    ) -> Result<&mut OnChainDidDetails, Error<T>>
    where
        T: Config,
    {
        self.to_onchain_mut()
            .ok_or(Error::<T>::ExpectedOnChainDid)?
            .try_update(nonce)
            .map_err(Into::into)
    }
}

impl<T: Config> From<StoredDidDetails<T>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>> {
    fn from(details: StoredDidDetails<T>) -> Self {
        let nonce = details.nonce().unwrap_or_default();

        WithNonce::new_with_nonce(DidDetailsOrDidMethodKeyDetails::DidDetails(details), nonce)
    }
}

impl<T: Config> TryFrom<StoredOnChainDidDetails<T>>
    for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>
{
    type Error = Error<T>;

    fn try_from(details: StoredOnChainDidDetails<T>) -> Result<Self, Self::Error> {
        let nonce = details.nonce;

        Ok(WithNonce::new_with_nonce(
            DidDetailsOrDidMethodKeyDetails::DidDetails(details.into()),
            nonce,
        ))
    }
}

impl<T: Config> From<WithNonce<T, ()>> for WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>> {
    fn from(this: WithNonce<T, ()>) -> Self {
        WithNonce::new_with_nonce(
            DidDetailsOrDidMethodKeyDetails::DidMethodKeyDetails,
            this.nonce,
        )
    }
}

impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for WithNonce<T, ()> {
    type Error = Error<T>;

    fn try_from(
        details: WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>,
    ) -> Result<Self, Self::Error> {
        let nonce = details.nonce;

        match details.into_data() {
            DidDetailsOrDidMethodKeyDetails::DidMethodKeyDetails => {
                Ok(WithNonce::new_with_nonce((), nonce))
            }
            _ => Err(Error::<T>::ExpectedDidMethodKey),
        }
    }
}

impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>> for StoredDidDetails<T> {
    type Error = Error<T>;

    fn try_from(
        details: WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>,
    ) -> Result<Self, Self::Error> {
        let nonce = details.nonce;

        match details.into_data() {
            DidDetailsOrDidMethodKeyDetails::DidDetails(mut details) => {
                details.try_update_onchain(nonce)?;

                Ok(details)
            }
            _ => Err(Error::<T>::ExpectedDid),
        }
    }
}

impl<T: Config> TryFrom<WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>>
    for StoredOnChainDidDetails<T>
{
    type Error = Error<T>;

    fn try_from(
        details: WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>,
    ) -> Result<Self, Self::Error> {
        let nonce = details.nonce;

        match details.into_data() {
            DidDetailsOrDidMethodKeyDetails::DidDetails(details) => {
                let onchain_details: StoredOnChainDidDetails<T> = details.try_into()?;
                if onchain_details.nonce != nonce {
                    Err(NonceError::IncorrectNonce)?
                }

                Ok(onchain_details)
            }
            _ => Err(Error::<T>::ExpectedDid),
        }
    }
}

pub enum DidDetailsOrDidMethodKeyDetails<T: TypesAndLimits> {
    DidDetails(StoredDidDetails<T>),
    DidMethodKeyDetails,
}

impl<T: TypesAndLimits> Associated<T> for DidOrDidMethodKey {
    type Value = WithNonce<T, DidDetailsOrDidMethodKeyDetails<T>>;
}

impl<T: Config> StorageRef<T> for DidOrDidMethodKey {
    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(&mut Option<Self::Value>) -> Result<R, E>,
    {
        match self {
            Self::Did(did) => did.try_mutate_associated(|details| details.update_with(f)),
            Self::DidMethodKey(did_method_key) => {
                did_method_key.try_mutate_associated(|details| details.update_with(f))
            }
        }
    }

    fn view_associated<F, R>(self, f: F) -> R
    where
        F: FnOnce(Option<Self::Value>) -> R,
    {
        match self {
            Self::Did(did) => did.view_associated(|details_opt| {
                f(details_opt.map(TryInto::try_into).and_then(Result::ok))
            }),
            Self::DidMethodKey(did_method_key) => {
                did_method_key.view_associated(|details| f(details.map(Into::into)))
            }
        }
    }
}

impl<T: Config> Pallet<T> {
    /// Inserts details for the given `DID`.
    pub(crate) fn insert_did_details<D: Into<StoredDidDetails<T>>>(did: Did, did_details: D) {
        Dids::<T>::insert(did, did_details.into())
    }
}