DomainService.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} 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;
  12. use catchAdmin\domain\support\contract\DomainActionInterface;
  13. use catchAdmin\domain\support\contract\DomainRecordInterface;
  14. use catchAdmin\domain\support\driver\aliyun\Domain;
  15. use catchAdmin\domain\support\driver\aliyun\DomainRecord;
  16. use catcher\ModuleService;
  17. class DomainService extends ModuleService
  18. {
  19. public function register()
  20. {
  21. parent::register(); // TODO: Change the autogenerated stub
  22. $this->registerInstance();
  23. }
  24. public function loadConfig()
  25. {
  26. return require __DIR__ . DIRECTORY_SEPARATOR . 'config.php';
  27. }
  28. /**
  29. * @return string
  30. */
  31. public function loadRouteFrom()
  32. {
  33. // TODO: Implement loadRouteFrom() method.
  34. return __DIR__ . DIRECTORY_SEPARATOR . 'route.php';
  35. }
  36. /**
  37. *
  38. */
  39. protected function registerInstance()
  40. {
  41. $default = config('catch.domains.default');
  42. $this->app->instance(DomainActionInterface::class, $this->app->make(__NAMESPACE__ . '\\support\\driver\\' . $default . '\Domain'));
  43. $this->app->instance(DomainRecordInterface::class, $this->app->make(__NAMESPACE__ . '\\support\\driver\\' . $default . '\DomainRecord'));
  44. }
  45. }