| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- namespace App\Http\Controllers\admin;
- use App\Constants\HttpStatus;
- use App\Http\Controllers\Controller;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Validation\ValidationException;
- use Exception;
- use App\Models\Banner as BannerModel;
- class Banner extends Controller
- {
- /**
- * @api {get} /admin/banner 轮播图列表
- * @apiGroup 轮播图管理
- * @apiUse result
- * @apiUse header
- * @apiVersion 1.0.0
- *
- * @apiParam {int} [page=1]
- * @apiParam {int} [limit=10]
- *
- */
- function index()
- {
- try {
- $page = request()->input('page', 1);
- $limit = request()->input('limit', 15);
- $query = new BannerModel();
- $count = $query->count();
- $list = $query
- ->forPage($page, $limit)
- ->orderByDesc('create_time')
- ->get();
- } catch (ValidationException $e) {
- return $this->error(HttpStatus::VALIDATION_FAILED, $e->validator->errors()->first());
- } catch (Exception $e) {
- return $this->error(intval($e->getCode()));
- }
- return $this->success(['total' => $count, 'data' => $list]);
- }
- /**
- * @api {post} /admin/banner/update 修改
- * @apiDescription 更新或者新增都用这个接口
- * @apiGroup 轮播图管理
- * @apiUse result
- * @apiUse header
- * @apiVersion 1.0.0
- *
- */
- public function update()
- {
- DB::beginTransaction();
- try {
- $params = request()->validate([
- 'id' => ['required', 'integer', 'min:0', 'max:99999999'],
- 'title' => ['required'],
- 'image' => ['required'],
- 'link' => ['nullable'],
- 'type' => ['nullable'],
- 'sort' => ['nullable', 'integer', 'min:0', 'max:99999999'],
- ]);
- $id = request()->input('id', 0);
- BannerModel::updateOrCreate(
- ['id' => $id],
- ['title' => $params['title']],
- ['image' => $params['image']],
- ['link' => $params['link']],
- ['type' => $params['type']],
- ['sort' => $params['sort']],
- );
- DB::commit();
- } catch (ValidationException $e) {
- DB::rollBack();
- return $this->error(HttpStatus::VALIDATION_FAILED, $e->validator->errors()->first());
- } catch (Exception $e) {
- DB::rollBack();
- return $this->error(intval($e->getCode()), $e->getMessage());
- }
- return $this->success();
- }
- /**
- * @api {post} /admin/banner/delete 删除
- * @apiGroup 轮播图管理
- * @apiUse result
- * @apiUse header
- * @apiVersion 1.0.0
- *
- * @apiParam {int} id 要删除的ID
- *
- */
- function destroy()
- {
- DB::beginTransaction();
- try {
- request()->validate([
- 'id' => ['required', 'integer', 'min:1', 'max:99999999'],
- ]);
- $id = request()->input('id', 0);
- $info = BannerModel::where('id', $id)->first();
- if (!$info) throw new Exception("数据不存在", HttpStatus::CUSTOM_ERROR);
- $info->delete();
- DB::commit();
- } catch (ValidationException $e) {
- DB::rollBack();
- return $this->error(HttpStatus::VALIDATION_FAILED, $e->validator->errors()->first());
- } catch (Exception $e) {
- DB::rollBack();
- return $this->error(intval($e->getCode()));
- }
- return $this->success();
- }
- }
|