ActionObjectType.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace App\Models\Enums;
  3. use App\Models\Asset;
  4. use App\Models\Container;
  5. use App\Models\Plan;
  6. use App\Models\Project;
  7. use App\Models\Requirement;
  8. use App\Models\Task;
  9. use App\Services\History\Detector\AssetDetector;
  10. use App\Services\History\Detector\ContainerContentDetector;
  11. use App\Services\History\Detector\ContainerDetector;
  12. use App\Services\History\Detector\ProjectDetector;
  13. use App\Services\History\Detector\RequirementDetector;
  14. use App\Services\History\Detector\TaskDetector;
  15. enum ActionObjectType: string
  16. {
  17. case ASSET = "asset";
  18. case PROJECT = "project";
  19. case REQUIREMENT = "requirement";
  20. case TASK = "task";
  21. case PLAN = "plan";
  22. case CONTAINER = "container";
  23. case CONTAINER_CONTENT = "container_content";
  24. case CONTAINER_FILE = "container_file";
  25. public function modelBuilder(): \Illuminate\Database\Eloquent\Builder
  26. {
  27. return match ($this) {
  28. self::ASSET => Asset::query(),
  29. self::PROJECT => Project::query(),
  30. self::TASK => Task::query(),
  31. self::PLAN => Plan::query(),
  32. self::REQUIREMENT => Requirement::query(),
  33. self::CONTAINER => Container::query(),
  34. };
  35. }
  36. public function modelBuilderAllowed(string $id = null): \Illuminate\Database\Eloquent\Builder
  37. {
  38. return match ($this) {
  39. self::ASSET => Asset::query()->allowed(),
  40. self::PROJECT => Project::query()->allowed($id),
  41. self::TASK => Task::query()->allowed($id),
  42. self::PLAN => Plan::query(),
  43. self::REQUIREMENT => Requirement::query(),
  44. self::CONTAINER => Container::query()->allowed($id),
  45. };
  46. }
  47. public function nameField(): string
  48. {
  49. return match ($this) {
  50. self::ASSET, self::PROJECT, self::TASK => "name",
  51. self::PLAN => "title", self::REQUIREMENT => "title",
  52. default => "name",
  53. };
  54. }
  55. public function detectorClassName(): ?string
  56. {
  57. return match ($this) {
  58. ActionObjectType::ASSET => AssetDetector::class,
  59. ActionObjectType::PROJECT => ProjectDetector::class,
  60. ActionObjectType::REQUIREMENT => RequirementDetector::class,
  61. ActionObjectType::TASK => TaskDetector::class,
  62. ActionObjectType::CONTAINER => ContainerDetector::class,
  63. ActionObjectType::CONTAINER_CONTENT => ContainerContentDetector::class,
  64. default => null
  65. };
  66. }
  67. }