接口更新

This commit is contained in:
彭桃 2023-01-29 10:54:25 +08:00
parent 887738fab7
commit 1c17637059
8 changed files with 81 additions and 61 deletions

View File

@ -537,7 +537,7 @@ class Article extends BaseController
public function edit($id) public function edit($id)
{ {
$model =Db::table('fa_article'); $model =Db::table('fa_article');
$find = $model->where('id', $id)->find()->toArray(); $find = $model->where('id', $id)->find();
if ($find && $find['is_vote'] == 1) { if ($find && $find['is_vote'] == 1) {
$data = Db::table('fa_article_vote_side_tables')->where('article_id', $find['id'])->find(); $data = Db::table('fa_article_vote_side_tables')->where('article_id', $find['id'])->find();
$find['extend']['vote'] = $data; $find['extend']['vote'] = $data;

View File

@ -6,7 +6,6 @@ use app\api\BaseController;
use app\api\middleware\Auth; use app\api\middleware\Auth;
use think\Exception; use think\Exception;
use think\facade\Db; use think\facade\Db;
use fast\Random;
use think\exception\ValidateException; use think\exception\ValidateException;
use app\common\model\User; use app\common\model\User;
@ -772,7 +771,7 @@ class Maintainentry extends BaseController
$data['user_id'] = $user_id; $data['user_id'] = $user_id;
$data['createtime'] = time(); $data['createtime'] = time();
$res = Db::table('fa_szxc_information_planting')->create($data); $res = Db::table('fa_szxc_information_planting')->insert($data);
if ($res) { if ($res) {
$this->apiSuccess('保存成功', null, 1); $this->apiSuccess('保存成功', null, 1);
} else { } else {
@ -1232,7 +1231,7 @@ class Maintainentry extends BaseController
$mobile = $post['phone']; $mobile = $post['phone'];
$ip = request()->ip(); $ip = request()->ip();
$time = time(); $time = time();
$salt = Random::alnum(); //随机字符串 $salt = set_salt(); //随机字符串
// 注册用户 // 注册用户
$params = [ $params = [
'username' => $mobile, 'username' => $mobile,
@ -1527,7 +1526,7 @@ class Maintainentry extends BaseController
$mobile = $post['phone']; $mobile = $post['phone'];
$ip = request()->ip(); $ip = request()->ip();
$time = time(); $time = time();
$salt = Random::alnum(); //随机字符串 $salt = set_salt(); //随机字符串
// 注册用户 // 注册用户
$params = [ $params = [
'username' => $mobile, 'username' => $mobile,

View File

@ -2,7 +2,6 @@
namespace app\api\controller; namespace app\api\controller;
use fast\Random;
use app\common\controller\Api; use app\common\controller\Api;
/** /**
@ -32,7 +31,7 @@ class Token extends Api
$token = $this->auth->getToken(); $token = $this->auth->getToken();
\app\common\library\Token::delete($token); \app\common\library\Token::delete($token);
//创建新Token //创建新Token
$token = Random::uuid(); $token = make_token();
\app\common\library\Token::set($token, $this->auth->id, 2592000); \app\common\library\Token::set($token, $this->auth->id, 2592000);
$tokenInfo = \app\common\library\Token::get($token); $tokenInfo = \app\common\library\Token::get($token);
$this->success('', ['token' => $tokenInfo['token'], 'expires_in' => $tokenInfo['expires_in']]); $this->success('', ['token' => $tokenInfo['token'], 'expires_in' => $tokenInfo['expires_in']]);

View File

@ -2,7 +2,6 @@
namespace app\api\controller; namespace app\api\controller;
use fast\Random;
use Firebase\JWT\JWT; use Firebase\JWT\JWT;
use think\facade\Validate; use think\facade\Validate;
use think\facade\Config; use think\facade\Config;
@ -31,7 +30,8 @@ class User extends BaseController
*/ */
public function index() public function index()
{ {
$this->apiSuccess('', ['nickname' => $this->auth->nickname,'avatar'=>$this->auth->avatar]); $user = Db::table('fa_user')->where('id',JWT_UID)->find();
$this->apiSuccess('', ['nickname' => $user['nickname'],'avatar'=>$user['avatar']]);
} }
/** /**

View File

@ -4,9 +4,9 @@ namespace app\api\controller;
use app\api\BaseController; use app\api\BaseController;
use app\api\middleware\Auth; use app\api\middleware\Auth;
use Firebase\JWT\JWT;
use think\Exception; use think\Exception;
use think\facade\Db; use think\facade\Db;
use fast\Random;
use think\exception\ValidateException; use think\exception\ValidateException;
use think\facade\Request; use think\facade\Request;
@ -190,7 +190,7 @@ class Userinfo extends BaseController
// $ret = $this->auth->login($user['username'], ''); // $ret = $this->auth->login($user['username'], '');
// if ($ret) { // if ($ret) {
//创建新Token //创建新Token
$token = Random::uuid(); $token = $this->getToken($user['id']);
\app\common\library\Token::set($token, $user['id'], 2592000); \app\common\library\Token::set($token, $user['id'], 2592000);
$tokenInfo = \app\common\library\Token::get($token); $tokenInfo = \app\common\library\Token::get($token);
$Userinfo = $user; $Userinfo = $user;
@ -224,6 +224,27 @@ class Userinfo extends BaseController
} }
} }
/**
* @param $user_id
* @return string
*/
public function getToken($user_id){
$time = time(); //当前时间
$conf = $this->jwt_conf;
$token = [
'iss' => $conf['iss'], //签发者 可选
'aud' => $conf['aud'], //接收该JWT的一方可选
'iat' => $time, //签发时间
'nbf' => $time-1 , //(Not Before)某个时间点后才能访问比如设置time+30表示当前时间30秒后才能使用
'exp' => $time+$conf['exptime'], //过期时间,这里设置2个小时
'data' => [
//自定义信息,不要定义敏感信息
'userid' =>$user_id,
]
];
return JWT::encode($token, $conf['secrect'], 'HS256'); //输出Token 默认'HS256'
}
/** /**
* 根据身份证号码获取性别 * 根据身份证号码获取性别

View File

@ -319,6 +319,7 @@ class Village extends BaseController
} }
$this->apiSuccess('获取成功', $news); $this->apiSuccess('获取成功', $news);
} else { } else {
$news['id'] = $address['village_id'];
$news['title'] = $address_name; $news['title'] = $address_name;
$news['address'] = $address_name; $news['address'] = $address_name;
$news['images'] = ["https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230115/4dc84e69408fef859e8553a5c7091197.jpg"]; $news['images'] = ["https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230115/4dc84e69408fef859e8553a5c7091197.jpg"];

View File

@ -1,18 +1,24 @@
<?php <?php
namespace app\api\controller\party; namespace app\api\controller\party;
use app\common\controller\Api;
use app\admin\model\party\Article as ArticleModel; use app\api\BaseController;
use app\admin\validate\party\Article as ArticleValdate; use app\api\middleware\Auth;
use think\facade\Cache;
use think\facade\Db; use think\facade\Db;
/** /**
* 党群文章 * 党群文章
*/ */
class Article extends Api{ class Article extends BaseController
protected $noNeedLogin = ['index','details']; {
protected $noNeedRight = ['*'];
/**
* 控制器中间件 [不需要鉴权]
* @var array
*/
protected $middleware = [
Auth::class => ['except' => ['index','hot_list','getArticleList','details','indexs'] ]
];
public function index($search='',$category_id=1,$page=1) { public function index($search='',$category_id=1,$page=1) {
$order = $this->request->request('order', 1); $order = $this->request->request('order', 1);
@ -22,14 +28,13 @@ class Article extends Api{
}else{ }else{
$orders='asc'; $orders='asc';
} }
$model = new ArticleModel();
$where=[ $where=[
['status','=', 1], ['status','=', 1],
['category_id','=', $category_id] ['category_id','=', $category_id]
]; ];
//根据个人村id进行查询 //根据个人村id进行查询
if ($this->auth->id) { if (JWT_UID) {
$find = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->find(); $find = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->find();
if ($find) { if ($find) {
if ($find['auth_range']==1){ if ($find['auth_range']==1){
$where[] = ['village', '=', $find['village_id']]; $where[] = ['village', '=', $find['village_id']];
@ -40,19 +45,18 @@ class Article extends Api{
} }
} }
} }
$count=$model->where($where)->count(); $count=Db::table('fa_szxc_party_article')->where($where)->count();
$month_count=$model->where($where)->whereMonth('view_time')->count(); $month_count=Db::table('fa_szxc_party_article')->where($where)->whereMonth('view_time')->count();
if ($search!=''){ if ($search!=''){
$where[]=['title','like','%'.$search.'%']; $where[]=['title','like','%'.$search.'%'];
} }
$select=$model->with('user')->where($where)->page($page)->limit(20) $select=Db::table('fa_szxc_party_article')->with('user')->where($where)->page($page)->limit(20)
->field('id,title,user_id,view,view_time,image')->order('id',$orders)->select(); ->field('id,title,user_id,view,view_time,image')->order('id',$orders)->select();
return $this->success('ok',['list'=>$select,'count'=>['count'=>$count,'month_count'=>$month_count]]); return $this->apiSuccess('ok',['list'=>$select,'count'=>['count'=>$count,'month_count'=>$month_count]]);
} }
public function details($id) public function details($id)
{ {
$model = new ArticleModel(); $find=Db::table('fa_szxc_party_article')->where('id',$id)->find();
$find=$model->where('id',$id)->find();
if ($find){ if ($find){
// 增加阅读数 // 增加阅读数
// $ip = 'party_article-details-'.$this->request->ip().'-'.$id; // $ip = 'party_article-details-'.$this->request->ip().'-'.$id;
@ -60,23 +64,22 @@ class Article extends Api{
// if(empty($ip_cache)){ // if(empty($ip_cache)){
// Cache::set($ip,$id,3600*24); // Cache::set($ip,$id,3600*24);
$map[] =['id','=', $id]; $map[] =['id','=', $id];
Db::name('szxc_party_article')->where($map)->inc('view','1')->update(); Db::table('fa_szxc_party_article')->where($map)->inc('view','1')->update();
// } // }
} }
return $this->success('ok',$find); return $this->apiSuccess('ok',$find);
} }
public function add(){ public function add(){
} }
public function post(){ public function post(){
$input=$this->request->post(); $input=get_params();
$valdate = new ArticleValdate(); // $valdate = new ArticleValdate();
$res=$valdate->check($input); // $res=$valdate->check($input);
if (!$res){ // if (!$res){
return $this->error($valdate->getError()); // return $this->apiError($valdate->getError());
} // }
$model = new ArticleModel(); $useraddress = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->where('status', 1)->find();
$useraddress = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->where('status', 1)->find();
if ($useraddress) { if ($useraddress) {
$input['county'] = $useraddress['area_id']; $input['county'] = $useraddress['area_id'];
$input['township'] = $useraddress['street_id']; $input['township'] = $useraddress['street_id'];
@ -84,43 +87,40 @@ class Article extends Api{
} }
$input['add_time'] = date('Y-m-d H:i:s'); $input['add_time'] = date('Y-m-d H:i:s');
$input['view_time'] = date('Y-m-d H:i:s'); $input['view_time'] = date('Y-m-d H:i:s');
$input['user_id'] = $this->auth->id; $input['user_id'] = JWT_UID;
$res=$model->save($input); $res=Db::table('fa_szxc_party_article')->save($input);
if ($res){ if ($res){
return $this->success('添加成功'); return $this->apiSuccess('添加成功');
}else{ }else{
return $this->error('添加失败'); return $this->apiError('添加失败');
} }
} }
public function edit($id){ public function edit($id){
$model = new ArticleModel(); $find=Db::table('fa_szxc_party_article')->where('id',$id)->find();
$find=$model->where('id',$id)->find(); return $this->apiSuccess('ok',$find);
return $this->success('ok',$find);
} }
public function put($id){ public function put($id){
$input=$this->request->post(); $input=get_params();
$valdate = new ArticleValdate(); // $valdate = new ArticleValdate();
$res=$valdate->check($input); // $res=$valdate->check($input);
if (!$res){ // if (!$res){
return $this->error($valdate->getError()); // return $this->apiError($valdate->getError());
} // }
$model = new ArticleModel(); $input['user_id'] = JWT_UID;
$input['user_id'] = $this->auth->id; $res=Db::table('fa_szxc_party_article')->where('id',$id)->update($input);
$res=$model->where('id',$id)->update($input);
if ($res){ if ($res){
return $this->success('修改成功'); return $this->apiSuccess('修改成功');
}else{ }else{
return $this->error('修改失败'); return $this->apiError('修改失败');
} }
} }
public function delete($id){ public function delete($id){
$model = new ArticleModel(); $res=Db::table('fa_szxc_party_article')->where('id',$id)->update(['status'=>0]);
$res=$model->where('id',$id)->update(['status'=>0]);
if ($res){ if ($res){
return $this->success('删除成功'); return $this->apiSuccess('删除成功');
}else{ }else{
return $this->error('删除失败'); return $this->apiError('删除失败');
} }
} }
} }

View File

@ -82,9 +82,9 @@ class Maintainentry extends Validate
* 验证场景. * 验证场景.
*/ */
protected $scene = [ protected $scene = [
'add' => ['name', 'gender_id', 'age', 'phone','idcard', 'marriage_id', 'zzmm_id', 'nation_id'], 'add' => ['name', 'gender_id', 'age', 'phone','idcard', 'marriage_id', 'nation_id'],
'myadd' => ['name', 'gender_id', 'age', 'phone','idcard', 'marriage_id', 'zzmm_id', 'nation_id'], 'myadd' => ['name', 'gender_id', 'age', 'phone','idcard', 'marriage_id', 'zzmm_id', 'nation_id'],
'edit' => ['name', 'gender', 'age', 'phone','idcard', 'marriage_id', 'zzmm_id', 'nation_id'], 'edit' => ['name', 'gender', 'age', 'phone','idcard', 'marriage_id', 'nation_id'],
'insurancemsg' => ['endowment_insurance_status_id', 'insurance_type_id', 'disability_type_id','ny_insurance_id','sy_insurance_id'], 'insurancemsg' => ['endowment_insurance_status_id', 'insurance_type_id', 'disability_type_id','ny_insurance_id','sy_insurance_id'],
]; ];