blob: 99a32b3340678d471594ee9a9356065a8344b991 (
plain) (
blame)
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
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Bakery;
use Symfony\Component\Console\Application;
use UserFrosting\System\UserFrosting;
use Illuminate\Support\Str;
/**
* Base class for UserFrosting Bakery CLI tools.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Bakery
{
/**
* @var $app Symfony\Component\Console\Application
*/
protected $app;
/**
* @var ContainerInterface The global container object, which holds all your services.
*/
protected $ci;
/**
* Constructor
*/
public function __construct() {
// Check for Sprinkles schema file
$sprinklesFile = @file_get_contents(\UserFrosting\SPRINKLES_SCHEMA_FILE);
if ($sprinklesFile === FALSE) {
$sprinklesFile = $this->setupBaseSprinkleList();
}
// Create Symfony Console App
$this->app = new Application("UserFrosting Bakery", \UserFrosting\VERSION);
// Setup the sprinkles
$uf = new UserFrosting();
// Set argument as false, we are using the CLI
$uf->setupSprinkles(FALSE);
// Get the container
$this->ci = $uf->getContainer();
// Add each commands to the Console App
$this->loadCommands();
}
/**
* Run the Symfony Console App
*/
public function run() {
$this->app->run();
}
/**
* Return the list of available commands for a specific sprinkle
*/
protected function loadCommands() {
// Get base Bakery command
$commands = $this->getBakeryCommands();
// Get the sprinkles commands
$sprinkles = $this->ci->sprinkleManager->getSprinkleNames();
foreach ($sprinkles as $sprinkle) {
$commands = $commands->merge($this->getSprinkleCommands($sprinkle));
}
// Add commands to the App
$commands->each(function ($command) {
$instance = new $command();
$instance->setContainer($this->ci);
$this->app->add($instance);
});
}
/**
* Return the list of available commands for a specific sprinkle
* Sprinkles commands should be located in `src/Bakery/`
*/
protected function getSprinkleCommands($sprinkle) {
// Find all the migration files
$path = $this->commandDirectoryPath($sprinkle);
$files = glob($path . "*.php");
$commands = collect($files);
// Transform the path into a class names
$commands->transform(function ($file) use ($sprinkle, $path) {
$className = basename($file, '.php');
$sprinkleName = Str::studly($sprinkle);
$className = "\\UserFrosting\\Sprinkle\\" . $sprinkleName . "\\Bakery\\" . $className;
return $className;
});
return $commands;
}
/**
* Return the list of available commands in system/Bakery/Command/
*/
protected function getBakeryCommands() {
// Find all the migration files
$files = glob(\UserFrosting\APP_DIR . "/system/Bakery/Command/" . "*.php");
$commands = collect($files);
// Transform the path into a class names
$commands->transform(function ($file) {
$className = basename($file, '.php');
$className = "\\UserFrosting\\System\\Bakery\\Command\\" . $className;
return $className;
});
return $commands;
}
/**
* Returns the path of the Migration directory.
*
* @access protected
* @param mixed $sprinkleName
* @return void
*/
protected function commandDirectoryPath($sprinkleName) {
return \UserFrosting\SPRINKLES_DIR .
\UserFrosting\DS .
$sprinkleName .
\UserFrosting\DS .
\UserFrosting\SRC_DIR_NAME .
"/Bakery/";
}
/**
* Write the base Sprinkles schema file if it doesn't exist.
*
* @access protected
* @return void
*/
protected function setupBaseSprinkleList() {
$model = \UserFrosting\APP_DIR . '/sprinkles.example.json';
$destination = \UserFrosting\SPRINKLES_SCHEMA_FILE;
$sprinklesModelFile = @file_get_contents($model);
if ($sprinklesModelFile === FALSE) {
$this->io->error("File `$sprinklesModelFile` not found. Please create '$destination' manually and try again.");
exit(1);
}
file_put_contents($destination, $sprinklesModelFile);
return $sprinklesModelFile;
}
}
|