2017-06-06 17:40:14 +00:00
|
|
|
pragma solidity ^0.4.11;
|
|
|
|
|
|
|
|
import "./LiquidPledgingBase.sol";
|
|
|
|
|
|
|
|
|
|
|
|
contract LiquidPledging is LiquidPledgingBase {
|
|
|
|
|
2017-07-13 17:21:53 +00:00
|
|
|
|
2017-06-06 17:40:14 +00:00
|
|
|
//////
|
|
|
|
// Constructor
|
|
|
|
//////
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// This constructor actualy also calls the constructor for the
|
|
|
|
// `LiquidPledgingBase` contract
|
2017-06-06 17:40:14 +00:00
|
|
|
function LiquidPledging(address _vault) LiquidPledgingBase(_vault) {
|
|
|
|
}
|
|
|
|
|
2017-07-13 17:21:53 +00:00
|
|
|
/// @notice This is how value enters into the system which creates notes. The
|
2017-07-09 17:04:52 +00:00
|
|
|
/// token of value goes into the vault and then the amount in the Note
|
|
|
|
/// relevant to this donor without delegates is increased.
|
2017-07-04 23:13:24 +00:00
|
|
|
/// After that, a normal transfer is done to the idReceiver.
|
2017-07-09 17:04:52 +00:00
|
|
|
/// @param idDonor Identifier of the donor thats donating.
|
|
|
|
/// @param idReceiver To whom it's transfered. Can be the same donor, another
|
2017-07-04 23:13:24 +00:00
|
|
|
/// donor, a delegate or a project
|
2017-07-09 17:04:52 +00:00
|
|
|
function donate(uint64 idDonor, uint64 idReceiver) payable {// TODO change to `pledge()`
|
2017-07-13 17:12:45 +00:00
|
|
|
NoteManager storage sender = findManager(idDonor);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(sender.managerType == NoteManagerType.Donor);
|
|
|
|
require(sender.addr == msg.sender);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
uint amount = msg.value;
|
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(amount > 0);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
vault.transfer(amount); // transfers the baseToken to the Vault
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 idNote = findNote(
|
|
|
|
idDonor,
|
2017-07-09 17:04:52 +00:00
|
|
|
new uint64[](0), //what is new
|
2017-06-06 17:40:14 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
|
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage nTo = findNote(idNote);
|
2017-06-26 17:54:28 +00:00
|
|
|
nTo.amount += amount;
|
|
|
|
|
|
|
|
Transfer(0, idNote, amount);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
transfer(idDonor, idNote, amount, idReceiver);
|
|
|
|
}
|
|
|
|
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
/// @notice This is the main function to move value from one Note to the other
|
|
|
|
/// @param idSender ID of the donor, delegate or project manager that is transfering
|
|
|
|
/// the funds from Note to Note. This manager must have permisions to move the value
|
|
|
|
/// @param idNote Id of the note that's moving the value
|
|
|
|
/// @param amount Quantity of value that's being moved
|
|
|
|
/// @param idReceiver Destination of the value, can be a donor sending to a donor or
|
|
|
|
/// a delegate, a delegate to another delegate or a project to precommit it to that project
|
2017-06-06 17:40:14 +00:00
|
|
|
function transfer(uint64 idSender, uint64 idNote, uint amount, uint64 idReceiver) {
|
|
|
|
|
|
|
|
idNote = normalizeNote(idNote);
|
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
|
|
|
NoteManager storage receiver = findManager(idReceiver);
|
|
|
|
NoteManager storage sender = findManager(idSender);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(sender.addr == msg.sender);
|
|
|
|
require(n.paymentState == PaymentState.NotPaid);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
// If the sender is the owner
|
|
|
|
if (n.owner == idSender) {
|
2017-07-04 23:13:24 +00:00
|
|
|
if (receiver.managerType == NoteManagerType.Donor) {
|
|
|
|
transferOwnershipToDonor(idNote, amount, idReceiver);
|
|
|
|
} else if (receiver.managerType == NoteManagerType.Project) {
|
|
|
|
transferOwnershipToProject(idNote, amount, idReceiver);
|
2017-06-06 17:40:14 +00:00
|
|
|
} else if (receiver.managerType == NoteManagerType.Delegate) {
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
|
|
|
} else {
|
2017-07-13 17:12:45 +00:00
|
|
|
assert(false);
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the sender is a delegate
|
|
|
|
uint senderDIdx = getDelegateIdx(n, idSender);
|
|
|
|
if (senderDIdx != NOTFOUND) {
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// If the receiver is another donor
|
2017-06-06 17:40:14 +00:00
|
|
|
if (receiver.managerType == NoteManagerType.Donor) {
|
|
|
|
// Only accept to change to the original donor to remove all delegates
|
2017-07-13 17:12:45 +00:00
|
|
|
assert(n.owner == idReceiver);
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length);
|
2017-06-06 17:40:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the receiver is another delegate
|
|
|
|
if (receiver.managerType == NoteManagerType.Delegate) {
|
|
|
|
uint receiverDIdx = getDelegateIdx(n, idReceiver);
|
2017-07-09 17:04:52 +00:00
|
|
|
|
2017-06-06 17:40:14 +00:00
|
|
|
// If the receiver is not in the delegate list
|
|
|
|
if (receiverDIdx == NOTFOUND) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
2017-07-09 17:04:52 +00:00
|
|
|
|
|
|
|
// If the receiver is already part of the delegate chain and is
|
|
|
|
// after the sender, then all of the other delegates after the sender are
|
|
|
|
// removed and the receiver is appended at the end of the delegation chain
|
2017-06-06 17:40:14 +00:00
|
|
|
} else if (receiverDIdx > senderDIdx) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
2017-07-09 17:04:52 +00:00
|
|
|
|
|
|
|
// If the receiver is already part of the delegate chain and is
|
|
|
|
// before the sender, then the sender and all of the other
|
2017-07-13 17:21:53 +00:00
|
|
|
// delegates after the RECEIVER are revomved from the chain,
|
2017-07-09 17:04:52 +00:00
|
|
|
// this is interesting because the delegate undelegates from the
|
|
|
|
// delegates that delegated to this delegate... game theory issues? should this be allowed
|
2017-06-06 17:40:14 +00:00
|
|
|
} else if (receiverDIdx <= senderDIdx) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - receiverDIdx -1);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// If the delegate wants to support a project, they undelegate all
|
|
|
|
// the delegates after them in the chain and choose a project
|
2017-06-06 17:40:14 +00:00
|
|
|
if (receiver.managerType == NoteManagerType.Project) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
proposeAssignProject(idNote, amount, idReceiver);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-07-13 17:12:45 +00:00
|
|
|
assert(false); // It is not the owner nor any delegate.
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
/// @notice This method is used to withdraw value from the system. This can be used
|
|
|
|
/// by the donors to avoid committing the donation or by project manager to use
|
2017-07-04 23:13:24 +00:00
|
|
|
/// the Ether.
|
|
|
|
/// @param idNote Id of the note that wants to be withdrawed.
|
|
|
|
/// @param amount Quantity of Ether that wants to be withdrawed.
|
2017-06-06 17:40:14 +00:00
|
|
|
function withdraw(uint64 idNote, uint amount) {
|
|
|
|
|
|
|
|
idNote = normalizeNote(idNote);
|
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(n.paymentState == PaymentState.NotPaid);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
NoteManager storage owner = findManager(n.owner);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(owner.addr == msg.sender);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
uint64 idNewNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.Paying
|
|
|
|
);
|
|
|
|
|
|
|
|
doTransfer(idNote, idNewNote, amount);
|
|
|
|
|
|
|
|
vault.authorizePayment(bytes32(idNewNote), owner.addr, amount);
|
|
|
|
}
|
|
|
|
|
2017-07-04 23:13:24 +00:00
|
|
|
/// @notice Method called by the vault to confirm a payment.
|
|
|
|
/// @param idNote Id of the note that wants to be withdrawed.
|
|
|
|
/// @param amount Quantity of Ether that wants to be withdrawed.
|
2017-06-06 17:40:14 +00:00
|
|
|
function confirmPayment(uint64 idNote, uint amount) onlyVault {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:12:45 +00:00
|
|
|
require(n.paymentState == PaymentState.Paying);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-06-27 11:08:23 +00:00
|
|
|
// Check the project is not canceled in the while.
|
2017-07-13 17:12:45 +00:00
|
|
|
require(getOldestNoteNotCanceled(idNote) == idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
uint64 idNewNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.Paid
|
|
|
|
);
|
|
|
|
|
|
|
|
doTransfer(idNote, idNewNote, amount);
|
|
|
|
}
|
|
|
|
|
2017-07-04 23:13:24 +00:00
|
|
|
/// @notice Method called by the vault to cancel a payment.
|
|
|
|
/// @param idNote Id of the note that wants to be canceled for withdraw.
|
|
|
|
/// @param amount Quantity of Ether that wants to be rolled back.
|
2017-06-06 17:40:14 +00:00
|
|
|
function cancelPayment(uint64 idNote, uint amount) onlyVault {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
2017-07-13 17:21:53 +00:00
|
|
|
require(n.paymentState == PaymentState.Paying); //TODO change to revert
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
// When a payment is cacnceled, never is assigned to a project.
|
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.NotPaid
|
|
|
|
);
|
|
|
|
|
|
|
|
oldNote = normalizeNote(oldNote);
|
|
|
|
|
|
|
|
doTransfer(idNote, oldNote, amount);
|
|
|
|
}
|
|
|
|
|
2017-08-18 16:47:22 +00:00
|
|
|
/// @notice Method called to cancel this project.
|
2017-07-04 23:13:24 +00:00
|
|
|
/// @param idProject Id of the projct that wants to be canceled.
|
2017-06-06 17:40:14 +00:00
|
|
|
function cancelProject(uint64 idProject) {
|
2017-07-13 17:12:45 +00:00
|
|
|
NoteManager storage project = findManager(idProject);
|
2017-08-18 16:47:22 +00:00
|
|
|
require(project.addr == msg.sender);
|
2017-06-06 17:40:14 +00:00
|
|
|
project.canceled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////
|
|
|
|
// Multi note methods
|
|
|
|
////////
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// This set of functions makes moving a lot of notes around much more
|
|
|
|
// efficient (saves gas) than calling these functions in series
|
2017-06-06 17:40:14 +00:00
|
|
|
uint constant D64 = 0x10000000000000000;
|
|
|
|
function mTransfer(uint64 idSender, uint[] notesAmounts, uint64 idReceiver) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
transfer(idSender, idNote, amount, idReceiver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mWithdraw(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
withdraw(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mConfirmPayment(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
confirmPayment(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mCancelPayment(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
cancelPayment(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////
|
|
|
|
// Private methods
|
|
|
|
///////
|
|
|
|
|
2017-07-13 17:21:53 +00:00
|
|
|
// this function is obvious, but it can also be called to undelegate everyone
|
2017-07-09 17:04:52 +00:00
|
|
|
// by setting your self as teh idReceiver
|
2017-07-04 23:13:24 +00:00
|
|
|
function transferOwnershipToProject(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-08-18 16:47:22 +00:00
|
|
|
require(getNoteLevel(n) < MAX_INTERPROJECT_LEVEL);
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
uint64 toNote = findNote(
|
2017-07-09 17:04:52 +00:00
|
|
|
idReceiver,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
oldNote,
|
|
|
|
PaymentState.NotPaid);
|
2017-06-06 17:40:14 +00:00
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
2017-07-04 23:13:24 +00:00
|
|
|
function transferOwnershipToDonor(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
idReceiver,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
2017-06-06 17:40:14 +00:00
|
|
|
function appendDelegate(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n= findNote(idNote);
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-07-13 17:21:53 +00:00
|
|
|
require(n.delegationChain.length < MAX_DELEGATES); //TODO change to revert and say the error
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64[] memory newDelegationChain = new uint64[](n.delegationChain.length + 1);
|
|
|
|
for (uint i=0; i<n.delegationChain.length; i++) {
|
|
|
|
newDelegationChain[i] = n.delegationChain[i];
|
|
|
|
}
|
2017-07-13 17:21:53 +00:00
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// Make the last item in the array the idReceiver
|
2017-06-06 17:40:14 +00:00
|
|
|
newDelegationChain[n.delegationChain.length] = idReceiver;
|
2017-07-09 17:04:52 +00:00
|
|
|
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
newDelegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @param q Unmber of undelegations
|
|
|
|
function undelegate(uint64 idNote, uint amount, uint q) internal {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64[] memory newDelegationChain = new uint64[](n.delegationChain.length - q);
|
|
|
|
for (uint i=0; i<n.delegationChain.length - q; i++) {
|
|
|
|
newDelegationChain[i] = n.delegationChain[i];
|
|
|
|
}
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
newDelegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
function proposeAssignProject(uint64 idNote, uint amount, uint64 idReceiver) internal {// Todo rename
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-08-18 16:47:22 +00:00
|
|
|
require(getNoteLevel(n) < MAX_SUBPROJECT_LEVEL);
|
2017-07-04 23:13:24 +00:00
|
|
|
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
idReceiver,
|
2017-09-13 12:41:08 +00:00
|
|
|
uint64(getTime() + maxCommitTime(n)),
|
2017-06-06 17:40:14 +00:00
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
2017-09-13 12:41:08 +00:00
|
|
|
function doTransfer(uint64 from, uint64 to, uint _amount) internal {
|
2017-09-14 06:03:36 +00:00
|
|
|
uint amount = callPlugins(true, from, to, _amount);
|
2017-06-26 17:54:28 +00:00
|
|
|
if (from == to) return;
|
|
|
|
if (amount == 0) return;
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage nFrom = findNote(from);
|
|
|
|
Note storage nTo = findNote(to);
|
|
|
|
require(nFrom.amount >= amount);
|
2017-06-06 17:40:14 +00:00
|
|
|
nFrom.amount -= amount;
|
|
|
|
nTo.amount += amount;
|
|
|
|
|
|
|
|
Transfer(from, to, amount);
|
2017-09-14 06:03:36 +00:00
|
|
|
callPlugins(false, from, to, amount);
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
// This function does 2 things, #1: it checks to make sure that the pledges are correct
|
2017-07-13 17:21:53 +00:00
|
|
|
// if the a pledged project has already been commited then it changes the owner
|
2017-07-09 17:04:52 +00:00
|
|
|
// to be the proposed project (Note that the UI will have to read the commit time and manually
|
|
|
|
// do what this function does to the note for the end user at the expiration of the committime)
|
|
|
|
// #2: It checks to make sure that if there has been a cancellation in the chain of projects,
|
2017-07-13 17:21:53 +00:00
|
|
|
// then it adjusts the note's owner appropriately.
|
2017-06-06 17:40:14 +00:00
|
|
|
function normalizeNote(uint64 idNote) internal returns(uint64) {
|
2017-07-13 17:12:45 +00:00
|
|
|
Note storage n = findNote(idNote);
|
2017-07-09 17:04:52 +00:00
|
|
|
|
|
|
|
// Check to make sure this note hasnt already been used or is in the process of being used
|
2017-06-06 17:40:14 +00:00
|
|
|
if (n.paymentState != PaymentState.NotPaid) return idNote;
|
|
|
|
|
|
|
|
// First send to a project if it's proposed and commited
|
2017-06-27 11:08:23 +00:00
|
|
|
if ((n.proposedProject > 0) && ( getTime() > n.commitTime)) {
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.proposedProject,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, n.amount);
|
2017-06-26 17:54:28 +00:00
|
|
|
idNote = toNote;
|
2017-06-27 11:08:23 +00:00
|
|
|
n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
2017-07-09 17:04:52 +00:00
|
|
|
toNote = getOldestNoteNotCanceled(idNote);// TODO toNote is note defined
|
2017-06-06 17:40:14 +00:00
|
|
|
if (toNote != idNote) {
|
|
|
|
doTransfer(idNote, toNote, n.amount);
|
|
|
|
}
|
2017-06-26 17:54:28 +00:00
|
|
|
|
|
|
|
return toNote;
|
|
|
|
}
|
2017-08-18 16:47:22 +00:00
|
|
|
|
2017-09-13 12:41:08 +00:00
|
|
|
/////////////
|
|
|
|
// Plugins
|
|
|
|
/////////////
|
|
|
|
|
2017-09-14 06:03:36 +00:00
|
|
|
function callPlugin(bool before, uint64 managerId, uint64 fromNote, uint64 toNote, uint64 context, uint amount) internal returns (uint allowedAmount) {
|
|
|
|
uint newAmount;
|
2017-09-13 12:41:08 +00:00
|
|
|
allowedAmount = amount;
|
|
|
|
NoteManager storage manager = findManager(managerId);
|
|
|
|
if ((address(manager.plugin) != 0) && (allowedAmount > 0)) {
|
2017-09-14 06:03:36 +00:00
|
|
|
if (before) {
|
|
|
|
newAmount = manager.plugin.beforeTransfer(managerId, fromNote, toNote, context, amount);
|
|
|
|
require(newAmount <= allowedAmount);
|
|
|
|
allowedAmount = newAmount;
|
|
|
|
} else {
|
|
|
|
manager.plugin.afterTransfer(managerId, fromNote, toNote, context, amount);
|
|
|
|
}
|
2017-09-13 12:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 06:03:36 +00:00
|
|
|
function callPluginsNote(bool before, uint64 idNote, uint64 fromNote, uint64 toNote, uint amount) internal returns (uint allowedAmount) {
|
2017-09-13 12:41:08 +00:00
|
|
|
uint64 offset = idNote == fromNote ? 0 : 256;
|
|
|
|
allowedAmount = amount;
|
|
|
|
Note storage n = findNote(idNote);
|
|
|
|
|
2017-09-14 06:03:36 +00:00
|
|
|
allowedAmount = callPlugin(before, n.owner, fromNote, toNote, offset, allowedAmount);
|
2017-09-13 12:41:08 +00:00
|
|
|
|
|
|
|
for (uint64 i=0; i<n.delegationChain.length; i++) {
|
2017-09-14 06:03:36 +00:00
|
|
|
allowedAmount = callPlugin(before, n.delegationChain[i], fromNote, toNote, offset + i+1, allowedAmount);
|
2017-09-13 12:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (n.proposedProject > 0) {
|
2017-09-14 06:03:36 +00:00
|
|
|
allowedAmount = callPlugin(before, n.proposedProject, fromNote, toNote, offset + 255, allowedAmount);
|
2017-09-13 12:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 06:03:36 +00:00
|
|
|
function callPlugins(bool before, uint64 fromNote, uint64 toNote, uint amount) internal returns (uint allowedAmount) {
|
2017-09-13 12:41:08 +00:00
|
|
|
allowedAmount = amount;
|
|
|
|
|
2017-09-14 06:03:36 +00:00
|
|
|
allowedAmount = callPluginsNote(before, fromNote, fromNote, toNote, allowedAmount);
|
|
|
|
allowedAmount = callPluginsNote(before, toNote, fromNote, toNote, allowedAmount);
|
2017-09-13 12:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-06-26 17:54:28 +00:00
|
|
|
/////////////
|
|
|
|
// Test functions
|
|
|
|
/////////////
|
|
|
|
|
|
|
|
function getTime() internal returns (uint) {
|
|
|
|
return now;
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
event Transfer(uint64 indexed from, uint64 indexed to, uint amount);
|
|
|
|
|
|
|
|
}
|