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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
#![cfg_attr(not(feature = "std"), no_std)]
pub use pallet::*;
#[cfg(test)]
mod mock;
#[cfg(test)]
mod tests;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
mod functions;
mod types;
pub mod weights;
pub use crate::types::*;
pub use pallet_sudo as SUDO;
use sp_std::prelude::*;
pub use weights::WeightInfo;
#[frame_support::pallet]
pub mod pallet {
pub use super::*;
#[pallet::config]
pub trait Config: frame_system::Config + SUDO::Config {
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
type Currency: ReservableCurrency<Self::AccountId>;
type WeightInfo: WeightInfo;
#[pallet::constant]
type MaxMembers: Get<u32>;
}
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_);
#[pallet::storage]
#[pallet::getter(fn investors)]
pub(super) type InvestorLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Investor<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn sellers)]
pub(super) type HouseSellerLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, HouseSeller<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn notaries)]
pub(super) type NotaryLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Notary<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn reps)]
pub type RepresentativeLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Representative<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn tenants)]
pub type TenantLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Tenant<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn servicers)]
pub(super) type ServicerLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Servicer<T>, OptionQuery>;
#[pallet::type_value]
pub(super) fn InitPendingSellerList<T: Config>() -> Vec<HouseSeller<T>> {
Vec::new()
}
#[pallet::type_value]
pub(super) fn InitPendingServicerList<T: Config>() -> Vec<Servicer<T>> {
Vec::new()
}
#[pallet::type_value]
pub(super) fn InitPendingNotaryList<T: Config>() -> Vec<Notary<T>> {
Vec::new()
}
#[pallet::type_value]
pub(super) fn InitRepApprovalList<T: Config>() -> Vec<Representative<T>> {
Vec::new()
}
#[pallet::storage]
#[pallet::getter(fn get_pending_house_sellers)]
pub(super) type SellerApprovalList<T: Config> =
StorageValue<_, Vec<HouseSeller<T>>, ValueQuery, InitPendingSellerList<T>>;
#[pallet::storage]
#[pallet::getter(fn get_pending_servicers)]
pub(super) type ServicerApprovalList<T: Config> =
StorageValue<_, Vec<Servicer<T>>, ValueQuery, InitPendingServicerList<T>>;
#[pallet::storage]
#[pallet::getter(fn get_pending_notaries)]
pub(super) type NotaryApprovalList<T: Config> =
StorageValue<_, Vec<Notary<T>>, ValueQuery, InitPendingNotaryList<T>>;
#[pallet::storage]
#[pallet::getter(fn get_pending_representatives)]
pub type RepApprovalList<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Representative<T>, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn get_roles)]
pub type AccountsRolesLog<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Accounts, OptionQuery>;
#[pallet::storage]
#[pallet::getter(fn get_requested_role)]
pub type RequestedRoles<T: Config> =
StorageMap<_, Twox64Concat, AccountIdOf<T>, Accounts, OptionQuery>;
#[pallet::type_value]
pub(super) fn InitTotalMembers<T: Config>() -> u32 {
0
}
#[pallet::storage]
#[pallet::getter(fn total_members)]
pub(super) type TotalMembers<T> = StorageValue<_, u32, ValueQuery, InitTotalMembers<T>>;
#[pallet::type_value]
pub fn InitRepMembers<T: Config>() -> u32 {
0
}
#[pallet::storage]
#[pallet::getter(fn rep_num)]
pub type RepNumber<T: Config> = StorageValue<_, u32, ValueQuery, InitRepMembers<T>>;
#[pallet::genesis_config]
pub struct GenesisConfig<T: Config> {
pub new_admin: Option<T::AccountId>,
pub representatives: Vec<T::AccountId>,
}
#[cfg(feature = "std")]
impl<T: Config> Default for GenesisConfig<T> {
fn default() -> Self {
Self { new_admin: Default::default(), representatives: vec![] }
}
}
#[pallet::genesis_build]
impl<T: Config> GenesisBuild<T> for GenesisConfig<T> {
fn build(&self) {
if self.new_admin.is_some() {
let servicer0 = self.new_admin.clone().unwrap(); let origin = T::Origin::from(RawOrigin::Signed(servicer0.clone())); let source = T::Lookup::unlookup(servicer0); crate::Pallet::<T>::set_manager(origin, source).ok();
}
if !self.representatives.is_empty() {
crate::Pallet::<T>::init_representatives(self.representatives.clone());
}
}
}
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
InvestorCreated(T::BlockNumber, T::AccountId),
TenantCreated(T::BlockNumber, T::AccountId),
SellerCreated(T::BlockNumber, T::AccountId),
ServicerCreated(T::BlockNumber, T::AccountId),
NotaryCreated(T::BlockNumber, T::AccountId),
AccountCreationApproved(T::BlockNumber, T::AccountId),
AccountCreationRejected(T::BlockNumber, T::AccountId),
SellerAccountCreationRejected(T::BlockNumber, T::AccountId),
ServicerAccountCreationRejected(T::BlockNumber, T::AccountId),
NotaryAccountCreationRejected(T::BlockNumber, T::AccountId),
CreationRequestCreated(T::BlockNumber, T::AccountId),
}
#[pallet::error]
pub enum Error<T> {
NoneValue,
InitializationError,
StorageOverflow,
OneRoleAllowed,
InvalidOperation,
RequireSudo,
NotInWaitingList,
AlreadyWaiting,
TotalMembersExceeded,
OnlyForServicers,
UnAuthorized,
}
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(<T as pallet::Config>::WeightInfo::investor(4))]
pub fn set_role(
origin: OriginFor<T>,
account: AccountIdOf<T>,
account_type: Accounts,
) -> DispatchResult {
let caller = ensure_signed(origin)?;
if caller != account {
ensure!(ServicerLog::<T>::contains_key(&caller), Error::<T>::OnlyForServicers);
}
Self::check_account_role(account.clone())?;
let now = <frame_system::Pallet<T>>::block_number();
let members = Self::total_members();
let requested = Self::get_requested_role(&account).is_some();
match account_type {
Accounts::INVESTOR => {
let investor = <T as frame_system::Config>::Origin::from(RawOrigin::Signed(
account.clone(),
));
Investor::<T>::new(investor).map_err(|_| <Error<T>>::InitializationError)?;
AccountsRolesLog::<T>::insert(&account, Accounts::INVESTOR);
Self::increase_total_members().ok();
Self::deposit_event(Event::InvestorCreated(now, account.clone()));
},
Accounts::SELLER => {
ensure!(!requested, <Error<T>>::AlreadyWaiting);
let seller = <T as frame_system::Config>::Origin::from(RawOrigin::Signed(
account.clone(),
));
HouseSeller::<T>::new(seller).map_err(|_| <Error<T>>::InitializationError)?;
Self::deposit_event(Event::CreationRequestCreated(now, account.clone()));
},
Accounts::TENANT => {
let tenant = <T as frame_system::Config>::Origin::from(RawOrigin::Signed(
account.clone(),
));
Tenant::<T>::new(tenant).map_err(|_| <Error<T>>::InitializationError)?;
AccountsRolesLog::<T>::insert(&account, Accounts::TENANT);
Self::increase_total_members().ok();
Self::deposit_event(Event::TenantCreated(now, account.clone()));
},
Accounts::SERVICER => {
ensure!(!requested, <Error<T>>::AlreadyWaiting);
let servicer = <T as frame_system::Config>::Origin::from(RawOrigin::Signed(
account.clone(),
));
Servicer::<T>::new(servicer).map_err(|_| <Error<T>>::InitializationError)?;
Self::deposit_event(Event::CreationRequestCreated(now, account.clone()));
},
Accounts::NOTARY => {
ensure!(!requested, <Error<T>>::AlreadyWaiting);
let notary = <T as frame_system::Config>::Origin::from(RawOrigin::Signed(
account.clone(),
));
Notary::<T>::new(notary).map_err(|_| <Error<T>>::InitializationError)?;
Self::deposit_event(Event::CreationRequestCreated(now, account.clone()));
},
Accounts::REPRESENTATIVE => {
ensure!(!requested, <Error<T>>::AlreadyWaiting);
let representative = <T as frame_system::Config>::Origin::from(
RawOrigin::Signed(account.clone()),
);
Representative::<T>::new(representative)
.map_err(|_| <Error<T>>::InitializationError)?;
Self::deposit_event(Event::CreationRequestCreated(now, account.clone()));
},
}
let need_approval = !matches!(
account_type,
Accounts::INVESTOR | Accounts::TENANT | Accounts::REPRESENTATIVE
);
if need_approval {
RequestedRoles::<T>::insert(&account, account_type);
} else {
TotalMembers::<T>::put(members + 1);
}
Ok(())
}
#[pallet::weight(<T as pallet::Config>::WeightInfo::approval(5))]
pub fn account_approval(origin: OriginFor<T>, account: T::AccountId) -> DispatchResult {
let sender = ensure_signed(origin)?;
ensure!(
sender == SUDO::Pallet::<T>::key().unwrap(),
"only the current sudo key can sudo"
);
let role = Self::get_requested_role(&account);
ensure!(role.is_some(), Error::<T>::NotInWaitingList);
ensure!(role != Some(Accounts::REPRESENTATIVE), Error::<T>::UnAuthorized);
Self::approve_account(sender, account.clone())?;
let now = <frame_system::Pallet<T>>::block_number();
Self::deposit_event(Event::AccountCreationApproved(now, account));
Ok(())
}
#[pallet::weight(<T as pallet::Config>::WeightInfo::rejection(6))]
pub fn account_rejection(origin: OriginFor<T>, account: T::AccountId) -> DispatchResult {
let sender = ensure_signed(origin)?;
ensure!(
sender == SUDO::Pallet::<T>::key().unwrap(),
"only the current sudo key can sudo"
);
let role = Self::get_requested_role(&account);
ensure!(role.is_some(), Error::<T>::NotInWaitingList);
ensure!(role != Some(Accounts::REPRESENTATIVE), Error::<T>::UnAuthorized);
Self::reject_account(account.clone())?;
RequestedRoles::<T>::remove(&account);
let now = <frame_system::Pallet<T>>::block_number();
Self::deposit_event(Event::AccountCreationRejected(now, account));
Ok(())
}
#[pallet::weight(<T as pallet::Config>::WeightInfo::set_admin(7))]
pub fn set_manager(
origin: OriginFor<T>,
new: <T::Lookup as StaticLookup>::Source,
) -> DispatchResult {
let sender = ensure_signed(origin.clone())?;
let new0 = T::Lookup::lookup(new.clone())?;
let new_origin = T::Origin::from(RawOrigin::Signed(new0.clone()));
ensure!(
sender == SUDO::Pallet::<T>::key().unwrap(),
"only the current sudo key can sudo"
);
if ServicerLog::<T>::contains_key(sender.clone()) {
ServicerLog::<T>::remove(sender.clone());
}
if !AccountsRolesLog::<T>::contains_key(&new0) {
Servicer::<T>::new(new_origin).ok();
Self::approve_account(sender, new0).ok();
}
SUDO::Pallet::<T>::set_key(origin, new).ok();
Ok(())
}
}
}