123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <?php
- /**
- * 梦想列表
- * @author system
- * @version 1.0
- * @date 2017-06-28 14:50:22
- *
- */
- namespace App\Http\Controllers\Admin\Dream;
- use App\Http\Controllers\Admin\Controller;
- use App\Models\BaseAttachmentModel;
- use App\Models\BaseSettingsModel;
- use App\Models\DreamImages;
- use App\Models\DreamInfoModel;
- use App\Models\SystemInfoModel;
- use App\Models\UserCareDream;
- use Illuminate\Http\Request;
- use App\Repositories\Base\Criteria\OrderBy;
- use App\Repositories\Dream\Criteria\MultiWhere;
- use App\Repositories\Dream\InfoRepository;
- use App\Helper\JpushHelper;
- class InfoController extends Controller
- {
- use JpushHelper;
- private $repository;
- public function __construct(InfoRepository $repository) {
- if(!$this->repository) $this->repository = $repository;
- }
- function index(Request $reqeust) {
- $search['keyword'] = $reqeust->input('keyword');
- $query = $this->repository->pushCriteria(new MultiWhere($search));
- $request = $reqeust->all();
- if(isset($request['sort_field']) && $request['sort_field'] && isset($request['sort_field_by'])) {
- $query = $query->pushCriteria(new OrderBy($request['sort_field'],$request['sort_field_by']));
- }
- $list = $query->paginate();
- return view('admin.dream.info.index',compact('list'));
- }
- function check(Request $reqeust) {
- $request = $reqeust->all();
- $search['keyword'] = $reqeust->input('keyword');
- $orderby = array();
- if(isset($request['sort_field']) && $request['sort_field'] && isset($request['sort_field_by'])) {
- $orderby[$request['sort_field']] = $request['sort_field_by'];
- }
- $list = $this->repository->search($search,$orderby);
- return view('admin.dream.info.check',compact('list'));
- }
- /**
- * 添加
- *
- */
- public function create(Request $reqeust)
- {
- if($reqeust->method() == 'POST') {
- return $this->_createSave();
- }
- $signs = BaseSettingsModel::where('category','sign')->orderBy('id')->get();
- return view('admin.dream.info.edit',compact('signs'));
- }
- /**
- * 保存修改
- */
- private function _createSave(){
- $data = (array) request('data');
- if (is_array($data['sign'])) {
- $data['sign'] = join(',',$data['sign']);
- }
- $pics = (array) request('pic');
- if (empty($pics)) {
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- return $this->showWarning('请添加图片',$url);
- }
- $data['created_at'] = date('Y-m-d H:i:s');
- $data['updated_at'] = date('Y-m-d H:i:s');
- $id = DreamInfoModel::insertGetId($data);
- // 生成二维码
- /* $info['transaction_id'] = date('YmdHis') . mt_rand(1000, 9999);
- $info['code'] = 'WECHATPAY_' . $info['transaction_id'];
- $code_url = env('APP_URL').'/user/meet?dream_id='.$id;
- $code_path = public_path('qrcodes/'.$info['code'].'.png');
- \QrCode::format('png')->size(500)->generate($code_url,$code_path);
- $code = env('APP_URL').'/qrcodes/'.$info['code'].'.png';
- DreamInfoModel::where('id',$id)->update(compact('code'));*/
- if($id) {
- $arr = [];
- foreach ($pics['url'] as $pic) {
- $arr[] = [
- 'pic'=>getenv('APP_URL').$pic,
- 'dream_id'=>$id,
- 'created_at'=>date("Y-m-d H:i:s"),
- 'updated_at'=>date("Y-m-d H:i:s"),
- ];
- }
- DreamImages::insert($arr);
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- $url[] = array('url'=>U( 'Dream/Info/create'),'title'=>'继续添加');
- $this->showMessage('添加成功',$url);
- }else{
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- return $this->showWarning('添加失败',$url);
- }
- }
-
- /**
- *
- * 修改
- *
- *
- */
- public function update(Request $reqeust) {
- if($reqeust->method() == 'POST') {
- return $this->_updateSave();
- }
- $data = $this->repository->find($reqeust->get('id'));
- $imgs = $data->imgs;
- $arr = [];
- foreach ($imgs as $pic) {
- $arr[] = $pic['pic'];
- }
- $data->imgs = $arr;
- $data['sign'] = explode(',',$data['sign']);
- $signs = BaseSettingsModel::where('category','sign')->orderBy('id')->get();
- return view('admin.dream.info.edit',compact('data','signs'));
- }
- /**
- * 保存修改
- */
- private function _updateSave() {
- $data = (array) request('data');
- if (array_key_exists('sign',$data)) {
- $data['sign'] = join(',',$data['sign']);
- }
- // 后台修改排行参数时,梦想分数也改变
- $dream_id = request('id');
- $data2 = UserCareDream::where('dream_id',$dream_id)->get();
- $care_num = count($data2);
- $setting = BaseSettingsModel::where('category','paihang')->first();
- $a = $data['parameter'];
- $b = $setting?$setting->value:1;
- $t = 21*3600 / 60;
- \Log::debug($data['end_time'].' care_num:'.$care_num.' a:'.$a.' b:'.$b.' t:'.$t);
- if ($care_num == 0) {
- $data['score'] = (($a/$t) + $b)*100000000 ;
- }else{
- $data['score'] = (log($care_num) + ($a/$t) + $b)*100000000 ;
- }
- $pics = (array) request('pic');
- if (empty($pics)) {
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- return $this->showWarning('请添加图片',$url);
- }
- $old_data_pics = $this->repository->find(request('id'))->imgs->toArray();
- $old_pics = array_column($old_data_pics,'pic');
- $a = array_diff($pics['url'],$old_pics);
- $b = array_diff($old_pics,$pics['url']);
- if (!empty($a) || !empty($b)) { //有图片变化执行
- // 删除以前图片 重新插入
- if (!empty($b)) {
- foreach ($b as $old_pic){
- if (is_file('.'.str_replace(getenv('APP_URL'),'',$old_pic))) {
- unlink('.'.str_replace(getenv('APP_URL'),'',$old_pic));
- }
- BaseAttachmentModel::where('url',$old_pic)->delete();
- DreamImages::where('pic',$old_pic)->delete();
- }
- }
- $arr = []; //插入新的图片
- foreach ($a as $pic) {
- $arr[] = [
- 'pic'=>getenv('APP_URL').$pic,
- 'dream_id'=>request('id'),
- 'created_at'=>date('Y-m-d H:i:s'),
- 'updated_at'=>date('Y-m-d H:i:s'),
- ];
- }
- DreamImages::insert($arr);
- }
- $ok = $this->repository->update(request('id'),$data);
- if ($data['status'] == 1) { //审核通过
- $message = '你的梦想《'.$data['name'].'》已被批准,离你实现梦想又更进一步啦~ ';
- $info = [
- 'user_id' => $data['user_id'],
- 'message' => $message,
- ];
- SystemInfoModel::create($info);
- // 长连接
- $this->jPush($message,'',$data['user_id']);
- }
- if($ok) {
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- return $this->showMessage('操作成功',urldecode(request('_referer')));
- }else{
- $url[] = array('url'=>U( 'Dream/Info/index'),'title'=>'返回列表');
- return $this->showWarning('操作失败',$url);
- }
- }
- public function view(Request $reqeust) {
- $data = $this->repository->find(request('id'));
- return view('admin.dream.info.view',compact('data'));
- }
- /**
- *
- * 状态改变
- *
- */
- public function status(Request $reqeust) {
- $ok = $this->repository->updateStatus(request('id'),request('status'));
- if($ok) {
- return $this->showMessage('操作成功');
- }else{
- return $this->showWarning('操作失败');
- }
- }
-
- /**
- * 删除
- */
- public function destroy(Request $reqeust) {
- $dream = DreamInfoModel::find($reqeust->get('id'));
- if($dream) {
- $old_data_pics = $dream->imgs->toArray();
- $old_pics = array_column($old_data_pics,'pic');
- if (!empty($old_pics)) {
- foreach ($old_pics as $old_pic){
- if (is_file('.'.str_replace(getenv('APP_URL'),'',$old_pic))) {
- unlink('.'.str_replace(getenv('APP_URL'),'',$old_pic));
- }
- BaseAttachmentModel::where('url',$old_pic)->delete();
- }
- BaseAttachmentModel::where('url',$old_pic)->delete();
- }
- DreamImages::where('dream_id',$reqeust->get('id'))->delete();
- $this->repository->destroy($reqeust->get('id'));
- return $this->showMessage('操作成功');
- }else{
- return $this->showWarning("操作失败");
- }
- }
- public function show_code(Request $request)
- {
- $code = $request->code;
- return view('admin.dream.info.show_code',compact('code'));
- }
- }
|