DetailData.php 11.7 KB
<?php

namespace LibModels\Wap\Guang;

use Api\Yohobuy;
use Configs\CacheConfig;
use Plugin\Cache;
use Api\Sign;

/**
 * 逛资讯详情相关的数据模型
 * 
 * @name DetailData
 * @package LibModels/Wap/Guang
 * @copyright yoho.inc
 * @version 1.0 (2015-10-10 14:49:15)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class DetailData
{

    const URI_PACKAGE_ARTICLE = 'guang/service/v2/article/';
    const URI_PACKAGE_AUTHOR = 'guang/service/v1/author/';

    /**
     * 逛资讯详情页数据封装
     * 
     * @param int $id 内容ID
     * @param bool $isApp 标识是否是APP访问
     * @return array
     */
    public static function package($id, $isApp = false)
    {
        $result = array();
        $result['getAuthor'] = array();
        $result['getArticle'] = array();
        $result['getArticleContent'] = array();
        $result['getBrand'] = array();
        $result['getOtherArticle'] = array();

        // 客户端类型
        $clientType = $isApp ? 'iphone' : 'h5';
        $key = CacheConfig::KEY_ACTION_GUANG_DETAIL_DATA . strval($id) . $clientType;

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $cached = Cache::get($key, 'master');
            if (!empty($cached)) {
//                $article = Yohobuy::yarClient(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticle', array($id, $clientType), false, 1000);

                // 获取资讯
                $param = Yohobuy::param();
                $param['article_id'] = $id;
                $param['client_type'] = $clientType;
                $param['private_key'] = Yohobuy::$privateKeyList[$clientType];
                $param['client_secret'] = Sign::getSign($param);
                $result1 = Yohobuy::get(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getArticle', $param);
                
                if (isset($result1['code']) && $result1['code'] !== 200) {
                    $result['code'] = 400;
                    return $result;
                }
                $result = $result1;
                
                $article = $result['data'];

                if (isset($article['pageViews'])) {
                    $cached['getArticle']['pageViews'] = $article['pageViews'];
                }
                return $cached;
            }
        }

        // 获取资讯
//        $article = Yohobuy::yarClient(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticle', array($id, $clientType), false, 1500);
//        ksort($article);
//        file_put_contents('../../../../../../Desktop/app/o/getArticle.txt', var_export($article, true));

        // 获取资讯
        $param = Yohobuy::param();
        $param['article_id'] = $id;
        $param['client_type'] = $clientType;
        $param['private_key'] = Yohobuy::$privateKeyList[$clientType];
        $param['client_secret'] = Sign::getSign($param);
        $result1 = Yohobuy::get(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getArticle', $param);
        //接口要判断一下返回状态是否成功,OK,I 服了 YOU
        if (isset($result1['code']) && $result1['code'] !== 200) {
            $result['code'] = 400;
            return $result;
        }
        $result = $result1;
        
        $article = $result['data'];
//        file_put_contents('../../../../../../Desktop/app/n/getArticle3.txt', var_export($article, true));

        if (USE_CACHE && !isset($article['author_id'])) {
            // 再尝试获取二级缓存(slave), 有数据则直接返回.
            $cached = Cache::get($key, 'slave');
            if (!empty($cached)) {
                return $cached;
            }
            return $result;
        }
        $result['getArticle'] = $article;


        // 获取作者信息
        $param = Yohobuy::param();
        $param['author_id'] = $article['author_id'];
        $param['client_secret'] = Sign::getSign($param);
        $urlList['getAuthor'] = Yohobuy::httpBuildQuery(Yohobuy::SERVICE_URL . self::URI_PACKAGE_AUTHOR . 'getAuthor', $param);

        // 获取资讯内容
        $param = Yohobuy::param();
        $param['article_id'] = $id;
        $param['client_type'] = $clientType;
        $param['private_key'] = Yohobuy::$privateKeyList[$clientType];
        $param['client_secret'] = Sign::getSign($param);
        $urlList['getArticleContent'] = Yohobuy::httpBuildQuery(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getArticleContent', $param);

        // 获取资讯相关的品牌
        $param = Yohobuy::param();
        $param['article_id'] = $id;
        $param['client_type'] = $clientType;
        $param['private_key'] = Yohobuy::$privateKeyList[$clientType];
        $param['client_secret'] = Sign::getSign($param);
        $urlList['getBrand'] = Yohobuy::httpBuildQuery(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getBrand', $param);

        // 获取资讯相关的其它资讯
        if (isset($article['tag'])) {
            $param = Yohobuy::param();
            $param['article_id'] = $id;
            $param['client_type'] = $clientType;
            $param['tags'] = $article['tag'];
            $param['offset'] = 0;
            $param['limit'] = 3;
            $param['private_key'] = Yohobuy::$privateKeyList[$clientType];
            $param['client_secret'] = Sign::getSign($param);
            $urlList['getOtherArticle'] = Yohobuy::httpBuildQuery(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getOtherArticle', $param);
        }

        $multiResult = Yohobuy::getMulti($urlList, array());
        $result['getAuthor'] = $multiResult['getAuthor'];
        $result['getArticleContent'] = $multiResult['getArticleContent'];
        $result['getBrand'] = $multiResult['getBrand'];
        $result['getOtherArticle'] = $multiResult['getOtherArticle'];
//        var_dump($urlList);
//        file_put_contents('../../../../../../Desktop/app/n/getAuthor.txt', var_export($result['getAuthor'], true));
//        file_put_contents('../../../../../../Desktop/app/n/getArticleContent.txt', var_export($result['getArticleContent'], true));
//        file_put_contents('../../../../../../Desktop/app/n/getBrand.txt', var_export($result['getBrand'], true));
//        file_put_contents('../../../../../../Desktop/app/n/getOtherArticle.txt', var_export($result['getOtherArticle'], true));

        /*
        // 获取作者信息
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_AUTHOR, 'getAuthor', array($article['author_id'], $clientType), function ($retval) use (&$result) {
            $result['getAuthor'] = empty($retval) ? array() : $retval;
            ksort($retval);
            file_put_contents('../../../../../../Desktop/app/o/getAuthor.txt', var_export($retval, true));
        });

        // 获取资讯内容
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticleContent', array($id, $clientType), function ($retval) use (&$result) {
            $result['getArticleContent'] = empty($retval) ? array() : $retval;
            ksort($retval);
            file_put_contents('../../../../../../Desktop/app/o/getArticleContent.txt', var_export($retval, true));
        });

        // 获取资讯相关的品牌
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getBrand', array($id, $clientType), function ($retval) use (&$result) {
            $result['getBrand'] = empty($retval) ? array() : $retval;
            ksort($retval);
            file_put_contents('../../../../../../Desktop/app/o/getBrand.txt', var_export($retval, true));
        });

        // 获取资讯相关的其它资讯
        if (isset($article['tag'])) {
            Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getOtherArticle', array($article['tag'], $id, 0, 3, $clientType), function ($retval) use (&$result) {
                $result['getOtherArticle'] = empty($retval) ? array() : $retval;
                ksort($retval);
                file_put_contents('../../../../../../Desktop/app/o/getOtherArticle.txt', var_export($retval, true));
            });
        }

        // 调用发起请求
        Yohobuy::yarConcurrentLoop();

        */

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get($key, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            elseif (!empty($result['getArticle']) && !empty($result['getArticleContent'])) {
                Cache::set($key, $result);
            }
        }

        return $result;
    }

    /**
     * 逛资讯详情页数据封装 (专为YOHO!潮流志APP提供)
     * 
     * @param int $id 内容ID
     * @param bool $isApp 标识是否是APP访问
     * @return array
     */
    public static function packageFoEzine($id, $isApp = false)
    {
        $result = array();
        $result['getAuthor'] = array();
        $result['getArticle'] = array();
        $result['getArticleContent'] = array();
        $result['getBrand'] = array();
        $result['getOtherArticle'] = array();

        // 客户端类型
        $clientType = $isApp ? 'iphone' : 'h5';

        // 获取资讯
        $article = Yohobuy::yarClient(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticle', array($id, $clientType));
        if (!isset($article['author_id'])) {
            return $result;
        }
        $result['getArticle'] = $article;

        // 获取资讯内容
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticleContent', array($id, $clientType), function ($retval) use (&$result) {
            $result['getArticleContent'] = empty($retval) ? array() : $retval;
        });

        // 获取资讯相关的品牌
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getBrand', array($id, $clientType), function ($retval) use (&$result) {
            $result['getBrand'] = empty($retval) ? array() : $retval;
        });

        // 调用发起请求
        Yohobuy::yarConcurrentLoop();

        return $result;
    }
    
    /**
     * 逛资讯数据封装 (专为YOHO!男女生资讯站提供)
     * 
     * @param int $id 内容ID
     * @param bool $isApp 标识是否是APP访问
     * @return array
     */
    public static function packageForYoho($id, $isApp = false)
    {
        $result = array();
        
        // 客户端类型
        $clientType = $isApp ? 'iphone' : 'h5';
        
        // 获取资讯内容
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticleContent', array($id, $clientType), function ($retval) use (&$result) {
            $result['getArticleContent'] = empty($retval) ? array() : $retval;
        });

        // 获取资讯相关的品牌
        Yohobuy::yarConcurrentCall(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getBrand', array($id, $clientType), function ($retval) use (&$result) {
            $result['getBrand'] = empty($retval) ? array() : $retval;
        });

        // 调用发起请求
        Yohobuy::yarConcurrentLoop();
        
        return $result;
    }

    /**
     * 获取详情信息
     */
    public static function intro($id)
    {
        $param = Yohobuy::param();
        $param['article_id'] = $id;
        $param['client_type'] = 'h5';
        $param['private_key'] = Yohobuy::$privateKeyList['h5'];
        $param['client_secret'] = Sign::getSign($param);
        $result = Yohobuy::get(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE . 'getArticleContent', $param);
        return $result['data'];

//        return Yohobuy::yarClient(Yohobuy::SERVICE_URL . self::URI_PACKAGE_ARTICLE, 'getArticleContent', array($id, 'h5'));
    }

}