forked from brunoroots/static-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.php
More file actions
282 lines (227 loc) · 8.54 KB
/
Copy pathapi.php
File metadata and controls
282 lines (227 loc) · 8.54 KB
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
<?php
require __DIR__ . '/api/Template.php';
require __DIR__ . '/api/Config.php';
require __DIR__ . '/api/helpers.php';
error_reporting(E_ALL);
use Directus\Util\ArrayUtils;
use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Local;
use StaticGenerator\Template;
use StaticGenerator\Config;
$app = \Directus\Application\Application::getInstance();
$templateStorageAdapter = new Filesystem( new Local( Template::getTemplateStoragePath() ) );
/*********************************************************************************************************
* CRON HANDLER *
* for frequency based generation. *
* To enable on *nix systems, create a cron job using: *
* * * * * * wget -O - http://yoursite.com/api/extensions/static-generator/cron >/dev/null 2>&1 *
*********************************************************************************************************/
$app->get('/cron', function () use ($app, $templateStorageAdapter) {
try {
if( ! Config::readyToGenerate()) {
die('Not ready to generate.');
}
$outputStorageAdapter = new Filesystem( new Local( Template::getOutputDirectoryRoot() . '/' . Config::getGenerationOutputDirectory()));
Template::generateSite($templateStorageAdapter, $outputStorageAdapter);
die('Site successfully generated.');
}
catch (Exception $e) {
die($e->getMessage());
}
});
/**************************
* GET *
**************************/
$app->get('/templates/?', function () use ($app, $templateStorageAdapter) {
try {
$templates = Template::getAll($templateStorageAdapter);
$data = [];
$directoryTree = [];
if( $templates) {
foreach($templates as $template) {
$directoryTree = array_merge_recursive($directoryTree, directusMakeTree(explode('/', $template->filePath . ':::' . $template->id)));
$filePathParts = explode('/', $template->filePath);
$data[] = [
'id' => $template->id,
'route' => $template->route,
'file' => $template->filePath,
'fileName' => array_pop($filePathParts),
'contents' => $template->contents,
'exists' => $template->exists(),
];
}
}
$data[] = [
'hasDirectoryTree' => true,
'directoryTree' => directusToUL($directoryTree),
];
$data[] = [
'hasConfig' => true,
'generationMethod' => Config::getGenerationMethod(),
'generationOutputDirectory' => Config::getGenerationOutputDirectory(),
];
return $app->response($data);
}
catch (Exception $e) {
return $app->response([
'success' => false,
'error' => [
'message' => $e->getMessage(),
],
])->status(400);
}
});
/**************************
* POST *
**************************/
$app->post('/templates', function () use ($app, $templateStorageAdapter) {
try {
/**
* Generate site
*/
if($app->request()->post('generateSite')) {
return staticGeneratorGenerateSite($app, $templateStorageAdapter);
}
/**
* Update auto-generation settings
*/
if($app->request()->post('updateGenerationSettings')) {
return staticGeneratorUpdateSettings($app, $templateStorageAdapter);
}
/**
* Create new template
*/
// validation
if( ! $app->request()->post('filePath')) {
throw new Exception('Please enter a file path.');
}
// instantiate
$template = new Template($templateStorageAdapter, [
'filePath' => $app->request()->post('filePath'),
'contents' => $app->request()->post('contents'),
]);
// check and save
if($template->exists()) {
throw new Exception('Template already exists.');
}
$template->save();
return $app->response([
'success' => true,
'message' => 'Request successfully processed.',
'id' => $template->id,
]);
}
catch (Exception $e) {
return $app->response([
'success' => false,
'error' => [
'message' => $e->getMessage(),
],
])->status(400);
}
});
/**************************
* PUT *
**************************/
$app->put('/templates/:id', function ($id = null) use ($app, $templateStorageAdapter) {
try {
/**
* Generate site
*/
if($app->request()->post('generateSite')) {
return staticGeneratorGenerateSite($app, $templateStorageAdapter);
}
/**
* Update auto-generation settings
*/
if($app->request()->post('updateGenerationSettings')) {
return staticGeneratorUpdateSettings($app, $templateStorageAdapter);
}
// validation
if( ! $app->request()->post('filePath')) {
throw new Exception('Please enter a file path.');
}
// instantiate template
$template = Template::getById($templateStorageAdapter, $id);
// save template
$filePathChanged = false;
if( $app->request()->post('filePath') && $app->request()->post('filePath') != $template->filePath) {
$filePathChanged = true;
}
if($filePathChanged) {
$template->filePath = $app->request()->post('filePath');
}
$template->contents = $app->request()->post('contents');
$template->save();
// if file path is different, delete the old template
if( $filePathChanged) {
$template = Template::getById($templateStorageAdapter, $id);
$template->delete();
}
return $app->response([
'success' => true,
'message' => 'Request successfully processed.',
]);
}
catch (Exception $e) {
return $app->response([
'success' => false,
'error' => [
'message' => $e->getMessage(),
],
])->status(400);
}
});
/**************************
* DELETE *
**************************/
$app->delete('/templates/:id', function ($id = null) use ($app, $templateStorageAdapter) {
try {
$template = Template::getById($templateStorageAdapter, $id);
$template->delete();
return $app->response([
'success' => true,
'message' => 'Request successfully processed.',
]);
}
catch (Exception $e) {
return $app->response([
'success' => false,
'error' => [
'message' => $e->getMessage(),
],
])->status(400);
}
});
function staticGeneratorUpdateSettings($app, $templateStorageAdapter) {
// normalize posted path
$outputDirectory = $app->request()->post('outputDirectory');
$outputDirectory = explode('/', $outputDirectory);
$outputDirectory = implode('/', $outputDirectory);
if( ! Template::isValidOutputPath($outputDirectory)) {
throw new Exception('Please enter a valid output path.');
}
// save settings
Config::setGenerationMethod($app->request()->post('generationMethod'));
Config::setGenerationOutputDirectory($outputDirectory);
return $app->response([
'success' => true,
'message' => 'Generation settings updated.',
]);
}
function staticGeneratorGenerateSite($app, $templateStorageAdapter) {
// normalize posted path
$outputDirectory = $app->request()->post('outputDirectory');
$outputDirectory = explode('/', $outputDirectory);
$outputDirectory = implode('/', $outputDirectory);
if( ! Template::isValidOutputPath($outputDirectory)) {
throw new Exception('Please enter a valid output path.');
}
// generate site
$outputStorageAdapter = new Filesystem( new Local( Template::getOutputDirectoryRoot() . '/' . $outputDirectory) );
Template::generateSite($templateStorageAdapter, $outputStorageAdapter);
return $app->response([
'success' => true,
'message' => 'Site generated in `' . Template::getOutputDirectoryRoot() . '/' . $outputDirectory . '`',
]);
}