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
//! This SDK provides the basic functionality to build a DAO, which can be imported and used.
//! To use it, you need to implement DaoCustomFn Trait and customize the business logic.
//! Example of implementing DaoCustomFn Trait
//! ```
//! #[derive(Clone, Debug, Default, CandidType, Deserialize)]
//! struct CustomFn{}
//! #[async_trait]
//! impl DaoCustomFn for CustomFn {
//!  async fn is_member(&self, _member: Principal) -> Result<bool, String> {
//!   Ok(true)
//!  }
//!  async fn handle_proposal(&self) -> Result<(), String> {
//!  Ok(())
//!  }
//! }
//! let dao_basic = DaoBasic::new(CustomFn::default());
//! dao_basic.get_proposal(1);
//! ```

use std::collections::HashMap;

use async_trait::async_trait;
use ic_cdk::api;
use ic_cdk::export::{candid::CandidType, Principal};
use serde::{Deserialize, Serialize};

/// Voting weight
pub type Equities = u64;

/// Votes with weights
#[derive(CandidType, Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
pub enum Votes {
    Yes(Equities),
    No(Equities),
}

/// You need to use the basic methods implemented by the party
#[async_trait]
pub trait DaoCustomFn {
    /// It is used to determine whether you are DAO member of Organization
    async fn is_member(&self, member: Principal) -> Result<bool, String>;

    /// Implement process completed proposals
    async fn handle_proposal(&self) -> Result<(), String>;
}

/// The state of a Proposal
#[derive(CandidType, Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
pub enum ProposalState {
    /// The proposal is open for voting
    Open,

    /// Enough "yes" votes have been cast to accept the proposal, and it will soon be executed
    Accepted,

    /// Enough "no" votes have been cast to reject the proposal, and it will not be executed
    Rejected,

    /// The proposal is currently being executed
    Executing,

    /// The proposal has been successfully executed
    Succeeded,

    /// A failure occurred while executing the proposal
    Failed(String),
}

/// Proposal unit structure
#[derive(Clone, Debug, CandidType, Deserialize, Serialize)]
pub struct Proposal {
    pub id: u64,
    pub proposer: Principal,
    pub title: String,
    pub content: String,
    pub proposal_state: ProposalState,
    pub vote_data: Vec<(Principal, Votes)>,
    pub property: Option<HashMap<String, String>>,
    pub end_time: u64,
    pub timestamp: u64,
}

/// Create parameters for the proposal
#[derive(Clone, Debug, CandidType, Deserialize, Serialize)]
pub struct ProposalArg {
    pub proposer: Principal,
    pub title: String,
    pub content: String,
    pub property: Option<HashMap<String, String>>,
    pub end_time: u64,
}

/// Voting parameters
#[derive(Clone, Debug, CandidType, Deserialize, Serialize)]
pub struct VotesArg {
    pub id: u64,
    pub caller: Principal,
    pub vote: Votes,
}

/// Change proposal status parameters
#[derive(Clone, Debug, CandidType, Deserialize, Serialize)]
pub struct ChangeProposalStateArg {
    pub id: u64,
    pub state: ProposalState,
}

/// Basic DAO structure
#[derive(Clone, Debug, Default, CandidType, Deserialize, Serialize)]
pub struct DaoBasic<T: DaoCustomFn> {
    pub proposal_list: HashMap<u64, Proposal>,
    pub next_proposal_id: u64,
    pub custom_fn: T,
}

/// Implements the most basic DAO functionality
impl<T> DaoBasic<T>
where
    T: DaoCustomFn,
{
    /// Instantiate the underlying DAO
    pub fn new(custom_fn: T) -> Self {
        DaoBasic {
            proposal_list: HashMap::default(),
            next_proposal_id: 1,
            custom_fn,
        }
    }

    /// Submit the proposal
    pub async fn proposal(&mut self, arg: ProposalArg) -> Result<Proposal, String> {
        self.custom_fn.is_member(arg.proposer.clone()).await?;
        let proposal = Proposal {
            id: self.next_proposal_id,
            proposer: arg.proposer,
            title: arg.title,
            content: arg.content,
            proposal_state: ProposalState::Open,
            vote_data: Vec::new(),
            property: arg.property,
            end_time: arg.end_time,
            timestamp: api::time(),
        };
        self.proposal_list
            .insert(self.next_proposal_id, proposal.clone());
        self.next_proposal_id += 1;
        Ok(proposal)
    }

    pub fn get_proposal(&self, id: u64) -> Result<Proposal, String> {
        self.proposal_list
            .get(&id)
            .ok_or(String::from("no proposal"))
            .cloned()
    }

    pub fn proposal_list(&self) -> HashMap<u64, Proposal> {
        self.proposal_list.clone()
    }

    pub async fn vote(&mut self, arg: VotesArg) -> Result<(), String> {
        self.custom_fn.is_member(arg.caller.clone()).await?;
        if let Some(proposal) = self.proposal_list.get_mut(&arg.id) {
            for data in proposal.vote_data.iter() {
                if data.0 == arg.caller {
                    return Err(String::from("Users have voted"));
                }
            }
            proposal.vote_data.push((arg.caller.clone(), arg.vote))
        } else {
            return Err(String::from("The proposal does not exist"));
        }
        Ok(())
    }

    pub async fn handle_proposal(&self) -> Result<(), String> {
        self.custom_fn.handle_proposal().await?;
        Ok(())
    }

    pub fn change_proposal_state(&mut self, arg: ChangeProposalStateArg) -> Result<(), String> {
        if let Some(proposal) = self.proposal_list.get_mut(&arg.id) {
            if proposal.end_time >= api::time() {
                return Err(String::from("Proposal time is not over"));
            }
            match proposal.proposal_state {
                ProposalState::Open => {
                    if arg.state != ProposalState::Accepted && arg.state != ProposalState::Rejected
                    {
                        return Err(String::from("Failed to change status, the logic of the status parameter is incorrect"));
                    }
                    proposal.proposal_state = arg.state
                }
                ProposalState::Accepted | ProposalState::Rejected => {
                    if arg.state != ProposalState::Executing {
                        return Err(String::from("Failed to change status, the logic of the status parameter is incorrect"));
                    }
                    proposal.proposal_state = arg.state
                }
                ProposalState::Executing => match arg.state {
                    ProposalState::Succeeded => proposal.proposal_state = ProposalState::Succeeded,
                    ProposalState::Failed(reason) => {
                        proposal.proposal_state = ProposalState::Failed(reason)
                    }
                    _ => return Err(String::from(
                        "Failed to change status, the logic of the status parameter is incorrect",
                    )),
                },
                _ => {
                    return Err(String::from(
                        "Failed to change status, the logic of the status parameter is incorrect",
                    ))
                }
            }
        } else {
            return Err(String::from("no proposal"));
        }
        Ok(())
    }
}

// #[cfg(test)]
// mod test {
//     use super::*;
//     use ic_cdk::export::{candid::CandidType, Principal};
//     #[derive(Clone, Debug, Default, CandidType, Deserialize)]
//     struct CustomFn{}

//     #[async_trait]
//     impl DaoCustomFn for CustomFn {
//         async fn is_member(&self, _member: Principal) -> Result<bool, String> {
//             Ok(true)
//         }
//         async fn handle_proposal(&self) -> Result<(), String> {
//             Ok(())
//         }
//     }
//     #[actix_rt::test]
//     async fn test_get_proposal_err() {
//         let dao_basic = DaoBasic::new(CustomFn::default());
//         assert_eq!(dao_basic.get_proposal(1).is_err(), true);
//     }

//     #[actix_rt::test]
//     async fn test_get_proposal_ok() {
//         let mut dao_basic = DaoBasic::new(CustomFn::default());
//         let new_proposal = ProposalArg {
//             proposer: Principal::from_text(String::from("")).unwrap(),
//             title: "aaa".to_owned(),
//             content: "aaa".to_owned(),
//             end_time: 11111,
//         };
//         _ = dao_basic.proposal(new_proposal).await;
//         println!("{:?}", dao_basic.get_proposal(1));
//         assert_eq!(dao_basic.get_proposal(1).is_ok(), true);
//     }
// }