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
use crate::{
    common::{AuthorizeTarget, Limits, TypesAndLimits},
    did::{DidKey, DidMethodKey, DidOrDidMethodKey},
    offchain_signatures::schemes::*,
    util::{Associated, IncId, OptionExt, StorageRef},
};
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{ensure, DebugNoBound};
use sp_runtime::DispatchResult;
use sp_std::fmt::Debug;

use super::{
    AddOffchainSignatureParams, BBSPlusPublicKey, Config, Error, Event, PSPublicKey, Pallet,
    ParamsCounter, RemoveOffchainSignatureParams, SignatureParams,
};

/// DID owner of the signature parameters.
#[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 SignatureParamsOwner(pub DidOrDidMethodKey);

crate::impl_wrapper!(SignatureParamsOwner(DidOrDidMethodKey));

impl<T: TypesAndLimits> AuthorizeTarget<T, Self, DidKey> for SignatureParamsOwner {}
impl<T: TypesAndLimits> AuthorizeTarget<T, Self, DidMethodKey> for SignatureParamsOwner {}
impl<T: TypesAndLimits> AuthorizeTarget<T, (), DidKey> for SignatureParamsOwner {}
impl<T: TypesAndLimits> AuthorizeTarget<T, (), DidMethodKey> for SignatureParamsOwner {}

impl<T: TypesAndLimits> Associated<T> for SignatureParamsOwner {
    type Value = IncId;
}

impl<T: Config> StorageRef<T> for SignatureParamsOwner {
    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(&mut Option<IncId>) -> Result<R, E>,
    {
        ParamsCounter::<T>::try_mutate_exists(self, |entry| f(entry.initialized()))
    }

    fn view_associated<F, R>(self, f: F) -> R
    where
        F: FnOnce(Option<IncId>) -> R,
    {
        f(Some(ParamsCounter::<T>::get(self)))
    }
}

pub type SignatureParamsStorageKey = (SignatureParamsOwner, IncId);
pub type BBSPublicKeyWithParams<T> = (BBSPublicKey<T>, Option<BBSParameters<T>>);
pub type BBSPlusPublicKeyWithParams<T> = (BBSPlusPublicKey<T>, Option<BBSPlusParameters<T>>);
pub type PSPublicKeyWithParams<T> = (PSPublicKey<T>, Option<PSParameters<T>>);
pub type BBDT16PublicKeyWithParams<T> = (BBDT16PublicKey<T>, Option<BBDT16Parameters<T>>);

/// Signature parameters. Currently can be either `BBS`, `BBS+` or `Pointcheval-Sanders`.
#[derive(
    scale_info_derive::TypeInfo, Encode, Decode, Clone, PartialEq, Eq, DebugNoBound, MaxEncodedLen,
)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
    feature = "serde",
    serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub enum OffchainSignatureParams<T: Limits> {
    /// Signature parameters for the BBS signature scheme.
    BBS(BBSParameters<T>),
    /// Signature parameters for the BBS+ signature scheme.
    BBSPlus(BBSPlusParameters<T>),
    /// Signature parameters for the Pointcheval-Sanders signature scheme.
    PS(PSParameters<T>),
    /// Signature parameters for the BBDT16 signature scheme.
    BBDT16(BBDT16Parameters<T>),
}

impl<T: Limits> OffchainSignatureParams<T> {
    /// Returns underlying parameters if it corresponds to the BBS scheme.
    pub fn into_bbs(self) -> Option<BBSParameters<T>> {
        self.try_into().ok()
    }

    /// Returns underlying parameters if it corresponds to the BBS+ scheme.
    pub fn into_bbs_plus(self) -> Option<BBSPlusParameters<T>> {
        self.try_into().ok()
    }

    /// Returns underlying parameters if it corresponds to the Pointcheval-Sanders scheme.
    pub fn into_ps(self) -> Option<PSParameters<T>> {
        self.try_into().ok()
    }

    /// Returns underlying parameters if it corresponds to the BBDT16 scheme.
    pub fn into_bbdt16(self) -> Option<BBDT16Parameters<T>> {
        self.try_into().ok()
    }

    /// Returns underlying **unchecked** bytes representation for parameters corresponding to either signature scheme.
    pub fn bytes(&self) -> &[u8] {
        match self {
            Self::BBS(params) => &params.bytes[..],
            Self::BBSPlus(params) => &params.bytes[..],
            Self::PS(params) => &params.bytes[..],
            Self::BBDT16(params) => &params.bytes[..],
        }
    }

    /// Returns underlying label for a key corresponding to either signature scheme.
    pub fn label(&self) -> Option<&[u8]> {
        match self {
            Self::BBS(params) => params.label.as_ref().map(|slice| &slice[..]),
            Self::BBSPlus(params) => params.label.as_ref().map(|slice| &slice[..]),
            Self::PS(params) => params.label.as_ref().map(|slice| &slice[..]),
            Self::BBDT16(params) => params.label.as_ref().map(|slice| &slice[..]),
        }
    }
}

impl<T: Config> Pallet<T> {
    pub(super) fn add_params_(
        AddOffchainSignatureParams { params, .. }: AddOffchainSignatureParams<T>,
        params_counter: &mut IncId,
        signer: SignatureParamsOwner,
    ) -> DispatchResult {
        SignatureParams::<T>::insert(signer, params_counter.inc(), params);

        Self::deposit_event(Event::ParamsAdded(signer, *params_counter));
        Ok(())
    }

    pub(super) fn remove_params_(
        RemoveOffchainSignatureParams {
            params_ref: (did, counter),
            ..
        }: RemoveOffchainSignatureParams<T>,
        (): (),
        owner: SignatureParamsOwner,
    ) -> DispatchResult {
        // Only the DID that added the param can it
        ensure!(did == owner, Error::<T>::NotOwner);

        ensure!(
            SignatureParams::<T>::contains_key(did, counter),
            Error::<T>::ParamsDontExist
        );

        SignatureParams::<T>::remove(did, counter);

        Self::deposit_event(Event::ParamsRemoved(did, counter));
        Ok(())
    }

    pub fn did_params(
        did: &SignatureParamsOwner,
    ) -> impl Iterator<Item = (IncId, OffchainSignatureParams<T>)> {
        SignatureParams::<T>::iter_prefix(did)
    }
}