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
use sp_runtime::DispatchError;

use super::*;
use crate::{deposit_indexed_event, impl_bits_conversion, impl_wrapper_type_info};

/// Valid did key with correct verification relationships.
#[derive(Encode, Clone, Debug, PartialEq, Eq, PartialOrd, Copy, 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 DidKey {
    /// The public key
    public_key: PublicKey,
    /// The different verification relationships the above key has with the DID.
    ver_rels: VerRelType,
}

/// `DidKey` without validity constraint requirement.
#[derive(Encode, Decode, Clone, Debug, PartialEq, Eq, PartialOrd)]
#[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 UncheckedDidKey {
    /// The public key
    pub public_key: PublicKey,
    /// The different verification relationships the above key has with the DID.
    pub ver_rels: VerRelType,
}

impl Decode for DidKey {
    fn decode<I: codec::Input>(input: &mut I) -> Result<Self, codec::Error> {
        let decoded = UncheckedDidKey::decode(input)?;

        Self::try_from(decoded)
            .map_err(|err| -> &'static str { err.into() })
            .map_err(Into::into)
    }
}

bitflags::bitflags! {
    /// Different verification relation types specified in the DID spec here https://www.w3.org/TR/did-core/#verification-relationships.
    #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
    #[cfg_attr(feature = "serde", serde(try_from = "u16", into = "u16"))]
    pub struct VerRelType: u16 {
        /// No verification relation set.
        const NONE = 0;
        /// https://www.w3.org/TR/did-core/#authentication
        const AUTHENTICATION = 0b0001;
        /// https://www.w3.org/TR/did-core/#assertion
        const ASSERTION = 0b0010;
        /// A key must have this to control a DID
        /// https://www.w3.org/TR/did-core/#capability-invocation
        const CAPABILITY_INVOCATION = 0b0100;
        /// https://www.w3.org/TR/did-core/#key-agreement
        const KEY_AGREEMENT = 0b1000;
        /// Includes `AUTHENTICATION`, `ASSERTION`, `CAPABILITY_INVOCATION`.
        /// We might add more relationships in future but these 3 are all we care about now.
        const ALL_FOR_SIGNING = 0b0111;
    }
}

impl_bits_conversion! { VerRelType from u16 }
impl_wrapper_type_info! { VerRelType(u16) }

#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum DidKeyError {
    KeyAgreementCantBeUsedForSigning,
    SigningKeyCantBeUsedForKeyAgreement,
}

impl From<DidKeyError> for &'static str {
    fn from(err: DidKeyError) -> &'static str {
        match err {
            DidKeyError::KeyAgreementCantBeUsedForSigning => {
                "Key Agreement can't be used for signing"
            }
            DidKeyError::SigningKeyCantBeUsedForKeyAgreement => {
                "Signing key can't be used for Key Agreement"
            }
        }
    }
}

impl From<DidKeyError> for DispatchError {
    fn from(err: DidKeyError) -> DispatchError {
        DispatchError::Other(err.into())
    }
}

impl<T: Config> From<DidKeyError> for Error<T> {
    fn from(err: DidKeyError) -> Error<T> {
        match err {
            DidKeyError::KeyAgreementCantBeUsedForSigning => {
                Error::<T>::KeyAgreementCantBeUsedForSigning
            }
            DidKeyError::SigningKeyCantBeUsedForKeyAgreement => {
                Error::<T>::SigningKeyCantBeUsedForKeyAgreement
            }
        }
    }
}

impl DidKey {
    /// Constructs new `DidKey` using given public key and verification relationships.
    pub fn new(
        public_key: impl Into<PublicKey>,
        ver_rels: VerRelType,
    ) -> Result<Self, DidKeyError> {
        if ver_rels.is_empty() {
            Ok(Self::new_with_all_relationships(public_key))
        } else {
            let public_key = public_key.into();
            if public_key.can_sign() {
                if ver_rels.intersects(VerRelType::KEY_AGREEMENT) {
                    return Err(DidKeyError::SigningKeyCantBeUsedForKeyAgreement);
                }
            } else if ver_rels != VerRelType::KEY_AGREEMENT {
                return Err(DidKeyError::KeyAgreementCantBeUsedForSigning);
            }

            Ok(Self {
                public_key,
                ver_rels,
            })
        }
    }

    /// Constructs new `DidKey` using given public key and all available verification relationships
    /// for this key.
    pub fn new_with_all_relationships(public_key: impl Into<PublicKey>) -> Self {
        let public_key = public_key.into();
        let ver_rels = if public_key.can_sign() {
            // If the key can be used for signing, mark it with all related relationships.
            VerRelType::ALL_FOR_SIGNING
        } else {
            // The non-signing public key can be used only for key agreement currently.
            VerRelType::KEY_AGREEMENT
        };

        Self {
            public_key,
            ver_rels,
        }
    }

    /// Returns underlying public key.
    pub fn public_key(&self) -> &PublicKey {
        &self.public_key
    }

    /// Returns underlying verification relationships.
    pub fn ver_rels(&self) -> VerRelType {
        self.ver_rels
    }

    /// Checks if this key is capable of signing.
    pub fn can_sign(&self) -> bool {
        self.public_key.can_sign()
    }

    /// Checks if this key can has `CAPABILITY_INVOCATION` relation set.
    pub fn can_control(&self) -> bool {
        self.ver_rels.intersects(VerRelType::CAPABILITY_INVOCATION)
    }

    /// Checks if this key can has `AUTHENTICATION` relation set.
    pub fn can_authenticate(&self) -> bool {
        self.ver_rels.intersects(VerRelType::AUTHENTICATION)
    }

    /// Checks if this key can has `KEY_AGREEMENT` relation set.
    pub fn for_key_agreement(&self) -> bool {
        self.ver_rels.intersects(VerRelType::KEY_AGREEMENT)
    }

    /// Checks if this key can has either `AUTHENTICATION` or `CAPABILITY_INVOCATION` relation set.
    pub fn can_authenticate_or_control(&self) -> bool {
        self.ver_rels
            .intersects(VerRelType::AUTHENTICATION | VerRelType::CAPABILITY_INVOCATION)
    }
}

impl UncheckedDidKey {
    /// Constructs new `UncheckedDidKey` using given public key and verification relationships.
    /// This function doesn't require key to have valid verification relationships.
    pub fn new(public_key: impl Into<PublicKey>, ver_rels: VerRelType) -> Self {
        UncheckedDidKey {
            public_key: public_key.into(),
            ver_rels,
        }
    }

    /// Constructs new `UncheckedDidKey` using given public key and all available verification relationships
    /// for this key.
    pub fn new_with_all_relationships(public_key: impl Into<PublicKey>) -> Self {
        DidKey::new_with_all_relationships(public_key).into()
    }
}

impl TryFrom<UncheckedDidKey> for DidKey {
    type Error = DidKeyError;

    fn try_from(
        UncheckedDidKey {
            public_key,
            ver_rels,
        }: UncheckedDidKey,
    ) -> Result<Self, Self::Error> {
        DidKey::new(public_key, ver_rels)
    }
}

impl From<DidKey> for UncheckedDidKey {
    fn from(
        DidKey {
            public_key,
            ver_rels,
        }: DidKey,
    ) -> Self {
        UncheckedDidKey::new(public_key, ver_rels)
    }
}

impl<T: Config> Pallet<T> {
    pub(crate) fn add_keys_(
        AddKeys { did, keys, .. }: AddKeys<T>,
        OnChainDidDetails {
            active_controllers,
            active_controller_keys,
            last_key_id,
            ..
        }: &mut OnChainDidDetails,
    ) -> DispatchResult {
        let keys: Vec<_> = keys
            .into_iter()
            .map(DidKey::try_from)
            .collect::<Result<_, _>>()?;

        // If DID was not self controlled first, check if it can become by looking over new keys
        let controller_keys_count = keys.iter().filter(|key| key.can_control()).count() as u32;
        *active_controller_keys += controller_keys_count;

        // Make self controlled if needed
        let add_self_controlled = controller_keys_count > 0 && !Self::is_self_controlled(&did);
        if add_self_controlled {
            DidControllers::<T>::insert(did, Controller(did.into()), ());
            *active_controllers += 1;
        }

        for (key, key_id) in keys.into_iter().zip(last_key_id) {
            DidKeys::<T>::insert(did, key_id, key);
        }

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

    pub(crate) fn remove_keys_(
        RemoveKeys { did, keys, .. }: RemoveKeys<T>,
        OnChainDidDetails {
            active_controllers,
            active_controller_keys,
            ..
        }: &mut OnChainDidDetails,
    ) -> DispatchResult {
        for key_id in &keys {
            let key = DidKeys::<T>::get(did, key_id).ok_or(Error::<T>::NoKeyForDid)?;

            if key.can_control() {
                *active_controller_keys -= 1;
            }
        }

        for key in &keys {
            DidKeys::<T>::remove(did, key);
        }

        // If no self-control keys exist for the given DID, remove self-control
        let remove_self_controlled = *active_controller_keys == 0 && Self::is_self_controlled(&did);
        if remove_self_controlled {
            DidControllers::<T>::remove(did, Controller(did.into()));
            *active_controllers -= 1;
        }

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

#[cfg(test)]
mod tests {
    use super::*;
    use codec::{Decode, Encode};
    use sp_core::Pair;

    #[test]
    fn encode() {
        assert_eq!(2u16.encode(), VerRelType::ASSERTION.encode());
        assert_eq!(
            VerRelType::decode(&mut &2u16.encode()[..]).unwrap(),
            VerRelType::ASSERTION
        );
        let (pair_sr, _, _) = sp_application_crypto::sr25519::Pair::generate_with_phrase(None);
        let pk_sr = pair_sr.public().0;

        assert_eq!(
            DidKey::new(PublicKey::sr25519(pk_sr), VerRelType::CAPABILITY_INVOCATION)
                .unwrap()
                .encode(),
            UncheckedDidKey::new(PublicKey::sr25519(pk_sr), VerRelType::CAPABILITY_INVOCATION)
                .encode()
        );
        assert_eq!(
            DidKey::decode(
                &mut &UncheckedDidKey::new(
                    PublicKey::sr25519(pk_sr),
                    VerRelType::CAPABILITY_INVOCATION
                )
                .encode()[..]
            )
            .unwrap(),
            DidKey::new(PublicKey::sr25519(pk_sr), VerRelType::CAPABILITY_INVOCATION).unwrap()
        );
    }
}