-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
284 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
use codec::Decode; | ||
use frame_support::Parameter; | ||
pub use sp_std::{boxed::Box, cmp::max, mem::size_of, prelude::Vec}; | ||
|
||
use crate::{ | ||
pallet, CallId, Calls, Config, Error, Members, MembersVotes, Pallet, Role, SupersigId, | ||
}; | ||
|
||
#[derive(Debug, Clone, PartialEq, Eq, Decode, serde::Serialize, serde::Deserialize)] | ||
pub struct ProposalState<AccountId, Call> { | ||
id: CallId, | ||
call: Call, | ||
provider: AccountId, | ||
voters: Vec<AccountId>, | ||
} | ||
|
||
impl<AccoutId: Clone, Call: Parameter> ProposalState<AccoutId, Call> { | ||
pub fn new(id: CallId, call: Call, provider: AccoutId, voters: Vec<AccoutId>) -> Self { | ||
Self { | ||
id, | ||
call, | ||
provider, | ||
voters, | ||
} | ||
} | ||
|
||
pub fn id(&self) -> &CallId { | ||
&self.id | ||
} | ||
|
||
pub fn call(&self) -> &Call { | ||
&self.call | ||
} | ||
|
||
pub fn provider(&self) -> &AccoutId { | ||
&self.provider | ||
} | ||
|
||
pub fn voters(&self) -> &Vec<AccoutId> { | ||
&self.voters | ||
} | ||
} | ||
|
||
impl<T: Config> Pallet<T> { | ||
pub fn get_supersig_id(supersig_account: &T::AccountId) -> Result<SupersigId, Error<T>> { | ||
Self::get_supersig_id_from_account(supersig_account) | ||
} | ||
|
||
pub fn get_user_supersigs(who: T::AccountId) -> Vec<SupersigId> { | ||
Members::<T>::iter() | ||
.filter_map(|(supersig_id, member_id, _)| { | ||
if member_id == who { | ||
Some(supersig_id) | ||
} else { | ||
None | ||
} | ||
}) | ||
.collect() | ||
} | ||
|
||
pub fn list_members(supersig_id: SupersigId) -> Vec<(T::AccountId, Role)> { | ||
Members::<T>::iter_prefix(supersig_id).collect() | ||
} | ||
|
||
pub fn list_proposals( | ||
supersig_id: SupersigId, | ||
) -> ( | ||
Vec<ProposalState<T::AccountId, <T as pallet::Config>::Call>>, | ||
u32, | ||
) { | ||
let member_count = Self::total_members(supersig_id); | ||
let proposal_state = Calls::<T>::iter_prefix(supersig_id) | ||
.map(|(call_id, call)| { | ||
let voters = MembersVotes::<T>::iter_prefix((supersig_id, call_id)) | ||
.filter_map( | ||
|(account_id, vote)| { | ||
if vote { Some(account_id) } else { None } | ||
}, | ||
) | ||
.collect(); | ||
|
||
ProposalState::new( | ||
call_id, | ||
<T as pallet::Config>::Call::decode(&mut &call.data[..]).unwrap(), | ||
call.provider, | ||
voters, | ||
) | ||
}) | ||
.collect(); | ||
(proposal_state, member_count) | ||
} | ||
|
||
pub fn get_proposal_state( | ||
supersig_id: SupersigId, | ||
call_id: CallId, | ||
) -> Option<( | ||
ProposalState<T::AccountId, <T as pallet::Config>::Call>, | ||
u32, | ||
)> { | ||
let call = Self::calls(supersig_id, call_id)?; | ||
let member_count = Self::total_members(supersig_id); | ||
let voters = MembersVotes::<T>::iter_prefix((supersig_id, call_id)) | ||
.filter_map( | ||
|(account_id, vote)| { | ||
if vote { Some(account_id) } else { None } | ||
}, | ||
) | ||
.collect(); | ||
|
||
Some(( | ||
ProposalState::new( | ||
call_id, | ||
<T as pallet::Config>::Call::decode(&mut &call.data[..]).unwrap(), | ||
call.provider, | ||
voters, | ||
), | ||
member_count, | ||
)) | ||
} | ||
} |
Oops, something went wrong.