-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
index.php
executable file
·427 lines (387 loc) · 14.3 KB
/
index.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
require_once('whitelabeler.php');
$whitelabeler = new Whitelabeler;
if (isset($_GET['q'])) {
/*
|--------------------------------------------------------------------------
| Determine Mautic version by path
|--------------------------------------------------------------------------
*/
if ( $_GET['q'] == 'version' ) {
header('Content-Type: application/json');
if ( isset($_GET['path']) && is_dir($_GET['path']) ) {
echo json_encode(
$whitelabeler->mauticVersion($_GET['path'])
);
} else {
echo json_encode(array(
'status' => 0,
'message' => 'Directory does not exist.'
));
}
exit();
/*
|--------------------------------------------------------------------------
| Find Mautic by URL (look for LICENSE.txt to verify this is Mautic root)
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'url' && isset($_GET['url']) ) {
header('Content-Type: application/json');
echo json_encode(
$whitelabeler->findMauticUrl($_GET['url'])
);
exit();
/*
|--------------------------------------------------------------------------
| Check for image in assets
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'asset' && isset($_GET['url']) ) {
echo $whitelabeler->assetExists(urldecode($_GET['url']));
exit();
/*
|--------------------------------------------------------------------------
| Save Images
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'save-images' && $_SERVER['REQUEST_METHOD'] == 'POST' ) {
require_once('vendor/chrisjean/php-ico/class-php-ico.php');
$errors = array();
$result = array();
// sidebar logo
if ( isset($_FILES['sidebar_logo_file']) ) {
if (
$_FILES['sidebar_logo_file']['type'] == 'image/png' ||
$_FILES['sidebar_logo_file']['type'] == 'image/jpg' ||
$_FILES['sidebar_logo_file']['type'] == 'image/jpeg' ||
$_FILES['sidebar_logo_file']['type'] == 'image/gif'
) {
$whitelabeler->imageResize(
$_POST['sidebar_logo_width'],
$_FILES['sidebar_logo_file']['tmp_name'],
__DIR__.'/assets/'.$_FILES['sidebar_logo_file']['name']
);
if ( !file_exists(__DIR__.'/assets/'.$_FILES['sidebar_logo_file']['name']) ) {
$errors[] = 'Error uploading sidebar logo file '.$_FILES['sidebar_logo_file']['name'];
} else {
$result['images']['sidebar_logo'] = $_FILES['sidebar_logo_file']['name'];
}
} else {
$errors[] = 'Invalid file type provided for sidebar logo.';
}
}
// login logo
if ( isset($_FILES['login_logo_file']) ) {
if (
$_FILES['login_logo_file']['type'] == 'image/png' ||
$_FILES['login_logo_file']['type'] == 'image/jpg' ||
$_FILES['login_logo_file']['type'] == 'image/jpeg' ||
$_FILES['login_logo_file']['type'] == 'image/gif'
) {
$whitelabeler->imageResize(
$_POST['login_logo_width'],
$_FILES['login_logo_file']['tmp_name'],
__DIR__.'/assets/'.$_FILES['login_logo_file']['name']
);
if ( !file_exists(__DIR__.'/assets/'.$_FILES['login_logo_file']['name']) ) {
$errors[] = 'Error uploading login logo file '.$_FILES['login_logo_file']['name'];
} else {
$result['images']['login_logo'] = $_FILES['login_logo_file']['name'];
}
// If favicon file is not set, we'll use the login logo
if ( !isset($_FILES['favicon_file']) && !isset($_POST['saved_favicon']) ) {
$logo_filename_explode = explode('.', $_FILES['login_logo_file']['name']);
$ico_lib = new PHP_ICO($_FILES['login_logo_file']['tmp_name'], array( array( 64, 64 ) ) );
$ico_lib->save_ico(__DIR__.'/assets/favicon-'.$logo_filename_explode[0].'.ico');
if ( !file_exists(__DIR__.'/assets/favicon-'.$logo_filename_explode[0].'.ico') ) {
$errors[] = 'Error using login logo file for favicon.';
} else {
$result['images']['favicon_files'] = 'favicon-'.$logo_filename_explode[0].'.ico';
}
}
} else {
$errors[] = 'Invalid file type provided for login logo.';
}
}
// favicon
if ( isset($_FILES['favicon_file']) ) {
if (
$_FILES['favicon_file']['type'] == 'image/png' ||
$_FILES['favicon_file']['type'] == 'image/x-icon' ||
$_FILES['favicon_file']['type'] == 'image/vnd.microsoft.icon' ||
$_FILES['favicon_file']['type'] == 'image/jpg' ||
$_FILES['favicon_file']['type'] == 'image/jpeg' ||
$_FILES['favicon_file']['type'] == 'image/gif'
) {
// If favicon is .ico, move/copy the file
if ($_FILES['favicon_file']['type'] == 'image/vnd.microsoft.icon' || $_FILES['favicon_file']['type'] == 'image/x-icon') {
move_uploaded_file($_FILES['favicon_file']['tmp_name'], __DIR__.'/assets/'.$_FILES['favicon_file']['name']);
if ( !file_exists(__DIR__.'/assets/'.$_FILES['favicon_file']['name']) ) {
$errors[] = 'Error using login logo file for favicon.';
} else {
$result['images']['favicon'] = $_FILES['favicon_file']['name'];
}
// convert to .ico and save.
} else {
$logo_filename_explode = explode('.', $_FILES['favicon_file']['name']);
$ico_lib = new PHP_ICO($_FILES['favicon_file']['tmp_name'], array( array( 64, 64 ) ) );
$ico_lib->save_ico(__DIR__.'/assets/'.$logo_filename_explode[0].'.ico');
if ( !file_exists(__DIR__.'/assets/'.$logo_filename_explode[0].'.ico') ) {
$errors[] = 'Error using login logo file for favicon.';
} else {
$result['images']['favicon'] = $logo_filename_explode[0].'.ico';
}
}
} else {
$errors[] = 'Invalid file type provided for favicon.';
}
}
header('Content-Type: application/json');
if ( !empty($errors) ) {
echo json_encode( array('status' => 0, 'message' => $errors) );
} else {
echo json_encode( array('status' => 1, 'message' => $result) );
}
exit();
/*
|--------------------------------------------------------------------------
| Save values entered
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'save' && $_SERVER['REQUEST_METHOD'] == 'POST' ) {
// Encode the array into a JSON string.
$encodedString = json_encode($_POST['config'], JSON_PRETTY_PRINT);
// Save to JSON file in assets.
if (file_put_contents(__DIR__.'/assets/config.json', $encodedString)) {
header('Content-Type: application/json');
echo json_encode( array('status' => 1, 'message' => 'Config values saved.') );
};
exit();
/*
|--------------------------------------------------------------------------
| Save as a different filename
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'save-as' && $_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['file']) ) {
// Encode the array into a JSON string.
$encodedString = json_encode($_POST['config'], JSON_PRETTY_PRINT);
// Save to JSON file in assets.
if (file_put_contents(__DIR__.'/assets/'.$_POST['file'].'.json', $encodedString)) {
header('Content-Type: application/json');
echo json_encode( array('status' => 1, 'message' => $_POST['file'].'.json saved in assets folder.') );
};
exit();
/*
|--------------------------------------------------------------------------
| Get list of config files from assets directory
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'config-files' ) {
header('Content-Type: application/json');
echo json_encode($whitelabeler->getConfigFiles());
exit();
/*
|--------------------------------------------------------------------------
| Look for saved values and files to populate form automatically
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'saved' && isset($_GET['file']) ) {
$config = $whitelabeler->loadJsonConfig($_GET['file']);
if ( $config ) {
header('Content-Type: application/json');
echo json_encode(array('status' => 1, 'message' => 'config.json file found.', 'data' => $config));
} else {
header('Content-Type: application/json');
echo json_encode(array('status' => 0, 'message' => 'config.json not found in assets folder.'));
}
exit();
/*
|--------------------------------------------------------------------------
| Reset saved values
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'reset' && $_SERVER['REQUEST_METHOD'] == 'POST' ) {
//Encode the array into a JSON string.
$encodedString = json_encode($_POST['config'], JSON_PRETTY_PRINT);
//Save to JSON file in assets.
if (file_put_contents(__DIR__.'/assets/config.json', $encodedString)) {
echo json_encode( array('status' => 1, 'message' => 'Config values saved.') );
};
exit();
/*
|--------------------------------------------------------------------------
| Regenerate Assets / Clear Cache
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'assets' && isset($_GET['assets']) && isset($_GET['path']) ) {
if ( substr($_GET['path'], -1) == '/' ) {
$path = substr($_GET['path'], 0, -1);
} else {
$path = $_GET['path'];
}
if ( $_GET['assets'] == 'clear' ) {
print_r($whitelabeler->clearMauticCache($path));
} else if ( $_GET['assets'] == 'regenerate' ) {
print_r($whitelabeler->rebuildAssets($path));
}
exit();
/*
|--------------------------------------------------------------------------
| POST Logos
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'logos' ) {
if ( isset($_POST['mautic_path']) && isset($_POST['mautic_url']) ) {
if ( substr($_POST['mautic_path'], -1) == '/' ) {
$path = substr($_POST['mautic_path'], 0, -1);
} else {
$path = $_POST['mautic_path'];
}
if ( substr($_POST['mautic_url'], -1) == '/' ) {
$url = substr($_POST['mautic_url'], 0, -1);
} else {
$url = $_POST['mautic_url'];
}
$errors = array();
if ( !isset($_FILES['sidebar_logo_file']) && !isset($_POST['sidebar_logo_file']) ) {
$errors[] = 'Couldn\'t find file for the sidebar logo.';
}
if ( !isset($_FILES['login_logo_file']) && !isset($_POST['sidebar_logo_file']) ) {
$errors[] = 'Couldn\'t find file for the login logo.';
}
if (empty($errors)) {
// Use saved sidebar logo
if ( !isset($_FILES['sidebar_logo_file']) && isset($_POST['sidebar_logo_file']) ) {
$sidebar_logo = __DIR__.'/assets/'.$_POST['sidebar_logo_file'];
// Use uploaded sidebar logo
} elseif ( isset($_FILES['sidebar_logo_file']) ) {
$sidebar_logo = $_FILES['sidebar_logo_file']['tmp_name'];
}
// Use saved login logo
if ( !isset($_FILES['login_logo_file']) && isset($_POST['login_logo_file']) ) {
$login_logo = __DIR__.'/assets/'.$_POST['login_logo_file'];
// Use uploaded login logo
} elseif ( isset($_FILES['login_logo_file']) ) {
$login_logo = $_FILES['login_logo_file']['tmp_name'];
}
// Use saved favicon
if ( !isset($_FILES['favicon_file']) && isset($_POST['favicon_file']) && $_POST['favicon_file'] != 'null' ) {
$favicon = __DIR__.'/assets/'.$_POST['favicon_file'];
// Use uploaded favicon
} elseif ( isset($_FILES['favicon_file']) ) {
$favicon = $_FILES['favicon_file']['tmp_name'];
// Nothing is set -- we'll use the login logo as the favicon
} else {
$favicon = false;
}
$logos = $whitelabeler->replaceImages(
$path,
$url,
$_POST['version'],
$sidebar_logo,
$_POST['sidebar_logo_width'],
array(
'top' => $_POST['sidebar_logo_margin_top'],
'right' => $_POST['sidebar_logo_margin_right'],
'left' => $_POST['sidebar_logo_margin_left']
),
$login_logo,
$_POST['login_logo_width'],
array(
'top' => $_POST['login_logo_margin_top'],
'bottom' => $_POST['login_logo_margin_bottom']
),
$favicon
);
header('Content-Type: application/json');
echo json_encode($logos);
} else {
header('Content-Type: application/json');
echo json_encode(array(
'status' => 0,
'message' => $errors
));
}
exit();
} else {
header('Content-Type: application/json');
echo json_encode(array(
'status' => 0,
'message' => 'Path or URL not set.'
));
exit();
}
/*
|--------------------------------------------------------------------------
| POST CSS Colors
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'css' && $_SERVER['REQUEST_METHOD'] == 'POST' ) {
if (
isset($_POST['path']) &&
isset($_POST['version']) &&
isset($_POST['logo_bg']) &&
isset($_POST['primary']) &&
isset($_POST['hover']) &&
isset($_POST['sidebar_bg']) &&
isset($_POST['sidebar_submenu_bg']) &&
isset($_POST['sidebar_link']) &&
isset($_POST['sidebar_link_hover']) &&
isset($_POST['active_icon']) &&
isset($_POST['divider_left']) &&
isset($_POST['sidebar_divider']) &&
isset($_POST['submenu_bullet_bg']) &&
isset($_POST['submenu_bullet_shadow'])
) {
if ( substr($_POST['path'], -1) == '/' ) {
$path = substr($_POST['path'], 0, -1);
} else {
$path = $_POST['path'];
}
$colors = $whitelabeler->colors(
$path,
$_POST['version'],
$_POST['logo_bg'],
$_POST['primary'],
$_POST['hover'],
$_POST['sidebar_bg'],
$_POST['sidebar_submenu_bg'],
$_POST['sidebar_link'],
$_POST['sidebar_link_hover'],
$_POST['active_icon'],
$_POST['divider_left'],
$_POST['sidebar_divider'],
$_POST['submenu_bullet_bg'],
$_POST['submenu_bullet_shadow']
);
header('Content-Type: application/json');
echo json_encode($colors);
} else {
header('Content-Type: application/json');
echo array(0, 'Missing CSS color field values.');
}
exit();
/*
|--------------------------------------------------------------------------
| POST Company Name
|--------------------------------------------------------------------------
*/
} elseif ( $_GET['q'] == 'companyname' && $_SERVER['REQUEST_METHOD'] == 'POST') {
if ( substr($_POST['path'], -1) == '/' ) {
$path = substr($_POST['path'], 0, -1);
} else {
$path = $_POST['path'];
}
$company_name = $whitelabeler->companyName(
$path,
$_POST['version'],
$_POST['company_name'],
$_POST['footer_prefix'],
$_POST['footer']
);
header('Content-Type: application/json');
echo json_encode($company_name);
exit();
}
}
require_once('view.php');