-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDocs.php
executable file
·408 lines (345 loc) · 11.1 KB
/
Docs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php
namespace App;
use App\Models\Document;
use App\Models\DocumentationSection;
use Exception;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Symfony\Component\DomCrawler\Crawler;
use Symfony\Component\Yaml\Yaml;
class Docs
{
/**
* Default version of Laravel documentation
*/
public const DEFAULT_VERSION = '10.x';
/**
* Array of supported versions
*/
public const SUPPORT_VERSIONS = [
'10.x',
'8.x',
'5.4',
'4.2',
];
/**
* @var string The version of the documentation.
*/
public $version;
/**
* @var string The path to the Markdown file.
*/
protected $path;
/**
* @var array The array of variables extracted from the Markdown file's front matter.
*/
protected array $variables = [];
/**
* @var string The file name.
*/
public string $file;
/**
* @var Document
*/
protected $model;
/**
* Create a new Docs instance.
*
* @param string $version The version of the Laravel documentation.
* @param string $file The file name.
*/
public function __construct(string $version, string $file)
{
$this->file = $file.'.md';
$this->version = $version;
$this->path = "/$version/$this->file";
}
/**
* @return string|null
*/
public function raw()
{
return once(function () {
$raw = Storage::disk('docs')->get($this->path);
// Abort the request if the page doesn't exist
abort_if(
$raw === null,
redirect(status: 300)->route('docs', ['version' => $this->version, 'page' => 'installation'])
);
return $raw;
});
}
/**
* @param string|null $key
*
* @return mixed
*/
public function variables(?string $key = null): mixed
{
return once(function () use ($key) {
$variables = [];
$yaml = Str::of($this->raw())->betweenFirst('---', '---');
try {
$variables = Yaml::parse($yaml);
} catch (\Throwable) {
}
return Arr::get($variables, $key);
});
}
/**
* @return string|null
*/
public function content(): ?string
{
return once(function () {
return Str::of($this->raw())
->replace('{{version}}', $this->version)
->after('---')
->after('---')
->markdown();
});
}
/**
* Get the rendered view of a documentation page.
*
* @param string $view The view name.
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*
* @return \Illuminate\Contracts\View\View The rendered view of the documentation page.
*/
public function view(string $view)
{
$data = Cache::remember('doc-file-view-data'.$this->path, now()->addMinutes(30), fn () => collect()->merge($this->variables())->merge([
'docs' => $this,
'content' => $this->content(),
'edit' => $this->getEditUrl(),
]));
return view($view, $data);
}
/**
* Get the menu array for the documentation index page.
*
* @return array The menu array.
*/
public function getMenu(): array
{
return Cache::remember('doc-navigation-'.$this->version, now()->addHours(2), function () {
$page = Storage::disk('docs')->get($this->version.'/documentation.md');
$html = Str::of($page)
->after('---')
->after('---')
->replace('{{version}}', $this->version)
->markdown()
->toString();
return $this->docsToArray($html);
});
}
/**
* Get the title of the documentation page.
*
* @return string|null The title of the documentation page.
*/
public function title(): ?string
{
$crawler = new Crawler();
$crawler->addHtmlContent($this->content());
$title = $crawler->filterXPath('//h1');
return count($title) ? $title->text() : null;
}
/**
* Convert the HTML string to an array.
*
* @param string $html The HTML string.
*
* @return array The converted array.
*/
public function docsToArray(string $html): array
{
$crawler = new Crawler();
$crawler->addContent($html);
$crawler = new Crawler($html);
$menu = [];
$crawler->filter('ul > li')->each(function (Crawler $node) use (&$menu) {
$subList = $node->filter('ul > li')->each(fn (Crawler $subNode) => [
'title' => $subNode->filter('a')->text(),
'href' => url($subNode->filter('a')->attr('href')),
]);
if (empty($subList)) {
return null;
}
$menu[] = [
'title' => $node->filter('h2')->text(),
'list' => $subList,
];
});
return $menu;
}
/**
* Get all the versions of the documentation.
*
* @param string $version The version of the Laravel documentation.
*
* @return \Illuminate\Support\Collection A collection of Docs instances.
*/
public static function every(string $version): Collection
{
$files = Storage::disk('docs')->allFiles($version);
return collect($files)
->filter(fn (string $path) => Str::of($path)->endsWith('.md'))
->filter(fn (string $path) => ! Str::of($path)->endsWith(['readme.md', 'license.md']))
->map(fn (string $path) => Str::of($path)->after($version.'/')->before('.md'))
->map(fn (string $path) => new static($version, $path));
}
/**
* Fetch the number of commits behind the current commit.
*
* @return int The number of commits behind.
*/
public function fetchBehind(): int
{
throw_if($this->variables('git') === null, new Exception("The document {$this->path} is missing a Git hash"));
$response = $this->fetchGitHubDiff();
return $response
->takeUntil(fn ($commit) => $commit['sha'] === $this->variables('git'))
->count();
}
public function fetchLastCommit(): string
{
throw_if($this->variables('git') === null, new Exception("The document {$this->path} is missing a Git hash"));
$response = $this->fetchGitHubDiff();
return $response->pluck('sha')->first();
}
/**
* @param string|null $key
*
* @return \Illuminate\Support\Collection
*/
private function fetchGitHubDiff(?string $key = null): Collection
{
$hash = sha1($this->content());
return Cache::remember("docs-diff-$this->version-$this->file-$hash",
now()->addHours(2),
fn () => Http::withBasicAuth('token', config('services.github.token'))
->get("https://api.github.com/repos/laravel/docs/commits?sha={$this->version}&path={$this->file}")
->collect($key)
);
}
/**
* Get the URL to edit the page on GitHub.
*
* @return string The URL to edit the page on GitHub.
*/
public function getEditUrl(): string
{
return "https://github.com/laravelRus/docs/edit/$this->path";
}
/**
* Get the URL to the original Laravel documentation page.
*
* @return string The URL to the original Laravel documentation page.
*/
public function getOriginalUrl(): string
{
$urlPart = Str::of($this->path)->remove('.md');
return "https://laravel.com/docs$urlPart";
}
/**
* @param string $version
* @param string $hash
*
* @return string
*/
public static function compareLink(string $version, string $hash): string
{
$compactHash = Str::of($hash)->limit(7, '')->toString();
return "https://github.com/laravel/docs/compare/$compactHash..$version";
}
/**
* Get the Document model for the documentation page.
*
* @return \App\Models\Document The Document model.
*/
public function getModel(): Document
{
if ($this->model === null) {
$this->model = Document::firstOrNew([
'version' => $this->version,
'file' => $this->file,
]);
}
return $this->model;
}
/**
* @return int|null
*/
public function behind(): ?int
{
return $this->getModel()->behind;
}
/**
* @return string
*/
public function isOlderVersion()
{
return $this->version !== static::DEFAULT_VERSION;
}
/**
* Update the Document model with the latest information.
*
* @return void
*/
public function update()
{
$this->getModel()->fill([
'behind' => $this->fetchBehind(),
'last_commit' => $this->fetchLastCommit(),
'current_commit' => $this->variables('git'),
])->save();
// $this->updateSections();
}
/**
* Разбивает markdown файл на разделы по заголовкам.
*
* @return Массив разделов с заголовками и содержимым
*/
public function getSections()
{
// Разбиваем HTML содержимое на разделы по заголовкам
preg_match_all('/<h(\d)>(.+)<\/h\d>(.*)/sU', $this->content(), $matches, PREG_SET_ORDER);
// Массив для хранения разделов
$sections = collect();
$prevEnd = 0;
foreach ($matches as $index => $match) {
$sectionTitle = $match[2];
// Получаем начальную и конечную позицию текущего заголовка в тексте
$startPos = strpos($this->content(), $match[0], $prevEnd);
// Получаем текст между текущим и предыдущим заголовком
if ($index > 0) {
$prevMatch = $matches[$index - 1];
$prevEnd = strpos($this->content(), $prevMatch[0]) + strlen($prevMatch[0]);
$sectionContent = substr($this->content(), $prevEnd, $startPos - $prevEnd);
} else {
$sectionContent = substr($this->content(), 0, $startPos);
}
$sections->push([
'title' => $sectionTitle,
'slug' => Str::of($sectionTitle)->slug()->toString(),
'content' => $sectionContent,
'file' => $this->file,
'version' => $this->version,
'id' => Str::uuid(),
]);
}
return $sections;
}
public function updateSections()
{
// DocumentationSection::where('file', $this->file)->where('version', $this->version)->delete();
// DocumentationSection::insert($this->getSections()->toArray());
}
}