HomeController.php
12.9 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
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/11/27
* Time: 11:31
*/
namespace api\index\controller;
use api\index\model\HomeModel;
use cmf\controller\RestBaseController;
use think\Db;
use think\Validate;
/**
* @title 家政服务
* @description
*/
class HomeController extends RestBaseController
{
/**
* @title 家政服务首页轮播图
* @description
* @author GuoSheng
* @url /index/Home/photo
* @method GET
*
* @return id:ID
* @return thumbnail:图片
* @return url:链接地址
*
*/
public function photo(){
$where['delete_time'] = ['eq',0];
$data = Db::name('homepic')
->where($where)
->order('id desc')
->select();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 家政公司列表
* @description
* @author GuoSheng
* @url /index/Home/home
* @method GET
*
* @return id:ID
* @return home_name:名称
* @return thumbnail:缩略图
*
*/
public function home(){
$where['delete_time'] = ['eq',0];
$data = Db::name('home')
->where($where)
->field('id,home_name,thumbnail')
->order('id desc')
->select();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 家政服务列表
* @description
* @author GuoSheng
* @url /index/Home/sever
* @method GET
*
* @return id:ID
* @return sever_name:服务名称
* @return thumbnail:缩略图
*
*/
public function sever(){
$where['delete_time'] = ['eq',0];
$data = Db::name('service')
->where($where)
->field('id,sever_name,thumbnail')
->order('id desc')
->select();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 家政公司详情
* @description 家政公司详情
* @author GuoSheng
* @url /index/Home/homeDetail
* @method GET
*
*
* @param name:id type:int require:1 other: desc:家政服务公司ID
*
* @return id:ID
* @return home_name:名称
* @return home_address:地址
* @return thumbnail:家政公司封面缩略图
* @return home_phone:联系电话
* @return images:轮播图
* @return content:公司介绍
* @return scver_name:服务名称
*
*/
public function homeDetail()
{
$id = $this->request->param('id');
if(empty($id)){
$this->error(['code'=>40001,'msg'=>'缺少必要参数']);
}
$where['id'] = ['eq',$id];
$homeModel = new HomeModel();
$data = $homeModel->findData($where)->toArray();
$data['scver_name'] = Db::name('service')->where('home_id',$id)->field('id as sever_id,thumbnail,sever_name')->select();
$this->success('SUCCESS',$data);
}
/**
* @title 家政服务服务评价列表
* @description 家政服务服务评价列表
* @author GuoSheng
* @url /index/Home/comment
* @method GET
*
* @param name:home_id type:int require:1 other: desc:家政公司id
* @param name:page type:int require:0 other: desc:当前页(默认1)
* @param name:pageNum type:int require:0 other: desc:每页显示数据个数(默认10)
*
* @return id:评价id
* @return user_id:用户ID
* @return user_nickname:用户名
* @return avatar:用户头像
* @return num:评价星数
* @return content:评价内容
*
*/
public function comment()
{
$home_id = $this->request->param('home_id',0,'intval');
if(empty($home_id)){
$this -> error(['code'=>40005,'msg'=>'缺少必要参数']);
}
$page = $this->request->param('page',1,'intval');
$pageNum = $this->request->param('pageNum',10,'intval');
$res = Db::name('homecomment')
->alias('a')
->join('user b','a.user_id = b.id')
->field('a.*,b.user_nickname,b.avatar')
->where('home_id',$home_id)
->page($page,$pageNum)
->select()
->toArray();
foreach ($res as &$v){
$v['thumbnail'] = explode(',',$v['thumbnail']);
$v['content'] = cmf_replace_content_file_url(htmlspecialchars_decode($v['content']));
$v['num'] = ceil(($v['speed']+$v['service']+$v['recycle'])/3);
$v['create_time'] = date('Y-m-d H:i:s',$v['create_time']);
}
$this->success('SUCCESS',$res);
}
/**
* @title 预约家政服务地址列表
* @description
* @author GuoSheng
* @url /index/Home/recycleList
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @return id:地址ID
* @return name:姓名
* @return phone:电话
* @return address:详细地址
*
*/
public function recycleList()
{
$user_id = $this->getUserId();
$where['user_id'] = ['eq',$user_id];
$where['delete_time'] = ['eq',0];
$data = Db::name('homeadress')
->field('id,name,phone,address')
->where($where)
->order('id desc')
->select();
$this->success('SUCCESS',$data);
}
/**
* @title 预约家政服务地址详情
* @description
* @author GuoSheng
* @url /index/Home/recycleDetail
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:id require:1 default: desc:回收地址ID
*
* @return name:姓名
* @return phone:电话
* @return address:详细地址
*
*/
public function recycleDetail()
{
$user_id = $this->getUserId();
$id = $this->request->param('id',0,'intval');
if(empty($id)){
$this -> error(['code'=>40005,'msg'=>'缺少必要参数']);
}
$data = Db::name('homeadress')
->where('id',$id)
->field('id,name,phone,address')
->find();
$this->success('SUCCESS',$data);
}
/**
* @title 添加预约家政服务地址
* @description
* @author GuoSheng
* @url /index/Home/addrecycle
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:name require:1 default: desc:联系人姓名
* @param name:phone require:1 default: desc:联系人电话
* @param name:address require:1 default: desc:联系人详细地址
*
*/
public function addrecycle()
{
$user_id = $this->getUserId();
$param = $this->request->param();
$param['user_id'] = $user_id;
$param['create_time'] = time();
$validate = new Validate([
'name' => 'require',
'phone' => 'require',
'address'=>'require',
]);
if (!$validate->check($param)) {
$this->error(['code'=>40005,'msg'=>$validate->getError()]);
}
$data = Db::name('homeadress')
->insert($param);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 修改预约家政服务地址
* @description
* @author GuoSheng
* @url /index/Home/editrecycle
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:id require:1 default: desc:回收地址ID
*
* @param name:name require:1 default: desc:联系人姓名
* @param name:phone require:1 default: desc:联系人电话
* @param name:address require:1 default: desc:联系人详细地址
*
*/
public function editrecycle()
{
$user_id = $this->getUserId();
$id = $this->request->param('id',0,'intval');
if(empty($id)){
$this -> error(['code'=>40005,'msg'=>'缺少必要参数']);
}
$param = $this->request->param();
$param['user_id'] = $user_id;
$param['update_time'] = time();
$validate = new Validate([
'name' => 'require',
'phone' => 'require',
'address'=>'require',
]);
if (!$validate->check($param)) {
$this->error(['code'=>40005,'msg'=>$validate->getError()]);
}
$data = Db::name('homeadress')
->where('id',$id)
->update($param);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 删除预约家政服务地址
* @description
* @author GuoSheng
* @url /index/Home/delrecycle
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:id require:1 default: desc:回收地址ID
*
*/
public function delrecycle()
{
$user_id = $this->getUserId();
$id = $this->request->param('id',0,'intval');
if(empty($id)){
$this -> error(['code'=>40005,'msg'=>'缺少必要参数']);
}
$data = Db::name('homeadress')
->where('id',$id)
->update(['delete_time'=>time()]);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 家政服务预约订单
* @description
* @author GuoSheng
* @url /index/Home/subscribe
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:homeaddress_id require:1 other: desc:预约家政服务地址ID
* @param name:home_id require:1 other: desc:家政公司ID
* @param name:service_id require:1 other desc:服务类目ID
* @param name:total require:1 other desc:所需积分
* @param name:sub_time require:1 other desc:预约时间
* @param name:content require:1 other desc:留言备注
*
*/
public function subscribe()
{
$user_id = $this->getUserId();
$login = Db::name('integral')
->where('user_id',$user_id)
->find();
if(empty($login)){
$this->error(['code'=>40005,'msg'=>'请先注册']);
}
$param = $this->request->param();
$param['user_id'] = $user_id;
$param['create_time'] = time();
$validate = new Validate([
'homeaddress_id' => 'require',
'home_id' => 'require',
'service_id'=>'require',
'total'=>'require',
'sub_time'=>'require',
]);
$validate->message([
'homeaddress_id'=>'预约家政地址不能为空',
'home_id'=>'家政公司不能为空',
'service_id'=>'服务类目不能为空',
'total'=>'所需积分不能为空',
'sub_time'=>'预约时间不能为空',
]);
if (!$validate->check($param)) {
$this->error(['code'=>40005,'msg'=>$validate->getError()]);
}
if($param['total']>$login['now_integral']){
$this->error(['code'=>2,'msg'=>'您的积分不足']);
}else{
$now_integral = $login['now_integral'] - $param['total'];
$update_time = time();
Db::name('integral')->where('user_id',$user_id)->update(['now_integral'=>$now_integral,'update_time'=>$update_time]);
$info['user_id'] = $user_id;
$info['create_time'] = time();
$info['type'] = 6;
$info['total'] = $param['total'];
Db::name('detail')->insertGetId($info);
}
$param['num'] = cmf_get_order_sn();
$data = Db::name('subhome')
->insert($param);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 通过家政公司获取其服务列表
* @description 通过家政公司获取其服务列表
* @author GuoSheng
* @url /index/Home/getsever
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @param name:id require:1 default: desc:家政公司ID
*
* @return id:ID
* @return sever_name:服务名称
* @return price:所需积分
*
*/
public function getsever()
{
$user_id = $this->getUserId();
$home_id = $this->request->param('id');
if(empty($home_id)){
$this->error(['code'=>2,'msg'=>'缺少必要参数']);
}
$data = Db::name('service')
->where('home_id',$home_id)
->where('delete_time',0)
->field('id,sever_name,price')
->select();
$this->success('SUCCESS',$data);
}
}