|
| 1 | +<?php |
| 2 | +/* |
| 3 | + * Copyright 2020 Cloud Creativity Limited |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + * you may not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | + |
| 18 | +declare(strict_types=1); |
| 19 | + |
| 20 | +namespace LaravelJsonApi\Laravel\Console; |
| 21 | + |
| 22 | +use Illuminate\Console\GeneratorCommand as BaseGeneratorCommand; |
| 23 | +use LaravelJsonApi\Core\Support\Str; |
| 24 | +use Symfony\Component\Console\Input\InputArgument; |
| 25 | +use function config; |
| 26 | +use function is_string; |
| 27 | + |
| 28 | +abstract class GeneratorCommand extends BaseGeneratorCommand |
| 29 | +{ |
| 30 | + |
| 31 | + use Concerns\ResolvesStub; |
| 32 | + |
| 33 | + /** |
| 34 | + * @var string |
| 35 | + */ |
| 36 | + protected $classType; |
| 37 | + |
| 38 | + /** |
| 39 | + * @inheritDoc |
| 40 | + */ |
| 41 | + public function handle() |
| 42 | + { |
| 43 | + if (!$server = $this->getServerInput()) { |
| 44 | + $this->error('You must use the server option when you have more than one API.'); |
| 45 | + return 1; |
| 46 | + } |
| 47 | + |
| 48 | + if (is_null($this->getServerNamespace($server))) { |
| 49 | + $this->error("Server {$server} does not exist in your jsonapi.servers configuration."); |
| 50 | + return 1; |
| 51 | + } |
| 52 | + |
| 53 | + if (false === parent::handle()) { |
| 54 | + return 1; |
| 55 | + } |
| 56 | + |
| 57 | + return 0; |
| 58 | + } |
| 59 | + |
| 60 | + /** |
| 61 | + * @inheritDoc |
| 62 | + */ |
| 63 | + protected function getNameInput() |
| 64 | + { |
| 65 | + $name = parent::getNameInput(); |
| 66 | + |
| 67 | + return Str::classify(Str::singular($name)) . $this->getClassType(); |
| 68 | + } |
| 69 | + |
| 70 | + /** |
| 71 | + * @inheritDoc |
| 72 | + */ |
| 73 | + protected function getDefaultNamespace($rootNamespace) |
| 74 | + { |
| 75 | + $name = parent::getNameInput(); |
| 76 | + |
| 77 | + $namespace = Str::classify(Str::plural($name)); |
| 78 | + |
| 79 | + return $this->getServerNamespace($this->getServerInput()) . '/' . $namespace; |
| 80 | + } |
| 81 | + |
| 82 | + /** |
| 83 | + * Get the server input. |
| 84 | + * |
| 85 | + * The developer can provide a server name using the `--server` |
| 86 | + * option. If they do not provide it, we expect them to have a |
| 87 | + * single server in their `jsonapi` config. |
| 88 | + * |
| 89 | + * @return string|null |
| 90 | + */ |
| 91 | + protected function getServerInput(): ?string |
| 92 | + { |
| 93 | + if ($server = $this->option('server')) { |
| 94 | + return $server; |
| 95 | + } |
| 96 | + |
| 97 | + $servers = config('jsonapi.servers') ?: []; |
| 98 | + |
| 99 | + if (1 === count($servers)) { |
| 100 | + return array_key_first($servers); |
| 101 | + } |
| 102 | + |
| 103 | + return null; |
| 104 | + } |
| 105 | + |
| 106 | + /** |
| 107 | + * @param string $server |
| 108 | + * @return string|null |
| 109 | + */ |
| 110 | + protected function getServerNamespace(string $server): ?string |
| 111 | + { |
| 112 | + $classname = config("jsonapi.servers.{$server}"); |
| 113 | + |
| 114 | + if (is_string($classname)) { |
| 115 | + return $this->getNamespace($classname); |
| 116 | + } |
| 117 | + |
| 118 | + return null; |
| 119 | + } |
| 120 | + |
| 121 | + /** |
| 122 | + * @return string |
| 123 | + */ |
| 124 | + protected function guessModel(): string |
| 125 | + { |
| 126 | + $name = parent::getNameInput(); |
| 127 | + |
| 128 | + return Str::classify(Str::singular($name)); |
| 129 | + } |
| 130 | + |
| 131 | + /** |
| 132 | + * @return string |
| 133 | + */ |
| 134 | + protected function getClassType(): string |
| 135 | + { |
| 136 | + return $this->classType; |
| 137 | + } |
| 138 | + |
| 139 | + /** |
| 140 | + * Get the console command arguments. |
| 141 | + * |
| 142 | + * @return array |
| 143 | + */ |
| 144 | + protected function getArguments() |
| 145 | + { |
| 146 | + return [ |
| 147 | + ['name', InputArgument::REQUIRED, 'The name of the JSON:API resource type.'], |
| 148 | + ]; |
| 149 | + } |
| 150 | + |
| 151 | +} |
0 commit comments