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
use crate::{
common::Signature,
did,
util::{Action, Associated},
};
use codec::Encode;
use core::ops::Deref;
use sp_runtime::{DispatchError, DispatchResult};
use super::{GetKey, ToStateChange, TypesAndLimits};
pub trait AuthorizeTarget<T, Target, Key>
where
Target: Associated<T>,
{
fn ensure_authorizes_target<A>(
&self,
_: &Key,
_: &A,
_: Option<&Target::Value>,
) -> DispatchResult
where
A: Action<Target = Target>,
{
Ok(())
}
}
type AuthorizationResult<S> =
Result<Option<Authorization<<S as Signature>::Signer, <S as Signature>::Key>>, DispatchError>;
pub trait AuthorizeSignedAction<T: TypesAndLimits, A: Action>:
Signature + GetKey<Self::Key>
where
A: ToStateChange<T>,
A::Target: Associated<T>,
Self::Signer: AuthorizeTarget<T, A::Target, Self::Key> + Deref,
<Self::Signer as Deref>::Target: AuthorizeTarget<T, A::Target, Self::Key>,
{
fn authorizes_signed_action(
&self,
action: &A,
value: Option<&<A::Target as Associated<T>>::Value>,
) -> AuthorizationResult<Self>
where
T: crate::did::Config,
{
let signer_pubkey = self.key::<T>().ok_or(did::Error::<T>::NoKeyForDid)?;
let encoded_state_change = action.to_state_change().encode();
let signer = self.signer().ok_or(did::Error::<T>::InvalidSigner)?;
(*signer).ensure_authorizes_target(&signer_pubkey, action, value.as_ref().copied())?;
signer.ensure_authorizes_target(&signer_pubkey, action, value.as_ref().copied())?;
let ok = self
.verify_bytes(encoded_state_change, &signer_pubkey)
.map_err(did::Error::<T>::from)?;
Ok(ok.then_some(Authorization {
signer,
key: signer_pubkey,
}))
}
}
impl<T: TypesAndLimits, A: Action, S> AuthorizeSignedAction<T, A> for S
where
A::Target: Associated<T>,
A: ToStateChange<T>,
S: Signature + GetKey<S::Key>,
S::Signer: AuthorizeTarget<T, A::Target, S::Key> + Deref,
<S::Signer as Deref>::Target: AuthorizeTarget<T, A::Target, S::Key>,
{
}
pub struct Authorization<S, K> {
pub signer: S,
pub key: K,
}