-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPowerIndexAbstractController.sol
71 lines (59 loc) · 2.36 KB
/
PowerIndexAbstractController.sol
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
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/PowerIndexPoolInterface.sol";
import "./interfaces/IPoolRestrictions.sol";
contract PowerIndexAbstractController is Ownable {
using SafeMath for uint256;
bytes4 public constant CALL_VOTING_SIG = bytes4(keccak256(bytes("callVoting(address,bytes4,bytes,uint256)")));
event CallPool(bool indexed success, bytes4 indexed inputSig, bytes inputData, bytes outputData);
PowerIndexPoolInterface public immutable pool;
constructor(address _pool) public {
pool = PowerIndexPoolInterface(_pool);
}
/**
* @notice Call any function from pool, except prohibited signatures.
* @param signature Method signature
* @param args Encoded method inputs
*/
function callPool(bytes4 signature, bytes calldata args) external onlyOwner {
_checkSignature(signature);
(bool success, bytes memory data) = address(pool).call(abi.encodePacked(signature, args));
require(success, "NOT_SUCCESS");
emit CallPool(success, signature, args, data);
}
/**
* @notice Call voting by pool
* @param voting Voting address
* @param signature Method signature
* @param args Encoded method inputs
* @param value Send value to pool
*/
function callVotingByPool(
address voting,
bytes4 signature,
bytes calldata args,
uint256 value
) external {
require(_restrictions().isVotingSenderAllowed(voting, msg.sender), "SENDER_NOT_ALLOWED");
pool.callVoting(voting, signature, args, value);
}
/**
* @notice Migrate several contracts with setController method to new controller address
* @param newController New controller to migrate
* @param addressesToMigrate Address to call setController method
*/
function migrateController(address newController, address[] calldata addressesToMigrate) external onlyOwner {
uint256 len = addressesToMigrate.length;
for (uint256 i = 0; i < len; i++) {
PowerIndexPoolInterface(addressesToMigrate[i]).setController(newController);
}
}
function _restrictions() internal view returns (IPoolRestrictions) {
return IPoolRestrictions(pool.getRestrictions());
}
function _checkSignature(bytes4 signature) internal pure virtual {
require(signature != CALL_VOTING_SIG, "SIGNATURE_NOT_ALLOWED");
}
}