113 lines
3.6 KiB
PHP
113 lines
3.6 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\Component;
|
|
|
|
use function Vvveb\prefixArrayKeys;
|
|
use Vvveb\System\Cart\Currency;
|
|
use Vvveb\System\Component\ComponentBase;
|
|
use Vvveb\System\Core\Request;
|
|
use Vvveb\System\Event;
|
|
use Vvveb\System\Images;
|
|
use Vvveb\System\Sites;
|
|
|
|
class Order extends ComponentBase {
|
|
public static $defaultOptions = [
|
|
'order_id' => null,
|
|
'customer_order_id' => null,
|
|
'user_id' => null,
|
|
'email' => null,
|
|
'image_size' => 'thumb',
|
|
];
|
|
|
|
public $options = [];
|
|
|
|
public $cacheExpire = 0; //no cache
|
|
|
|
function results() {
|
|
$results = [];
|
|
|
|
$request = Request::getInstance();
|
|
|
|
if (isset($this->options['order_id']) || isset($this->options['customer_order_id'])) {
|
|
$orders = new \Vvveb\Sql\OrderSQL();
|
|
|
|
$results = $orders->get($this->options);
|
|
$site = Sites :: getSiteData();
|
|
$scheme = $_SERVER['REQUEST_SCHEME'] ?? 'http';
|
|
$url = ['host' => SITE_URL, 'scheme' => $scheme];
|
|
$host = $scheme . '://' . SITE_URL;
|
|
|
|
if ($results && $results['order']) {
|
|
$currency = Currency::getInstance();
|
|
|
|
if (isset($results['products'])) {
|
|
foreach ($results['products'] as $id => &$product) {
|
|
$product['url'] = htmlspecialchars(\Vvveb\url('product/product/index', $product + $url));
|
|
|
|
if (isset($product['images'])) {
|
|
$product['images'] = json_decode($product['images'], true);
|
|
|
|
foreach ($product['images'] as &$image) {
|
|
$image['image'] = $host . Images::image($image['image'], 'product', $this->options['image_size']);
|
|
}
|
|
}
|
|
|
|
if (isset($product['image']) && $product['image']) {
|
|
$product['image'] = $host . Images::image($product['image'], 'product', $this->options['image_size']);
|
|
//$product['images'][] = ['image' => Images::image($product['image'], 'product')];
|
|
}
|
|
|
|
if (isset($product['option_value'])) {
|
|
$product['option_value'] = json_decode($product['option_value'], true);
|
|
|
|
foreach ($product['option_value'] as &$option) {
|
|
if (isset($option['price'])) {
|
|
$option['price_formatted'] = $currency->format($option['price']);
|
|
}
|
|
}
|
|
}
|
|
|
|
$product['tax_formatted'] = $currency->format($product['tax']);
|
|
}
|
|
}
|
|
|
|
foreach ($results['total'] as $id => &$total) {
|
|
$total['value_formatted'] = $currency->format($total['value']);
|
|
}
|
|
|
|
$order = &$results['order'];
|
|
$order['total_formatted'] = $currency->format($order['total']);
|
|
$order['shipping_data'] = isset($order['shipping_data']) ? json_decode($order['shipping_data'], true) : [];
|
|
$order['payment_data'] = isset($order['payment_data']) ? json_decode($order['payment_data'], true) : [];
|
|
|
|
$order += prefixArrayKeys('shipping_', $order['shipping_data']) ?? [];
|
|
$order += prefixArrayKeys('payment_', $order['payment_data']) ?? [];
|
|
}
|
|
|
|
list($results) = Event :: trigger(__CLASS__,__FUNCTION__, $results);
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
}
|