View file PF.Base/module/admincp/include/component/controller/store/verify.class.php

File size: 3.44Kb
<?php
defined('PHPFOX') or exit('NO DICE!');
define('PHPFOX_APP_INSTALLING', true);

class Admincp_Component_Controller_Store_Verify extends Phpfox_Component
{
    public function process()
    {
        try{
            $zip = $this->request()->get('zip');
            $type = $this->request()->get('type');
            $appDir = $this->request()->get('apps_dir');
            $productId = $this->request()->get('id');
            $extraBase64 = $this->request()->get('extraBase64');

            $manager = new \Core\Installation\Manager();

            $param = [
                'type'      => $type,
                'filename'  => $zip,
                'productId' => $productId,
                'apps_dir' => $appDir,
                'extra'     => json_decode(base64_decode($extraBase64), true),
            ];

            $result = $manager->verifyFilesystem($param);

            $this->template()
                ->setSectionTitle('<a href="' . $this->url()->current() . '">' . _p('Installation') . '</a>');

            if ($type != 'module') {
                if ($this->request()->method() == 'POST') {
                    $form = '';
                    $params = [
                        'productName' => isset($result['productName']) ? $result['productName'] : '',
                        'type' => $type,
                        'productId' => $productId,
                        'apps_dir' => $appDir,
                        'extraBase64' => $extraBase64,
                        'targetDirectory' => (isset($result['targetDirectory']) ? $result['targetDirectory'] : '')
                    ];
                    foreach ($params as $key => $value) {
                        $form .= '<input type="hidden" name="' . $key . '" value="' . $value . '">';
                    }
                    echo '
                            <form id="verify" target="_top" method="post" action="' . $this->url()->makeUrl('admincp.store.ftp') . '">
                                ' . $form . '
                            </form>
                            <script>
                                window.document.getElementById(\'verify\').submit();
                            </script>
                        ';
                    exit;
                }

                $this->url()->send('admincp.store.ftp', [
                    'productName' =>  isset($result['productName']) ? $result['productName'] : '',
                    'type' => $type,
                    'productId' => $productId,
                    'extraBase64' => $extraBase64,
                    'apps_dir' => $appDir,
                    'targetDirectory' => (isset($result['targetDirectory']) ? $result['targetDirectory'] : '')
                ]);
            }
        }catch(\Exception $ex){
            return Phpfox_Error::display($ex->getMessage());
        }

        $this->template()
            ->assign([
                'storeUrl'      => Core\Home::store(),
                'productId'     => $productId,
                'newFiles'      => $result['new'],
                'removeFiles'   => $result['remove'],
                'overrideFiles' => (isset($result['update']) ? $result['update'] : []),
                'productName'   => isset($result['productName']) ? $result['productName'] : '',
                'type'          => $type,
                'extraBase64'   => $extraBase64,
                'targetDirectory' => (isset($result['targetDirectory']) ? $result['targetDirectory'] : '')
            ]);

    }
}