-
Notifications
You must be signed in to change notification settings - Fork 9
/
mootable.php
494 lines (418 loc) · 11.3 KB
/
mootable.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<?php
/**
* @package Joomla.Plugin
* @subpackage System.Mootable
*
* @author Roberto Segura <[email protected]>
* @copyright (c) 2012-2023 Roberto Segura. All Rights Reserved.
* @license GNU/GPL 2, http://www.gnu.org/licenses/gpl-2.0.htm
*/
defined('_JEXEC') or die;
JLoader::import('joomla.plugin.plugin');
/**
* Main plugin class
*
* @package Joomla.Plugin
* @subpackage System.Mootable
* @since 2.5
*
*/
class PlgSystemMootable extends JPlugin
{
// Plugin info constants
const TYPE = 'system';
const NAME = 'mootable';
/**
* Plugin details from DB
*
* @var object
*/
private $plugin;
/**
* Plugin parameters
*
* @var JRegistry
*/
public $params;
/**
* Path to the plugin folder
*
* @var string
*/
private $pathPlugin = null;
/**
* Base Url to the plugin folder
*
* @var string
*/
private $urlPlugin;
/**
* Components where the plugin is allowed to be loaded
*
* @var array
*/
private $componentsEnabled = array('*');
/**
* Views where the plugin is allowed to be loaded
*
* @var array
*/
private $viewsEnabled = array('*');
/**
* Is this plugin enabled in frontend?
*
* @var boolean
*/
private $frontendEnabled = true;
/**
* Is this plugin enabled on backend?
*
* @var boolean
*/
private $backendEnabled = false;
/**
* Constructor
*
* @param mixed &$subject Subject
*/
function __construct( &$subject )
{
parent::__construct($subject);
// Load plugin parameters
$this->plugin = JPluginHelper::getPlugin(self::TYPE, self::NAME);
$this->params = new JRegistry($this->plugin->params);
// Init folder structure
$this->initFolders();
// Load plugin language
$this->loadLanguage('plg_' . self::TYPE . '_' . self::NAME, JPATH_ADMINISTRATOR);
}
/**
* This event is triggered before the framework creates the Head section of the Document.
*
* @return boolean
*/
function onBeforeCompileHead()
{
// Validate view
if (!$this->validateUrl())
{
return true;
}
// Required objects
$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$pageParams = $app->getParams();
// Check if we have to disable Mootools for this item
$mootoolsMode = $pageParams->get('mootable', $this->params->get('defaultMode', 0));
$moreMode = $pageParams->get('moreMode', $this->params->get('defaultMoreMode', 0));
$disableOnDebug = $this->params->get('disableWhenDebug', 1);
if (!$this->isAutoEnabled() && 0 == $mootoolsMode)
{
// Function used to replace window.addEvent()
$doc->addScriptDeclaration("function do_nothing() { return; }");
// Disable mootools javascript
$this->disableScript('/media/system/js/mootools-core.js');
// From v3.3 core does not require mootools anymore
if (version_compare(JVERSION, '3.3', '<'))
{
$this->disableScript('/media/system/js/core.js');
}
$this->disableScript('/media/system/js/mootools-more.js');
$this->disableScript('/media/system/js/caption.js');
$this->disableScript('/media/system/js/modal.js');
$this->disableScript('/media/system/js/mootools.js');
$this->disableScript('/plugins/system/mtupgrade/mootools.js');
// Disabled mootools javascript when debugging site
if ($disableOnDebug)
{
$this->disableScript('/media/system/js/mootools-core-uncompressed.js');
$this->disableScript('/media/system/js/mootools-core-uncompressed.js');
$this->disableScript('/media/system/js/mootools-more-uncompressed.js');
$this->disableScript('/media/system/js/core-uncompressed.js');
$this->disableScript('/media/system/js/caption-uncompressed.js');
}
// Disable css stylesheets
$this->disableStylesheet('/media/system/css/modal.css');
}
elseif (0 == $moreMode)
{
$this->disableScript('/media/system/js/mootools-more.js');
if ($disableOnDebug)
{
$this->disableScript('/media/system/js/mootools-more-uncompressed.js');
}
}
// Disable additional assets specified by the user
$this->disablePageScripts();
$this->disablePageStylesheets();
return true;
}
/**
* This event is triggered after pushing the document buffers into the template placeholders,
* retrieving data from the document and pushing it into the into the JResponse buffer.
* http://docs.joomla.org/Plugin/Events/System
*
* @return boolean
*/
function onAfterRender()
{
// Validate view
if (!$this->validateUrl())
{
return true;
}
// Required objects
$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$pageParams = $app->getParams();
// Check if we have to disable Mootools for this item
$mode = $pageParams->get('mootable', $this->params->get('defaultMode', 0));
if (!$this->isAutoEnabled() && !$mode)
{
// Get the generated content
$body = JResponse::getBody();
// Remove JCaption JS calls
$pattern = "/(new JCaption\()(.*)(\);)/isU";
$replacement = '';
$body = preg_replace($pattern, $replacement, $body);
// Null window.addEvent( calls
$pattern = "/(window.addEvent\()(.*)(,)/isU";
$body = preg_replace($pattern, 'do_nothing(', $body);
JResponse::setBody($body);
}
return true;
}
/**
* Change forms before they are shown to the user
*
* @param JForm $form JForm object
* @param array $data Data array
*
* @return boolean
*/
public function onContentPrepareForm($form, $data)
{
// Check we have a form
if (!($form instanceof JForm))
{
$this->_subject->setError('JERROR_NOT_A_FORM');
return false;
}
// Extra parameters for menu edit
if ($form->getName() == 'com_menus.item')
{
$form->loadFile($this->pathPlugin . '/forms/menuitem.xml');
}
return true;
}
/**
* Remove a javascript file call from header
*
* @param string $script URL to script (both global/relative should work)
*
* @return void
*/
private function disableScript($script)
{
$script = trim($script);
if (!empty($script))
{
$doc = JFactory::getDocument();
$uri = JUri::getInstance();
$relativePath = trim(str_replace($uri->getPath(), '', JUri::root()), '/');
$relativeScript = trim(str_replace($uri->getPath(), '', $script), '/');
$relativeUrl = str_replace($relativePath, '', $script);
// Try to disable relative and full URLs
unset($doc->_scripts[$script]);
unset($doc->_scripts[$relativeUrl]);
unset($doc->_scripts[JUri::root(true) . $script]);
unset($doc->_scripts[$relativeScript]);
}
}
/**
* Remove a stylesheet file call from header
*
* @param string $stylesheet URL to the stylesheet (both global/relative should work)
*
* @return void
*/
private function disableStylesheet($stylesheet)
{
$stylesheet = trim($stylesheet);
if (!empty($stylesheet))
{
$doc = JFactory::getDocument();
$uri = JUri::getInstance();
$relativePath = trim(str_replace($uri->getPath(), '', JUri::root()), '/');
$relativeStylesheet = trim(str_replace($uri->getPath(), '', $stylesheet), '/');
$relativeUrl = str_replace($relativePath, '', $stylesheet);
// Try to disable relative and full URLs
unset($doc->_styleSheets[$stylesheet]);
unset($doc->_styleSheets[$relativeUrl]);
unset($doc->_styleSheets[JUri::root(true) . $stylesheet]);
unset($doc->_styleSheets[$relativeStylesheet]);
}
}
/**
* Disable the page scripts
*
* @return void
*/
private function disablePageScripts()
{
$pageParams = JFactory::getApplication()->getParams();
// Other scripts disabled
$globalDisabled = str_replace("\n", ",", $this->params->get('manualDisable', null));
$menuDisabled = str_replace("\n", ",", $pageParams->get('disabledScripts', null));
$scriptsDisabled = array_unique(array_merge(explode(',', $globalDisabled), explode(',', $menuDisabled)));
// Disable 3rd party extensions added by the user
if (!empty($scriptsDisabled))
{
foreach ($scriptsDisabled as $script)
{
$this->disableScript($script);
}
}
}
/**
* Disable the page stylesheets
*
* @return void
*/
private function disablePageStylesheets()
{
$pageParams = JFactory::getApplication()->getParams();
// Other scripts disabled
$globalDisabled = str_replace("\n", ",", $this->params->get('disabledStylesheets', null));
$menuDisabled = str_replace("\n", ",", $pageParams->get('disabledStylesheets', null));
$stylesheetsDisabled = array_unique(array_merge(explode(',', $globalDisabled), explode(',', $menuDisabled)));
if (!empty($stylesheetsDisabled))
{
foreach ($stylesheetsDisabled as $stylesheet)
{
$this->disableStylesheet($stylesheet);
}
}
}
/**
* initialize folder structure
*
* @return none
*/
private function initFolders()
{
// Path
$this->pathPlugin = JPATH_PLUGINS . '/' . self::TYPE . '/' . self::NAME;
// Url
$this->urlPlugin = JURI::root(true) . "/plugins/" . self::TYPE . "/" . self::NAME;
}
/**
* Detect if the user is editing an article
*
* @return boolean
*/
private function isAutoEnabled()
{
$app = JFactory::getApplication();
$jinput = $app->input;
$option = $jinput->get('option', null);
$view = $jinput->get('view', null);
$id = $jinput->get('id', null);
$layout = $jinput->get('layout', null);
// Always enable mootools for given components
if ($alwaysEnable = $this->params->get('alwaysEnable', null))
{
// Allow ENTER separated and remove spaces
$components = str_replace(array("\n", " "), array(",", ""), $alwaysEnable);
$components = explode(',', $components);
if (in_array($option, $components))
{
return true;
}
}
// Allways enable for content edition
$isContentEdit = $this->params->get('contentEdition', 1);
if ($app->isSite() && $isContentEdit && $option == 'com_content' && $view == 'form' && $layout == 'edit')
{
return true;
}
// Allways enable for frontend com_users (login, profile edit, etc.)
$enableComUsers = $this->params->get('enableComUsers', 1);
if ($app->isSite() && $enableComUsers && $option == 'com_users')
{
return true;
}
return false;
}
/**
* validate if the plugin is enabled for current application (frontend / backend)
*
* @return boolean
*/
private function validateApplication()
{
$app = JFactory::getApplication();
if ( ($app->isSite() && $this->frontendEnabled) || ($app->isAdmin() && $this->backendEnabled) )
{
return true;
}
return false;
}
/**
* Validate option in url
*
* @return boolean
*/
private function validateComponent()
{
$option = JFactory::getApplication()->input->get('option');
if ( in_array('*', $this->componentsEnabled) || in_array($option, $this->componentsEnabled) )
{
return true;
}
return false;
}
/**
* Custom method for extra validations
*
* @return true
*/
private function validateExtra()
{
return $this->validateApplication();
}
/**
* Is the plugin enabled for this url?
*
* @return boolean
*/
private function validateUrl()
{
if ( $this->validateComponent() && $this->validateView())
{
if (method_exists($this, 'validateExtra'))
{
return $this->validateExtra();
}
else
{
return true;
}
}
return false;
}
/**
* validate view parameter in url
*
* @return boolean
*/
private function validateView()
{
$view = JFactory::getApplication()->input->get('view');
if ( in_array('*', $this->viewsEnabled) || in_array($view, $this->viewsEnabled))
{
return true;
}
return false;
}
}