BlogLogic.php 5.1 KB
<?php

namespace App\Http\Logic\Bside\Blog;

use App\Enums\Common\Code;
use App\Http\Logic\Bside\BaseLogic;
use App\Models\Blog\Blog;
use App\Models\Blog\BlogCategory as BlogCategoryModel;
use App\Models\Image;
use App\Models\RouteMap;
use Illuminate\Support\Facades\DB;

class BlogLogic extends BaseLogic
{
    public function __construct()
    {
        parent::__construct();

        $this->model = new Blog();
        $this->param = $this->requestAll;
    }
    /**
     * @name :获取分类列表
     * @return array
     * @throws \App\Exceptions\BsideGlobalException
     * @author :liyuhang
     * @method
     */
    public function blog_get_category_list(){
        $this->map['status'] = 0;
        $this->map['project_id'] = $this->user['project_id'];
        $blogCategoryModel = new BlogCategoryModel();
        $cate_list = $blogCategoryModel->list($this->map,'sort');
        if($cate_list === false){
            $this->fail('error',Code::USER_ERROR);
        }
        $list = [];
        foreach ($cate_list as $v){
            $v = (array)$v;
            if ($v['pid'] == 0) {
                $v['sub'] = _get_child($v['id'], $cate_list);
                $list[]   = $v;
            }
        }
        return $this->success($list);
    }
    /**
     * @name :添加博客
     * @return void
     * @author :liyuhang
     * @method
     */
    public function blog_add(){
        $this->param['create_id'] = $this->user['id'];
        $this->param['operator_id'] = $this->user['id'];
        $this->param['project_id'] = $this->user['project_id'];
        $this->param['created_at'] = date('Y-m-d H:i:s',time());
        $this->param['updated_at'] = date('Y-m-d H:i:s',time());
        $this->param['category_id'] = ','.$this->param['category_id'].',';
        DB::beginTransaction();
        try {
            if(isset($this->param['image'])){
                $data = $this->upload();
                $this->param['image'] = $data;
            }
            $this->model->insertGetId($this->param);
            RouteMap::setRoute($this->param['url'], RouteMap::SOURCE_BLOG, $rs, $this->user['project_id']);
            DB::commit();
        }catch (\Exception $e){
            DB::rollBack();
            $this->fail('error',Code::USER_ERROR);
        }
        //TODO::写入日志
        $this->success();
    }

    /**
     * @name : 编辑用户
     * @return void
     * @throws \App\Exceptions\BsideGlobalException
     * @author :liyuhang
     * @method
     */
    public function blog_edit(){
        $this->param['operator_id'] = $this->uid;
        DB::beginTransaction();
        try {
            if(isset($this->param['image']) && is_file($this->param['image'])){
                //查看当前用户是否已有头像
                $info = $this->model->read(['id'=>$this->param['id']],['id','hash']);
                if($info !== false && !empty($info['hash'])){
                    //TODO::删除资源
                    $imageModel = new Image();
                    $image_info = $imageModel->read(['hash'=>$info['hash']],['id','path']);
                    shell_exec('rm -rf '.$image_info['path'] .'./../uploads/images/cache_'. $info['hash'] . '*');
                }
                $this->param['image'] = $this->upload();
            }
            RouteMap::setRoute($this->param['url'], RouteMap::SOURCE_BLOG, $this->param['id'], $this->user['project_id']);
            $this->model->edit($this->param,['id'=>$this->param['id']]);
            DB::commit();
        }catch (\Exception $e){
            DB::rollBack();
            $this->fail('error',Code::USER_ERROR);
        }
    }
    /**
     * @name :获取数据详情
     * @return array
     * @throws \App\Exceptions\BsideGlobalException
     * @author :liyuhang
     * @method
     */
    public function blog_info(){
        $info = $this->model->read($this->param);
        //获取分类名称
        $info['category_id'] = explode(',',trim($info['category_id'],','));
        $blogCategoryModel = new BlogCategoryModel();
        $category_list = $blogCategoryModel->list(['id'=>['in',$info['category_id']]],'id',['name']);
        $str = '';
        foreach ($category_list as $v){
            $str .= $v['name'].',';
        }
        $info['category_id'] = trim($str,',');
        if($info === false){
            $this->fail('error',Code::USER_ERROR);
        }
        return $this->success($info);
    }

    /**
     * @name :修改状态
     * @return array
     * @throws \App\Exceptions\BsideGlobalException
     * @author :liyuhang
     * @method
     */
    public function blog_status(){
        $this->param['operator_id'] = $this->user['id'];
        $rs = $this->model->edit($this->param,['id'=>$this->param['id']]);
        if($rs ===  false){
            $this->fail('error',Code::USER_ERROR);
        }
        return $this->success();
    }

    /**
     * @name :逻辑删除
     * @return void
     * @author :liyuhang
     * @method
     */
    public function blog_del(){
        $this->param['id'] = ['in',$this->param['id']];
        $rs = $this->model->edit(['status'=>2],$this->param);
        if($rs === false){
            $this->fail('error',Code::USER_ERROR);
        }
        return $this->success();
    }
}