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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
//! # NFT Pallet
//! This NFT pallet is directly inspired from the Galactic Council nft pallet.
//! Url: `https://github.com/galacticcouncil/warehouse`
//!
//!
//! The NFT Pallet is used to manage & perform diverse actions on NFTs
//! in the FairSquares framework.
//!
//! ## Overview
//!
//! Management of NFTs assets is made possible through the following actions:
//! - NFT Collection creation
//! - NFT asset creation or Minting
//! - NFT asset transfer
//! - NFT asset burning
//! - NFT collection destruction
//! Access to each action is restricted to a specific role.
//!
//! ### Dispatchable Functions

//! * `create_collection` - Restricted to Servicer role, this function
//! creates an NFT Collection of the given collection and sets its metadata

//! * `mint` - Restricted to Seller role, this function mints a NFT in the
//! specified collection, and sets its metadata

//! * `transfer` - Restricted to Servicer role, this function called by A(servicer)
//!  transfers NFT from account B(seller) to account C.

//! * `burn` - Restricted to Servicer role, this function Removes a NFT item from existence

//! * `destroy_collection` - Restricted to Servicer role, this function Removes a Collection from
//!   existence

#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::unused_unit)]
#![allow(clippy::upper_case_acronyms)]

use codec::HasCompact;
use frame_support::{
	dispatch::DispatchResult,
	ensure,
	traits::{tokens::nonfungibles::*, Get},
	transactional, BoundedVec,
};
use frame_system::{ensure_root, ensure_signed};
use pallet_uniques::DestroyWitness;

pub use functions::*;
pub use pallet_roles as Roles;
use sp_runtime::{
	traits::{AtLeast32BitUnsigned, StaticLookup, Zero},
	DispatchError,
};
use sp_std::boxed::Box;
pub use types::*;
use weights::WeightInfo;

mod benchmarking;
pub mod functions;
pub mod types;
pub mod weights;

#[cfg(test)]
pub mod mock;

#[cfg(test)]
mod tests;

pub type BoundedVecOfUnq<T> = BoundedVec<u8, <T as pallet_uniques::Config>::StringLimit>;
type CollectionInfoOf<T> = CollectionInfo<BoundedVecOfUnq<T>>;
pub type ItemInfoOf<T> = ItemInfo<BoundedVec<u8, <T as pallet_uniques::Config>::StringLimit>>;
pub type Acc = Roles::Accounts;

// Re-export pallet items so that they can be accessed from the crate namespace.
pub use pallet::*;

#[frame_support::pallet]
pub mod pallet {

	use super::*;
	//use frame_system::WeightInfo;
	use frame_support::{pallet_prelude::*, traits::EnsureOrigin};
	use frame_system::pallet_prelude::OriginFor;

	#[pallet::pallet]
	#[pallet::without_storage_info]
	pub struct Pallet<T>(_);

	#[pallet::config]
	pub trait Config: frame_system::Config + pallet_uniques::Config + pallet_roles::Config {
		type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
		type WeightInfo: WeightInfo;
		type ProtocolOrigin: EnsureOrigin<Self::Origin>;
		type NftCollectionId: Member
			+ Parameter
			+ Default
			+ Copy
			+ HasCompact
			+ AtLeast32BitUnsigned
			+ Into<Self::CollectionId>
			+ From<Self::CollectionId>;
		type NftItemId: Member
			+ Parameter
			+ Default
			+ Copy
			+ HasCompact
			+ AtLeast32BitUnsigned
			+ Into<Self::ItemId>
			+ From<Self::ItemId>;
		type Permissions: NftPermission<Acc>;

		/// Collection IDs reserved for runtime up to the following constant
		#[pallet::constant]
		type ReserveCollectionIdUpTo: Get<Self::NftCollectionId>;
	}

	#[pallet::storage]
	#[pallet::getter(fn collections)]
	/// Stores Collection info
	pub type Collections<T: Config> =
		StorageMap<_, Twox64Concat, T::NftCollectionId, CollectionInfoOf<T>>;

	#[pallet::storage]
	#[pallet::getter(fn items)]
	/// Stores Item info
	pub type Items<T: Config> = StorageDoubleMap<
		_,
		Twox64Concat,
		T::NftCollectionId,
		Twox64Concat,
		T::NftItemId,
		ItemInfoOf<T>,
	>;

	#[pallet::type_value]
	///Initializing function for the approval waiting list
	pub fn InitDefault<T: Config>() -> Vec<u32> {
		vec![0, 0, 0, 0, 0, 0, 0]
	}

	#[pallet::storage]
	#[pallet::getter(fn itemid)]
	/// Update Item ID
	pub type ItemsCount<T: Config> = StorageValue<_, Vec<u32>, ValueQuery, InitDefault<T>>;

	#[pallet::genesis_config]
	pub struct GenesisConfig<T: Config> {
		pub owner: Option<T::AccountId>,
		pub collection_id: Option<u32>,
		pub created_by: Option<Acc>,
		pub metadata: Option<BoundedVecOfUnq<T>>,
	}
	#[cfg(feature = "std")]
	impl<T: Config> Default for GenesisConfig<T> {
		fn default() -> Self {
			Self {
				owner: Default::default(),
				collection_id: Default::default(),
				created_by: Default::default(),
				metadata: Default::default(),
			}
		}
	}

	#[pallet::genesis_build]
	impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
		fn build(&self) {
			let index = self.collection_id.unwrap();
			for n in 0..index {
				crate::Pallet::<T>::do_create_collection(
					self.owner.clone().unwrap(),
					n.into(),
					self.created_by.unwrap(),
					self.metadata.clone().unwrap(),
				)
				.ok();
			}
		}
	}

	#[pallet::call]
	impl<T: Config> Pallet<T> {
		/// Creates an NFT Collection of the given Collection
		/// and sets its metadata
		///
		/// Parameters:
		/// - `collection_id`: Identifier of a Collection
		/// - `metadata`: Arbitrary data about a Collection, e.g. IPFS hash or name
		///
		/// Emits CollectionCreated event
		#[pallet::weight(<T as pallet::Config>::WeightInfo::create_collection())]
		#[transactional]
		pub fn create_collection(
			origin: OriginFor<T>,
			collection_id: PossibleCollections,
			metadata: BoundedVecOfUnq<T>,
		) -> DispatchResult {
			let sender = ensure_signed(origin)?;
			let coll_id: CollectionId = collection_id.value();

			//ensure!(T::ReserveCollectionIdUpTo::get() != coll_id.clone().into(),
			// Error::<T>::IdReserved);
			ensure!(!Self::is_id_reserved(coll_id.into()), Error::<T>::IdReserved);
			let created_by = Roles::Pallet::<T>::get_roles(&sender).unwrap();
			ensure!(T::Permissions::can_create(&created_by), Error::<T>::NotPermitted);

			Self::do_create_collection(sender, coll_id.into(), created_by, metadata)?;

			Ok(())
		}

		/// Mints a NFT in the specified Collection
		/// and sets its metadata
		///
		/// Parameters:
		/// - `collection_id`: The Collection of the asset to be minted.
		/// - `item_id`: The Collection of the asset to be minted.
		/// - `metadata`: Arbitrary data about an Item, e.g. IPFS hash or symbol
		#[pallet::weight(<T as pallet::Config>::WeightInfo::mint())]
		#[transactional]
		pub fn mint(
			origin: OriginFor<T>,
			collection_id: PossibleCollections,
			metadata: BoundedVecOfUnq<T>,
		) -> DispatchResult {
			let sender = ensure_signed(origin)?;
			let coll_id: CollectionId = collection_id.clone().value();
			let idx = collection_id.value() as usize;
			let created_by = Roles::Pallet::<T>::get_roles(&sender).unwrap();
			let item_id = Self::itemid()[idx];

			ensure!(T::Permissions::can_mint(&created_by), Error::<T>::NotPermitted);

			Self::do_mint(sender, coll_id.into(), item_id.into(), metadata)?;
			ItemsCount::<T>::mutate(|x| {
				x[idx] += 1;
			});

			Ok(())
		}

		/// Triggered by Root(`origin`), this transfers NFT from owner account to `dest` account
		///
		/// Parameters:
		/// - `collection_id`: The Collection of the asset to be transferred.
		/// - `item_id`: The Item of the asset to be transferred.
		/// - `dest`: The account to receive ownership of the asset.
		#[pallet::weight(<T as pallet::Config>::WeightInfo::transfer())]
		#[transactional]
		pub fn transfer(
			origin: OriginFor<T>,
			collection_id: PossibleCollections,
			item_id: T::NftItemId,
			dest: <T::Lookup as StaticLookup>::Source,
		) -> DispatchResult {
			//the transaction is triggered by Root
			ensure_root(origin)?;

			//Nft transfered from old to new owner
			let coll_id: CollectionId = collection_id.value();
			let dest = T::Lookup::lookup(dest)?;
			let owner = Self::owner(coll_id.into(), item_id).ok_or(Error::<T>::ItemUnknown)?;

			Self::do_transfer(coll_id.into(), item_id, owner, dest)?;

			Ok(())
		}

		/// Triggered by a servicer (`origin`) this removes a token from existence
		///
		/// Parameters:
		/// - `collection_id`: The Collection of the asset to be burned.
		/// - `item_id`: The Item of the asset to be burned.
		#[pallet::weight(<T as pallet::Config>::WeightInfo::burn())]
		#[transactional]
		pub fn burn(
			origin: OriginFor<T>,
			collection_id: PossibleCollections,
			item_id: T::NftItemId,
		) -> DispatchResult {
			let sender = ensure_signed(origin)?;
			let triggered_by = Roles::Pallet::<T>::get_roles(&sender).unwrap();
			ensure!(T::Permissions::can_burn(&triggered_by), Error::<T>::NotPermitted);

			let coll_id: CollectionId = collection_id.value();
			let owner = Self::owner(coll_id.into(), item_id).ok_or(Error::<T>::ItemUnknown)?;

			Self::do_burn(owner, coll_id.into(), item_id)?;

			Ok(())
		}

		/// Removes a Collection from existence
		///
		/// Parameters:
		/// - `collection_id`: The identifier of the asset Collection to be destroyed.
		#[pallet::weight(<T as pallet::Config>::WeightInfo::destroy_collection())]
		#[transactional]
		pub fn destroy_collection(
			origin: OriginFor<T>,
			collection_id: PossibleCollections,
		) -> DispatchResult {
			let sender = ensure_signed(origin)?;
			let coll_id: CollectionId = collection_id.value();

			let created_by = Roles::Pallet::<T>::get_roles(&sender).unwrap();

			ensure!(T::Permissions::can_destroy(&created_by), Error::<T>::NotPermitted);

			Self::do_destroy_collection(sender, coll_id.into())?;

			Ok(())
		}
	}

	#[pallet::hooks]
	impl<T: Config> Hooks<T::BlockNumber> for Pallet<T> {}

	#[pallet::event]
	#[pallet::generate_deposit(pub(crate) fn deposit_event)]
	pub enum Event<T: Config> {
		/// A Collection was created
		CollectionCreated {
			owner: T::AccountId,
			collection_id: T::NftCollectionId,
			created_by: Acc,
		},
		/// An Item was minted
		ItemMinted { owner: T::AccountId, collection_id: T::NftCollectionId, item_id: T::NftItemId },
		/// An Item was transferred
		ItemTransferred {
			from: T::AccountId,
			to: T::AccountId,
			collection_id: T::NftCollectionId,
			item_id: T::NftItemId,
		},
		/// An Item was burned
		ItemBurned { owner: T::AccountId, collection_id: T::NftCollectionId, item_id: T::NftItemId },
		/// A Collection was destroyed
		CollectionDestroyed { owner: T::AccountId, collection_id: T::NftCollectionId },
	}

	#[pallet::error]
	pub enum Error<T> {
		/// Count of items overflown
		NoAvailableItemId,
		/// Count of collections overflown
		NoAvailableCollectionId,
		/// Collection still contains minted tokens
		TokenCollectionNotEmpty,
		/// Collection does not exist
		CollectionUnknown,
		/// Item does not exist
		ItemUnknown,
		/// Operation not permitted
		NotPermitted,
		/// ID reserved for runtime
		IdReserved,
	}
}