|
@@ -36,9 +36,9 @@ class InfoController extends Api
|
|
|
$data=input();
|
|
|
if(empty($data['keyword'])) {
|
|
|
$this->validate($data, [
|
|
|
- 'type' => ['require', 'in:1,2,3,4'],
|
|
|
- 'longitude' => ['requireIf:type,1'],
|
|
|
- 'latitude' => ['requireIf:type,1'],
|
|
|
+ 'type|类型' => ['require', 'in:1,2,3,4'],
|
|
|
+ 'longitude|经度' => ['requireIf:type,1'],
|
|
|
+ 'latitude|纬度' => ['requireIf:type,1'],
|
|
|
]);
|
|
|
$q = Info::type($data)
|
|
|
->order('id', 'desc')
|
|
@@ -72,7 +72,7 @@ class InfoController extends Api
|
|
|
public function detail(){
|
|
|
$data=input();
|
|
|
$this->validate($data,[
|
|
|
- 'id'=>['require'],
|
|
|
+ 'id|ID'=>['require'],
|
|
|
]);
|
|
|
$list=Info::show()->findOrFail($data['id'])->append(['user','theme']);
|
|
|
$this->success('',$list);
|
|
@@ -89,12 +89,12 @@ class InfoController extends Api
|
|
|
public function post(){
|
|
|
$data=input();
|
|
|
$this->validate($data,[
|
|
|
- 'content'=>['require','max:500'],
|
|
|
- 'theme'=>['array'],
|
|
|
- 'images'=>['array'],
|
|
|
- 'longitude'=>['require'],
|
|
|
- 'latitude'=>['require'],
|
|
|
- 'position'=>['require'],
|
|
|
+ 'content|内容'=>['require','max:500'],
|
|
|
+ 'theme|话题'=>['array'],
|
|
|
+ 'images|图片'=>['array'],
|
|
|
+ 'longitude|经度'=>['require'],
|
|
|
+ 'latitude|纬度'=>['require'],
|
|
|
+ 'position|位置'=>['require'],
|
|
|
]);
|
|
|
$data['city']=tm()->getLocation($data['longitude'],$data['latitude'])['city'];
|
|
|
Db::startTrans();
|
|
@@ -129,8 +129,8 @@ class InfoController extends Api
|
|
|
public function follow(){
|
|
|
$data=input();
|
|
|
$this->validate($data,[
|
|
|
- 'user_id'=>['require'],
|
|
|
- 'type' =>['require','in:1,2'],
|
|
|
+ 'user_id|用户'=>['require'],
|
|
|
+ 'type|类型' =>['require','in:1,2'],
|
|
|
]);
|
|
|
$user=$this->auth->getUser();
|
|
|
if($data['type']==1){
|