Skip to content

Commit 808b968

Browse files
committed
feat: add support to replace model in resource stub
1 parent 567263e commit 808b968

File tree

4 files changed

+84
-21
lines changed

4 files changed

+84
-21
lines changed
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?php
2+
/*
3+
* Copyright 2024 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\Concerns;
21+
22+
use Illuminate\Support\Str;
23+
use function array_keys;
24+
use function array_values;
25+
use function str_replace;
26+
27+
trait ReplacesModel
28+
{
29+
30+
/**
31+
* @param string $stub
32+
* @param string $model
33+
* @return string
34+
*/
35+
protected function replaceModel(string $stub, string $model): string
36+
{
37+
$model = str_replace('/', '\\', $model);
38+
39+
if (Str::startsWith($model, '\\')) {
40+
$namespacedModel = trim($model, '\\');
41+
} else {
42+
$namespacedModel = $this->qualifyModel($model);
43+
}
44+
45+
$model = class_basename($model);
46+
47+
$replace = [
48+
'{{ namespacedModel }}' => $namespacedModel,
49+
'{{namespacedModel}}' => $namespacedModel,
50+
'{{ model }}' => $model,
51+
'{{model}}' => $model,
52+
];
53+
54+
return str_replace(
55+
array_keys($replace), array_values($replace), $stub
56+
);
57+
}
58+
}

src/Console/MakeResource.php

+15-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@
1919

2020
namespace LaravelJsonApi\Laravel\Console;
2121

22+
use LaravelJsonApi\Laravel\Console\Concerns\ReplacesModel;
2223
use Symfony\Component\Console\Input\InputOption;
2324

2425
class MakeResource extends GeneratorCommand
2526
{
27+
use ReplacesModel;
2628

2729
/**
2830
* @var string
@@ -52,15 +54,27 @@ protected function getStub()
5254
return $this->resolveStubPath('resource.stub');
5355
}
5456

57+
/**
58+
* @inheritDoc
59+
*/
60+
protected function buildClass($name)
61+
{
62+
$stub = parent::buildClass($name);
63+
64+
$model = $this->option('model') ?: $this->guessModel();
65+
66+
return $this->replaceModel($stub, $model);
67+
}
68+
5569
/**
5670
* @inheritDoc
5771
*/
5872
protected function getOptions()
5973
{
6074
return [
6175
['force', null, InputOption::VALUE_NONE, 'Create the class even if the resource already exists'],
76+
['model', 'm', InputOption::VALUE_REQUIRED, 'The model that the resource applies to.'],
6277
['server', 's', InputOption::VALUE_REQUIRED, 'The JSON:API server the resource exists in.'],
6378
];
6479
}
65-
6680
}

src/Console/MakeSchema.php

+5-18
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919

2020
namespace LaravelJsonApi\Laravel\Console;
2121

22-
use Illuminate\Support\Str;
22+
use LaravelJsonApi\Laravel\Console\Concerns\ReplacesModel;
2323
use Symfony\Component\Console\Input\InputOption;
2424
use function array_keys;
2525
use function array_values;
2626
use function str_replace;
2727

2828
class MakeSchema extends GeneratorCommand
2929
{
30+
use ReplacesModel;
3031

3132
/**
3233
* @var string
@@ -47,7 +48,7 @@ class MakeSchema extends GeneratorCommand
4748
* @var string
4849
*/
4950
protected $classType = 'Schema';
50-
51+
5152
/**
5253
* @inheritDoc
5354
*/
@@ -65,7 +66,7 @@ protected function getStub()
6566
*/
6667
protected function buildClass($name)
6768
{
68-
$stub = parent::buildClass($name);
69+
$stub = $this->replaceSchema(parent::buildClass($name));
6970

7071
$model = $this->option('model') ?: $this->guessModel();
7172

@@ -77,24 +78,11 @@ protected function buildClass($name)
7778
* @param string $model
7879
* @return string
7980
*/
80-
protected function replaceModel(string $stub, string $model): string
81+
protected function replaceSchema(string $stub): string
8182
{
82-
$model = str_replace('/', '\\', $model);
83-
84-
if (Str::startsWith($model, '\\')) {
85-
$namespacedModel = trim($model, '\\');
86-
} else {
87-
$namespacedModel = $this->qualifyModel($model);
88-
}
89-
90-
$model = class_basename($model);
9183
$schema = $this->option('proxy') ? 'ProxySchema' : 'Schema';
9284

9385
$replace = [
94-
'{{ namespacedModel }}' => $namespacedModel,
95-
'{{namespacedModel}}' => $namespacedModel,
96-
'{{ model }}' => $model,
97-
'{{model}}' => $model,
9886
'{{ schema }}' => $schema,
9987
'{{schema}}' => $schema,
10088
];
@@ -117,5 +105,4 @@ protected function getOptions()
117105
['server', 's', InputOption::VALUE_REQUIRED, 'The JSON:API server the schema exists in.'],
118106
];
119107
}
120-
121108
}

stubs/resource.stub

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
namespace {{ namespace }};
44

5+
use {{ namespacedModel }};
56
use Illuminate\Http\Request;
67
use LaravelJsonApi\Core\Resources\JsonApiResource;
78

9+
/**
10+
* @property {{ model }} $resource
11+
*/
812
class {{ class }} extends JsonApiResource
913
{
1014

@@ -17,8 +21,8 @@ class {{ class }} extends JsonApiResource
1721
public function attributes($request): iterable
1822
{
1923
return [
20-
'createdAt' => $this->created_at,
21-
'updatedAt' => $this->updated_at,
24+
'createdAt' => $this->resource->created_at,
25+
'updatedAt' => $this->resource->updated_at,
2226
];
2327
}
2428

0 commit comments

Comments
 (0)