Client.php
6.37 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
<?php
/**
* User: elkan
* Date: 14-7-29
* Time: 下午3:49
* To change this template use File | Settings | File Templates.
*/
class YHMComment_Models_Comment_Client {
/**
*
* @var YHMComment_Models_Comment_Dao
*/
private static $dao;
/**
*
* @return YHMComment_Models_Comment_Dao
*/
static private function dao() {
if (empty(self::$dao)) {
self::$dao = new YHMComment_Models_Comment_Dao();
}
return self::$dao;
}
/**
* 通过ID获取一条评论
* @param integer $id
*/
public static function getOneById($id) {
if (($id = intval($id)) < 1) {
return array();
}
return self::dao()->getOneById($id);
}
/**
* 获取商品总评论数
* @param int $product_skc
* @return int
*/
static function getCountBySkc($store_id, $product_skc) {
if ((int) $product_skc < 1) {
return 0;
}
return self::dao()->getCountBySkc((int) $store_id, (int) $product_skc);
}
/**
* 获取留言列表
* @param int $product_skc
* @param int $offset Description
* @param int $num Description
* @return int
*/
static function getListBySkc($store_id, $product_skc, $offset, $num) {
if ((int) $product_skc < 1) {
return 0;
}
return self::dao()->getListBySkc((int) $store_id, (int) $product_skc, (int) $offset, (int) $num);
}
/**
* 获取评论内容
* @param int $id
* @return string
*/
static function getContentById($store_id, $id) {
if ((int) $id < 1) {
return 0;
}
return self::dao()->getContentById((int) $store_id, (int) $id);
}
/**
* 添加评论信息
* @param Integer $uid
* @param Integer $store_id
* @param Integer $product_skc
* @param Integer $star
* @return int
*/
static function add($uid, $order_code, $store_id, $product_skc, $star) {
if ((int) $uid < 1 || (int) $order_code < 0 || (int) $store_id < 1 || (int) $product_skc < 1 || (int) $star < 1) {
return 0;
}
return self::dao()->add((int) $uid, (int) $order_code, (int) $store_id, (int) $product_skc, (int) $star);
}
/**
* 添加评论内容
* @param int $id
* @param string $content
* @return int
*/
static function addContent($store_id, $id, $content) {
if ((int) $id < 1 || empty($content)) {
return 0;
}
return self::dao()->addContent($store_id, (int) $id, $content);
}
/**
* 取出店铺的评论总数
* @param type $store_id
* @return integer
*/
static function getCountByStoreId($store_id) {
if ((int) $store_id < 1) {
return 0;
}
return self::dao()->getCountByStoreId((int) $store_id);
}
/**
* 取出店铺的总得分数
* @param type $store_id
* @return integer
*/
static function getSumStarByStoreId($store_id) {
if ((int) $store_id < 1) {
return 0;
}
return self::dao()->getSumStarByStoreId((int) $store_id);
}
/**
* 删除评论信息
* @param inte $id
* @param int $uid
* @return int
*/
static function del($store_id, $id) {
if ((int) $id < 1) {
return 0;
}
return self::dao()->del($store_id, (int) $id);
}
/**
* 删除评论内容
* @param int $id
* @return int
*/
static function delContent($store_id, $id) {
if ((int) $id < 1) {
return 0;
}
return self::dao()->delContent($store_id, (int) $id);
}
/**
* 获取店铺星级
* @param integer $store_id
*/
public static function getStarByStoreId($store_id) {
/* //总评论数
$totalNum = self::dao()->getCountByStoreId($store_id);
//总星级
$totalStar = self::dao()->getSumStarByStoreId($store_id);
if ($totalNum == 0) {
return 0;
} else if ($totalNum < 10) {
//当卖家评价次数低于10次时,星级分值会打一个折扣。几次就乘以零点几,最后分值才是他的真实分值和展示的星级。
return round(($totalStar / $totalNum) * floatval($totalNum / 10));
} else {
return round($totalStar / $totalNum);
}*/
$store_info = YHMStore_Models_Store_Client::getById($store_id);
//星级评定结果
$star =$store_info['star'];
return $star;
}
/**
* 获取店铺星级
* @param integer $store_id
*/
public static function getStarByStore($store_id) {
//总评论数
$totalNum = self::dao()->getCountByStoreId($store_id);
//总星级
$totalStar = self::dao()->getSumStarByStoreId($store_id);
if ($totalNum == 0) {
return 0;
} else if ($totalNum < 10) {
//当卖家评价次数低于10次时,星级分值会打一个折扣。几次就乘以零点几,最后分值才是他的真实分值和展示的星级。
return round(($totalStar / $totalNum) * floatval($totalNum / 10));
} else {
return round($totalStar / $totalNum);
}
}
/**
* 查看该订单是否评价
* @param int $order_code
* @param int $uid
*/
static function checkUserCommentByOrderCode($order_code, $uid) {
if ((int) $order_code < 1 || (int) $uid < 1) {
return 0;
}
return self::dao()->checkUserCommentByOrderCode((int) $order_code, (int) $uid);
}
/**
* 获取评论列表
* @param int $order_code
* @param int $uid
*/
static function getCommentList($startTime,$endTime,$type,$id,$status,$offset, $size)
{
return self::dao()->getCommentList($startTime,$endTime,$type,$id,$status,$offset, $size);
}
/**
* 获取评论列表
* @param int $order_code
* @param int $uid
*/
static function getCommentCount($startTime,$endTime,$type,$id,$status)
{
return self::dao()->getCommentCount($startTime,$endTime,$type,$id,$status);
}
/**
* 回复
*/
static function setReply($id,$uid){
return self::dao()->setReply($id,$uid);
}
/*获取回复*/
static function getReply($id)
{
return self::dao()->getReply($id);
}
}