-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathLibrary.php
executable file
·75 lines (63 loc) · 1.39 KB
/
Library.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
<?php
namespace App;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Symfony\Component\Yaml\Yaml;
class Library
{
private string $content;
private array $variables = [];
/**
* @param string $name
*/
public function __construct(string $name)
{
$raw = Storage::disk('library')->get($name.'.md');
$variables = Str::of($raw)->betweenFirst('---', '---');
try {
$this->variables = Yaml::parse($variables);
} catch (\Throwable) {
}
$this->content = Str::of($raw)
->after('---')
->after('---')
->markdown()
->toString();
}
/**
* Get the title from variables
*
* @return string
*/
public function title(): string
{
return $this->variables['title'] ?? '';
}
/**
* Get the description from variables
*
* @return string
*/
public function description(): string
{
return $this->variables['description'] ?? '';
}
/**
* Get the content
*
* @return string
*/
public function content(): string
{
return $this->content;
}
/**
* Get the slug from title variables
*
* @return string
*/
public function slug(): string
{
return Str::of($this->variables['title'] ?? '')->slug()->toString();
}
}