Index.php 13.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
<?php

namespace Guang;

use LibModels\Wap\Guang\ListData;
use LibModels\Wap\Guang\DetailData;
use Configs\CacheConfig;
use Plugin\Helpers;
use Plugin\Cache;

/**
 * 
 * @name IndexModel
 * @package models/Guang
 * @copyright yoho.inc
 * @version 1.0 (2015-10-27 11:31:49)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class IndexModel
{

    /**
     * 获取逛首页分类内容列表
     * 
     * @param string $gender "1,3"表示男, "2,3"表示女
     * @param int channel APP客户端标识 1表示男,2:表示女,3:潮童,4:创意生活
     * @param int type 分类ID 0:最新,1:话题,2:搭配,3:潮人,4:潮品,5:小贴士
     * @param int $uid 用户ID
     * @param string $udid 客户端唯一标识
     * @param int $page 分页第几页, 默认第1页
     * @return array
     */
    public static function getArticleGroup($gender, $type, $uid, $udid, $page = 1)
    {
        // 逛首页的分类名称列表
        $category = ListData::category();
        $articleGroup = array();

        switch ($gender) {
            case '1,3': // 男
                $articleGroup = ListData::articleGroup($category['data'], '1,3', $uid, $udid, $page);
                break;
            case '2,3': // 女
                $articleGroup = ListData::articleGroup($category['data'], '2,3', $uid, $udid, $page);
                break;
            default: // 其它所有
                $articleGroup = ListData::articleGroup($category['data'], '1,2,3', $uid, $udid, $page);
                break;
        }

        $data = array();
        $build = array();

        // 模板中使用JS的标识
        $data['guangHome'] = true;

        // 顶部的分类列表
        foreach ($category['data'] as $value) {
            $build = array();
            $build['typeId'] = $value['id'];
            $build['type'] = $value['name'];
            $build['focus'] = ($value['id'] == $type);
            $data['navs'][] = $build;
        }

        $data['guang']['swiper'] = array();
        $data['guang']['infos'] = array();
        foreach ($articleGroup as $id => $value) {
            // 判断是否有内容
            if (empty($value['list'])) {
                continue;
            }

            // 轮番广告
            if ($id == 0) {
                $build = array();
                foreach ($value['list']['adlist'] as $banner) {
                    $build['url'] = Helpers::getFilterUrl($banner['url']);
                    $build['img'] = Helpers::getImageUrl($banner['src'], 830, 327);
                    $data['guang']['swiper'][] = $build;
                }
            }

            // 内容列表
            $build = array();
            $build['show'] = ($id == $type);
            foreach ($value['list']['artList'] as $article) {
                $build['info'][] = Helpers::formatArticle($article, true, false);
            }
            $data['guang']['infos'][] = $build;
        }

        // 分页需要参数
        $data['guang']['gender'] = $gender;

        $category = array();

        return $data;
    }

    /**
     * 获取逛首页分类内容列表
     * 
     * @param string $gender "1,3"表示男, "2,3"表示女
     * @param int channel APP客户端标识 1表示男,2:表示女,3:潮童,4:创意生活
     * @param int type 分类ID 0:最新,1:话题,2:搭配,3:潮人,4:潮品,5:小贴士,59:专题
     * @param int $uid 用户ID
     * @param string $udid 客户端唯一标识
     * @param int $page 分页第几页, 默认第1页
     * @return array
     */
    public static function getArticle($gender, $type, $uid, $udid, $page = 1)
    {
        // 逛首页的分类名称列表
        $category = ListData::category();
        $article = array();

        switch ($gender) {
            case '1,3': // 男
                $article = ListData::article('1,3', $type, $uid, $udid, $page);
                break;
            case '2,3': // 女
                $article = ListData::article('2,3', $type, $uid, $udid, $page);
                break;
            default: // 其它所有
                $article = ListData::article('1,2,3', $type, $uid, $udid, $page);
                break;
        }

        $data = array();
        $build = array();

        // 模板中使用JS的标识
        $data['guangHome'] = true;
        
        // 分页需要参数
        $data['guang']['gender'] = $gender;

        // 显示底部
        $data['pageFooter'] = true;
        
        // 缓存键名
        $key = CacheConfig::KEY_ACTION_GUANG_LIST_DATA . sprintf('%s_%s_%s', $gender, $type, $page);

        // 顶部的分类列表
        $curIndex=0;//当前tab顺序
        if (!empty($category['data'])) {
            $indexTmp = 0;
            foreach ($category['data'] as $value) {
                $build = array();
                $build['typeId'] = $value['id'];
                $build['type'] = $value['name'];
                $build['focus'] = ($value['id'] == $type);
                $data['navs'][] = $build;
                $data['guang']['infos'][$indexTmp] = array(
                    'show' => $build['focus'],
                    'info' => array(),
                    'typeId'=>$type
                );
                if($build['focus']){
                   $curIndex = $indexTmp;
                }
                $indexTmp++;
            }
        }

        // 广告列表
        if (!empty($article['data']['list']['adlist'])) {
            foreach ($article['data']['list']['adlist'] as $value) {
                $build = array();
                $build['url'] = Helpers::getFilterUrl($value['url']);
                $build['img'] = Helpers::getImageUrl($value['src'], 830, 327);
                $data['guang']['swiper'][] = $build;
            }
        }
//        // 只有当$type=0时才有广告参数返回, 所以需要再调一次!!
//        else {
//            $temp = ListData::article('1,3', 0, 0, '', $page);
//            if (!empty($temp['data']['list']['adlist'])) {
//                foreach ($temp['data']['list']['adlist'] as $value) {
//                    $build = array();
//                    $build['url'] = Helpers::getFilterUrl($value['url']);
//                    $build['img'] = Helpers::getImageUrl($value['src'], 830, 327);
//                    $data['guang']['swiper'][] = $build;
//                }
//            }
//            $temp = array();
//        }

        // 内容列表
        if (!empty($article['data']['list']['artList'])) {
            foreach ($article['data']['list']['artList'] as $value) {
                $data['guang']['infos'][$curIndex]['info'][] = Helpers::formatArticle($value, true, false, true);
            }
            
            
            if (USE_CACHE) {
                $result = Cache::get($key, 'master');
                if (empty($result)) {
                // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
                    Cache::set($key, $data, 300);
                }
            }
        } 
        // 当接口异常时,尝试从二级缓存(slave)获取
        elseif (USE_CACHE) {
            $result = Cache::get($key, 'slave');
            if (!empty($result)) {
                return $result;
            }
        }

        $category = array();
        $article = array();
        return $data;
    }

    /**
     * 获取订阅的资讯文章列表
     * 
     * @param string $gender 性别参数(1,3表示男, 2,3表示女, 默认为所有)
     * @return array
     */
    public static function getRssArticle($gender)
    {
        $result = array();

        if (USE_CACHE) {
            $key = CacheConfig::KEY_ACTION_GUANG_RSS_DATA;
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get($key, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        $article = array();
        switch ($gender) {
            case '1,3':
                $article = ListData::article('1,3', 0, 0, '', 1, null, null, 100, false);
                break;
            case '2,3':
                $article = ListData::article('2,3', 0, 0, '', 1, null, null, 100, false);
                break;
            default:
                $article = ListData::article('1,2,3', 0, 0, '', 1, null, null, 100, false);
                break;
        }

        // 内容列表
        if (!empty($article['data']['list']['artList'])) {
            $build = array();
            foreach ($article['data']['list']['artList'] as $value) {
                if (isset($value['id'])) {
                    $build = Helpers::formatArticle($value, false, false, true);
                    if (!isset($build['author']['name'])) {
                        $build['author']['name'] = '';
                    }
                    $build['intro'] = self::genIntro($value['id']);
                    $result[] = $build;
                }
            }
        }

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

        return $result;
    }
    
    /**
     * 逛标签列表或作者内容列表
     * 
     * @param string $gender "1,3"表示男, "2,3"表示女, "1,2,3"表示所有
     * @param int $sortId 分类ID
     * @param int $uid 用户ID
     * @param string $udid 客户端唯一标识
     * @param int $page 分页第几页, 默认第1页
     * @param string $tag 标签
     * @param int $authorId 作者ID
     * @return array
     */
    public static function getArticleByTagOrEditor($gender, $sortId, $uid = 0, $udid = '', $page = 1, $tag = null, $authorId = null)
    {
        // 缓存键名
        if (isset($tag)) {
            $key = CacheConfig::KEY_ACTION_GUANG_LIST_DATA . sprintf('tag_%s_%s_%s_%s', $gender, $sortId, $page, $tag);
        } else {
            $key = CacheConfig::KEY_ACTION_GUANG_LIST_DATA . sprintf('editor_%s_%s_%s_%s', $gender, $sortId, $page, $authorId);
        }
        
        // 调用接口,获取内容
        $article = ListData::article($gender, $sortId, $uid, $udid, $page, $tag, $authorId);
        // 内容列表
        if (!empty($article['data']['list']['artList'])) {
            if (USE_CACHE) {
                $result = Cache::get($key, 'master');
                if (empty($result)) {
                    // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
                    Cache::set($key, $article, 300);
                }
            }
        } 
        // 当接口异常时,尝试从二级缓存(slave)获取
        elseif (USE_CACHE) {
            $result = Cache::get($key, 'slave');
            if (!empty($result)) {
                return $result;
            }
        }
        
        return $article;
    }

    /**
     * 获取切换逛类别或者分页时的文章数据
     *
     * @param string $gender "1,3"表示男, "2,3"表示女
     * @param int $sortId 分类ID
     * @param int $uid 用户ID
     * @param string $udid 客户端唯一标识
     * @param int $page 分页第几页, 默认第1页
     * @param string $tag 标签
     * @param string $authorId 作者ID
     * @param boolean $isApp 是否是APP
     * @param boolean $showAuthor 是否显示作者
     * @param boolean $isTab 是否为tab切换操作
     * @return array
     */
    public static function getPageData($gender, $sortId, $uid, $udid, $page, $tag, $authorId, $isApp, $showAuthor, $isTab)
    {
        $result = array();

        do {
            $article = ListData::article($gender, $sortId, $uid, $udid, $page, $tag, $authorId);
            if (empty($article['data']['list']['artList'])) {
                break;
            }

            // 广告列表
            if ($isTab && !empty($article['data']['list']['adlist'])) {
                foreach ($article['data']['list']['adlist'] as $value) {
                    $build = array();
                    $build['url'] = Helpers::getFilterUrl($value['url']);
                    $build['img'] = Helpers::getImageUrl($value['src'], 830, 327);
                    $result['swiper'][] = $build;
                }
            }

            /* 构建资讯文章内容 */
            $build = array();
            foreach ($article['data']['list']['artList'] as $article) {
                $build[] = Helpers::formatArticle($article, true, $isApp, $showAuthor, $uid);
            }
            $result['infos'] = $build;
        } while (false);
        return $result;
    }

    /**
     * 构建信息内容
     * 
     * @param array $data
     * @return array
     */
    private static function genIntro($id)
    {
        $result = '';

        $data = DetailData::intro($id);
        if (!empty($data)) {
            foreach ($data as $value) {
                // 文字
                if (isset($value['text'])) {
                    $result .= trim(strip_tags(htmlspecialchars_decode($value['text']['data']['text']))) . '<br/>';
                }
                // 单张图
                elseif (isset($value['singleImage'])) {
                    $result .= '<img src="' . Helpers::getImageUrl($value['singleImage']['data'][0]['src'], 640, 640) . '"/><br/>';
                }
                // 多张小图
                elseif (isset($value['smallPic']['data'])) {
                    foreach ($value['smallPic']['data'] as $small) {
                        $result .= '<img src="' . Helpers::getImageUrl($small['src'], 315, 420) . '"/>';
                    }
                    $result .= '<br/>';
                }
            }
        }
        $data = array();

        return $result;
    }

}