127 lines
4.3 KiB
PHP
127 lines
4.3 KiB
PHP
<?php
|
|
namespace app\api\controller\party;
|
|
|
|
use app\api\BaseController;
|
|
use app\api\middleware\Auth;
|
|
use think\facade\Db;
|
|
|
|
|
|
/**
|
|
* 党群文章
|
|
*/
|
|
class Article extends BaseController
|
|
{
|
|
|
|
/**
|
|
* 控制器中间件 [不需要鉴权]
|
|
* @var array
|
|
*/
|
|
protected $middleware = [
|
|
Auth::class => ['except' => ['index','hot_list','getArticleList','details','indexs'] ]
|
|
];
|
|
|
|
public function index($search='',$category_id=1,$page=1) {
|
|
$order = $this->request->request('order', 1);
|
|
//查询升降序
|
|
if($order==1){
|
|
$orders='desc';
|
|
}else{
|
|
$orders='asc';
|
|
}
|
|
$where=[
|
|
['status','=', 1],
|
|
['category_id','=', $category_id]
|
|
];
|
|
//根据个人村id进行查询
|
|
if (JWT_UID) {
|
|
$find = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->find();
|
|
if ($find) {
|
|
if ($find['auth_range']==1){
|
|
$where[] = ['village', '=', $find['village_id']];
|
|
}elseif ($find['auth_range']==2){
|
|
$where[] = ['township', '=', $find['street_id']];
|
|
}elseif ($find['auth_range']==3){
|
|
$where[] = ['county', '=', $find['area_id']];
|
|
}
|
|
}
|
|
}
|
|
$count=Db::table('fa_szxc_party_article')->where($where)->count();
|
|
$month_count=Db::table('fa_szxc_party_article')->where($where)->whereMonth('view_time')->count();
|
|
if ($search!=''){
|
|
$where[]=['title','like','%'.$search.'%'];
|
|
}
|
|
$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();
|
|
return $this->apiSuccess('ok',['list'=>$select,'count'=>['count'=>$count,'month_count'=>$month_count]]);
|
|
}
|
|
public function details($id)
|
|
{
|
|
$find=Db::table('fa_szxc_party_article')->where('id',$id)->find();
|
|
if ($find){
|
|
// 增加阅读数
|
|
// $ip = 'party_article-details-'.$this->request->ip().'-'.$id;
|
|
// $ip_cache = Cache::get($ip);
|
|
// if(empty($ip_cache)){
|
|
// Cache::set($ip,$id,3600*24);
|
|
$map[] =['id','=', $id];
|
|
Db::table('fa_szxc_party_article')->where($map)->inc('view','1')->update();
|
|
// }
|
|
}
|
|
return $this->apiSuccess('ok',$find);
|
|
}
|
|
public function add(){
|
|
|
|
}
|
|
public function post(){
|
|
$input=get_params();
|
|
// $valdate = new ArticleValdate();
|
|
// $res=$valdate->check($input);
|
|
// if (!$res){
|
|
// return $this->apiError($valdate->getError());
|
|
// }
|
|
$useraddress = Db::table('fa_szxc_information_useraddress')->where('user_id', JWT_UID)->where('status', 1)->find();
|
|
if ($useraddress) {
|
|
$input['county'] = $useraddress['area_id'];
|
|
$input['township'] = $useraddress['street_id'];
|
|
$input['village'] = $useraddress['village_id'];
|
|
}
|
|
$input['add_time'] = date('Y-m-d H:i:s');
|
|
$input['view_time'] = date('Y-m-d H:i:s');
|
|
$input['user_id'] = JWT_UID;
|
|
$res=Db::table('fa_szxc_party_article')->save($input);
|
|
if ($res){
|
|
return $this->apiSuccess('添加成功');
|
|
}else{
|
|
return $this->apiError('添加失败');
|
|
}
|
|
}
|
|
public function edit($id){
|
|
$find=Db::table('fa_szxc_party_article')->where('id',$id)->find();
|
|
return $this->apiSuccess('ok',$find);
|
|
|
|
}
|
|
public function put($id){
|
|
$input=get_params();
|
|
// $valdate = new ArticleValdate();
|
|
// $res=$valdate->check($input);
|
|
// if (!$res){
|
|
// return $this->apiError($valdate->getError());
|
|
// }
|
|
$input['user_id'] = JWT_UID;
|
|
$res=Db::table('fa_szxc_party_article')->where('id',$id)->update($input);
|
|
if ($res){
|
|
return $this->apiSuccess('修改成功');
|
|
}else{
|
|
return $this->apiError('修改失败');
|
|
}
|
|
}
|
|
public function delete($id){
|
|
$res=Db::table('fa_szxc_party_article')->where('id',$id)->update(['status'=>0]);
|
|
if ($res){
|
|
return $this->apiSuccess('删除成功');
|
|
}else{
|
|
return $this->apiError('删除失败');
|
|
}
|
|
}
|
|
}
|