Ejemplo n.º 1
0
 function post()
 {
     if ($this->checkAuth()) {
         if (AvailablePaymentMethodsData::hasBitPay()) {
             $jsonObj = json_decode(file_get_contents("php://input"));
             if (json_last_error() == JSON_ERROR_NONE) {
                 //file_put_contents('IPNData.txt', print_r($jsonObj, true));
                 $payment = new PaymentSystem();
                 $posDataObj = json_decode($jsonObj->posData);
                 $invoiceArr = explode(',', $posDataObj->invoiceList);
                 if (json_last_error() == JSON_ERROR_NONE) {
                     //file_put_contents('IPNPosData.txt', print_r($invoiceArr, true));
                     // todo: maybe confirm posData for extra Security?
                     if ($payment->confirmBitPayPaidComplete($jsonObj->id)) {
                         // todo: compare amounts paid vs invoice amount
                         //file_put_contents('here1.txt', $posDataObj->userID);
                         $payment->updateInvoicesPaid($invoiceArr, $jsonObj->id, PaymentMethod::BitPay, $posDataObj->userID);
                     } else {
                         if ($payment->confirmBitPayPending($jsonObj->id)) {
                             //file_put_contents('here2.txt', $posDataObj->userID);
                             $payment->updateInvoicesPending($invoiceArr, $posDataObj->userID);
                         }
                     }
                 } else {
                     // todo: record error somewhere
                 }
                 echo json_encode(StatusReturn::S200());
             } else {
                 echo json_encode(StatusReturn::E400('Bad JSON!'));
             }
         } else {
             echo json_encode(StatusReturn::E404('404 Not Found!'));
         }
     }
 }
Ejemplo n.º 2
0
 * PHP Version 5.6.18
 * @package PHP-REST-API
 * @author Marc Godard <*****@*****.**>
 * @copyright 2016 Marc Godard
 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
 * @note This program is distributed in the hope that it will be useful - WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 */
use PHP_REST_API\Modules\Modules;
use PHP_REST_API\ApiAuthRouter;
use PHP_REST_API\ApiAuthRouterHook;
use PHP_REST_API\Helpers\StatusReturn;
error_reporting(E_ALL);
date_default_timezone_set('UTC');
//set_error_handler('\\PHP_REST_API\\Helpers\\ErrorHandling::errorHandler');
//set_exception_handler('\\PHP_REST_API\\Helpers\\ErrorHandling::exceptionHandler');
require_once 'system/Constants.php';
/* AutoLoaders */
require_once 'system/Libraries/autoload.php';
require_once "system/AutoLoader.php";
ApiAuthRouterHook::add("404", function () {
    echo json_encode(StatusReturn::E404('404 Not Found!'));
});
ApiAuthRouterHook::add("404Web", function () {
    StatusReturn::WEB404();
});
$controllersArray = array('/' => array('controller' => 'WebSPA', 'auth' => false), '/:uuidV4/' => array('controller' => 'InvoiceDownload', 'auth' => false), '/bit-pay-ipn/' => array('controller' => 'BitPayIPN', 'auth' => false), '/api/check-username/:alphaNumPlus/' => array('controller' => 'SignUpUserName', 'auth' => false), '/api/check-email/:email/' => array('controller' => 'SignUpEmail', 'auth' => false), '/api/sign-up/' => array('controller' => 'SignUp', 'auth' => false), '/api/forgot-password/' => array('controller' => 'ForgotPassword', 'auth' => false), '/api/initiate/' => array('controller' => 'InitiateConnection', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true, 'initialize' => true), '/api/check-login/' => array('controller' => 'CheckLogin', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true), '/api/account-settings/' => array('controller' => 'AccountSettings', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true), '/api/system-variables/' => array('controller' => 'SystemVariables', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true), '/api/change-password/' => array('controller' => 'ChangePassword', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true), '/api/change-question/' => array('controller' => 'ChangeSecurityQuestion', 'roles' => array('i18nAdmin', 'i18nUser'), 'whenLocked' => true), '/api/manage-users/:alphaNumPlus/' => array('controller' => 'ManageUsers', 'roles' => array('i18nAdmin', 'i18nManage'), 'whenLocked' => true), '/api/manage-users/' => array('controller' => 'ManageUsers', 'roles' => array('i18nAdmin', 'i18nManage'), 'whenLocked' => true), '/api/billing/:string/:number/' => array('controller' => 'Billing', 'roles' => array('i18nAdmin', 'i18nManage'), 'whenLocked' => true), '/api/billing/:string/' => array('controller' => 'Billing', 'roles' => array('i18nAdmin', 'i18nManage'), 'whenLocked' => true), '/api/billing/' => array('controller' => 'Billing', 'roles' => array('i18nAdmin', 'i18nManage'), 'whenLocked' => true), '/api/pages/' => array('controller' => 'ModulePages', 'roles' => array('i18nAdmin', 'i18nManage', 'i18nUser'), 'whenLocked' => true));
$modules = new Modules();
$controllersArray = array_merge($controllersArray, $modules->getAllRoutes());
ApiAuthRouter::serve($controllersArray);
Ejemplo n.º 3
0
 function delete_xhr($type, $paymentProfileID)
 {
     if ($this->checkAuth()) {
         $headers = getallheaders();
         $userPay = new PaymentSystem();
         $userPay->loadUser(mb_strtolower($headers['Auth-User']));
         if ($type == 'profiles') {
             if (isset($paymentProfileID) && $userPay->delPaymentProfile($paymentProfileID)) {
                 echo json_encode(StatusReturn::S200());
             } else {
                 echo json_encode(StatusReturn::E400('Profile Missing!'));
             }
         } else {
             echo json_encode(StatusReturn::E404('404 Not Found!'));
         }
     }
 }