DownloadController.php
2.4 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
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 老猫 <thinkcmf@126.com>
// +----------------------------------------------------------------------
namespace api\home\controller;
use cmf\controller\RestBaseController;
use think\Db;
use think\Validate;
/**
* @title 资料下载
*/
class DownloadController extends RestBaseController
{
/**
* @title 资料下载列表
* @description 接口说明
* @author 开发者
* @url /api/home/download/downloadList
* @method GET
*
* @param name:language type:string require:0 default: other desc:语言切换(英文传递此字段(en),中文无需传递)
* @param name:page type:inter require:1 default: other desc:分页页码
*
* @return data:资料下载列表@
* @data id:资料下载id title:资料下载名称 file_url:资料下载地址
*
* @return count_page:总页码
*/
public function downloadList(){
$language = $this->request->param('language');
$page = $this->request->param('page');//分页
//验证
$rule = config('site.page');
$validate = new Validate($rule['rule'],$rule['msg']);
if (!$validate->check(['page'=>$page])) {
$this->error($validate->getError());
}
if(isset($language) && !empty($language)){
//英文
$field_download = 'id,title_en title,file_url';
}else{
//中文
$field_download = 'id,title,file_url';
}
$limit = CommonController::limit;
$res = Db::name('download');
$data = $res->field($field_download)
->page($page,$limit)
->order('id desc')
->select()
->toArray();
foreach ($data as &$value){
$value['file_url'] = cmf_get_file_download_url($value['file_url']);
}
$count = $res->count()/$limit;
$count_page = ceil($count/$limit);
$this->success('成功',['data'=>$data,'count_page'=>$count_page]);
}
}