Helpers.php 16.6 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 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
<?php

namespace Plugin;

/**
 * 辅助类
 */
class Helpers
{

    /**
     * 构建网站的URL
     * 
     * 备注:所有的URL构建都尽量使用该方法,便于以后维护.
     * 
     * @param string $uri 如 "/passport/reg/index"
     * @param array $param 参数项 array(key1 => value1, key2 => value2,),默认为array()
     * @param string $module 模块名 如"index"表示默认, "guang"表示逛,"list"表示商品列表,"search"表示搜索
     * @return string
     */
    public static function url($uri, $param = array(), $module = 'index')
    {
        $url = '';

        switch ($module) {
            case 'guang': // 逛
                $url = 'http://guang' . SUB_DOMAIN;
                break;
            case 'list': // 商品列表
                $url = 'http://list' . SUB_DOMAIN;
                break;
            case 'search': // 搜索
                $url = 'http://search' . SUB_DOMAIN;
                break;
            case 'index': // 默认
                $url = SITE_MAIN;
                break;
            default: // 其它子域名
                $url = 'http://' . $module . SUB_DOMAIN;
        }
        $url .= $uri;
        if (!empty($param)) {
            $url .= '?' . http_build_query($param, null, '&');
        }

        return $url;
    }

    /**
     * 根据尺寸获得图片url
     * 
     * @param  string  $url  路径
     * @param  integer  $width    图片宽度
     * @param  integer  $height   图片高度
     * @param  integer $mode     模式
     * @return string            图片地址
     */
    public static function getImageUrl($url, $width, $height, $mode = 2)
    {
        return strtr($url, array('{width}' => $width, '{height}' => $height, '{mode}' => $mode));
    }

    /**
     * 获取过滤APP里附加参数后的URL链接
     * 
     * @param string $url 路径
     * @return string 去除掉如&openby:yohobuy={"action":"go.brand"}这样的APP附加参数
     */
    public static function getFilterUrl($url)
    {
        $url = strtr($url, array('.m.yohobuy.com' => SUB_DOMAIN, OLD_MAIN => SITE_MAIN, 'www.yohobuy.com' => SITE_MAIN));
        $filter = strstr($url, 'openby:yohobuy=', true);
        if ($filter) {
            return rtrim(rtrim($filter, '?'), '&');
        } else {
            return $url;
        }
    }

    /**
     * 根据用户访问的COOKIE判断出性别
     * 
     * @return string
     */
    public static function getGenderByCookie()
    {
        $cookie = isset($_COOKIE['_Channel']) ? $_COOKIE['_Channel'] : 'boys';
        switch (strval($cookie)) {
            case 'boys': // 男
                return '1,3';
            case 'girls': // 女
                return '2,3';
            default: // 其它
                return '1,2,3';
        }
    }

    /**
     * 根据用户访问的COOKIE判断出频道
     * 
     * @return int
     */
    public static function getChannelByCookie()
    {
        $cookie = isset($_COOKIE['_Channel']) ? $_COOKIE['_Channel'] : 'boys';
        switch (strval($cookie)) {
            case 'boys': // 男
                return 1;
            case 'girls': // 女
                return 2;
            case 'kids': // 潮童
                return 3;
            case 'lifestyle': // 创意生活
                return 4;
            default: // 其它
                return 1;
        }
    }

    /**
     * 获取商品的ICON
     * 
     * @param int $type
     * @return array
     */
    public static function getProductIcon($type)
    {
        static $icons = array(
            1 => 'cloth',
            3 => 'pants',
            4 => 'dress',
            6 => 'shoe',
            7 => 'bag',
            10 => 'lamp',
            241 => 'headset',
            8 => 'watch',
            360 => 'swim-suit',
            308 => 'under'
        );
        $type = intval($type);

        return isset($icons[$type]) ? $icons[$type] : '';
    }

    /**
     * 根据排序类型和类型值获得正确的排序参数
     * @param  integer $order 类型值
     * @param  string $type  排序类型
     * @return string        转换之后的排序参数
     */
    public static function transOrder($order, $type)
    {
        $result = '';

        switch ($type) {
            case 'price':
                $result = ($order == 0) ? 's_p_desc' : 's_p_asc';
                break;
            case 'discount':
                $result = ($order == 0) ? 'p_d_desc' : 'p_d_asc';
                break;
            case 'newest':
            default:
                $result = ($order == 1) ? 's_t_desc' : 's_t_asc';
                break;
        }

        return $result;
    }

    /**
     * 格式化商品信息
     * 
     * @param array $productData 需要格式化的商品数据
     * @param bool $showTag 控制是否显示标签
     * @param bool $showNew 控制是否显示NEW图标
     * @param bool $showSale 控制是否显示SALE图标
     * @param int $width 图片的宽度
     * @param int $height 图片的高度
     * @param bool $isApp 判断是不是APP访问
     * @param bool $showPoint 商品价格是否显示小数位,默认显示
     * @return array | false
     */
    public static function formatProduct($productData, $showTags = true, $showNew = true, $showSale = true, $width = 290, $height = 388, $isApp = false, $showPoint = true)
    {
        // 商品信息有问题,则不显示
        if (!isset($productData['product_skn']) || !isset($productData['goods_list'][0])) {
            return false;
        }

        // 市场价和售价一样,则不显示市场价
        if (intval($productData['market_price']) === intval($productData['sales_price'])) {
            $productData['market_price'] = false;
        }

        // 如果$productData['default_images']为空,就取$productData['goods_list']中第一个,为空就不处理
        if (empty($productData['default_images'])) {
            $productData['default_images'] = $productData['goods_list'][0]['images_url'];
        }

        $result = array();
        $result['id'] = $productData['product_skn'];
        $result['product_id'] = $productData['product_id'];
        $result['thumb'] = Images::getImageUrl($productData['default_images'], $width, $height);
        $result['name'] = $productData['product_name'];
        $result['price'] = empty($productData['market_price']) ? false :  $productData['market_price'];
        $result['salePrice'] = $productData['sales_price'];
        if ($showPoint) {
            $result['price'] && $result['price'] .= '.00';
            $result['salePrice'] && $result['salePrice'] .= '.00';
        }
        $result['is_soon_sold_out'] = ($productData['is_soon_sold_out'] === 'Y');
        $result['url'] = SITE_MAIN . '/product/pro_' . $productData['product_id'] . '_'
                                . $productData['goods_list'][0]['goods_id']
                                . '/' . $productData['cn_alphabet'] . '.html';
        // APP访问需要加附加的参数
        // 备注:如果以后APP的接口太多,可以把这边参数提取出来,变成一个公共的方法来生成,便于以后管理维护
        if ($isApp) {
            $result['url'] .= '?openby:yohobuy={"action":"go.productDetail","params":{"product_skn":'.$productData['product_skn'].'}}';
        }

        if ($showTags) {
            $result['tags'] = array();
            $result['tags']['is_new'] = $showNew && isset($productData['is_new']) && $productData['is_new'] === 'Y'; // 新品
            $result['tags']['is_discount'] = $showSale && isset($productData['is_discount']) && $productData['is_discount'] === 'Y'; // 在售
            $result['tags']['is_limited'] = isset($productData['is_limited']) && $productData['is_limited'] === 'Y'; // 限量
            $result['tags']['is_yohood'] = isset($productData['is_yohood']) && $productData['is_yohood'] === 'Y'; // YOHOOD
            $result['tags']['midYear'] = isset($productData['mid-year']) && $productData['mid-year'] === 'Y'; // 年中
            $result['tags']['yearEnd'] = isset($productData['year-end']) && $productData['year-end'] === 'Y'; // 年末
            $result['tags']['is_advance'] = isset($productData['is_advance']) && $productData['is_advance'] === 'Y'; // 再到着

            // 打折与即将售完组合显示打折
            if ($result['is_soon_sold_out'] && $result['tags']['is_discount']) {
                $result['tags']['is_new'] = false;
            }
            // 打折与其它组合则隐藏打折
            elseif ($result['tags']['is_discount'] && 
                    ($result['tags']['is_new'] || $result['tags']['is_limited'] || $result['tags']['is_yohood'] || $result['tags']['is_advance']) ) {
                $result['tags']['is_discount'] = false;
            } 
            // YOHOOD和新品组合显示YOHOOD
            elseif ($result['tags']['is_yohood'] && $result['tags']['is_new']) {
                $result['tags']['is_new'] = false;
            }
            
        }

        return $result;
    }

    /**
     * 格式化资讯文章
     * 
     * @param array $articleData 需要格式化的资讯数据
     * @param bool $showTag 是否显示左上角标签
     * @param mixed $isApp 是否显示分享,在APP客户端里嵌入需要传url链接
     * @param bool $showAuthor 控制是否显示作者信息
     * @param int $uid 当前登录的用户ID
     * @return array | false
     */
    public static function formatArticle($articleData, $showTag = true, $isApp = false, $showAuthor = true, $uid = null)
    {
        // 资讯ID不存在,则不显示
        if (!isset($articleData['id'])) {
            return false;
        }

        $result = array();
        $result['id'] = $articleData['id'];
        $result['showTags'] = $showTag;
        $result['img'] = self::getImageUrl($articleData['src'], 640, 640);
        $result['url'] = $isApp ? $articleData['url'] : self::url('/info/index', array('id' => $articleData['id']), 'guang');
        $result['title'] = $articleData['title'];
        $result['text'] = $articleData['intro'];
        $result['publishTime'] = $articleData['publish_time'];
        $result['pageView'] = $articleData['views_num'];

        // 收藏
        if ($isApp) {
            $result['collect'] = array();
            $result['collect']['isCollected'] = isset($articleData['isFavor']) && $articleData['isFavor'] === 'Y';
            $result['collect']['url'] = !empty($uid) ? 'javascript:;' : strtr($articleData['url'], array('"islogin":"N"' => '"islogin":"Y"'));
        }
        // 点赞
        else {
            $result['like'] = array();
            $result['like']['count'] = $articleData['praise_num'];
            $result['like']['isLiked'] = isset($articleData['isPraise']) && $articleData['isPraise'] === 'Y';
        }
        
        // 分享链接
        $result['share'] = $isApp && isset($articleData['share']['url']) ? $articleData['share']['url'] : false;

        // 判断是否显示作者信息
        if ($showAuthor && !empty($articleData['author'])) {
            if (!$isApp) {
                $articleData['author']['url'] = Helpers::getFilterUrl($articleData['author']['url']);
            }
            $result['author'] = $articleData['author'];
        }

        // 模板中需要的标签标识
        if ($showTag && isset($articleData['category_id'])) {
            switch (strval($articleData['category_id'])) {
                case '1': // 话题
                    $result['isTopic'] = true;
                    break;
                case '2': // 搭配
                    $result['isCollocation'] = true;
                    break;
                case '3': // 潮人
                    $result['isFashionMan'] = true;
                    break;
                case '4': // 潮品
                    $result['isFashionGood'] = true;
                    break;
                case '5': // 小贴士
                    $result['isTip'] = true;
                    break;
            }
        }

        return $result;
    }

    /**
     * 格式化广告焦点图数据
     * 
     * @param array $bannerData 需要格式化的广告图数据
     * @param int $width 图片的宽度
     * @param int $height 图片的高度
     * @param int $mode 使用的七牛模式
     * @return array
     */
    public static function formatBanner($bannerData, $width, $height, $mode = 2)
    {
        $result = array();

        $result['img'] = self::getImageUrl($bannerData['src'], $width, $height, $mode);
        if (isset($bannerData['url'])) {
            $result['url'] = self::getFilterUrl($bannerData['url']);
        }
        $result['title'] = $bannerData['title'];

        return $result;
    }

    /**
     * 生成公开的TOKEN凭证
     * 
     * @param string $string 字符串
     * @return string
     */
    public static function makeToken($string)
    {
        return md5(md5($string . '#@!@#'));
    }

    /**
     * 验证TOKEN凭证
     * 
     * @param string $string 字符串
     * @param string $token 公开访问TOKEN
     * @return bool
     */
    public static function verifyToken($string, $token)
    {
        if ($token === self::makeToken($string)) {
            return true;
        } else {
            return false;
        }
    }

    /**
     * 验证手机是否合法
     * 
     * @param int $mobile
     * @return boolean
     */
    public static function verifyMobile($mobile)
    {
        if (empty($mobile)) {
            return false;
        }
        return (bool) preg_match('/^1[3|4|5|8|7][0-9]{9}$/', trim($mobile));
    }

    /**
     * 验证密码是否合法
     * 
     * @param int $password
     * @return boolean
     */
    public static function verifyPassword($password)
    {
        if (empty($password)) {
            return false;
        }
        return (bool) preg_match('/^([a-zA-Z0-9\-\+_!@\#$%\^&\*\(\)\:\;\.=\[\]\\\',\?]){6,20}$/', trim($password));
    }

    /**
     * 验证邮箱是否合法
     * 
     * @param string $email
     * @return boolean
     */
    public static function verifyEmail($email)
    {
        if (empty($email)) {
            return false;
        }
        return !!filter_var($email, FILTER_VALIDATE_EMAIL);
    }

    /**
     * 验证国际手机号是否合法 
     * 
     * @param string $areaMobile
     * @return boolean
     */
    public static function verifyAreaMobile($areaMobile)
    {
        if (empty($areaMobile)) {
            return false;
        }
        if (!strpos($areaMobile, '-')) {
            return self::areaMobielVerify($areaMobile);
        } else {
            $mobileData = explode('-', $areaMobile);
            if (count($mobileData) != 2) {
                return false;
            }
        }
        return self::areaMobielVerify($mobileData[1], $mobileData[0]);
    }

    /**
     * 各国手机号规则
     */
    private static function areaMobielVerify($mobile, $area = 86)
    {
        $verify = array(
            86 => array(
                'name' => '中国',
                'match' => (bool) preg_match('/^1[3|4|5|8|7][0-9]{9}$/', trim($mobile)),
            ),
            852 => array(
                'name' => '中国香港',
                'match' => (bool) preg_match('/^[9|6|5][0-9]{7}$/', trim($mobile)),
            ),
            853 => array(
                'name' => '中国澳门',
                'match' => (bool) preg_match('/^[0-9]{8}$/', trim($mobile)),
            ),
            886 => array(
                'name' => '中国台湾',
                'match' => (bool) preg_match('/^[0-9]{10}$/', trim($mobile)),
            ),
            65 => array(
                'name' => '新加坡',
                'match' => (bool) preg_match('/^[9|8][0-9]{7}$/', trim($mobile)),
            ),
            60 => array(
                'name' => '马来西亚',
                'match' => (bool) preg_match('/^1[1|2|3|4|6|7|9][0-9]{8}$/', trim($mobile)),
            ),
            1 => array(
                'name' => '加拿大&美国',
                'match' => (bool) preg_match('/^[0-9]{10}$/', trim($mobile)),
            ),
            82 => array(
                'name' => '韩国',
                'match' => (bool) preg_match('/^01[0-9]{9}$/', trim($mobile)),
            ),
            44 => array(
                'name' => '英国',
                'match' => (bool) preg_match('/^7[7|8|9][0-9]{8}$/', trim($mobile)),
            ),
            81 => array(
                'name' => '日本',
                'match' => (bool) preg_match('/^0[9|8|7][0-9]{9}$/', trim($mobile)),
            ),
            61 => array(
                'name' => '澳大利亚',
                'match' => (bool) preg_match('/^[0-9]{11}$/', trim($mobile)),
            ),
        );
        if (isset($verify[$area])) {
            return $verify[$area]['match'];
        }
        return false;
    }

}