2
2
3
3
namespace App \Containers \Vendor \Documentation \Tasks ;
4
4
5
- use App \Containers \Vendor \Documentation \Traits \DocsGeneratorTrait ;
6
5
use Apiato \Core \Abstracts \Tasks \Task as AbstractTask ;
6
+ use App \Containers \Vendor \Documentation \Traits \DocsGeneratorTrait ;
7
7
8
8
class RenderApidocJsonTask extends AbstractTask
9
9
{
10
10
use DocsGeneratorTrait;
11
11
12
12
private string $ templatePath ;
13
13
private string $ outputPath ;
14
- // ['templateKey' => value]
15
14
private array $ replaceArray ;
16
15
17
16
public function __construct (string $ docType )
@@ -39,22 +38,24 @@ private function prepareUrlPrefix(): string
39
38
40
39
/**
41
40
* Read the markdown header template and fill it with some real data from the .env file.
41
+ *
42
+ * @throws \JsonException
42
43
*/
43
44
public function run (): string
44
45
{
45
46
// read the template file
46
47
$ jsonContent = file_get_contents ($ this ->templatePath );
47
48
48
- //Decode the JSON data into a PHP array.
49
- $ contentsDecoded = json_decode ($ jsonContent , true );
49
+ // decode the JSON data into a PHP array.
50
+ $ contentsDecoded = json_decode ($ jsonContent , true , 512 , JSON_THROW_ON_ERROR );
50
51
51
- //Modify the variables.
52
+ // modify the variables.
52
53
foreach ($ this ->replaceArray as $ key => $ value ) {
53
54
$ contentsDecoded [$ key ] = $ value ;
54
55
}
55
56
56
- //Encode the array back into a JSON string.
57
- $ jsonContent = json_encode ($ contentsDecoded );
57
+ // encode the array back into a JSON string.
58
+ $ jsonContent = json_encode ($ contentsDecoded, JSON_THROW_ON_ERROR );
58
59
59
60
// this is what the apidoc.json file will point to, to load the header.md
60
61
// write the actual file
@@ -63,17 +64,24 @@ public function run(): string
63
64
return $ this ->outputPath ;
64
65
}
65
66
66
- // File put contents fails if you try to put a file in a directory that doesn't exist.
67
- // This creates the directory.
68
- private function fileForceContents ($ dir , $ contents ): void
67
+ // file_put_contents() fails if you try to put a file in a directory that doesn't exist.
68
+ // this creates the directory if it doesn't exist .
69
+ private function fileForceContents (string $ dir , string $ contents ): void
69
70
{
70
71
$ parts = explode ('/ ' , $ dir );
71
72
$ file = array_pop ($ parts );
72
73
$ dir = '' ;
73
74
74
- foreach ($ parts as $ part )
75
- if (!is_dir ($ dir .= "/ $ part " )) mkdir ($ dir );
75
+ foreach ($ parts as $ key => $ part ) {
76
+ if ($ key === 0 ) {
77
+ continue ;
78
+ }
76
79
77
- file_put_contents ("$ dir/ $ file " , $ contents );
80
+ $ dir .= "/ {$ part }" ;
81
+ if (!is_dir ($ dir ) && !mkdir ($ dir )) {
82
+ throw new \RuntimeException (sprintf ('Directory "%s" was not created ' , $ dir ));
83
+ }
84
+ }
85
+ file_put_contents ("{$ dir }/ {$ file }" , $ contents );
78
86
}
79
87
}
0 commit comments