VvebOIDC/system/shipping.php

87 lines
2.1 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 Shipping {
private $driver;
private $methods = [];
private $instances = [];
private $instance;
public static function getInstance($options = []) {
static $inst = null;
if ($inst === null) {
$inst = new Shipping($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;
$shippingData = $obj->getMethod($checkoutInfo, $options);
//if shipping method returns false or no data then don't add it to the list
if ($shippingData) {
$data[$name] = $shippingData;
}
}
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 ship(&$checkoutInfo = []) {
if ($this->instance) {
$this->instance->ship($checkoutInfo);
}
}
}