Index.php 4.8 KB
<?php

namespace App\Http\Controllers;

use App\Fun;
use Illuminate\Support\Facades\View;

class Index extends Controller
{
    //

    public function __construct()
    {
        View::share('_langs',Fun::lang());

        View::share('the_lang',THE_LANG);

        // 设置语言
        \Illuminate\Support\Facades\App::setLocale(THE_LANG);


    }

    /**
     * 首页
     * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
     * @author:dc
     * @time 2022/11/16 9:06
     */
    public function home()
    {
        $this->seo('home');
        return view('home');
    }


    public function about()
    {
        $this->seo('about');
        return view('about');
    }

    public function blog()
    {
        $this->seo('blog');
        $lists  =   $this->request('blog');
        if(!empty($lists['links'])){
            foreach ($lists['links'] as &$link){
                preg_match("/page=(\d+)/m",$link['url'],$p);
                $link['page'] = $p[1]??0;
            }
        }
        return view('blog',[
            'lists' =>  $lists
        ]);
    }

    public function blog_info($id){
        $this->seo('blog');
        $lists  =   $this->request('blog/'.$id);

        return view('blog_body',[
            'data' =>  $lists
        ]);
    }

    public function kolSolution()
    {
        $this->seo('kolSolution');
        return view('kolSolution');
    }

    public function fqa()
    {
        $this->seo('fqa');
        return view('fqa');
    }

    public function shop()
    {
        $this->seo('shop');
        return view('shop');
    }

    public function shopApp()
    {
        $this->seo('shopApp');
        return view('shopk_app');
    }


    private function seo($page='home'){
        $seo    =   [
            'home'  =>  [
                'type' =>  '',
                'app_name' =>  '',
                'title' =>  '',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'about'  =>  [
                'type' =>  '',
                'app_name' =>  '',
                'title' =>  '',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'blog'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'ShopK - Trusted Online Reselling APP',
                'keywords' =>  'Shopping, APP, Shopk, Online Reseller App',
                'description' =>  'ShopK gives users access to a virtual shop, millions of products from trusted suppliers, payment and shipping facilities thereby removing the hassles of'
            ],
            'kolSolution'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'Kol Solution',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'fqa'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'FAQs',
                'keywords' =>  '',
                'description' =>  'What do I need to do to sign up? Simply fill out the application form to get started. We’ll contact you by WhatsApp. Does it cost me anything to become a ShopK affiliate? The program is free to join, there are no charges.'
            ],
            'shop'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'Shop',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'shopApp'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'ShopK APP Download &#8211; Trusted Online Reselling APP',
                'keywords' =>  '',
                'description' =>  'ShopK APP Download &#8211; Trusted Online Reselling APP'
            ],
        ];
        View::share('seo',$seo[$page]);
    }


    /**
     * 获取数据
     * @param $url
     * @param array $data
     * @return mixed
     * @author:dc
     * @time 2022/11/21 14:03
     */
    private function request($url,$data=[]){
        $url = 'https://oa.shopk.com/api/shopk/'.$url;
//        $url = 'http://local.oa.shopk.com/api/shopk/'.$url;
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_TIMEOUT, 30);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        $a = curl_exec($ch);
//        $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        curl_close($ch);

        $a = json_decode($a,true);

        return $a['data']??[];
    }


}