User.php 36.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 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
<?php

namespace Index;

use Configs\CacheConfig;
use LibModels\Wap\Home\IndexData;
use LibModels\Wap\Home\UserData;
use Plugin\Cache;
use Plugin\Helpers;
use Plugin\Images;
use Plugin\UdpLog;

/**
 *
 * @name UserModel
 * @package models/Index
 * @copyright yoho.inc
 * @version 1.0 (2015-11-09 14:05:09)
 * @author Gtskk (tttt6399998@126.com)
 */
class UserModel
{
    const CODE_YOHOCOIN_BANNER = '05afedf76886d732573f10f7451a1703';

    /**
     * 处理用户个人详情数据
     *
     * @param int $uid 用户ID
     * @return array|mixed 处理之后的个人详情数据
     */
    public static function getUserProfileData($uid)
    {
        $result = array();

        // 调用接口获取个人详情
        $userData = UserData::userData($uid);

        // 处理个人详情数
        if (isset($userData['data']) && !empty($userData['data'])) {
            $result = $userData['data'];
            $result['gender'] = $result['gender'] == 1 ? '男' : '女';
            $result['head_ico'] = Images::getImageUrl($result['head_ico'], 128, 128);
        }

        return $result;
    }

    /**
     * 获取个人中心公告有关数据
     *
     * @return array
     */
    public static function getNoticeData()
    {
        $result = array();

        $notice = UserData::noticeData();

        // 处理数据
        if (isset($notice['data']) && !empty($notice['data'])) {
            $result = $notice['data'];
            $result['open'] = ($result['open'] === 'Y');
        }

        return $result;
    }

    /**
     * 处理个人中心页面优惠券,收藏的商品等的数目数据
     *
     * @param int $uid 用户ID
     * @param int $udid 客户端唯一标识
     * @return array|mixed 处理之后的个人中心页面优惠券,收藏的商品等的数目数据
     */
    public static function getInfoNumData($uid, $udid)
    {
        $result = array(
            'wait_pay_num' => 0,
            'wait_cargo_num' => 0,
            'send_cargo_num' => 0,
            'brand_favorite_total' => 0,
            'product_favorite_total' => 0,
            'inbox_total' => 0,
            'comment_total' => 0,
            'refund_exchange_num' => 0,
            'yoho_coin_num' => 0,
            'coupon_num' => 0,
            'product_browse' => 0
        );

        // 调用接口获取个人中心页面优惠券,收藏的商品等的数目数据
        $infoNumData = UserData::infoNum($uid, $udid);

        // 处理个人中心页面优惠券,收藏的商品等的数目数据
        if (isset($infoNumData['data']) && !empty($infoNumData['data'])) {
            $transArr = array(
                'brand_favorite_total',
                'product_favorite_total',
                'product_browse',
                'send_cargo_num',
                'wait_cargo_num',
                'wait_pay_num',
            );
            foreach ($infoNumData['data'] as $key => &$val) {

                if (empty($val)) {
                    // 把没有数据的条目设置为0
                    $val = 0;
                } else if (in_array($key, $transArr) && intval($val) > 99) {
                    $val = '99+';
                }
            }

            $result = $infoNumData['data'];

            // 默认没有返回用户地址的数据,添加这块儿数据
            $result['address_num'] = count(self::getAddressData($uid));
        }

        return $result;
    }

    /**
     * 处理个人中心页面优选新品数据
     *
     * @param int $channel 频道,1代表男生,2代表女生,3代表潮童,4代表创意生活
     * @return array|mixed 处理之后的个人中心页面优选新品数据
     */
    public static function getPreferenceData($channel)
    {
        $result = array();

        // 调用接口获取个人中心页面优选新品数据
        $preferenceData = UserData::preference($channel);

        // 处理个人中心页面优选新品数据
        if (!empty($preferenceData['data'])) {
            foreach ($preferenceData['data'] as $value) {
                $value = Helpers::formatProduct($value, false, true, true, 299, 388, false);
                if (false !== $value) {
                    $result['recommendList'][] = $value;
                }
            }
        }

        return $result;
    }

    /**
     * 处理用户订单数据
     *
     * @param int $uid 用户ID
     * @param int $type 订单类型,1表示全部,2表示待付款,3表示待发货,4表示待收货,5表示待评价
     * @return array|mixed 处理之后的个人详情数据
     */
    public static function getUserOrderData($uid, $type)
    {
        $result = array();

        // 调用接口获取用户订单数据
        $orderData = UserData::orderData($uid, $type);

        // 处理用户订单数据
        if (isset($orderData['data']) && !empty($orderData['data'])) {
            $oneOrder = array();
            foreach ($orderData['data']['order_list'] as $val) {
                $oneOrder = array();
                $oneOrder['orderNum'] = $val['order_code'];
                $oneOrder['tradingStatus'] = $val['status_str'];
                $oneOrder['count'] = count($val['order_goods']);
                $oneOrder['sumCost'] = $val['amount'];
                $oneOrder['unpaid'] = !$val['payment'];

                // 处理订单商品
                $oneGoods = array();
                foreach ($val['order_goods'] as $goods) {
                    $oneGoods = array();
                    $oneGoods['id'] = 1;
                    $oneGoods['thumb'] = Helpers::getImageUrl($goods['goods_image'], 60, 80);
                    $oneGoods['name'] = $goods['product_name'];
                    $oneGoods['color'] = $goods['color_name'];
                    $oneGoods['size'] = $goods['size_name'];
                    $oneGoods['price'] = $goods['goods_price'];
                    $oneGoods['count'] = $goods['buy_number'];

                    $oneOrder[] = $oneGoods;
                }

                $result['orders'][] = $oneOrder;
            }
        }

        return $result;
    }

    /**
     * 处理用户收藏的商品数据
     *
     * @param int $uid 用户ID
     * @param int $page 第几页
     * @param int $limit 限制读取的数目,默认10
     * @return array|mixed 处理之后的收藏的商品数据
     */
    public static function getFavProductData($uid, $page, $limit)
    {
        $result = array();

        // 调用接口获取用户收藏的商品数据
        $favProduct = UserData::favoriteProductData($uid, $page, $limit);

        // 处理用户收藏的商品数据
        do {
            // 开始就没获取到数据或者获取的数据为空时的处理
            if ((!$favProduct || isset($favProduct['data']['product_list']) && empty($favProduct['data']['product_list'])) && $page == 1) {
                break;
            }

            // 加载第二页以及第二页之后的数据时接口不返回时的处理
            if ($page > 1 && !$favProduct) {
                $result['end'] = true;
                break;
            }

            if ($page <= $favProduct['data']['page_total']) {
                $datas = array();
                $product = array();
                foreach ($favProduct['data']['product_list'] as $val) {
                    if (empty($val['product_skn'])) {
                        continue;
                    }

                    $product = array();
                    $product['fav_id'] = $val['product_id'];
                    $product['link'] = isset($val['goodsId'], $val['cnAlphabet']) ? Helpers::url('/product/pro_' . $val['product_id'] . '_' . $val['goodsId'] . '/' . $val['cnAlphabet'] . '.html') : '';
                    $product['imgUrl'] = !empty($val['image']) ? Helpers::getImageUrl($val['image'], 447, 596) : '';
                    ;
                    $product['title'] = $val['product_name'];
                    $product['price'] = '¥' . Helpers::transPrice($val['market_price']);
                    $product['discountPrice'] = ($val['market_price'] - $val['sales_price'] > 0) ? '¥' . Helpers::transPrice($val['sales_price']) : false;
                    $product['savePrice'] = ($val['price_down'] > 0) ? '¥' . Helpers::transPrice($val['price_down']) : false;
                    $product['sellOut'] = ($val['storage'] <= 0);
                    $product['invalidGoods'] = ($val['status'] == 0); // 下架商品

                    $datas[] = $product;
                }

                if (!empty($datas)) {
                    $result['hasFavProduct'] = $datas;
                }
            } else {
                $result['end'] = true;
            }

        } while (false);

        return $result;
    }

    /**
     * 处理用户收藏的品牌数据
     *
     * @param int $uid 用户ID
     * @param string $gender 性别 1,3表示男,2,3表示女,1,2,3表示全部
     * @param int $page 第几页
     * @param int $limit 限制读取的数目
     * @return array|mixed 处理之后的收藏的品牌数据
     */
    public static function getFavBrandData($uid, $gender, $page, $limit)
    {
        $result = array();

        // 调用接口获取户收藏的品牌数据
        $favBrand = UserData::favoriteBrandData($uid, $gender, $page, $limit);

        // 处理用户收藏的品牌数据
        do {
            // 开始就没获取到数据或者获取的数据为空时的处理
            if ((!$favBrand || isset($favBrand['data']['total']) && empty($favBrand['data']['total'])) && $page == 1) {
                break;
            }

            // 加载第二页以及第二页之后的数据时接口不返回时的处理
            if ($page > 1 && !$favBrand) {
                $result['end'] = true;
                break;
            }

            if ($page <= $favBrand['data']['page_total']) {
                $datas = array();
                $brand = array();
                foreach ($favBrand['data']['brand_list'] as $val) {
                    $brand = array();
                    $brand['id'] = $val['brand_id'];
                    $brand['brandImg'] = !empty($val['brand_ico']) ? Images::getImageUrl($val['brand_ico'], 47, 47) : '';
                    $brand['brandName'] = $val['brand_name'];
                    $brand['update'] = $val['new_product_num'];
                    $brand['discount'] = $val['product_discount_num'];
                    if ($val['brandOrShopType'] == 'brandOrShopType') {
                        $brand['link'] = Helpers::url('/product/index/brand', array('shop_id' => $val['shop_id']));
                    } else {
                        $brand['link'] = Helpers::url('', array(), $val['brand_domain']);
                    }
                    // 处理品牌产品
                    $product = array();
                    foreach ($val['new_product'] as $one) {
                        if (empty($one['product_skn'])) {
                            continue;
                        }

                        $product = array();
                        $product['link'] = isset($one['goods'][0], $one['cnAlphabet']) ? Helpers::url('/product/pro_' . $one['product_id'] . '_' . $one['goods'][0]['id'] . '/' . $one['cnAlphabet'] . '.html') : '';
                        $product['imgUrl'] = (isset($one['default_images']) && !empty($one['default_images'])) ? Images::getImageUrl($one['default_images'], 235, 314) : '';
                        $product['price'] = '¥' . Helpers::transPrice($one['market_price']);
                        $product['discount'] = ($one['market_price'] > $one['sales_price']) ? '¥' . Helpers::transPrice($one['sales_price']) : false;

                        $brand['productList'][] = $product;
                    }

                    $datas[] = $brand;
                }

                if (!empty($datas)) {
                    $result['hasFavBrand'] = $datas;
                }
            } else {
                $result['end'] = true;
            }
        } while (false);

        return $result;
    }

    public static function favoriteDelete($uid, $fav_id)
    {
        $result = array();

        if (empty($fav_id)) {
            $result['code'] = 400;
            $result['message'] = '取消的商品不可用';
        } else {
            $result = UserData::favoriteDelete($uid, $fav_id);
        }

        return $result;
    }

    /**
     * 处理浏览记录数据
     *
     * @param int $uid 用户ID
     * @param int $udid 客户端唯一标识
     * @param int $page 第几页,默认为1
     * @param int $limit 限制多少条,默认100
     * @return array 处理之后的数据
     */
    public static function browserRecord($uid, $udid, $page, $limit)
    {
        $result = array();

        $records = UserData::browseRecord($uid, $udid, $page, $limit);

        // 处理数据
        do {
            if (!$records) {
                $result['walkwayUrl'] = Helpers::url('/product/new');
                $result['noRecord'] = true;
                break;
            }

            if (!isset($records['data']['product_list'])) {
                break;
            }

            // 不能再查到结果了
            if ($page == 1 && $records['data']['total'] === 0) {
                $result['walkwayUrl'] = Helpers::url('/product/new');
                $result['noRecord'] = true;
                break;
            }

            $data = $records['data']['product_list'];
            $allRecords = array();
            $record = array();
            foreach ($data as &$val) {
                // 排除下架的商品
                /*if ($val['status'] == 0) {
                    continue;
                }*/

                $record = array();
                $record['product_name'] = $val['product_name'];
                $record['product_skn'] = $val['product_skn'];
                $record['link'] = Helpers::url('/product/show_' . $val['product_skn'] . '.html');
                $record['image'] = !empty($val['image']) ? Helpers::getImageUrl($val['image'], 447, 596) : '';
                $record['sales_price'] = Helpers::transPrice($val['sales_price']);
                $record['market_price'] = ($val['market_price'] - $val['sales_price'] > 0) ? Helpers::transPrice($val['market_price']) : false;
                $record['invalidGoods'] = ($val['status'] == 0); // 下架商品
                $record['storage'] = $val['storage'];
                $allRecords[] = $record;
            }

            if (!empty($allRecords)) {
                $result['browseRecord'] = $allRecords;
            }
        } while(false);

        return $result;
    }

    /**
     * 删除浏览记录数据
     *
     * @param int $uid 用户ID
     * @param int $skn 商品SKN
     * @return array 处理之后的数据
     */
    public static function delRecord($uid, $skn)
    {
        $result = array('code' => 400, 'message' => '出错啦~');

        do {
            if (empty($skn)) {
                break;
            }

            $record = UserData::delRecord($uid, $skn);

            // 处理数据
            if ($record && isset($record['code'])) {
                $result['code'] = $record['code'];
                $result['message'] = $record['message'];
            }
        } while (false);

        return $result;
    }

    /**
     * 处理YOHO币总数数据
     *
     * @param int $uid 用户ID
     * @return array|mixed 处理之后的YOHO币数据
     */
    public static function getYohoCoinData($uid)
    {
        $result = array(
            'yohoCoin' => array(
                'coinNum' => 0
            )
        );

        // 调用接口获取YOHO币
        $yohoCoin = UserData::yohoCoinTotal($uid);

        // 处理YOHO币数据
        if (isset($yohoCoin['data']) && !empty($yohoCoin['data'])) {
            $result['yohoCoin']['coinNum'] = $yohoCoin['data']['yohocoin_num'];
            $result['yohoCoin']['notice'] = $yohoCoin['data']['notice'];
        }

        return $result;
    }

    /**
     * 获取有货币页面的banner数据
     *
     * @return array|bool|mixed
     */
    public static function getYohoCoinBanner()
    {
        $result = false;

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

        // 调用接口获取数据
        $banner = IndexData::getBannerStart(self::CODE_YOHOCOIN_BANNER);
        if (isset($banner['code']) && $banner['code'] == 200 && !empty($banner['data'])) {
            $result = array();
            // 处理数据
            foreach ($banner['data'] as $val) {
                foreach ($val['data'] as $single) {
                    $result['url'] = Helpers::getFilterUrl($single['url']);
                    $result['img'] = Helpers::getImageUrl($single['src'], 640, 200);
                }
            }
        }

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

        return $result;
    }

    /**
     * 处理YOHO币变化履历数据
     *
     * @param int $uid 用户ID
     * @param int $page 当前页
     * @param int $limit 一页记录数
     * @return array|mixed 处理之后的YOHO币数据
     */
    public static function getYohoCoinLists($uid, $page, $limit)
    {
        $result = array();
        $data['money'] = '0';
        // 调用接口获取YOHO币
        $yohoCoin = UserData::yohoCoinData($uid, $page, $limit, 'post');
        // 处理YOHO币数据
        if (isset($yohoCoin['data']) && !empty($yohoCoin['data'])) {
            $coinList = $yohoCoin['data']['coinlist'];

            // 获取有货币总数
            $total = self::getYohoCoinData($uid);
            $data['money'] = !empty($total) ? $total['yohoCoin']['coinNum'] : 0;

            foreach ($coinList as $key => $val) {
                $result[$key]['title'] = $val['message'];
                $result[$key]['time'] = $val['date'];
                if ($val['num'] > 0) {
                    $val['num'] = '+' . $val['num'];
                }
                $result[$key]['count'] = $val['num'];
            }
        }
        $data['list'] = $result;

        return $data;
    }

    /**
     * 处理优惠券数据
     *
     * @param int $uid 用户ID
     * @param int $status 优惠券状态,0表示未使用,1表示已使用
     * @param int $page 第几页
     * @return array|mixed 处理之后的优惠券数据
     */
    public static function getCouponData($uid, $status, $page)
    {
        $result = array();
        
        do {
            // 调用接口获取优惠券数据
            $coupons = UserData::couponData($uid, $status, $page);
        
            // 没有获取到优惠券时
            if (empty($coupons) || empty($coupons['data'])) {
                $result['noRecord'] = true;
                break;
            }
            
            // 处理已使用的优惠券
            if ($status == 1) {
                foreach ($coupons['data']['info'] as &$value) {
                    $value['used'] = true;
                }
            }

            if (!empty($coupons['data']['info'])) {
                $result['coupons'] = $coupons['data']['info'];
            }
        }
        while (false);

        return $result;
    }

    /**
     * 处理地址数据
     *
     * @param int $uid 用户ID
     * @return array|mixed 处理之后的地址数据
     */
    public static function getAddressData($uid)
    {
        $result = array();

        // 调用接口获取地址数据
        $address = UserData::addressData($uid);

        // 处理地址数据
        if (isset($address['data']) && !empty($address['data'])) {
            UdpLog::info('地址数据校验','uid'.$uid.'返回:'.json_encode($address));
            $result = $address['data'];
        }

        return $result;
    }

    /**
     * 处理地址列表数据
     *
     * @param int $uid 用户ID
     * @return array|mixed 处理之后的地址列表数据
     */
    public static function getAddressListData($uid)
    {
        $result = array();

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

        // 调用接口获取地址列表数据
        $address = UserData::addressListData($uid);

        // 处理地址数据
        if (isset($address['data']) && !empty($address['data'])) {
            $result = $address['data'];
        }

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

        return $result;
    }

    /**
     * 根据用户id和地址id获取地址数据
     *
     * @param int $uid 用户ID
     * @param int $id 地址ID
     * @return array|mixed 地址数据
     */
    public static function getAddressDataById($uid, $id)
    {
        $result = array();

        // 调用接口获取地址数据
        $address = self::getAddressData($uid);

        // 处理地址数据
        foreach ($address as $val) {
            if ($val['address_id'] == $id) {
                $result = $val;
                break;
            }
        }

        return $result;
    }

    /**
     * 保存地址数据
     *
     * @param int $uid 用户ID
     * @param string $address 地址信息
     * @param int $area_code 城市码
     * @param string $consignee 收货人
     * @param string $email 邮箱地址
     * @param int $id 地址唯一标识符id
     * @param string $mobile 手机号码
     * @param string $zip_code 邮编
     * @return array|mixed 处理之后的地址列表数据
     */
    public static function saveAddressData($uid, $address, $area_code, $consignee, $email, $id, $mobile, $zip_code)
    {
        $result = array();

        // 参数验证
        if (empty($uid)) {
            $result['code'] = 400;
            $result['message'] = '用户不可用';
        } else if (empty($address)) {
            $result['code'] = 401;
            $result['message'] = '请输入可用的地址信息';
        } else if (empty($area_code)) {
            $result['code'] = 402;
            $result['message'] = '地区码不可用';
        } else if (empty($consignee)) {
            $result['code'] = 403;
            $result['message'] = '请输入收件人姓名';
        } else if (!empty($email) && !Helpers::verifyEmail($email)) {
            $result['code'] = 404;
            $result['message'] = '输入的邮箱地址格式不正确';
        }
//        else if (!empty($mobile) && !Helpers::verifyMobile($mobile)) {
//            $result['code'] = 404;
//            $result['message'] = '输入的手机号码格式不正确';
//        }
        else {
            // 调用接口保存地址数据
            $address = UserData::saveAddressData($uid, $address, $area_code, $consignee, $email, $id, $mobile, $zip_code);
            // 处理返回结果
            if (isset($address['code']) && $address['code'] == 200) {
                $result['code'] = $address['code'];
                $result['message'] = $address['message'];
            }
        }

        return $result;
    }

    /**
     * 设置默认地址
     *
     * @param int $uid 用户ID
     * @param int $id 地址唯一标识符id
     * @return array|mixed 处理之后的返回数据
     */
    public static function setDefaultAddress($uid, $id)
    {
        $result = array('code' => 400, 'message' => '错误');

        // 调用接口设置默认地址
        $address = UserData::setDefaultAddress($uid, $id);
        // 处理返回结果
        if ($address && isset($address['code'])) {
            $result = $address;
        }

        return $result;
    }

    /**
     * 删除地址
     *
     * @param int $uid 用户ID
     * @param int $id 地址唯一标识符id
     * @return array|mixed 处理之后的返回数据
     */
    public static function deleteAddress($uid, $id)
    {
        $result = array('code' => 400, 'message' => '错误');

        // 调用接口删除地址
        $address = UserData::deleteAddress($uid, $id);
        // 处理返回结果
        if ($address && isset($address['code'])) {
            $result = $address;
        }

        return $result;
    }

    /**
     * 处理意见反馈数据
     *
     * @param string $udid 客户端唯一标识
     * @param int $page 第几页,默认1
     * @param int $limit 限制读取的数目,默认10
     * @return array|mixed 处理之后的意见反馈数据
     */
    public static function getSuggestData($udid, $page, $limit)
    {
        $result = array();

        // 调用接口获取地址数据
        $suggest = UserData::suggestData($udid, $page, $limit);

        // 处理意见反馈数据
        if (isset($suggest['data']) && !empty($suggest['data'])) {
            $one = array();
            foreach ($suggest['data']['list'] as $val) {
                $one = array();
                $one['suggest_id'] = $val['id'];
                $one['imgUrl'] = !empty($val['cover_image']) ? Images::getSourceUrl($val['cover_image'], 'suggest') : '';
                $one['title'] = $val['filter_content'];
                $one['content'] = $val['reply_content'];
                $one['good'] = ($val['is_reliable'] == 1);
                $one['bad'] = ($val['is_reliable'] == 2);
                $one['none'] = ($val['is_reliable'] == 0);

                $result[] = $one;
            }
        }

        return $result;
    }

    /**
     * 图片上传
     *
     * @return array|mixed 保存意见反馈数据之后的返回
     */
    public static function saveSuggestImg($filename)
    {
        $result = array();

        if (!isset($_FILES[$filename])) {
            $result['code'] = 400;
            $result['message'] = '文件上传错误';
        } else {
            $result = Images::saveImage($filename);
        }

        return $result;
    }

    /**
     * 保存意见反馈数据
     *
     * @param int $uid 用户ID
     * @param string $content 意见内容
     * @param mixed $image 图片地址
     * @param int $suggest_type 意见类型
     * @return array|mixed 保存意见反馈数据之后的返回
     */
    public static function saveSuggestData($uid, $content, $image, $suggest_type)
    {
        $result = array('code' => 400, 'message' => '保存出错');

        // 调用接口保存意见反馈数据
        $save = UserData::savesuggestData($uid, $content, $image, $suggest_type);

        if (isset($save['code']) && $save['code'] == 200) {
            $result['code'] = 200;
            $result['message'] = '谢谢您的反馈';
        }

        return $result;
    }

    /**
     * 处理意见靠谱,不靠谱接口返回结果
     *
     * @param int $uid 用户ID
     * @param string $udid 客户端唯一标识
     * @param int $suggest_id 意见id
     * @param int $reliable 是否靠谱,1表示靠谱,2表示不靠谱
     * @return array|mixed 处理之后的数据
     */
    public static function upAndDown($uid, $udid, $suggest_id, $reliable)
    {
        $result = array('code' => 400, 'message' => '出错啦');

        if (empty($suggest_id)) {
            $result['code'] = 401;
            $result['message'] = '指定意见不存在';
        } else {
            // 调用接口
            $save = UserData::upAndDown($uid, $udid, $suggest_id, $reliable);

            if (isset($save['code']) && $save['code'] == 200) {
                $result['code'] = 200;
                $result['message'] = '操作成功';
            }
        }

        return $result;
    }

    /**
     * 处理我的消息数据
     *
     * @param int $uid 用户ID
     * @param int $page 获取第一页,默认是0
     * @param int $size 获取数目,默认是10
     * @return array|mixed 处理之后的返回
     */
    public static function getMessageData($uid, $page, $size)
    {
        $result = array();

        $messageData = UserData::messageData($uid, $page, $size);

        // 处理我的消息数据
        if (isset($messageData['data']['list']) && !empty($messageData['data']['list'])) {
            $messages = $messageData['data']['list'];

            // 按时间排序我的消息
            Helpers::sortArrByField($messages, 'create_time', true);

            $one = array();
            foreach ($messages as $message) {
                $one = array();
                $one['id'] = $message['id'];
                $one['title'] = $message['title'];
                $one['time'] = date('Y-m-d H:i:s', $message['create_time']);
                $one['isNotReaded'] = ($message['is_read'] === 'N');
                $one['url'] = Helpers::url('/home/messageDetail', array('id' => $message['id']));

                $result['list'][] = $one;
            }
        }

        return $result;
    }

    /*
     * 删除消息
     *
     * @param int $uid 用户ID
     * @param int $id 消息ID
     * @return array
     */
    public static function delMessage($uid, $id)
    {
        $result = array('code' => 400, 'message' => '出错啦~');

        do {
            if (empty($uid) || empty($id)) {
                break;
            }

            $message = UserData::delMessageData($uid, $id);
            if (isset($message['code']) && $message['code'] == 200) {
                $result['code'] = 200;
            }

        } while (false);

        return $result;
    }

    /*
     * 我的消息中领取生日券
     *
     * @param int $uid 用户ID
     * @param int $id 消息ID
     * @return array
     */
    public static function pickBirthCoupon($uid, $id)
    {
        $result = array('code' => 400, 'message' => '出错啦~');

        do {
            if (empty($uid) || empty($id)) {
                break;
            }

            $coupon = UserData::getBirthCoupon($uid, $id);
            if (!isset($coupon['code'])) {
                break;
            }
            $result = $coupon;

        } while (false);

        return $result;
    }

    /**
     * 处理我的消息详情信息
     *
     * @param int $uid 用户ID
     * @param int $id 消息ID
     * @return array
     */
    public static function getMessageDetail($uid, $id)
    {
        $result = array();

        do {
            // UID或者id为空
            if (empty($uid) || empty($id)) {
                break;
            }

            $messageData = UserData::messageData($uid, 1, 1000);

            // 接口未正确返回
            if (!isset($messageData['data']['list'])) {
                break;
            }

            // 处理我的消息数据
            $messages = $messageData['data']['list'];
            foreach ($messages as $contentval) {
                if ($contentval['id'] != $id) {
                    continue;
                }
                //信息过滤
                if ($contentval['type'] === 'showGetCoin' || $contentval['type'] === 'notice') {
                    continue;
                }

                $result['sender'] = $contentval['from']; //消息发言人
                $result['title'] = $contentval['title']; //消息标题
                $result['time'] = date('Y-m-d H:i:s', $contentval['create_time']); //消息创建时间
                //判断消息类型
                switch ($contentval['type']) {
                    case 'pullCoupon':
                        //领取生日券消息
                        $result['coupons'] = array();
                        $coupondata = UserData::getBirthCouponById($uid); //获取优惠券信息
                        if (empty($coupondata['data']) || !isset($coupondata['data'])) {
                            continue;
                        }
                        foreach ($coupondata['data'] as $couponval) {
                            $result['coupons'][] = array(
                                'id' => isset($couponval['id']) ? $couponval['id'] : '',
                                'remark' => isset($couponval['couponName']) ? $couponval['couponName'] : '',
                                'useTime' => isset($contentval['body']['use_time']) ? $contentval['body']['use_time'] : '',
                                'pickTime' => isset($contentval['body']['collar_time']) ? $contentval['body']['collar_time'] : '',
                                'canPick' => true
                            );
                        }
                        break;
                    case 'button':
                        //促销活动
                        $result['sale'] = array(
                            'image' => isset($contentval['body']['image']) ? $contentval['body']['image'] : '',
                            'content' => isset($contentval['body']['text']) ? $contentval['body']['text'] : '',
                            'btnLink' => isset($contentval['body']['pc_link']) ? $contentval['body']['pc_link'] : '',
                            'btnName' => isset($contentval['body']['button_text']) ? $contentval['body']['button_text'] : '',
                        );
                        break;
                    case 'pushCoupon':
                        //查看优惠券
                        $result['coupons'] = array();
                        $result['coupons'][] = array(
                            'remark' => isset($contentval['body']['coupon_name']) ? $contentval['body']['coupon_name'] : '',
                            'useTime' => isset($contentval['body']['time']) ? $contentval['body']['time'] : '',
                            'id' => isset($contentval['body']['inboxId']) ? $contentval['body']['inboxId'] : '',
                            'price' => isset($contentval['body']['price']) ? $contentval['body']['price'] : '',
                            'url' => Helpers::url('/home/coupons', array('t' => microtime(true)))
                        );
                        break;
                    default:
                        //普通文本
                        $result['text'] = array(
                            'content' => isset($contentval['body']['content']) ? $contentval['body']['content'] : ''
                        );
                        break;
                }
            }
        } while (false);

        return $result;
    }

    /**
     * 处理在线客服数据
     *
     * @return array|mixed 处理之后的返回
     */
    public static function getOnlineServiceData()
    {
        $result = array();

        $serviceData = UserData::onlineServiceData();

        // 处理在线客服数据
        if (isset($serviceData['data']) && !empty($serviceData['data'])) {
            $result = $serviceData['data'];
        }

        return $result;
    }

    /**
     * 处理帮助中心列表数据
     *
     * @return array|mixed 处理之后的返回
     */
    public static function getHelpListData()
    {
        $result = array();

        $helpListData = UserData::helpListData();
        if (isset($helpListData['data']) && !empty($helpListData['data'])) {
            $one = array();
            foreach ($helpListData['data'] as $val) {
                $one = array();
                $one['name'] = $val['caption'];
                $one['url'] = Helpers::url('/home/helpdetail', array('code' => $val['code']));

                $result['iHelp'][] = $one;
            }
        }

        return $result;
    }

    /**
     * 处理帮助详情数据
     *
     * @param string $code 具体一条帮助的code
     * @return array|mixed 处理之后的返回
     */
    public static function getHelpDetailData($code)
    {
        $result = array();

        if (isset($code)) {
            $result = UserData::helpDetailData($code);
        }

        return $result;
    }

    /**
     * 个人中心公告
     * @author sefon 2016-5-11 13:26:45
     * @return array
     */
    public static function getHomeNotice()
    {
        $notice = array();
        $data = IndexData::getNotice();
        if (isset($data['code']) && $data['code'] === 200 && isset($data['data']['open']) && $data['data']['open'] == 'Y' && isset($data['data']['list']) && !empty($data['data']['list'])) {
            $notice = $data['data']['list'];
        }
        return $notice;
    }


}