<?php

/**
 * 2007-2017 PrestaShop.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 * @author    PrestaShop SA <contact@prestashop.com>
 * @copyright 2007-2017 PrestaShop SA
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
 */

namespace PrestaShop\Module\AutoUpgrade\Twig\Form;

use PrestaShop\Module\AutoUpgrade\UpgradeTools\Translator;

class UpgradeOptionsForm
{
    /**
     * @var array
     */
    private $fields;

    /**
     * @var Translator
     */
    private $translator;

    /**
     * @var FormRenderer
     */
    private $formRenderer;

    public function __construct(Translator $translator, FormRenderer $formRenderer)
    {
        $this->translator = $translator;
        $this->formRenderer = $formRenderer;

        // TODO: Class const
        $translationDomain = 'Modules.Autoupgrade.Admin';

        $this->fields = array(
            'PS_AUTOUP_PERFORMANCE' => array(
                'title' => $translator->trans(
                    'Server performance',
                    array(),
                    $translationDomain
                ),
                'cast' => 'intval',
                'validation' => 'isInt',
                'defaultValue' => '1',
                'type' => 'select', 'desc' => $translator->trans(
                        'Unless you are using a dedicated server, select "Low".',
                        array(),
                        $translationDomain
                    ) . '<br />' .
                    $translator->trans(
                        'A high value can cause the upgrade to fail if your server is not powerful enough to process the upgrade tasks in a short amount of time.',
                        array(),
                        $translationDomain
                    ),
                'choices' => array(
                    1 => $translator->trans(
                        'Low (recommended)',
                        array(),
                        $translationDomain
                    ),
                    2 => $translator->trans('Medium', array(), $translationDomain),
                    3 => $translator->trans(
                        'High',
                        array(),
                        $translationDomain
                    ),
                ),
            ),
            'PS_AUTOUP_CUSTOM_MOD_DESACT' => array(
                'title' => $translator->trans(
                    'Disable non-native modules',
                    array(),
                    $translationDomain
                ),
                'cast' => 'intval',
                'validation' => 'isBool',
                'type' => 'bool',
                'desc' => $translator->trans(
                        'As non-native modules can experience some compatibility issues, we recommend to disable them by default.',
                        array(),
                        $translationDomain
                    ) . '<br />' .
                    $translator->trans(
                        'Keeping them enabled might prevent you from loading the "Modules" page properly after the upgrade.',
                        array(),
                        $translationDomain
                    ),
            ),
            'PS_AUTOUP_UPDATE_DEFAULT_THEME' => array(
                'title' => $translator->trans(
                    'Upgrade the default theme',
                    array(),
                    $translationDomain
                ),
                'cast' => 'intval',
                'validation' => 'isBool',
                'defaultValue' => '1',
                'type' => 'bool',
                'desc' => $translator->trans(
                        'If you customized the default PrestaShop theme in its folder (folder name "classic" in 1.7), enabling this option will lose your modifications.',
                        array(),
                        $translationDomain
                    ) . '<br />'
                    . $translator->trans(
                        'If you are using your own theme, enabling this option will simply update the default theme files, and your own theme will be safe.',
                        array(),
                        $translationDomain
                    ),
            ),

            'PS_AUTOUP_CHANGE_DEFAULT_THEME' => array(
                'title' => $translator->trans(
                    'Switch to the default theme',
                    array(),
                    $translationDomain
                ),
                'cast' => 'intval',
                'validation' => 'isBool',
                'defaultValue' => '0',
                'type' => 'bool',
                'desc' => $translator->trans(
                    'This will change your theme: your shop will then use the default theme of the version of PrestaShop you are upgrading to.',
                    array(),
                    $translationDomain
                ),
            ),

            'PS_AUTOUP_KEEP_MAILS' => array(
                'title' => $translator->trans(
                    'Keep the customized email templates',
                    array(),
                    $translationDomain
                ),
                'cast' => 'intval',
                'validation' => 'isBool',
                'type' => 'bool',
                'desc' => $translator->trans(
                        'This will not upgrade the default PrestaShop e-mails.',
                        array(),
                        $translationDomain
                    ) . '<br />'
                    . $translator->trans(
                        'If you customized the default PrestaShop e-mail templates, enabling this option will keep your modifications.',
                        array(),
                        $translationDomain
                    ),
            ),
        );
    }

    public function render()
    {
        return $this->formRenderer->render(
            'upgradeOptions',
            $this->fields,
            $this->translator->trans(
                'Upgrade Options',
                array(),
                'Modules.Autoupgrade.Admin'
            ),
            '',
            'prefs'
        );
    }
}
