RecycleController.php
14.7 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
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2019/11/12
* Time: 18:21
*/
namespace api\index\controller;
use cmf\controller\RestBaseController;
use think\Db;
use think\Request;
use think\Validate;
use cmf\lib\Storage;
/**
* @title 回收首页
* @description
*/
class RecycleController extends RestBaseController
{
/**
* @title 可回收物类型
* @description
* @author GuoSheng
* @url /index/Recycle/index
* @method GET
*
* @return id:可回收物分类ID
* @return recycle_name:类型名称
* @return thumbnail:图片
* @return price:价格
*
*/
public function index(){
$where['delete_time'] = ['eq',0];
$data = Db::name('recycletype')
->where($where)
->field('id,recycle_name,thumbnail,price')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 可回收物品
* @description
* @author GuoSheng
* @url /index/Recycle/rgoods
* @method GET
*
* @param name:recycletype_id type:int require:0 other: desc:所属分类ID
*
* @return id:可回收物品id
* @return recycletype_id:所属分类id
* @return name:名称
* @return thumbnail:图片
*
*/
public function rgoods(){
$recycletype_id = $this->request->param('recycletype_id');
if(empty($recycletype_id)){
$data = Db::name('recyclegoods')
->where('recycletype_id',1)
->select();
$this->success('SUCCESS',$data);
}else{
$data = Db::name('recyclegoods')
->where('recycletype_id',$recycletype_id)
->select();
$this->success('SUCCESS',$data);
}
}
/**
* @title 不可回收物类型
* @description
* @author GuoSheng
* @url /index/Recycle/noRecycle
* @method GET
*
* @return id:不可回收物分类ID
* @return recycle_name:类型名称
* @return thumbnail:图片
* @return price:价格
*
*/
public function noRecycle()
{
$where['delete_time'] = ['eq',0];
$data = Db::name('norecycletype')
->where($where)
->field('id,recycle_name,thumbnail')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 不可回收物品
* @description
* @author GuoSheng
* @url /index/Recycle/norgoods
* @method GET
*
* @param name:recycletype_id type:int require:0 other: desc:所属分类ID
*
* @return id:不可回收物品id
* @return recycletype_id:所属分类id
* @return name:名称
* @return thumbnail:图片
*
*/
public function norgoods(){
$recycletype_id = $this->request->param('recycletype_id');
if(empty($recycletype_id)){
$data = Db::name('norecyclegoods')
->where('recycletype_id',1)
->select();
$this->success('SUCCESS',$data);
}else{
$data = Db::name('norecyclegoods')
->where('recycletype_id',$recycletype_id)
->select();
$this->success('SUCCESS',$data);
}
}
/**
* @title 回收首页轮播图
* @description
* @author GuoSheng
* @url /index/Recycle/photo
* @method GET
*
* @return id:ID
* @return thumbnail:图片
* @return url:链接地址
*
*/
public function photo(){
$where['delete_time'] = ['eq',0];
$data = Db::name('pic')
->where($where)
->field('id,thumbnail,url')
->select()
->toArray();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 回收站点列表
* @description
* @author GuoSheng
* @url /index/Recycle/point
* @method GET
*
* @return id:ID
* @return point_name:站点名称
* @return thumbnail:图片
* @return address:详细地址
* @return lng:站点所在经度
* @return lat:站点所在纬度
*
*/
public function point()
{
$where['delete_time'] = ['eq',0];
$data = Db::name('point')
->where($where)
->field('id,point_name,address,thumbnail,lng,lat')
->select()
->toArray();
foreach ($data as &$v){
$v['thumbnail'] = cmf_get_image_url($v['thumbnail']);
}
$this->success('SUCCESS',$data);
}
/**
* @title 回收首页装修材料logo
* @description
* @author GuoSheng
* @url /index/Recycle/build
* @method GET
*
* @return id:ID
* @return thumbnail:图片
*
*/
public function build(){
$data = Db::name('build')
->where('id',1)
->field('id,thumbnail')
->find();
$this->success('SUCCESS',$data);
}
/**
* @title 回收首页环保知识logo
* @description
* @author GuoSheng
* @url /index/Recycle/know
* @method GET
*
* @return id:ID
* @return thumbnail:图片
*
*/
public function know(){
$data = Db::name('knowledge')
->where('id',1)
->field('id,thumbnail')
->find();
$data['thumbnail'] = cmf_get_image_url($data['thumbnail']);
$this->success('SUCCESS',$data);
}
/**
* @title 回收首页服务评价列表
* @description
* @author GuoSheng
* @url /index/Recycle/comment
* @method GET
*
* @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()
{
$page = $this->request->param('page',1,'intval');
$pageNum = $this->request->param('pageNum',10,'intval');
$res = Db::name('recyclecomment')
->alias('a')
->join('user b','a.user_id = b.id')
->field('a.*,b.user_nickname,b.avatar')
->page($page,$pageNum)
->select()
->toArray();
foreach ($res as &$v){
$v['content'] = cmf_replace_content_file_url(htmlspecialchars_decode($v['content']));
$v['num'] = ceil(($v['speed']+$v['service']+$v['recycle'])/3);
}
$this->success('SUCCESS',$res);
}
/**
* @title 回收首页我的积分
* @description
* @author GuoSheng
* @url /index/Recycle/integral
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @return status:状态 (1没有注册过 2注册过)
* @return now_integral:当前积分
* @return num:参与次数
* @return add_total:累计积分
*
*/
public function integral()
{
$user_id = $this->getUserId();
$data = Db::name('integral')
->where('user_id',$user_id)
->find();
if(empty($data)){
$res['status'] = 1;
}else{
$res['status'] = 2;
$res['now_integral'] = $data['now_integral'];
$res['num'] = $data['num'];
$res['add_total'] = $data['add_total'];
}
$this->success('SUCCESS',$res);
}
/**
* @title 上门回收地址列表
* @description
* @author GuoSheng
* @url /index/Recycle/recycleList
* @method GET
*
* @header name:XX-Token require:1 default: desc:token
*
* @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('recycle')
->where($where)
->order('id desc')
->select()
->toArray();
$this->success('SUCCESS',$data);
}
/**
* @title 上门回收地址详情
* @description
* @author GuoSheng
* @url /index/Recycle/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('recycle')
->where('id',$id)
->field('id,name,phone,address')
->find();
$this->success('SUCCESS',$data);
}
/**
* @title 添加上门回收地址
* @description
* @author GuoSheng
* @url /index/Recycle/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('recycle')
->insert($param);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 修改上门回收地址
* @description
* @author GuoSheng
* @url /index/Recycle/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('recycle')
->where('id',$id)
->update($param);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 删除上门回收地址
* @description
* @author GuoSheng
* @url /index/Recycle/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('recycle')
->where('id',$id)
->update(['delete_time'=>time()]);
if(empty($data)){
$this->error(['code'=>40006,'msg'=>'sql执行失败']);
}
$this->success('SUCCESS');
}
/**
* @title 上传文件
* @description 接口说明
* @author 开发者
* @url /index/Recycle/uploadFile
* @method POST
* @header name:XX-Token require:1 default: desc:token
*
* @param name:image[] type:file require:1 default: other: desc:文件
*
* @return image_url:图片路径
*/
public function uploadFile(){
$files = request()->file('image');
if (empty($files)) {
$this->error('未检出文件上传');
}
$countFile = count($files);
if($countFile > 5) {
$this->error('最多上传5张图片');
}
$url2 = '';
$host = 'http://guosheng.springchunjia.cn';
foreach ($files as $file){
//移动到框架应用根目录/public/uploads/ 目录下
$moveUrl = ROOT_PATH . 'public' . DS . 'uploads';
$info = $file->move(ROOT_PATH . 'public' . DS . 'uploads');
if($info){
$request = Request::instance();
$a = $request->domain().'/'.'uploads/'.$info->getSaveName();
//上传七牛云逻辑
$url = str_replace('//', '/', str_replace('\\', '/', $info->getSaveName())); //20190602/1214564654.jpg目录
$filePath = $moveUrl.DS.$url;//本地磁盘路径
//上传至七牛云文件路径
$qiniu_file = 'uploads/'.$url;
$storage = new Storage();
$qi_res = $storage->upload($qiniu_file, $filePath, 'image');
if($qi_res){
$a = $host.DS.$qiniu_file;
$sys = $this->getOperateSys();
//删除本地服务器图片逻辑
if($sys == 'Linux'){
unlink($filePath);//适用于linux
}
$url2 .= $a.',';
}else{
$this->error('上传七牛云出错!');
}
}else{
$this->error($files->getError());
}
}
$this->success('SUCCESS',rtrim($url2,','));
}
//判断当前操作系统
public function getOperateSys(){
$os_name = php_uname('s');
//判断
if(strpos($os_name,"Linux")!==false){
$os_str="Linux";
}else if(strpos($os_name,"Windows")!==false){
$os_str="Windows";
}else{
$os_str='';
}
return $os_str;
}
}