|
1
|
|
|
<?php namespace Arcanedev\Assets\Helpers; |
|
2
|
|
|
|
|
3
|
|
|
use Illuminate\Support\Arr; |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* Class Workspaces |
|
7
|
|
|
* |
|
8
|
|
|
* @package Arcanedev\Assets\Helpers |
|
9
|
|
|
* @author ARCANEDEV <[email protected]> |
|
10
|
|
|
*/ |
|
11
|
|
|
class Workspaces |
|
12
|
|
|
{ |
|
13
|
|
|
/* ----------------------------------------------------------------- |
|
14
|
|
|
| Main Methods |
|
15
|
|
|
| ----------------------------------------------------------------- |
|
16
|
|
|
*/ |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* Get the default workspace name. |
|
20
|
|
|
* |
|
21
|
|
|
* @param string|null $default |
|
22
|
|
|
* |
|
23
|
|
|
* @return \Illuminate\Config\Repository|mixed |
|
24
|
|
|
*/ |
|
25
|
|
|
public static function getDefaultName($default = null) |
|
26
|
|
|
{ |
|
27
|
|
|
return config('assets.default-workspace', $default); |
|
28
|
|
|
} |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Get the workspace configs. |
|
32
|
|
|
* |
|
33
|
|
|
* @param string $name |
|
34
|
|
|
* @param array|null $default |
|
35
|
|
|
* |
|
36
|
|
|
* @return array|null |
|
37
|
|
|
*/ |
|
38
|
|
|
public static function get($name, $default = null) |
|
39
|
|
|
{ |
|
40
|
|
|
return Arr::get(static::all(), $name, $default); |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
/** |
|
44
|
|
|
* Get all the workspaces. |
|
45
|
|
|
* |
|
46
|
|
|
* @return array |
|
47
|
|
|
*/ |
|
48
|
|
|
public static function all() |
|
49
|
|
|
{ |
|
50
|
|
|
return config('assets.workspaces'); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
54
|
|
|
* Get all workspaces' names. |
|
55
|
|
|
* |
|
56
|
|
|
* @return array |
|
57
|
|
|
*/ |
|
58
|
|
|
public static function keys() |
|
59
|
|
|
{ |
|
60
|
|
|
return array_keys(static::all()); |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* Get all the root directories. |
|
65
|
|
|
* |
|
66
|
|
|
* @return array|mixed |
|
67
|
|
|
*/ |
|
68
|
|
|
public static function getAllRootDirectories() |
|
69
|
|
|
{ |
|
70
|
|
|
return array_column(static::all(), 'root-directory'); |
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* Check if the root directory exists by the given workspace. |
|
75
|
|
|
* |
|
76
|
|
|
* @param string $name |
|
77
|
|
|
* |
|
78
|
|
|
* @return bool |
|
79
|
|
|
*/ |
|
80
|
|
|
public static function rootDirectoryExists($name) |
|
81
|
|
|
{ |
|
82
|
|
|
$directory = config("assets.workspaces.{$name}.root-directory"); |
|
83
|
|
|
|
|
84
|
|
|
return ! is_null($directory) && is_dir($directory); |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|