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
use super::super::*;
use crate::{common::TypesAndLimits, deposit_indexed_event};
#[derive(Encode, Decode, DebugNoBound, Clone, PartialEq, Eq, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[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 struct OffChainDidDetails<T: TypesAndLimits> {
pub account_id: T::AccountId,
pub doc_ref: OffChainDidDocRef<T>,
}
impl<T: TypesAndLimits> From<OffChainDidDetails<T>> for StoredDidDetails<T> {
fn from(details: OffChainDidDetails<T>) -> Self {
Self::OffChain(details)
}
}
impl<T: TypesAndLimits> TryFrom<StoredDidDetails<T>> for OffChainDidDetails<T> {
type Error = Error<T>;
fn try_from(details: StoredDidDetails<T>) -> Result<Self, Self::Error> {
details
.into_offchain()
.ok_or(Error::<T>::ExpectedOffChainDid)
}
}
impl<T: TypesAndLimits> OffChainDidDetails<T> {
pub fn new(account_id: T::AccountId, doc_ref: OffChainDidDocRef<T>) -> Self {
Self {
account_id,
doc_ref,
}
}
pub fn ensure_can_update(&self, caller: &T::AccountId) -> Result<(), Error<T>> {
ensure!(&self.account_id == caller, Error::<T>::DidNotOwnedByAccount);
Ok(())
}
}
#[derive(
Encode, Decode, CloneNoBound, PartialEqNoBound, EqNoBound, DebugNoBound, MaxEncodedLen,
)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub enum OffChainDidDocRef<T: Limits> {
CID(BoundedBytes<T::MaxDidDocRefSize>),
URL(BoundedBytes<T::MaxDidDocRefSize>),
Custom(BoundedBytes<T::MaxDidDocRefSize>),
}
impl<T: Limits> OffChainDidDocRef<T> {
pub fn len(&self) -> u32 {
match self {
OffChainDidDocRef::CID(v) => v.len() as u32,
OffChainDidDocRef::URL(v) => v.len() as u32,
OffChainDidDocRef::Custom(v) => v.len() as u32,
}
}
pub fn is_empty(&self) -> bool {
self.len() == 0
}
}
impl<T: Config> Pallet<T> {
pub(crate) fn new_offchain_(
caller: T::AccountId,
did: Did,
did_doc_ref: OffChainDidDocRef<T>,
) -> DispatchResult {
ensure!(!Dids::<T>::contains_key(did), Error::<T>::DidAlreadyExists);
let details = OffChainDidDetails::new(caller, did_doc_ref.clone());
Self::insert_did_details(did, details);
deposit_indexed_event!(OffChainDidAdded(did, did_doc_ref) over did);
Ok(())
}
pub(crate) fn set_offchain_did_doc_ref_(
caller: T::AccountId,
did: Did,
did_doc_ref: OffChainDidDocRef<T>,
) -> DispatchResult {
Self::offchain_did_details(&did)?.ensure_can_update(&caller)?;
let details: StoredDidDetails<T> =
OffChainDidDetails::new(caller, did_doc_ref.clone()).into();
Dids::<T>::insert(did, details);
deposit_indexed_event!(OffChainDidUpdated(did, did_doc_ref) over did);
Ok(())
}
pub(crate) fn remove_offchain_did_(caller: T::AccountId, did: Did) -> DispatchResult {
Self::offchain_did_details(&did)?.ensure_can_update(&caller)?;
Dids::<T>::remove(did);
deposit_indexed_event!(OffChainDidRemoved(did));
Ok(())
}
pub fn is_offchain_did(did: &Did) -> Result<bool, Error<T>> {
Self::did(did)
.as_ref()
.map(StoredDidDetails::is_offchain)
.ok_or(Error::<T>::DidDoesNotExist)
}
pub fn offchain_did_details(did: &Did) -> Result<OffChainDidDetails<T>, Error<T>> {
Self::did(did)
.ok_or(Error::<T>::DidDoesNotExist)?
.try_into()
}
}