87 lines
2.0 KiB
PHP
87 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Vvveb
|
|
*
|
|
* Copyright (C) 2022 Ziadin Givan
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Vvveb\System;
|
|
|
|
use Vvveb\System\Cart\Cart;
|
|
|
|
class Payment {
|
|
private $driver;
|
|
|
|
private $methods = [];
|
|
|
|
private $instances = [];
|
|
|
|
private $instance;
|
|
|
|
public static function getInstance($options = []) {
|
|
static $inst = null;
|
|
|
|
if ($inst === null) {
|
|
$inst = new Payment($options);
|
|
}
|
|
|
|
return $inst;
|
|
}
|
|
|
|
public function __construct($options = []) {
|
|
}
|
|
|
|
public function getMethods(&$checkoutInfo) {
|
|
$data = [];
|
|
|
|
foreach ($this->methods as $name => $method) {
|
|
list($class, $options) = $method;
|
|
$obj = new $class(Cart::getInstance());
|
|
$this->instances[$name] = $obj;
|
|
$paymentData = $obj->getMethod($checkoutInfo, $options);
|
|
//if payment method returns false or no data then don't add it to the list
|
|
if ($paymentData) {
|
|
$data[$name] = $paymentData;
|
|
}
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
public function registerMethod($method, $class, $options = []) {
|
|
$this->methods[$method] = [$class, $options];
|
|
}
|
|
|
|
public function setMethod($method) {
|
|
foreach ($this->instances as $instance) {
|
|
$instance->init();
|
|
}
|
|
|
|
if (isset($this->instances[$method])) {
|
|
$this->instance = $this->instances[$method];
|
|
$this->instance->setMethod();
|
|
}
|
|
}
|
|
|
|
public function authorize(&$checkoutInfo = []) {
|
|
if ($this->instance) {
|
|
$this->instance->authorize($checkoutInfo);
|
|
}
|
|
}
|
|
}
|