git.delta.rocks / unique-network / refs/commits / 73992bf599ce

difftreelog

source

pallets/proxy-rmrk-equip/src/lib.rs14.8 KiBsourcehistory
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617//! # RMRK Core Proxy Pallet18//! 19//! A pallet used as proxy for RMRK Core (<https://rmrk-team.github.io/rmrk-substrate/#/pallets/rmrk-core>).20//! 21//! - [`Config`]22//! - [`Call`]23//! - [`Pallet`]24//! 25//! ## Overview26//! 27//! The RMRK Equip Proxy pallet mirrors the functionality of RMRK Equip, 28//! binding its externalities to Unique's own underlying structure.29//! It is purposed to mimic RMRK Equip exactly, allowing seamless integrations30//! of solutions based on RMRK.31//! 32//! RMRK Equip itself contains functionality to equip NFTs, and work with Bases,33//! Parts, and Themes.34//! 35//! Equip Proxy is responsible for a more specific area of RMRK, and heavily relies on the Core. 36//! For a more foundational description of proxy implementation, please refer to [`pallet_rmrk_core`].37//! 38//! *Note*, that while RMRK itself is subject to active development and restructuring,39//! the proxy may be caught temporarily out of date.40//! 41//! ### What is RMRK?42//! 43//! RMRK is a set of NFT standards which compose several "NFT 2.0 lego" primitives. 44//! Putting these legos together allows a user to create NFT systems of arbitrary complexity.45//! 46//! Meaning, RMRK NFTs are dynamic, able to nest into each other and form a hierarchy,47//! make use of specific changeable and partially shared metadata in the form of resources, 48//! and more.49//! 50//! Visit RMRK documentation and repositories to learn more:51//! - Docs: <https://docs.rmrk.app/getting-started/>52//! - FAQ: <https://coda.io/@rmrk/faq>53//! - Substrate code repository: <https://github.com/rmrk-team/rmrk-substrate>54//! - RMRK spec repository: <https://github.com/rmrk-team/rmrk-spec>55//! 56//! ## Proxy Implementation57//! 58//! An external user is supposed to be able to utilize this proxy as they would59//! utilize RMRK, and get exactly the same results. Normally, Unique transactions60//! are off-limits to RMRK collections and tokens, and vice versa. However,61//! the information stored on chain can be freely interpreted by storage reads and RPCs.62//! 63//! ### ID Mapping64//! 65//! RMRK's collections' IDs are counted independently of Unique's and start at 0.66//! Note that tokens' IDs still start at 1.67//! The collections themselves, as well as tokens, are stored as Unique collections,68//! and thus RMRK IDs are mapped to Unique IDs (but not vice versa).69//! 70//! ### External/Internal Collection Insulation71//! 72//! A Unique transaction cannot target collections purposed for RMRK,73//! and they are flagged as `external` to specify that. On the other hand, 74//! due to the mapping, RMRK transactions and RPCs simply cannot reach Unique collections.75//! 76//! ### Native Properties77//! 78//! Many of RMRK's native parameters are stored as scoped properties of a collection 79//! or an NFT on the chain. Scoped properties are prefixed with `rmrk:`, where `:`80//! is an unacceptable symbol in user-defined proeprties, which, along with other safeguards,81//! makes them impossible to tamper with.82//! 83//! ### Collection and NFT Types84//! 85//! RMRK introduces the concept of a Base, which is a catalgoue of Parts, 86//! possible components of an NFT. Due to its similarity with the functionality87//! of a token collection, a Base is stored and handled as one, and the Base's Parts and Themes88//! are the collection's NFTs. See [`CollectionType`](pallet_rmrk_core::misc::CollectionType) and 89//! [`NftType`](pallet_rmrk_core::misc::NftType).90//! 91//! ## Interface92//! 93//! ### Dispatchables94//! 95//! - `create_base` - Create a new Base.96//! - `theme_add` - Add a Theme to a Base.97//! - `equippable` - Update the array of Collections allowed to be equipped to a Base's specified Slot Part.9899#![cfg_attr(not(feature = "std"), no_std)]100101use frame_support::{pallet_prelude::*, transactional, BoundedVec, dispatch::DispatchResult};102use frame_system::{pallet_prelude::*, ensure_signed};103use sp_runtime::DispatchError;104use up_data_structs::*;105use pallet_common::{Pallet as PalletCommon, Error as CommonError};106use pallet_rmrk_core::{107	Pallet as PalletCore, Error as CoreError,108	misc::{self, *},109	property::RmrkProperty::*,110};111use pallet_nonfungible::{Pallet as PalletNft, NonfungibleHandle};112use pallet_evm::account::CrossAccountId;113use weights::WeightInfo;114115pub use pallet::*;116117#[cfg(feature = "runtime-benchmarks")]118pub mod benchmarking;119pub mod rpc;120pub mod weights;121122pub type SelfWeightOf<T> = <T as Config>::WeightInfo;123124#[frame_support::pallet]125pub mod pallet {126	use super::*;127128	#[pallet::config]129	pub trait Config: frame_system::Config + pallet_rmrk_core::Config {130		/// Overarching event type.131		type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;132133		/// The weight information of this pallet.134		type WeightInfo: WeightInfo;135	}136137	/// Map of a base ID and a part ID to an NFT in the base collection serving as the part.138	#[pallet::storage]139	#[pallet::getter(fn internal_part_id)]140	pub type InernalPartId<T: Config> =141		StorageDoubleMap<_, Twox64Concat, CollectionId, Twox64Concat, RmrkPartId, TokenId>;142143	/// Checkmark that a base has a Theme NFT named "default".144	#[pallet::storage]145	#[pallet::getter(fn base_has_default_theme)]146	pub type BaseHasDefaultTheme<T: Config> =147		StorageMap<_, Twox64Concat, CollectionId, bool, ValueQuery>;148149	#[pallet::pallet]150	#[pallet::generate_store(pub(super) trait Store)]151	pub struct Pallet<T>(_);152153	#[pallet::event]154	#[pallet::generate_deposit(pub(super) fn deposit_event)]155	pub enum Event<T: Config> {156		BaseCreated {157			issuer: T::AccountId,158			base_id: RmrkBaseId,159		},160		EquippablesUpdated {161			base_id: RmrkBaseId,162			slot_id: RmrkSlotId,163		},164	}165166	#[pallet::error]167	pub enum Error<T> {168		/// No permission to perform action.169		PermissionError,170		/// Could not find an ID for a base collection. It is likely there were too many collections created on the chain.171		NoAvailableBaseId,172		/// Could not find a suitable ID for a part, likely too many part tokens were created in the base.173		NoAvailablePartId,174		/// Base collection linked to this ID does not exist.175		BaseDoesntExist,176		/// No theme named "default" is associated with the Base.177		NeedsDefaultThemeFirst,178		/// Part linked to this ID does not exist.179		PartDoesntExist,180		/// Cannot assign equippables to a fixed part.181		NoEquippableOnFixedPart,182	}183184	#[pallet::call]185	impl<T: Config> Pallet<T> {186		/// Create a new Base.187		/// 188		/// Modeled after the [base interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/base.md)189		/// 190		/// # Permissions191		/// - Anyone - will be assigned as the issuer of the base.192		///193		/// # Arguments:194		/// - `base_type`: Arbitrary media type, e.g. "svg".195		/// - `symbol`: Arbitrary client-chosen symbol.196		/// - `parts`: Array of Fixed and Slot parts composing the base, 197		/// confined in length by [`RmrkPartsLimit`](up_data_structs::RmrkPartsLimit).198		#[transactional]199		#[pallet::weight(<SelfWeightOf<T>>::create_base(parts.len() as u32))]200		pub fn create_base(201			origin: OriginFor<T>,202			base_type: RmrkString,203			symbol: RmrkBaseSymbol,204			parts: BoundedVec<RmrkPartType, RmrkPartsLimit>,205		) -> DispatchResult {206			let sender = ensure_signed(origin)?;207			let cross_sender = T::CrossAccountId::from_sub(sender.clone());208209			let data = CreateCollectionData {210				limits: None,211				token_prefix: symbol212					.into_inner()213					.try_into()214					.map_err(|_| <CommonError<T>>::CollectionTokenPrefixLimitExceeded)?,215				..Default::default()216			};217218			let collection_id_res =219				<PalletNft<T>>::init_collection(cross_sender.clone(), data, true);220221			if let Err(DispatchError::Arithmetic(_)) = &collection_id_res {222				return Err(<Error<T>>::NoAvailableBaseId.into());223			}224225			let collection_id = collection_id_res?;226227			<PalletCommon<T>>::set_scoped_collection_properties(228				collection_id,229				PropertyScope::Rmrk,230				[231					<PalletCore<T>>::encode_rmrk_property(CollectionType, &misc::CollectionType::Base)?,232					<PalletCore<T>>::encode_rmrk_property(BaseType, &base_type)?,233				]234				.into_iter(),235			)?;236237			let collection = <PalletCore<T>>::get_nft_collection(collection_id)?;238239			for part in parts {240				Self::create_part(&cross_sender, &collection, part)?;241			}242243			Self::deposit_event(Event::BaseCreated {244				issuer: sender,245				base_id: collection_id.0,246			});247248			Ok(())249		}250251		/// Add a Theme to a Base.252		/// A Theme named "default" is required prior to adding other Themes.253		/// 254		/// Modeled after [themeadd interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/themeadd.md).255		///256		/// # Permissions:257		/// - Base issuer258		/// 259		/// # Arguments:260		/// - `base_id`: Base ID containing the Theme to be updated.261		/// - `theme`: Theme to add to the Base.  A Theme has a name and properties, which are an262		///   array of [key, value, inherit].263		///   - `key`: Arbitrary BoundedString, defined by client.264		///   - `value`: Arbitrary BoundedString, defined by client.265		///   - `inherit`: Optional bool.266		#[transactional]267		#[pallet::weight(<SelfWeightOf<T>>::theme_add(theme.properties.len() as u32))]268		pub fn theme_add(269			origin: OriginFor<T>,270			base_id: RmrkBaseId,271			theme: RmrkBoundedTheme,272		) -> DispatchResult {273			let sender = ensure_signed(origin)?;274275			let sender = T::CrossAccountId::from_sub(sender);276			let owner = &sender;277278			let collection_id: CollectionId = base_id.into();279280			let collection = Self::get_base(collection_id)?;281282			if theme.name.as_slice() == b"default" {283				<BaseHasDefaultTheme<T>>::insert(collection_id, true);284			} else if !Self::base_has_default_theme(collection_id) {285				return Err(<Error<T>>::NeedsDefaultThemeFirst.into());286			}287288			let token_id = <PalletCore<T>>::create_nft(289				&sender,290				owner,291				&collection,292				[293					<PalletCore<T>>::encode_rmrk_property(TokenType, &NftType::Theme)?,294					<PalletCore<T>>::encode_rmrk_property(ThemeName, &theme.name)?,295					<PalletCore<T>>::encode_rmrk_property(ThemeInherit, &theme.inherit)?,296				]297				.into_iter(),298			)299			.map_err(|_| <Error<T>>::PermissionError)?;300301			for property in theme.properties {302				<PalletNft<T>>::set_scoped_token_property(303					collection_id,304					token_id,305					PropertyScope::Rmrk,306					<PalletCore<T>>::encode_rmrk_property(307						UserProperty(property.key.as_slice()),308						&property.value,309					)?,310				)?;311			}312313			Ok(())314		}315316		/// Update the array of Collections allowed to be equipped to a Base's specified Slot Part.317		/// 318		/// Modeled after [equippable interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/equippable.md).319		///320		/// # Permissions:321		/// - Base issuer322		/// 323		/// # Arguments:324		/// - `base_id`: Base containing the Slot Part to be updated.325		/// - `part_id`: Slot Part whose Equippable List is being updated.326		/// - `equippables`: List of equippables that will override the current Equippables list.327		#[transactional]328		#[pallet::weight(<SelfWeightOf<T>>::equippable())]329		pub fn equippable(330			origin: OriginFor<T>,331			base_id: RmrkBaseId,332			slot_id: RmrkSlotId,333			equippables: RmrkEquippableList,334		) -> DispatchResult {335			let sender = ensure_signed(origin)?;336337			let base_collection_id = base_id.into();338			let collection = Self::get_base(base_collection_id)?;339340			<PalletCore<T>>::check_collection_owner(341				&collection,342				&T::CrossAccountId::from_sub(sender),343			)344			.map_err(|err| {345				if err == <CoreError<T>>::NoPermission.into() {346					<Error<T>>::PermissionError.into()347				} else {348					err349				}350			})?;351352			let part_id = Self::internal_part_id(base_collection_id, slot_id)353				.ok_or(<Error<T>>::PartDoesntExist)?;354355			let nft_type = <PalletCore<T>>::get_nft_type(base_collection_id, part_id)356				.map_err(|_| <Error<T>>::PartDoesntExist)?;357358			match nft_type {359				NftType::Regular | NftType::Theme => return Err(<Error<T>>::PermissionError.into()),360				NftType::FixedPart => return Err(<Error<T>>::NoEquippableOnFixedPart.into()),361				NftType::SlotPart => {362					<PalletNft<T>>::set_scoped_token_property(363						base_collection_id,364						part_id,365						PropertyScope::Rmrk,366						<PalletCore<T>>::encode_rmrk_property(EquippableList, &equippables)?,367					)?;368				}369			}370371			Self::deposit_event(Event::EquippablesUpdated { base_id, slot_id });372373			Ok(())374		}375	}376}377378impl<T: Config> Pallet<T> {379	/// Create or renew an NFT serving as a part, setting its properties380	/// to those of the part.381	fn create_part(382		sender: &T::CrossAccountId,383		collection: &NonfungibleHandle<T>,384		part: RmrkPartType,385	) -> DispatchResult {386		let owner = sender;387388		let part_id = part.id();389		let src = part.src();390		let z_index = part.z_index();391392		let nft_type = match part {393			RmrkPartType::FixedPart(_) => NftType::FixedPart,394			RmrkPartType::SlotPart(_) => NftType::SlotPart,395		};396397		let token_id = match Self::internal_part_id(collection.id, part_id) {398			Some(token_id) => token_id,399			None => {400				let token_id =401					<PalletCore<T>>::create_nft(sender, owner, collection, [].into_iter())402						.map_err(|err| match err {403							DispatchError::Arithmetic(_) => <Error<T>>::NoAvailablePartId.into(),404							err => err,405						})?;406407				<InernalPartId<T>>::insert(collection.id, part_id, token_id);408409				<PalletNft<T>>::set_scoped_token_property(410					collection.id,411					token_id,412					PropertyScope::Rmrk,413					<PalletCore<T>>::encode_rmrk_property(ExternalPartId, &part_id)?,414				)?;415416				token_id417			}418		};419420		<PalletNft<T>>::set_scoped_token_properties(421			collection.id,422			token_id,423			PropertyScope::Rmrk,424			[425				<PalletCore<T>>::encode_rmrk_property(TokenType, &nft_type)?,426				<PalletCore<T>>::encode_rmrk_property(Src, &src)?,427				<PalletCore<T>>::encode_rmrk_property(ZIndex, &z_index)?,428			]429			.into_iter(),430		)?;431432		if let RmrkPartType::SlotPart(part) = part {433			<PalletNft<T>>::set_scoped_token_property(434				collection.id,435				token_id,436				PropertyScope::Rmrk,437				<PalletCore<T>>::encode_rmrk_property(EquippableList, &part.equippable)?,438			)?;439		}440441		Ok(())442	}443444	/// Ensure that the collection under the base ID is a base collection,445	/// and fetch it.446	fn get_base(base_id: CollectionId) -> Result<NonfungibleHandle<T>, DispatchError> {447		let collection =448			<PalletCore<T>>::get_typed_nft_collection(base_id, misc::CollectionType::Base)449				.map_err(|err| {450					if err == <CoreError<T>>::CollectionUnknown.into() {451						<Error<T>>::BaseDoesntExist.into()452					} else {453						err454					}455				})?;456		collection.check_is_external()?;457458		Ok(collection)459	}460}