View file PF.Base/module/admincp/include/component/controller/setting/license.class.php

File size: 3.86Kb
<?php
defined('PHPFOX') or exit('NO DICE!');


class Admincp_Component_Controller_Setting_License extends Phpfox_Component
{
    public function process()
    {
        //Redirect to dashboard if already valid license key
        if (defined('PHPFOX_LICENSE_ID') && PHPFOX_LICENSE_ID != 'techie'){
            $this->url()->send('admincp');
        }
        $sLicenseFile = PHPFOX_DIR_SETTINGS . 'license.sett.php';
        //Check license file is write able
        if (!is_writable($sLicenseFile)){
            $this->template()->assign([
                'bCanWrite' => false
            ]);
        } else {
            $oValid = Phpfox_Validator::instance()->set([
                'sFormName' => 'js_form',
                'aParams'   => [
                    'license_id'  => _p('Provide a license ID.'),
                    'license_key' => _p('Provide a license key.')
                ]
            ]);

            if (($aVals = $this->request()->getArray('val'))) {
                if ($oValid->isValid($aVals)) {
                    if ($aVals['license_id'] == 'techie' && $aVals['license_key'] == 'techie') {
                        $response = new stdClass();
                        $response->valid = true;
                    } else {
                        try {
                            $Home = new Core\Home($aVals['license_id'], $aVals['license_key']);
                            $response = $Home->verify([
                                'url' => $this->getHostPath()
                            ]);
                            $aLicenseInfo = $Home->info();
                        } catch (\Exception $e) {
                            $response = new stdClass();
                            $response->error = $e->getMessage();
                        }
                    }
                    // Connect to phpFox and verify the license
                    if (isset($response->valid)) {
                        if (isset($aLicenseInfo) && isset($aLicenseInfo->package_id)){
                            $sPackage = "define('PHPFOX_PACKAGE_ID', $aLicenseInfo->package_id);";
                        } else {
                            $sPackage = '';
                        }
                        $data = "<?php define('PHPFOX_LICENSE_ID', '{$aVals['license_id']}'); define('PHPFOX_LICENSE_KEY', '{$aVals['license_key']}');" . $sPackage;
                        file_put_contents($sLicenseFile, $data);
                        Phpfox::addMessage(_p("Successfully added your license key"));
                        $this->url()->send('admincp');
                    } else {
                        if (!is_object($response)) {
                            $info = $response;
                            $response = new stdClass();
                            $response->error = $info;
                        }
                        Phpfox_Error::reset();
                        Phpfox_Error::set($response->error);
                        $this->template()->assign([
                            'sError' => $response->error
                        ]);
                    }
                }
            }

            $this->template()->assign([
                'bCanWrite' => true,
                'sCreateJs'  => $oValid->createJS(),
                'sGetJsForm' => $oValid->getJsForm(),
                'bHasCurl'   => (function_exists('curl_init') ? true : false)
            ]);
        }
    }

    private function getHostPath()
    {
        $protocol = 'http';
        if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') {
            $protocol = 'https';
        }
        $parts = explode('index.php', $_SERVER['PHP_SELF']);
        $url = $protocol . '://' . $_SERVER['HTTP_HOST'] . $parts[0];
        return $url;
    }

    public function clean()
    {
        (($sPlugin = Phpfox_Plugin::get('admincp.component_controller_setting_license_clean')) ? eval($sPlugin) : false);
    }
}