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
use crate::{
common::{signatures::ForSigType, AuthorizeTarget, Limits, TypesAndLimits},
did::{self, DidKey, DidMethodKey, DidOrDidMethodKey, DidOrDidMethodKeySignature},
util::{
ActionWithNonce, ActionWithNonceWrapper, Associated, BoundedBytes, OptionExt, StorageRef,
},
};
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{
dispatch::DispatchResult, ensure, weights::Weight, CloneNoBound, DebugNoBound, DefaultNoBound,
EqNoBound, PartialEqNoBound,
};
use frame_system::ensure_signed;
use sp_std::{fmt::Debug, prelude::*};
use weights::*;
pub use pallet::*;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarks;
#[cfg(test)]
mod tests;
mod weights;
pub type Iri<T> = BoundedBytes<<T as Limits>::MaxIriSize>;
#[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 Attester(pub DidOrDidMethodKey);
impl<T: TypesAndLimits> AuthorizeTarget<T, Self, DidKey> for Attester {}
impl<T: TypesAndLimits> AuthorizeTarget<T, Self, DidMethodKey> for Attester {}
crate::impl_wrapper!(Attester(DidOrDidMethodKey));
#[derive(
Encode,
Decode,
CloneNoBound,
PartialEqNoBound,
DebugNoBound,
DefaultNoBound,
EqNoBound,
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 Attestation<T: Limits> {
#[codec(compact)]
pub priority: u64,
pub iri: Option<Iri<T>>,
}
impl<T: TypesAndLimits> Associated<T> for Attester {
type Value = Attestation<T>;
}
impl<T: Config> StorageRef<T> for Attester {
fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
where
F: FnOnce(&mut Option<Attestation<T>>) -> Result<R, E>,
{
Attestations::<T>::try_mutate_exists(self, |entry| f(entry.initialized()))
}
fn view_associated<F, R>(self, f: F) -> R
where
F: FnOnce(Option<Attestation<T>>) -> R,
{
f(Some(Attestations::<T>::get(self)))
}
}
#[derive(
Encode, Decode, scale_info_derive::TypeInfo, Clone, PartialEq, Eq, DebugNoBound, Default,
)]
#[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"))
)]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct SetAttestationClaim<T: TypesAndLimits> {
pub attest: Attestation<T>,
pub nonce: T::BlockNumber,
}
crate::impl_action_with_nonce! { for (): SetAttestationClaim with 1 as len, () as target }
#[frame_support::pallet]
pub mod pallet {
use crate::did::DidOrDidMethodKeySignature;
use super::*;
use frame_support::pallet_prelude::*;
use frame_system::pallet_prelude::*;
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
pub struct Pallet<T>(_);
#[pallet::config]
pub trait Config: frame_system::Config + did::Config {}
#[pallet::error]
pub enum Error<T> {
PriorityTooLow,
}
#[pallet::storage]
#[pallet::getter(fn attestation)]
pub type Attestations<T: Config> =
StorageMap<_, Blake2_128Concat, Attester, Attestation<T>, ValueQuery>;
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(SubstrateWeight::<T>::set_claim(attests, signature))]
pub fn set_claim(
origin: OriginFor<T>,
attests: SetAttestationClaim<T>,
signature: DidOrDidMethodKeySignature<Attester>,
) -> DispatchResult {
ensure_signed(origin)?;
attests
.signed_with_signer_target(signature)?
.execute(ActionWithNonceWrapper::wrap_fn(Self::set_claim_))
.map_err(Into::into)
}
}
impl<T: Config> Pallet<T> {
fn set_claim_(
SetAttestationClaim { attest, .. }: SetAttestationClaim<T>,
current_attest: &mut Attestation<T>,
_attester: Attester,
) -> DispatchResult {
ensure!(
current_attest.priority < attest.priority,
Error::<T>::PriorityTooLow
);
*current_attest = attest;
Ok(())
}
}
}
impl<T: Config> SubstrateWeight<T> {
fn set_claim(
SetAttestationClaim { attest, .. }: &SetAttestationClaim<T>,
sig: &DidOrDidMethodKeySignature<Attester>,
) -> Weight {
let len = attest.iri.as_ref().map_or(0, |v| v.len()) as u32;
sig.weight_for_sig_type::<T>(
|| Self::set_claim_sr25519(len),
|| Self::set_claim_ed25519(len),
|| Self::set_claim_secp256k1(len),
)
}
}