2023-01-18 17:10:33 +08:00

156 lines
5.8 KiB
PHP

<?php
namespace app\api\controller\party;
use app\common\controller\Api;
use app\admin\model\party\Vote as VoteModel;
use app\admin\validate\party\Vote as VoteValdate;
use think\facade\Cache;
use think\facade\Db;
use think\App;
/**
* 党员维护
*/
class Vote extends Api{
// protected $noNeedLogin = ['index'];
protected $noNeedRight = ['*'];
public function __construct(App $app)
{
parent::__construct($app);
$this->model = new VoteModel();
$this->validate = new VoteValdate();
}
public function index($search='',$page=1,$type=0,$screen=1) {
$where=[
['status','=', 1]
];
//根据个人村id进行查询
if ($this->auth->id) {
$find = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->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::name('szxc_party_vote')->where($where)->count();
$month_count=Db::name('szxc_party_vote')->where($where)->whereMonth('start_time')->count();
if ($search!=''){
$where[]=['title','like',$search.'%'];
}
if ($screen==2){
$where[]=['end_time','>=',date('Y-m-d')];
}
if ($screen==3){
$where[]=['end_time','<=',date('Y-m-d')];
}
$select=Db::name('szxc_party_vote')->where($where)->page($page)->limit(20)
->withAttr('percentage',function ($data,$value){
$count=$value['agree']+$value['opposition']+$value['other'];
$find['agree_percentage']=0;
$find['opposition_percentage']=0;
if ($count!=0){
if ($value['agree']!=0){
$find['agree_percentage']=round(($value['agree']/$count)*100);
}
if ($value['opposition']!=0){
$find['opposition_percentage']=round(($value['opposition']/$count)*100);
}
}
return $find;
})
->withAttr('nickname',function($value,$data){
$find=Db::name('user')->where('id',$data['user_id'])->field('nickname')->find();
return $find['nickname'];
})->order('id DESC')
->field('id,title,image,user_id,view,start_time,end_time,agree,opposition,other')->select();
return $this->success('ok',['list'=>$select,'count'=>['count'=>$count,'month_count'=>$month_count]]);
}
public function details($id)
{
$find=$this->model->where('id',$id)->find()->toArray();
if ($find){
// 增加阅读数
// $ip = 'party_vote_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::name('szxc_party_vote')->where($map)->inc('view','1')->update();
// }
$count=$find['agree']+$find['opposition']+$find['other'];
$find['agree_percentage']=0;
$find['opposition_percentage']=0;
if ($count!=0){
if ($find['agree']!=0){
$find['agree_percentage']=round(($find['agree']/$count)*100);
}
if ($find['opposition']!=0){
$find['opposition_percentage']=round(($find['opposition']/$count)*100);
}
}
}
return $this->success('ok',$find);
}
public function add(){
}
public function post(){
$input=$this->request->post();;
$res=$this->validate->check($input);
if (!$res){
return $this->error($this->validate->getError());
}
$useraddress = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->where('status', 1)->find();
if ($useraddress) {
$input['county'] = $useraddress['area_id'];
$input['township'] = $useraddress['street_id'];
$input['village'] = $useraddress['village_id'];
}
$input['user_id']=$this->auth->id;
$input['add_time']=date('Y-m-d H:i:s');
$res=$this->model->save($input);
if ($res){
return $this->success('添加成功');
}else{
return $this->error('添加失败');
}
}
public function edit($id){
$find=$this->model->where('id',$id)->find();
return $this->success('ok',$find);
}
public function put($id){
$input=$this->request->post();;
$res=$this->validate->check($input);
if (!$res){
return $this->error($this->validate->getError());
}
$useraddress = Db::name('szxc_information_useraddress')->where('user_id', $this->auth->id)->where('status', 1)->find();
if ($useraddress) {
$input['county'] = $useraddress['area_id'];
$input['township'] = $useraddress['street_id'];
$input['village'] = $useraddress['village_id'];
}
$res=$this->model->where('id',$id)->update($input);
if ($res){
return $this->success('修改成功');
}else{
return $this->error('修改失败');
}
}
public function delete($id){
$res=$this->model->where('id',$id)->update(['status'=>0]);
if ($res){
return $this->success('删除成功');
}else{
return $this->error('删除失败');
}
}
}