Файл: oc-admin/market.php
Строк: 195
<?php if ( ! defined('ABS_PATH')) exit('ABS_PATH is not loaded. Direct access is not allowed.');
/*
 * Copyright 2014 Osclass
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
    class CAdminMarket extends AdminSecBaseModel
    {
        function __construct()
        {
            parent::__construct();
        }
        //Business Layer...
        function doModel()
        {
            parent::doModel();
            if((time()-(int)(osc_market_data_update()))>(86400)) { //84600 = 24*60*60
                $json = osc_file_get_contents(
                    osc_market_url() . 'categories/',
                    array(
                        'api_key' => osc_market_api_connect()
                    )
                );
                $data = @json_decode($json, true);
                if(is_array($data)) {
                    osc_set_preference('marketCategories', $json);
                    osc_set_preference('marketDataUpdate', time());
                    osc_reset_preferences();
                }
            }
            switch ($this->action) {
                case('buy'):
                    osc_csrf_check();
                    $json = osc_file_get_contents(
                        osc_market_url() . 'token/',
                        array(
                            'api_key' => osc_market_api_connect()
                        )
                    );
                    $data = json_decode($json, true);
                    osc_redirect_to(Params::getParam('url') . '?token=' . @$data['token']);
                    break;
                case('purchases'):
                case('plugins'):
                case('themes'):
                case('languages'):
                    $section = $this->action;
                    $title = array(
                        'plugins'    => __('Recommended plugins for You'),
                        'themes'     => __('Recommended themes for You'),
                        'languages'  => __('Languages for this version'),
                        'purchases'  => __('My purchases')
                        );
                    // page number
                    $marketPage     = Params::getParam("mPage")!=''?Params::getParam("mPage"):0;
                    $url_actual     = osc_admin_base_url(true) . '?page=market&action='.$section;
                    $url_premium  = $url_actual.'&sort=premium';
                    $url_all   = $url_actual.'&sort=all';
                    $sort = Params::getParam('sort')!='all'?'premium':'all';
                    $sort_actual = '&sort=' . $sort;
                    $url_actual .= '&mPage=' . $marketPage;
                    if($marketPage>=1) {
                        $marketPage--;
                    }
                    // api
                    $url = osc_market_url($section).(Params::getParam('sCategory')!=''?'category/'.Params::getParam('sCategory').'/':'')."page/".$marketPage.'/length/9/';
                    $url .= 'order/'. $sort . '/desc';
                    // pageSize or length attribute is hardcoded
                    $out    = osc_file_get_contents($url, array('api_key' => osc_market_api_connect()));
                    $array  = json_decode($out, true);
                    $output_pagination = '';
                    if( is_numeric($array['total']) && $array['total']>0 ) {
                        $totalPages = ceil( $array['total'] / $array['sizePage'] );
                        $pageActual = $array['page'];
                        $params     = array(
                            'total'    => $totalPages,
                            'selected' => $pageActual,
                            'url'      => osc_admin_base_url(true).'?page=market'.'&action='.$section.'&mPage={PAGE}'.$sort_actual,
                            'sides'    => 5
                        );
                        // set pagination
                        $pagination = new Pagination($params);
                        $output_pagination = $pagination->doPagination();
                    } else {
                        $array['total'] = 0;
                    }
                    $aFeatured = array();
                    if($section=='plugins' || $section=='themes') {
                        $out_featured = osc_file_get_contents(osc_market_featured_url($this->action, 3));
                        $array_featured = json_decode($out_featured, true);
                        if (isset($array_featured)) {
                            $aFeatured = $array_featured[$section];
                        }
                    }
                    $this->_exportVariableToView("aFeatured", $aFeatured);
                    // export variable to view
                    $this->_exportVariableToView("title"     , $title);
                    $this->_exportVariableToView("section"   , $section);
                    $this->_exportVariableToView("array"     , $array);
                    $this->_exportVariableToView("url_premium"        , $url_premium);
                    $this->_exportVariableToView("url_all"            , $url_all);
                    $this->_exportVariableToView("sort"               , $sort);
                    $this->_exportVariableToView("market_categories"  , json_decode(osc_market_categories(), true));
                    $this->_exportVariableToView('pagination', $output_pagination);
                    $this->doView("market/section.php");
                    break;
                default:
                    $aPlugins       = array();
                    $aThemes        = array();
                    $aLanguages     = array();
                    $out_plugin     = osc_file_get_contents(osc_market_featured_url('plugins', 9) );
                    $array_plugins  = json_decode($out_plugin, true);
                    if(isset($array_plugins)) {
                        $aPlugins = $array_plugins['plugins'];
                    }
                    $out_themes     = osc_file_get_contents(osc_market_featured_url('themes', 6) );
                    $array_themes   = json_decode($out_themes, true);
                    if(isset($array_themes)) {
                        $aThemes    = $array_themes['themes'];
                    }
                    $out_languages   = osc_file_get_contents(osc_market_featured_url('languages', 6) );
                    $array_languages = json_decode($out_languages, true);
                    if(isset($array_languages)) {
                        $aLanguages  = $array_languages['languages'];
                    }
                    $count = json_decode( osc_file_get_contents(osc_market_count_url()), true);
                    if( !isset($count['pluginsTotal']) ) {
                        $count['pluginsTotal'] = 0;
                    }
                    if( !isset($count['themesTotal']) ) {
                        $count['themesTotal'] = 0;
                    }
                    if( !isset($count['languagesTotal']) ) {
                        $count['languagesTotal'] = 0;
                    }
                    $this->_exportVariableToView("count"        , $count);
                    $this->_exportVariableToView("aPlugins"     , $aPlugins);
                    $this->_exportVariableToView("aThemes"      , $aThemes);
                    $this->_exportVariableToView("aLanguages"   , $aLanguages);
                    $this->_exportVariableToView("market_categories"  , json_decode(osc_market_categories(), true));
                    $this->doView("market/index.php");
                break;
            }
        }
        function __call($name, $arguments)
        {
            // TODO: Implement __call() method.
        }//hopefully generic...
        function doView($file)
        {
            osc_run_hook("before_admin_html");
            osc_current_admin_theme_path($file);
            Session::newInstance()->_clearVariables();
            osc_run_hook("after_admin_html");
        }
    }
    /* file end: ./oc-admin/market.php */
?>