IndexData.php
2.95 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
<?php
namespace LibModels\Wap\Home;
use Api\Yohobuy;
use Api\Sign;
/**
* 首页数据接口操作类
*
* @name IndexData
* @package Library/LibModels/wap/Home
* @copyright yoho.inc
* @version 1.0 (2015-10-9)
* @author gtskk <rocky.zhang@yoho.cn>
*/
class IndexData
{
/**
* 获取启动轮播图
*
* @param string $contentCode 内容位置码
* @return array 轮播图有关数据
*/
public static function getBannerStart($contentCode)
{
// 构建必传参数
$param = Yohobuy::param();
$param['content_code'] = $contentCode;
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(SERVICE_URL . 'operations/api/v5/resource/get', $param);
}
/**
* 获取启动封面图
*
* @return array 封面图有关数据
*/
public static function getCoverStart()
{
// 构建必传参数
$param = Yohobuy::param();
$param['method'] = 'app.cover.getCoverStart';
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(API_URL, $param);
}
/**
* 获取首页频道数据(除了可能喜欢的各楼层有关数据)
* @param string $gender 用户性别, "1,3"表示男, "2,3"表示女, "1,2,3"表示全部
* @param string $contentCode 内容位置码
* @param integer $limit 查询返回的最大限字数,默认为20
* @param integer $page 分页第几页,默认为第1页
* @param integer $uid 用户id
* @modify sefon 2016-4-19 13:33:49
* @return array 首页频道数据
*/
public static function getResourceData($gender, $contentCode, $limit = 20, $page = 1, $uid = 0)
{
$param = Yohobuy::param();
if ($uid) {
$param['uid'] = $uid;
} else {
//新设备(用户未登录状态,默认新设备):Y/N
$param['new_device'] = 'Y';
}
$param['gender'] = $gender;
$param['app_version'] = '4.5.0';
$param['content_code'] = $contentCode;
$param['page'] = $page;
$param['limit'] = $limit;
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(SERVICE_URL . 'operations/api/v5/resource/home', $param, false, false, 2);
}
/**
* 获取频道选择页数据
*
* @return array
*/
public static function channelData()
{
$param = Yohobuy::param();
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(SERVICE_URL . 'operations/api/v5/entrance/getEntrance', $param);
}
/**
* 获取公告信息
* @author sefon 2016-5-10 16:11:46
*/
public static function getNotice()
{
$param = Yohobuy::param();
$param['method'] = 'app.resources.getNotices';
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(API_URL, $param);
}
}