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
//! Generic immutable single-owner storage.

#[cfg(feature = "serde")]
use crate::util::serde_hex;
use crate::{
    common::{signatures::ForSigType, AuthorizeTarget, Limits, Types},
    did::{self, DidKey, DidMethodKey, DidOrDidMethodKey, DidOrDidMethodKeySignature},
    util::{ActionWithNonce, Associated, BoundedBytes, Bytes, StorageRef},
};
use codec::{Decode, Encode, MaxEncodedLen};
use sp_std::fmt::Debug;

use frame_support::{
    dispatch::DispatchResult, ensure, weights::Weight, CloneNoBound, DebugNoBound, EqNoBound,
    PartialEqNoBound,
};
use sp_std::prelude::*;
use weights::*;

pub use pallet::*;

#[cfg(feature = "runtime-benchmarks")]
mod benchmarks;
#[cfg(test)]
mod tests;
mod weights;

/// Owner of a Blob.
#[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 BlobOwner(pub DidOrDidMethodKey);

impl<T: Limits> AuthorizeTarget<T, BlobId, DidKey> for BlobOwner {}
impl<T: Limits> AuthorizeTarget<T, BlobId, DidMethodKey> for BlobOwner {}

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

/// Size of the blob id in bytes
pub const ID_BYTE_SIZE: usize = 32;

/// The unique name for a blob.
#[derive(Encode, Decode, Clone, PartialEq, Eq, Copy, Ord, PartialOrd, MaxEncodedLen)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(omit_prefix)]
pub struct BlobId(#[cfg_attr(feature = "serde", serde(with = "serde_hex"))] pub [u8; ID_BYTE_SIZE]);

crate::impl_wrapper!(BlobId([u8; 32]));
crate::hex_debug!(BlobId);

impl<T: Limits> Associated<T> for BlobId {
    type Value = StoredBlob<T>;
}

impl<T: Config> StorageRef<T> for BlobId {
    fn view_associated<F, R>(self, f: F) -> R
    where
        F: FnOnce(Option<Self::Value>) -> R,
    {
        f(Blobs::<T>::get(self))
    }

    fn try_mutate_associated<F, R, E>(self, f: F) -> Result<R, E>
    where
        F: FnOnce(&mut Option<Self::Value>) -> Result<R, E>,
    {
        Blobs::<T>::try_mutate_exists(self, f)
    }
}

/// When a new blob is being registered, the following object is sent.
#[derive(Encode, Decode, CloneNoBound, PartialEqNoBound, DebugNoBound, EqNoBound)]
#[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 Blob {
    pub id: BlobId,
    pub blob: Bytes,
}

pub type StoredBlob<T> = (BlobOwner, BoundedBytes<<T as Limits>::MaxBlobSize>);

#[derive(Encode, Decode, DebugNoBound, Clone, PartialEq, Eq)]
#[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 AddBlob<T: Types> {
    pub blob: Blob,
    pub nonce: T::BlockNumber,
}

crate::impl_action_with_nonce! {
    AddBlob for BlobId: with 1 as len, blob.id as target
}

#[frame_support::pallet]
pub mod pallet {
    use super::*;
    use frame_support::pallet_prelude::*;
    use frame_system::pallet_prelude::*;

    #[pallet::config]
    pub trait Config: frame_system::Config + did::Config {}

    /// Error for the blob module.
    #[pallet::error]
    pub enum Error<T> {
        /// There is already a blob with same id
        BlobAlreadyExists,
        /// There is no such DID registered
        DidDoesNotExist,
        TooBig,
    }

    #[pallet::pallet]
    #[pallet::generate_store(pub(super) trait Store)]
    pub struct Pallet<T>(_);

    #[pallet::storage]
    #[pallet::getter(fn blob)]
    pub type Blobs<T: Config> = StorageMap<_, Blake2_128Concat, BlobId, StoredBlob<T>>;

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        /// Create a new immutable blob.
        #[pallet::weight(SubstrateWeight::<T>::new(add_blob, signature))]
        pub fn new(
            origin: OriginFor<T>,
            add_blob: AddBlob<T>,
            signature: DidOrDidMethodKeySignature<BlobOwner>,
        ) -> DispatchResult {
            ensure_signed(origin)?;

            add_blob
                .signed(signature)
                .execute_removable(Self::new_)
                .map_err(Into::into)
        }
    }

    impl<T: Config> Pallet<T> {
        fn new_(
            AddBlob { blob, .. }: AddBlob<T>,
            blob_opt: &mut Option<StoredBlob<T>>,
            signer: BlobOwner,
        ) -> DispatchResult {
            let blob_bytes = blob.blob.try_into().map_err(|_| Error::<T>::TooBig)?;

            // check
            ensure!(
                blob_opt.replace((signer, blob_bytes)).is_none(),
                Error::<T>::BlobAlreadyExists
            );

            Ok(())
        }
    }
}

impl<T: Config> SubstrateWeight<T> {
    #[allow(clippy::new_ret_no_self)]
    fn new(
        AddBlob { blob, .. }: &AddBlob<T>,
        sig: &DidOrDidMethodKeySignature<BlobOwner>,
    ) -> Weight {
        sig.weight_for_sig_type::<T>(
            || Self::new_sr25519(blob.blob.len() as u32),
            || Self::new_ed25519(blob.blob.len() as u32),
            || Self::new_secp256k1(blob.blob.len() as u32),
        )
    }
}