DomainRecord.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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\domain\controller;
  12. use catchAdmin\domain\support\contract\DomainRecordInterface;
  13. use catcher\base\CatchRequest as Request;
  14. use catcher\CatchResponse;
  15. use catcher\base\CatchController;
  16. class DomainRecord extends CatchController
  17. {
  18. protected $domainRecord;
  19. public function __construct(DomainRecordInterface $record)
  20. {
  21. $this->domainRecord = $record;
  22. }
  23. /**
  24. * 列表
  25. *
  26. * @time 2020/09/11 18:14
  27. * @param Request $request
  28. * @return \think\Response
  29. */
  30. public function index(Request $request): \think\Response
  31. {
  32. return CatchResponse::paginate($this->domainRecord->getList($request->param()));
  33. }
  34. /**
  35. * 保存
  36. *
  37. * @time 2020/09/11 18:14
  38. * @param Request Request
  39. * @return \think\Response
  40. */
  41. public function save(Request $request): \think\Response
  42. {
  43. return CatchResponse::success($this->domainRecord->store($request->post()));
  44. }
  45. /**
  46. * 读取
  47. *
  48. * @time 2020/09/11 18:14
  49. * @param $name
  50. * @return \think\Response
  51. */
  52. public function read($name): \think\Response
  53. {
  54. return CatchResponse::success($this->domainRecord->read($name));
  55. }
  56. /**
  57. * 更新
  58. *
  59. * @time 2020/09/11 18:14
  60. * @param Request $request
  61. * @param $id
  62. * @return \think\Response
  63. */
  64. public function update($id, Request $request): \think\Response
  65. {
  66. return CatchResponse::success($this->domainRecord->update($id, $request->post()));
  67. }
  68. /**
  69. * 删除
  70. *
  71. * @time 2020/09/11 18:14
  72. * @param $id
  73. * @return \think\Response
  74. */
  75. public function delete($id): \think\Response
  76. {
  77. return CatchResponse::success($this->domainRecord->delete($id));
  78. }
  79. /**
  80. * 设置状态
  81. *
  82. * @param $id
  83. * @param $status
  84. * @return \think\response\Json
  85. */
  86. public function enable($id, $status)
  87. {
  88. return CatchResponse::success($this->domainRecord->enable($id, $status));
  89. }
  90. }