This will avoid double payouts via the website. Payouts will be requested by users and processed by a cron. If, for whatever reason, users do add two requests (it is checked if a payout exists) they would only have one successful payout until their account balance is back up to a save value to trigger the payout. This should fix any issues with manual payouts being exploited through the website. Will require some testing by others to ensure things work as expected.
83 lines
3.5 KiB
PHP
Executable File
83 lines
3.5 KiB
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
|
|
/*
|
|
|
|
Copyright:: 2013, Sebastian Grewe
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
// Include all settings and classes
|
|
require_once('shared.inc.php');
|
|
|
|
if ($bitcoin->can_connect() !== true) {
|
|
$log->logFatal(" unable to connect to RPC server, exiting");
|
|
$monitoring->setStatus($cron_name . "_active", "yesno", 0);
|
|
$monitoring->setStatus($cron_name . "_message", "message", "Unable to connect to RPC server");
|
|
$monitoring->setStatus($cron_name . "_status", "okerror", 1);
|
|
exit(1);
|
|
}
|
|
|
|
// var_dump($oPayout->createPayout(1.12, 1));
|
|
$aPayouts = $oPayout->getUnprocessedPayouts();
|
|
|
|
if (count($aPayouts) > 0) {
|
|
$log->logInfo("\tAccount ID\tUsername\tBalance\t\tCoin Address");
|
|
foreach ($aPayouts as $aData) {
|
|
$aBalance = $transaction->getBalance($aData['account_id']);
|
|
$dBalance = $aBalance['confirmed'];
|
|
$aData['coin_address'] = $user->getCoinAddress($aData['account_id']);
|
|
$aData['username'] = $user->getUserName($aData['account_id']);
|
|
if ($dBalance > $config['txfee']) {
|
|
$log->logInfo("\t" . $aData['account_id'] . "\t\t" . $aData['username'] . "\t" . $dBalance . "\t\t" . $aData['coin_address']);
|
|
try {
|
|
$bitcoin->validateaddress($aData['coin_address']);
|
|
} catch (BitcoinClientException $e) {
|
|
$log->logError('Failed to verify this users coin address, skipping payout');
|
|
continue;
|
|
}
|
|
try {
|
|
$bitcoin->sendtoaddress($aData['coin_address'], $dBalance);
|
|
} catch (BitcoinClientException $e) {
|
|
$log->logError('Failed to send requested balance to coin address, please check payout process');
|
|
continue;
|
|
}
|
|
// To ensure we don't run this transaction again, lets mark it completed
|
|
if (!$oPayout->setProcessed($aData['id'])) {
|
|
$log->logFatal('unable to mark transactions ' . $aData['id'] . ' as processed.');
|
|
$monitoring->setStatus($cron_name . "_active", "yesno", 0);
|
|
$monitoring->setStatus($cron_name . "_message", "message", "Unable set payout as processed");
|
|
$monitoring->setStatus($cron_name . "_status", "okerror", 1);
|
|
exit(1);
|
|
}
|
|
if ($transaction->addTransaction($aData['account_id'], $dBalance - $config['txfee'], 'Debit_MP', NULL, $aData['coin_address']) && $transaction->addTransaction($aData['account_id'], $config['txfee'], 'TXFee', NULL, $aData['coin_address'])) {
|
|
// Notify user via mail
|
|
$aMailData['email'] = $user->getUserEmail($user->getUserName($aData['account_id']));
|
|
$aMailData['subject'] = 'Manual Payout Completed';
|
|
$aMailData['amount'] = $dBalance;
|
|
$aMailData['payout_id'] = $aData['id'];
|
|
if (!$notification->sendNotification($aData['account_id'], 'manual_payout', $aMailData))
|
|
$log->logError('Failed to send notification email to users address: ' . $aMailData['email']);
|
|
} else {
|
|
$log->logError('Failed to add new Debit_MP transaction in database for user ' . $user->getUserName($aData['account_id']));
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
require_once('cron_end.inc.php');
|
|
?>
|