Skip to content

Commit d733ba5

Browse files
fix: doc generation on windows
resolve #8
1 parent 93f67b2 commit d733ba5

File tree

2 files changed

+35
-34
lines changed

2 files changed

+35
-34
lines changed

Tasks/RenderApidocJsonTask.php

+21-13
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22

33
namespace App\Containers\Vendor\Documentation\Tasks;
44

5-
use App\Containers\Vendor\Documentation\Traits\DocsGeneratorTrait;
65
use Apiato\Core\Abstracts\Tasks\Task as AbstractTask;
6+
use App\Containers\Vendor\Documentation\Traits\DocsGeneratorTrait;
77

88
class RenderApidocJsonTask extends AbstractTask
99
{
1010
use DocsGeneratorTrait;
1111

1212
private string $templatePath;
1313
private string $outputPath;
14-
// ['templateKey' => value]
1514
private array $replaceArray;
1615

1716
public function __construct(string $docType)
@@ -39,22 +38,24 @@ private function prepareUrlPrefix(): string
3938

4039
/**
4140
* Read the markdown header template and fill it with some real data from the .env file.
41+
*
42+
* @throws \JsonException
4243
*/
4344
public function run(): string
4445
{
4546
// read the template file
4647
$jsonContent = file_get_contents($this->templatePath);
4748

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);
5051

51-
//Modify the variables.
52+
// modify the variables.
5253
foreach ($this->replaceArray as $key => $value) {
5354
$contentsDecoded[$key] = $value;
5455
}
5556

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);
5859

5960
// this is what the apidoc.json file will point to, to load the header.md
6061
// write the actual file
@@ -63,17 +64,24 @@ public function run(): string
6364
return $this->outputPath;
6465
}
6566

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
6970
{
7071
$parts = explode('/', $dir);
7172
$file = array_pop($parts);
7273
$dir = '';
7374

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+
}
7679

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);
7886
}
7987
}

Traits/DocsGeneratorTrait.php

+14-21
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,22 @@
44

55
trait DocsGeneratorTrait
66
{
7-
private function getFullDocsUrl($type): string
7+
private function getFullDocsUrl(string $type): string
88
{
99
return '> ' . $this->getAppUrl() . '/' . $this->getUrl($type);
1010
}
1111

12-
private function getAppUrl()
12+
private function getAppUrl(): string
1313
{
1414
return config('app.url');
1515
}
1616

17-
private function getUrl($type)
17+
private function getUrl(string $type): string
1818
{
19-
$configs = $this->getTypeConfigs();
20-
21-
return $configs[$type]['url'];
19+
return $this->getTypeConfigs()[$type]['url'];
2220
}
2321

24-
private function getTypeConfigs()
22+
private function getTypeConfigs(): array
2523
{
2624
return config($this->getConfigFile() . '.types');
2725
}
@@ -31,24 +29,22 @@ private function getConfigFile(): string
3129
return 'vendor-documentation';
3230
}
3331

34-
private function getDocumentationPath($type): string
32+
private function getDocumentationPath(string $type): string
3533
{
3634
return $this->getHtmlPath() . $this->getFolderName($type);
3735
}
3836

39-
private function getHtmlPath()
37+
private function getHtmlPath(): string
4038
{
4139
return config("{$this->getConfigFile()}.html_files");
4240
}
4341

44-
private function getFolderName($type)
42+
private function getFolderName(string $type): string
4543
{
46-
$configs = $this->getTypeConfigs();
47-
48-
return $configs[$type]['folder-name'];
44+
return $this->getTypeConfigs()[$type]['folder-name'];
4945
}
5046

51-
private function getJsonFilePath($type): string
47+
private function getJsonFilePath(string $type): string
5248
{
5349
return $this->getApiDocJsConfigsPath() . '/' . $this->getJsonFileName($type);
5450
}
@@ -63,23 +59,20 @@ private function getPathInDocumentationContainer(string $path): string
6359
return app_path('Containers/' . config('vendor-documentation.section_name') . '/Documentation' . $path);
6460
}
6561

66-
private function getJsonFileName($type): string
62+
private function getJsonFileName(string $type): string
6763
{
6864
return 'apidoc.' . $type . '.json';
6965
}
7066

71-
private function getExecutable()
67+
private function getExecutable(): string
7268
{
7369
return config($this->getConfigFile() . '.executable');
7470
}
7571

76-
private function getEndpointFiles($type): array
72+
private function getEndpointFiles(string $type): array
7773
{
78-
$configs = $this->getTypeConfigs();
79-
80-
// what files types needs to be included
8174
$routeFilesCommand = [];
82-
$routes = $configs[$type]['routes'];
75+
$routes = $this->getTypeConfigs()[$type]['routes'];
8376

8477
foreach ($routes as $route) {
8578
$routeFilesCommand[] = '-f';

0 commit comments

Comments
 (0)