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
pub use super::*;
use enum_iterator::Sequence;
pub use frame_support::inherent::Vec;
use frame_support::pallet_prelude::*;
#[cfg(feature = "std")]
use serde::{Deserialize, Serialize};

pub use scale_info::{prelude::vec, TypeInfo};

/// NFT Collection ID
pub type CollectionId = u32;
#[derive(Clone, Encode, Decode, PartialEq, Eq, TypeInfo, Copy, Sequence)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
pub enum PossibleCollections {
	HOUSES,
	OFFICES,
	APPARTMENTS,
	HOUSESTEST,
	OFFICESTEST,
	APPARTMENTSTEST,
	NONEXISTING,
}

impl PossibleCollections {
	pub fn value(&self) -> CollectionId {
		match *self {
			PossibleCollections::HOUSES => 0,
			PossibleCollections::OFFICES => 1,
			PossibleCollections::APPARTMENTS => 2,
			PossibleCollections::HOUSESTEST => 4,
			PossibleCollections::OFFICESTEST => 5,
			PossibleCollections::APPARTMENTSTEST => 6,
			PossibleCollections::NONEXISTING => 3,
		}
	}
}

/// NFT Item ID
pub type ItemId = u32;

#[derive(Encode, Decode, Eq, PartialEq, Clone, RuntimeDebug, TypeInfo)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct CollectionInfo<BoundedVec> {
	pub created_by: Acc,
	/// Arbitrary data about a collection, e.g. IPFS hash
	pub metadata: BoundedVec,
}

#[derive(Encode, Decode, Eq, Copy, PartialEq, Clone, RuntimeDebug, TypeInfo)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct ItemInfo<BoundedVec> {
	pub metadata: BoundedVec,
}

pub trait NftPermission<Acc> {
	fn can_create(created_by: &Acc) -> bool;
	fn can_mint(created_by: &Acc) -> bool;
	fn can_burn(created_by: &Acc) -> bool;
	fn can_destroy(created_by: &Acc) -> bool;
	fn has_deposit(created_by: &Acc) -> bool;
}

#[derive(Encode, Decode, Eq, Copy, PartialEq, Clone, RuntimeDebug, TypeInfo)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
pub struct NftPermissions;

impl NftPermission<Acc> for NftPermissions {
	fn can_create(created_by: &Acc) -> bool {
		matches!(*created_by, Acc::SERVICER)
	}

	fn can_mint(created_by: &Acc) -> bool {
		matches!(*created_by, Acc::SELLER)
	}

	fn can_burn(created_by: &Acc) -> bool {
		matches!(*created_by, Acc::SERVICER)
	}

	fn can_destroy(created_by: &Acc) -> bool {
		matches!(*created_by, Acc::SERVICER)
	}

	fn has_deposit(created_by: &Acc) -> bool {
		matches!(*created_by, Acc::SERVICER)
	}
}