<?php
/**
 * Mageplaza
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Mageplaza.com license that is
 * available through the world-wide-web at this URL:
 * https://www.mageplaza.com/LICENSE.txt
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category  Mageplaza
 * @package   Mageplaza_Osc
 * @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
 * @license   https://www.mageplaza.com/LICENSE.txt
 */

namespace Mageplaza\Osc\Model\Plugin\OrderAttributes;

use Mageplaza\OrderAttributes\Helper\Data;
use Mageplaza\OrderAttributes\Model\Attribute;
use Mageplaza\OrderAttributes\Model\Config\Source\Position;
use Mageplaza\Osc\Helper\Address;

class Helper
{
    /**
     * @var Address
     */
    private $helper;

    /**
     * Helper constructor.
     *
     * @param Address $helper
     */
    public function __construct(Address $helper)
    {
        $this->helper = $helper;
    }

    /**
     * @param Data        $subject
     * @param Attribute[] $result
     *
     * @return Attribute[]
     */
    public function afterGetOrderAttributesCollection(Data $subject, $result)
    {
        if (!$this->helper->isOscPage()) {
            return $result;
        }

        $sortOrder = 0;

        $position = [];
        foreach ($this->helper->getOAFieldPosition() as $item) {
            $position[$item['code']] = $item;
        }

        $attributes = [];

        foreach ($result as $attribute) {
            $pos = $attribute->getPosition();
            $code = (string)$attribute->getAttributeCode();
            $oaField = isset($position[$code]) ? $position[$code] : null;

            if (!$oaField) {
                $attributes[] = $attribute;

                continue;
            }

            switch ((int)$pos) {
                case Position::SHIPPING_TOP:
                case Position::SHIPPING_BOTTOM:
                    $pos = !empty($oaField['bottom']) ? Position::SHIPPING_BOTTOM : Position::SHIPPING_TOP;
                    break;
                case Position::PAYMENT_TOP:
                case Position::PAYMENT_BOTTOM:
                    $pos = !empty($oaField['bottom']) ? Position::PAYMENT_BOTTOM : Position::PAYMENT_TOP;
                    break;

            }
            $attribute->setPosition($pos);
            $attribute->setSortOrder($sortOrder++);
            $attribute->setIsRequired($oaField['required']);

            $attributes[] = $attribute;
        }

        return $attributes;
    }
}
