Developer.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\system\controller;
  12. use think\Request as Request;
  13. use catcher\CatchAuth;
  14. use catcher\CatchResponse;
  15. use catcher\base\CatchController;
  16. use catchAdmin\system\model\Developers as DevelopersModel;
  17. class Developer extends CatchController
  18. {
  19. protected $model;
  20. public function __construct(DevelopersModel $model)
  21. {
  22. $this->model = $model;
  23. }
  24. /**
  25. * 列表
  26. *
  27. * @time 2020/07/13 15:26
  28. *
  29. * @return \think\Response
  30. */
  31. public function index()
  32. {
  33. return CatchResponse::paginate($this->model->getList());
  34. }
  35. /**
  36. * 开发者认证
  37. *
  38. * @time 2020年07月13日
  39. * @param Request $request
  40. * @param CatchAuth $auth
  41. * @return mixed
  42. */
  43. public function authenticate(Request $request, CatchAuth $auth)
  44. {
  45. return CatchResponse::success($auth->guard('developer')->username('username')->attempt($request->post()));
  46. }
  47. /**
  48. * 保存
  49. *
  50. * @time 2020/07/13 15:26
  51. * @param Request Request
  52. * @return \think\Response
  53. */
  54. public function save(Request $request)
  55. {
  56. return CatchResponse::success($this->model->storeBy($request->post()));
  57. }
  58. /**
  59. * 读取
  60. *
  61. * @time 2020/07/13 15:26
  62. * @param $id
  63. * @return \think\Response
  64. */
  65. public function read($id)
  66. {
  67. return CatchResponse::success($this->model->findBy($id));
  68. }
  69. /**
  70. * 更新
  71. *
  72. * @time 2020/07/13 15:26
  73. * @param Request $request
  74. * @return \think\Response
  75. */
  76. public function update(Request $request, $id)
  77. {
  78. return CatchResponse::success($this->model->updateBy($id, $request->post()));
  79. }
  80. /**
  81. * 删除
  82. *
  83. * @time 2020/07/13 15:26
  84. * @param $id
  85. * @return \think\Response
  86. */
  87. public function delete($id)
  88. {
  89. return CatchResponse::success($this->model->deleteBy($id));
  90. }
  91. }