mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
f6b9e056ae
* Disallow admin to transfer or burn items he doesn't own * lock_collection should be accessible by collection's owner only * Allow admin to access lock_item_properties() * Fix do_lock_item_properties * Move update_mint_settings() to Issuer * Rename check_owner to check_origin * Typo * Make admin to be in charge of managing the metadata * Make admin the main attributes manager * offchain mint should be signed by Issuer * Remove the special case when the Issuer calls the mint() function * Rework burn and destroy methods * Return back item_metadatas * Don't repatriate the deposit on transfer * A bit more tests * One more test * Add migration * Chore * Clippy * Rename to owned_item * Address comments * Replace .filter_map with .find_map * Improve version validation in pre_upgrade() * ".git/.scripts/commands/bench/bench.sh" pallet dev pallet_nfts --------- Co-authored-by: parity-processbot <>
118 lines
3.4 KiB
Rust
118 lines
3.4 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use crate::*;
|
|
use frame_support::pallet_prelude::*;
|
|
|
|
impl<T: Config<I>, I: 'static> Pallet<T, I> {
|
|
pub(crate) fn do_lock_collection(
|
|
origin: T::AccountId,
|
|
collection: T::CollectionId,
|
|
lock_settings: CollectionSettings,
|
|
) -> DispatchResult {
|
|
ensure!(Self::collection_owner(collection) == Some(origin), Error::<T, I>::NoPermission);
|
|
ensure!(
|
|
!lock_settings.is_disabled(CollectionSetting::DepositRequired),
|
|
Error::<T, I>::WrongSetting
|
|
);
|
|
CollectionConfigOf::<T, I>::try_mutate(collection, |maybe_config| {
|
|
let config = maybe_config.as_mut().ok_or(Error::<T, I>::NoConfig)?;
|
|
|
|
for setting in lock_settings.get_disabled() {
|
|
config.disable_setting(setting);
|
|
}
|
|
|
|
Self::deposit_event(Event::<T, I>::CollectionLocked { collection });
|
|
Ok(())
|
|
})
|
|
}
|
|
|
|
pub(crate) fn do_lock_item_transfer(
|
|
origin: T::AccountId,
|
|
collection: T::CollectionId,
|
|
item: T::ItemId,
|
|
) -> DispatchResult {
|
|
ensure!(
|
|
Self::has_role(&collection, &origin, CollectionRole::Freezer),
|
|
Error::<T, I>::NoPermission
|
|
);
|
|
|
|
let mut config = Self::get_item_config(&collection, &item)?;
|
|
if !config.has_disabled_setting(ItemSetting::Transferable) {
|
|
config.disable_setting(ItemSetting::Transferable);
|
|
}
|
|
ItemConfigOf::<T, I>::insert(&collection, &item, config);
|
|
|
|
Self::deposit_event(Event::<T, I>::ItemTransferLocked { collection, item });
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn do_unlock_item_transfer(
|
|
origin: T::AccountId,
|
|
collection: T::CollectionId,
|
|
item: T::ItemId,
|
|
) -> DispatchResult {
|
|
ensure!(
|
|
Self::has_role(&collection, &origin, CollectionRole::Freezer),
|
|
Error::<T, I>::NoPermission
|
|
);
|
|
|
|
let mut config = Self::get_item_config(&collection, &item)?;
|
|
if config.has_disabled_setting(ItemSetting::Transferable) {
|
|
config.enable_setting(ItemSetting::Transferable);
|
|
}
|
|
ItemConfigOf::<T, I>::insert(&collection, &item, config);
|
|
|
|
Self::deposit_event(Event::<T, I>::ItemTransferUnlocked { collection, item });
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn do_lock_item_properties(
|
|
maybe_check_origin: Option<T::AccountId>,
|
|
collection: T::CollectionId,
|
|
item: T::ItemId,
|
|
lock_metadata: bool,
|
|
lock_attributes: bool,
|
|
) -> DispatchResult {
|
|
if let Some(check_origin) = &maybe_check_origin {
|
|
ensure!(
|
|
Self::has_role(&collection, &check_origin, CollectionRole::Admin),
|
|
Error::<T, I>::NoPermission
|
|
);
|
|
}
|
|
|
|
ItemConfigOf::<T, I>::try_mutate(collection, item, |maybe_config| {
|
|
let config = maybe_config.as_mut().ok_or(Error::<T, I>::UnknownItem)?;
|
|
|
|
if lock_metadata {
|
|
config.disable_setting(ItemSetting::UnlockedMetadata);
|
|
}
|
|
if lock_attributes {
|
|
config.disable_setting(ItemSetting::UnlockedAttributes);
|
|
}
|
|
|
|
Self::deposit_event(Event::<T, I>::ItemPropertiesLocked {
|
|
collection,
|
|
item,
|
|
lock_metadata,
|
|
lock_attributes,
|
|
});
|
|
Ok(())
|
|
})
|
|
}
|
|
}
|