Domain.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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\DomainActionInterface;
  13. use catcher\base\CatchRequest as Request;
  14. use catcher\CatchResponse;
  15. use catcher\base\CatchController;
  16. class Domain extends CatchController
  17. {
  18. protected $domain;
  19. public function __construct(DomainActionInterface $domain)
  20. {
  21. $this->domain = $domain;
  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->domain->getList($request->param()));
  33. }
  34. /**
  35. * 读取
  36. *
  37. * @time 2020/09/11 18:14
  38. * @param $name
  39. * @return \think\Response
  40. */
  41. public function read($name)
  42. {
  43. return CatchResponse::success($this->domain->read(str_replace('-', '.', $name)));
  44. }
  45. }