示例#1
0
        public PensionFundContract CheckContractCreationTransaction(String transactionHash)
        {
            var pensionFundContract = Data.GetPensionFundContract(transactionHash);

            if (pensionFundContract == null)
            {
                throw new ArgumentException("Invalid transaction hash.");
            }

            Transaction demoContractTransaction = EthereumManager.GetTransaction(transactionHash);

            if (demoContractTransaction == null)
            {
                if (pensionFundContract.CreationDate < DateTime.UtcNow.AddMinutes(PensionFundTransactionBusiness.BLOCKCHAIN_TRANSACTION_TOLERANCE))
                {
                    PoolInfo poolInfo = GetPoolInfo();
                    if (!poolInfo.Pending.Contains(pensionFundContract.TransactionHash))
                    {
                        Logger.LogError(string.Format("Transaction for creation contract {0} is lost.", pensionFundContract.TransactionHash));
                        List <PensionFundReferenceContract> referenceDistribution = PensionFundReferenceContractBusiness.List(pensionFundContract.TransactionHash);
                        if (!referenceDistribution.Any())
                        {
                            throw new Exception("Reference contract cannot be found.");
                        }

                        PensionFund pensionFund = PensionFundBusiness.GetByTransaction(pensionFundContract.TransactionHash);
                        if (pensionFund == null)
                        {
                            throw new Exception("Pension fund cannot be found.");
                        }

                        pensionFund.Option.Company.BonusDistribution = BonusDistributionBusiness.List(pensionFund.Option.Company.Address);
                        if (!pensionFund.Option.Company.BonusDistribution.Any())
                        {
                            throw new ArgumentException("Bonus distribution cannot be found.");
                        }

                        PensionFundReferenceContractBusiness.Delete(pensionFundContract.TransactionHash);
                        Delete(pensionFundContract);
                        pensionFundContract = Create(pensionFund.Option.Address, pensionFund.Option.Company.Address,
                                                     pensionFund.Option.Company.Employee.Address, pensionFund.Option.Fee, pensionFund.Option.LatePenalty,
                                                     pensionFund.Option.Company.MaxSalaryBonusRate, pensionFund.Option.Company.Employee.Contribution,
                                                     pensionFund.Option.Company.BonusRate, pensionFund.Option.Company.Employee.Salary,
                                                     referenceDistribution.ToDictionary(c => c.ReferenceContractAddress, c => c.Percentage),
                                                     pensionFund.Option.Company.BonusDistribution.ToDictionary(c => c.Period, c => c.ReleasedBonus));
                        foreach (PensionFundReferenceContract reference in referenceDistribution)
                        {
                            PensionFundReferenceContractBusiness.Create(pensionFundContract.TransactionHash, reference.ReferenceContractAddress, reference.Percentage);
                        }
                    }
                }
                return(pensionFundContract);
            }
            else
            {
                pensionFundContract = UpdateAfterMined(pensionFundContract, demoContractTransaction);
            }

            return(pensionFundContract);
        }
示例#2
0
        public PensionFundContract Create(String pensionFundAddress, String employerAddress, String employeeAddress, double pensionFundFee,
                                          double pensionFundLatePenalty,
                                          double maxSalaryBonus,
                                          double employeeContribution,
                                          double employeeContributionBonus,
                                          double employeeSalary,
                                          Dictionary <string, double> referenceValues,
                                          Dictionary <int, double> bonusVestingDistribuition)
        {
            var defaultDemonstrationPensionFundSmartContract = SmartContractBusiness.GetDefaultDemonstrationPensionFund();

            KeyValuePair <string, string> demoTransaction = EthereumManager.DeployDefaultPensionFund(defaultDemonstrationPensionFundSmartContract.GasLimit,
                                                                                                     pensionFundAddress, employerAddress, employeeAddress,
                                                                                                     pensionFundFee, pensionFundLatePenalty, AUCTUS_FEE, maxSalaryBonus, employeeContribution, employeeContributionBonus, employeeSalary,
                                                                                                     referenceValues, bonusVestingDistribuition.ToDictionary(c => c.Key * 12, c => c.Value));

            var pensionFundContract = new PensionFundContract()
            {
                CreationDate             = DateTime.UtcNow,
                PensionFundOptionAddress = pensionFundAddress,
                TransactionHash          = demoTransaction.Key,
                SmartContractId          = defaultDemonstrationPensionFundSmartContract.Id,
                SmartContractCode        = demoTransaction.Value
            };

            Insert(pensionFundContract);

            return(pensionFundContract);
        }
示例#3
0
        public Withdrawal ReadWithdrawal(string contractAddress)
        {
            string     cacheKey         = string.Format("Withdrawal{0}", contractAddress);
            Withdrawal cachedWithdrawal = MemoryCache.Get <Withdrawal>(cacheKey);

            if (cachedWithdrawal != null)
            {
                return(cachedWithdrawal);
            }

            PensionFund            pensionFund   = PensionFundBusiness.GetByContract(contractAddress);
            SmartContract          smartContract = SmartContractBusiness.GetDefaultDemonstrationPensionFund();
            PensionFundTransaction transaction   = Data.List(pensionFund.Option.PensionFundContract.TransactionHash).Where(c => c.FunctionType == FunctionType.CompleteWithdrawal).SingleOrDefault();

            if (transaction == null)
            {
                return(null);
            }

            WithdrawalInfo withdrawalInfo = EthereumManager.ReadWithdrawalFromDefaultPensionFund(contractAddress);

            PensionFundTransaction[] pendingCreate   = string.IsNullOrEmpty(transaction.TransactionHash) ? new PensionFundTransaction[] { transaction } : new PensionFundTransaction[0];
            PensionFundTransaction[] pendingComplete = pendingCreate.Length == 0 && !transaction.BlockNumber.HasValue ? new PensionFundTransaction[] { transaction } : new PensionFundTransaction[0];
            BaseEventInfo[]          withdrawEvent   = withdrawalInfo != null ? new BaseEventInfo[] { withdrawalInfo } : new BaseEventInfo[0];

            HandleTransactions(smartContract, pensionFund, new PensionFundTransaction[] { }, pendingCreate, pendingComplete, withdrawEvent);

            Withdrawal withdrawal = null;

            if (withdrawalInfo != null)
            {
                withdrawal = new Withdrawal()
                {
                    TransactionHash       = transaction.TransactionHash,
                    CreatedDate           = transaction.CreationDate,
                    Responsable           = transaction.WalletAddress,
                    BlockNumber           = withdrawalInfo.BlockNumber,
                    Period                = withdrawalInfo.Period,
                    EmployeeAbsoluteBonus = withdrawalInfo.EmployeeAbsoluteBonus,
                    EmployeeBonus         = withdrawalInfo.EmployeeBonus,
                    EmployeeSzaboCashback = withdrawalInfo.EmployeeSzaboCashback,
                    EmployeeTokenCashback = withdrawalInfo.EmployeeTokenCashback,
                    EmployerSzaboCashback = withdrawalInfo.EmployerSzaboCashback,
                    EmployerTokenCashback = withdrawalInfo.EmployerTokenCashback,
                    ReferenceDate         = pensionFund.Option.PensionFundContract.CreationDate.AddMonths(withdrawalInfo.Period).Date
                };
                MemoryCache.Set <Withdrawal>(cacheKey, withdrawal);
            }
            else
            {
                withdrawal = new Withdrawal()
                {
                    TransactionHash = transaction.TransactionHash,
                    CreatedDate     = transaction.CreationDate,
                    Responsable     = transaction.WalletAddress
                };
            }
            return(withdrawal);
        }
示例#4
0
文件: BaseBusiness.cs 项目: ocg1/Demo
        protected PoolInfo GetPoolInfo()
        {
            PoolInfo poolInfo = EthereumManager.GetPoolInfo();

            if (poolInfo.Queued.Count > 0)
            {
                Logger.LogError(string.Format("Pool problem. {0} queued messages.", poolInfo.Queued.Count));
            }
            if (poolInfo.Pending.Count > 120)
            {
                Logger.LogError("Pool critical use. More then 120 pending messages.");
            }
            return(poolInfo);
        }
示例#5
0
        public Withdrawal GetWithdrawalInfo(string pensionFundContractAddress)
        {
            PensionFund    pensionFund    = GetByContract(pensionFundContractAddress);
            SmartContract  smartContract  = SmartContractBusiness.GetDefaultDemonstrationPensionFund();
            WithdrawalInfo withdrawalInfo = EthereumManager.GetWithdrawalInfo(pensionFund.Option.Company.Employee.Address, pensionFundContractAddress, smartContract.ABI);

            return(new Withdrawal()
            {
                EmployeeAbsoluteBonus = withdrawalInfo.EmployeeAbsoluteBonus,
                EmployeeBonus = withdrawalInfo.EmployeeBonus,
                EmployeeSzaboCashback = withdrawalInfo.EmployeeSzaboCashback,
                EmployeeTokenCashback = withdrawalInfo.EmployeeTokenCashback,
                EmployerSzaboCashback = withdrawalInfo.EmployerSzaboCashback,
                EmployerTokenCashback = withdrawalInfo.EmployerTokenCashback
            });
        }
示例#6
0
        private PensionFundTransaction GenerateContractTransaction(PensionFundTransaction pensionFundTransaction, string employeeAddress,
                                                                   string contractAddress, string abi, int gasLimit, int daysOverdue)
        {
            if (pensionFundTransaction.FunctionType == FunctionType.EmployeeBuy)
            {
                pensionFundTransaction.TransactionHash = EthereumManager.EmployeeBuyFromDefaultPensionFund(employeeAddress, contractAddress, abi, daysOverdue, gasLimit);
            }
            else if (pensionFundTransaction.FunctionType == FunctionType.CompanyBuy)
            {
                pensionFundTransaction.TransactionHash = EthereumManager.EmployerBuyFromDefaultPensionFund(employeeAddress, contractAddress, abi, daysOverdue, gasLimit);
            }
            else if (pensionFundTransaction.FunctionType == FunctionType.CompleteWithdrawal)
            {
                pensionFundTransaction.TransactionHash = EthereumManager.WithdrawalFromDefaultPensionFund(employeeAddress, contractAddress, abi, gasLimit);
            }
            else
            {
                throw new ArgumentException("Invalid function type for payment transaction.");
            }

            Update(pensionFundTransaction);
            return(pensionFundTransaction);
        }
示例#7
0
        public Progress ReadPayments(string contractAddress)
        {
            PensionFund pensionFund = PensionFundBusiness.GetByContract(contractAddress);

            string         cacheKey      = GetCachePaymentKey(contractAddress);
            List <Payment> cachedPayment = MemoryCache.Get <List <Payment> >(cacheKey);

            if (cachedPayment != null && cachedPayment.Count == 120)
            {
                return(PensionFundBusiness.GetProgress(pensionFund, cachedPayment));
            }

            SmartContract smartContract = SmartContractBusiness.GetDefaultDemonstrationPensionFund();
            IEnumerable <PensionFundTransaction> transactions = Data.List(pensionFund.Option.PensionFundContract.TransactionHash).
                                                                Where(c => c.FunctionType == FunctionType.EmployeeBuy || c.FunctionType == FunctionType.CompanyBuy);
            IEnumerable <PensionFundTransaction> pendingCreateTransactions   = transactions.Where(c => string.IsNullOrEmpty(c.TransactionHash));
            IEnumerable <PensionFundTransaction> pendingCompleteTransactions = transactions.Where(c => !c.BlockNumber.HasValue && !string.IsNullOrEmpty(c.TransactionHash));

            if (!transactions.Any())
            {
                return(PensionFundBusiness.GetProgress(pensionFund, new List <Payment>()));
            }
            else if (cachedPayment != null && cachedPayment.Count == transactions.Count())
            {
                return(PensionFundBusiness.GetProgress(pensionFund, cachedPayment));
            }
            else if (cachedPayment != null && (cachedPayment.Count + pendingCreateTransactions.Count()) == transactions.Count())
            {
                transactions = HandleTransactions(smartContract, pensionFund, transactions, pendingCreateTransactions, pendingCompleteTransactions, new BaseEventInfo[] { });
                return(PensionFundBusiness.GetProgress(pensionFund, pendingCreateTransactions.Select(c => new Payment()
                {
                    CreatedDate = c.CreationDate,
                    Responsable = c.WalletAddress
                }).Concat(cachedPayment)));
            }

            List <BuyInfo> buyEvents = EthereumManager.ReadBuyFromDefaultPensionFund(contractAddress);

            transactions = HandleTransactions(smartContract, pensionFund, transactions, pendingCreateTransactions, pendingCompleteTransactions,
                                              buyEvents.Select(c => new BaseEventInfo()
            {
                BlockNumber = c.BlockNumber, TransactionHash = c.TransactionHash
            }));

            List <Payment> completedPayments = new List <Payment>();

            if (buyEvents.Count > 0)
            {
                foreach (PensionFundTransaction trans in transactions)
                {
                    BuyInfo buyInfo = buyEvents.SingleOrDefault(c => c.TransactionHash == trans.TransactionHash);
                    if (buyInfo != null)
                    {
                        completedPayments.Add(new Payment()
                        {
                            TransactionHash = trans.TransactionHash,
                            CreatedDate     = trans.CreationDate,
                            Responsable     = trans.WalletAddress,
                            BlockNumber     = buyInfo.BlockNumber,
                            Period          = buyInfo.Period,
                            AuctusFee       = buyInfo.AuctusFee,
                            LatePenalty     = buyInfo.LatePenalty,
                            PensionFundFee  = buyInfo.PensionFundFee,
                            SzaboInvested   = buyInfo.SzaboInvested,
                            TokenAmount     = buyInfo.TokenAmount,
                            DaysOverdue     = buyInfo.DaysOverdue,
                            ReferenceDate   = pensionFund.Option.PensionFundContract.CreationDate.AddMonths(buyInfo.Period).Date
                        });
                    }
                }
                if (completedPayments.Count > 0)
                {
                    MemoryCache.Set <List <Payment> >(cacheKey, completedPayments);
                }
            }
            IEnumerable <Payment> remainingPayments = transactions.Where(c => string.IsNullOrEmpty(c.TransactionHash) ||
                                                                         !completedPayments.Any(l => l.TransactionHash == c.TransactionHash)).Select(c => new Payment()
            {
                TransactionHash = c.TransactionHash,
                CreatedDate     = c.CreationDate,
                Responsable     = c.WalletAddress
            });

            return(PensionFundBusiness.GetProgress(pensionFund, remainingPayments.Concat(completedPayments)));
        }
 /// <summary>
 /// Create a new instance of this class.
 /// </summary>
 /// <param name="ethereumManager">
 /// The ethereum manager that this view model uses to obtain information.
 /// </param>
 public PostIcoViewModel(EthereumManager ethereumManager)
     : base(ethereumManager)
 {
 }