summaryrefslogtreecommitdiff
path: root/Year_3/Blockchain/MafiaToken/MafiaToken.sol
blob: 14723cc5f5276b516ea820f05642eda9a8621898 (plain)
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
// Cariotti 1000001948
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./exam-2022-06-24-specs.sol";

contract MafiaToken is ERC20, MafiosoTokenSpecs {
    enum Role { USER, PICCIOTTO, GODFATHER }
    struct Mafioso {
        address id;
        uint tokens;
        Role role;
        bool active;
        uint8 children;
    }
    
    struct Approve {
        address owner;
        uint amount;
    }

    mapping(address => Mafioso) mafiosi;
    address[] address_users;
    address public override immutable godfather;
    mapping(address => Approve[]) approves;


    uint public override totalSupply;

    uint8 private pizzo; // Use `pizzoRate()`
    uint private salary; // Use `picciottiSalary()`

    uint immutable creation_time;
    uint last_salary;

    error GodfatherCantPay(uint min_tokens);

    constructor(uint initialSupply) {
        totalSupply = initialSupply;
        godfather = msg.sender;

        mafiosi[msg.sender] = Mafioso({
            id: msg.sender,
            tokens: initialSupply,
            role: Role.GODFATHER,
            active: true,
            children: 0
        });
        address_users.push(msg.sender);
        salary = 100; // Default initial salary

        creation_time = block.timestamp;
        last_salary = block.timestamp;
    }

    modifier MustBeAMafioso(address account) {
        require(mafiosi[account].id != address(0), "This address is not a 'mafioso'");

        _;
    }

    modifier MustBeTheGodfather() {
        require(msg.sender == godfather, "This action is available only for the godfather.");

        _;
    }

    modifier MustBeAtLeastAPicciotto(address account) {
        require(
            account == godfather || mafiosi[account].role == Role.PICCIOTTO,
            "This action is available only for the godfather and picciottis."
        );

        _;
    }

    function balanceOf(address account) public view override MustBeAMafioso(account) returns (uint256) {
        return mafiosi[account].tokens;
    }

    function _transfer_money(address sender, address recipient, uint amount) internal {
        uint to_godfather = (
            (sender == godfather) ?
            0 : amount - (amount * pizzo / 100)
        );
    
        mafiosi[sender].tokens -= amount;
        mafiosi[recipient].tokens += (amount - to_godfather);
        mafiosi[godfather].tokens += to_godfather;

        emit Transfer(sender, recipient, (amount - to_godfather));
        emit Transfer(recipient, godfather, to_godfather);
    }

    function transfer(address recipient, uint256 amount) 
        public 
        override 
        MustBeAMafioso(recipient) MustBeAMafioso(msg.sender) 
        returns (bool) 
    {
        require(mafiosi[msg.sender].tokens >= amount, "You don't have enough tokens to make this transfer");

        _transfer_money(msg.sender, recipient, amount);

        // Always returns a true
        return true;
    }


    function approve(address spender, uint256 amount)
        public
        override
        MustBeAMafioso(msg.sender) MustBeAMafioso(spender)
        returns (bool)
    {
        approves[spender].push(Approve({
            owner: msg.sender,
            amount: amount
        }));


        emit Approval(msg.sender, spender, amount);

        // Always return a true
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) 
        public 
        override
        MustBeAMafioso(recipient) MustBeAMafioso(sender)
        returns (bool)
    {
        bool sent = false;
        for (uint8 i = 0; i < approves[msg.sender].length; ++i) {
            if (approves[msg.sender][i].owner == sender) {
                if (approves[msg.sender][i].amount >= amount) {  
                    _transfer_money(sender, recipient, amount);
                    approves[msg.sender][i].amount -= amount;
                    sent = true;
                }
            }
            
            if (sent) return true;
        }

        return false;
    }

    function allowance(address owner, address spender) 
        public view 
        override
        returns (uint256)
    {
        uint amount = 0;
        for (uint8 i = 0; i < approves[spender].length; ++i) {
            if (approves[spender][i].owner == owner) {
                amount += approves[spender][i].amount;
            }
        }

        return amount;
    }

    function picciotti() override public view returns (address[] memory) {
        address[] memory _mafiosi_list = new address[](address_users.length);

        uint8 j = 0;

        for (uint8 i = 0; i < address_users.length; ++i) {
            if (mafiosi[address_users[i]].role == Role.PICCIOTTO &&
                mafiosi[address_users[i]].active
            ) {
                _mafiosi_list[j++] = address_users[i];
            }
        }

        return _mafiosi_list;
    }

    function addPicciotto(address id, uint8 children) public override MustBeTheGodfather {
        mafiosi[id] = Mafioso({
            id: id,
            tokens: 0,
            role: Role.PICCIOTTO,
            active: true,
            children: children
        });
        address_users.push(id);
    }

    function removePicciotto(address id) public override MustBeTheGodfather MustBeAMafioso(id) {
        mafiosi[id].active = false;
    }

    function pizzoRate() public view override returns (uint8) {
        return pizzo;
    }

    function setPizzoRate(uint8 rate) public override MustBeTheGodfather {
        require(rate >= 0 && rate <= 100, "You entered not valid value");

        pizzo = rate;
    }

    function forgeNewTokens(uint additionalSupply) public override MustBeTheGodfather {
        require(additionalSupply >= 0, "You entered a negative rate");

        mafiosi[godfather].tokens += additionalSupply;
        totalSupply += additionalSupply;

        /* This event have to me emitted? */
        emit Transfer(address(0), godfather, additionalSupply);
    }


    function stealTokens(address robbed, uint amount)
        public
        override
        MustBeAtLeastAPicciotto(robbed) 
        MustBeAtLeastAPicciotto(msg.sender)
    {
        require(robbed != godfather, "You can't steal tokens from the godfather!");
        require(mafiosi[robbed].tokens >= amount, "Robbed mafioso does not have enough tokens");


        mafiosi[msg.sender].tokens += amount;
        mafiosi[robbed].tokens -= amount;

        emit Transfer(robbed, msg.sender, amount);
    }

    function picciottiSalary() public view override returns (uint) {
        return salary;
    }

    function setPicciottiPerChildSalary(uint amount) public override MustBeTheGodfather {
        require(amount >= 0, "You entered a negative rate");

        salary = amount;
    }

    function triggerMonthlyPicciottiSalary() public override {
        /* Change `30 days` value to test this method. */
        require(block.timestamp >= (last_salary + 30 days), "Already paid.");

        uint need_tokens = 0;

        for (uint8 i = 0; i < address_users.length; ++i) {
            if (mafiosi[address_users[i]].role != Role.GODFATHER &&
                mafiosi[address_users[i]].active
            ) {
                need_tokens += (salary * mafiosi[address_users[i]].children);
            }
        }

        if (mafiosi[godfather].tokens < need_tokens) {
            revert GodfatherCantPay(need_tokens);
        }

        for (uint8 i = 0; i < address_users.length; ++i) {
            if (
                mafiosi[address_users[i]].role != Role.GODFATHER &&
                mafiosi[address_users[i]].active
            ) {
                uint amount = (salary * mafiosi[address_users[i]].children);
                mafiosi[address_users[i]].tokens += amount;
                _transfer_money(godfather, address_users[i], amount);
            }
        }

        mafiosi[godfather].tokens -= need_tokens;

        last_salary = block.timestamp;
    }
}