plugins.php
15.4 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
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
<?php
/**
* @copyright Copyright (c) 2009-2017 Ryan Demmer. All rights reserved
* @license GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* JCE is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses
*/
defined('_JEXEC') or die('RESTRICTED');
// load base model
require_once dirname(__FILE__) . '/model.php';
class WFModelPlugins extends WFModel
{
public static function getCommands()
{
$data = file_get_contents(__DIR__ . '/commands.json');
$json = json_decode($data);
$commands = array();
if ($json) {
foreach ($json as $name => $attribs) {
$attribs->type = 'command';
$commands[$name] = $attribs;
}
}
return $commands;
}
public static function getPlugins()
{
$language = JFactory::getLanguage();
static $plugins;
if (!isset($plugins)) {
$plugins = array();
// get core json
$core = file_get_contents(__DIR__ . '/plugins.json');
// decode to object
$data = json_decode($core);
if ($data) {
foreach ($data as $name => $attribs) {
// skip if the plugin file is missing
if (!is_file(WF_EDITOR_PLUGINS . '/' . $name . '/editor_plugin.js')) {
continue;
}
// update attributes
$attribs->type = 'plugin';
$attribs->path = str_replace(JPATH_SITE, '', WF_EDITOR_PLUGINS) . '/' . $name;
$attribs->manifest = WF_EDITOR_PLUGINS . '/' . $name . '/' . $name . '.xml';
// compatability
$attribs->name = $name;
// pass to array
$plugins[$name] = $attribs;
}
}
// get pro json
if (is_file(__DIR__ . '/pro.json')) {
$pro = @file_get_contents(__DIR__ . '/pro.json');
// decode to object
if ($pro) {
$data = json_decode($pro);
if ($data) {
foreach ($data as $name => $attribs) {
// skip if the plugin file is missing
if (!is_file(WF_EDITOR_PLUGINS . '/' . $name . '/editor_plugin.js')) {
continue;
}
// update attributes
$attribs->type = 'plugin';
$attribs->path = str_replace(JPATH_SITE, '', WF_EDITOR_PLUGINS) . '/' . $name;
$attribs->manifest = WF_EDITOR_PLUGINS . '/' . $name . '/' . $name . '.xml';
// compatability
$attribs->name = $name;
// pass to array
$plugins[$name] = $attribs;
}
}
}
}
// get all installed plugins
$installed = JPluginHelper::getPlugin('jce');
foreach ($installed as $item) {
// check for delimiter, only load editor plugins
if (strpos($item->name, 'editor-') === false) {
continue;
}
// load language
$language->load('plg_jce_' . $item->name, JPATH_ADMINISTRATOR);
// create path
$path = JPATH_PLUGINS . '/jce/' . $item->name;
// get xml file
$file = $path . '/' . $item->name . '.xml';
if (is_file($file)) {
// load xml data
$xml = WFXMLElement::load($file);
if ($xml) {
// check xml file is valid
if ((string) $xml->getName() != 'extension' && (string) $xml->getName() != 'install') {
continue;
}
// check for editor_plugins.js file
if (!is_file($path . '/editor_plugin.js')) {
continue;
}
$name = str_replace('editor-', '', $item->name);
$plugins[$name] = new StdClass();
$plugins[$name]->name = $name;
$plugins[$name]->manifest = $file;
$params = $xml->params;
$plugins[$name]->title = (string) $xml->name;
$plugins[$name]->icon = (string) $xml->icon;
$plugins[$name]->editable = 0;
// can't be editable without parameters
if ($params && count($params->children())) {
$plugins[$name]->editable = 1;
}
$row = (int) $xml->attributes()->row;
$plugins[$name]->row = $row ? $row : 4;
$plugins[$name]->description = (string) $xml->description;
$plugins[$name]->core = 0;
// relative path
$plugins[$name]->path = str_replace(JPATH_SITE, '', $path);
$plugins[$name]->type = 'plugin';
}
}
}
}
return $plugins;
}
/**
* Get installed extensions.
*
* @return array $extensions
*/
public function getExtensions()
{
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');
$language = JFactory::getLanguage();
static $extensions;
if (empty($extensions)) {
$extensions = array();
// recursively get all extension files
$files = JFolder::files(WF_EDITOR_EXTENSIONS, '\.xml$', true, true);
foreach ($files as $file) {
$name = basename($file, '.xml');
$object = new StdClass();
$object->folder = basename(dirname($file));
$object->manifest = $file;
$object->plugins = array();
$object->name = $name;
$object->title = $name;
$object->description = '';
$object->id = $object->folder . '.' . $object->name;
$object->extension = $object->name;
// set as non-core by default
$object->core = 0;
// set as not editable by default
$object->editable = 0;
// set type
$object->type = $object->folder;
$extensions[] = $object;
}
// get all installed plugins
$installed = JPluginHelper::getPlugin('jce');
if (!empty($installed)) {
foreach ($installed as $p) {
// check for delimiter, only load "extensions"
if (strpos($p->name, '-') === false && strpos($p->name, 'editor-') !== false) {
continue;
}
// set path
$p->path = JPATH_PLUGINS . '/jce/' . $p->name;
// Joomla 1.5!!
if (!defined('JPATH_PLATFORM')) {
$p->path = JPATH_PLUGINS . '/jce';
}
$parts = explode('-', $p->name);
// get type and name
$p->folder = $parts[0];
$p->extension = $parts[1];
// plugin manifest, eg: filesystem-joomla.xml
$p->manifest = $p->path . '/' . $p->name . '.xml';
$p->plugins = array();
$p->description = '';
$p->title = $p->name;
// create plugin id, eg: filesystem.joomla
$p->id = $p->folder . '.' . $p->extension;
// not core
$p->core = 0;
// set as not editable by default
$p->editable = 0;
// set type
$p->type = $p->folder;
// load language
$language->load('plg_jce_' . $p->folder . '_' . $p->extension, JPATH_ADMINISTRATOR);
$extensions[] = $p;
}
}
// process xml for each extension
for ($i = 0; $i < count($extensions); ++$i) {
$extension = $extensions[$i];
$xml = WFXMLElement::load($extension->manifest);
if ($xml) {
// not a valid extension xml file
if ((string) $xml->getName() != 'extension' && (string) $xml->getName() != 'install') {
unset($extensions[$i]);
continue;
}
// list of plugins this extension is restricted to
$plugins = (string) $xml->plugins;
if ($plugins) {
$extension->plugins = explode(',', $plugins);
}
$extension->title = (string) $xml->name;
$extension->description = (string) $xml->description;
$extension->core = (int) $xml->attributes()->core ? 1 : 0;
$params = $xml->params;
// can't be editable without parameters
if ($params && count($params->children())) {
$extension->editable = 1;
}
// installer stuff
$extension->author = (string) $xml->author;
$extension->version = (string) $xml->version;
$extension->creationdate = (string) $xml->creationDate;
$extension->authorUrl = (string) $xml->authorUrl;
}
}
}
// reset array
$extensions = array_values($extensions);
return $extensions;
}
/**
* Process import data from XML file.
*
* @param object $file XML file
* @param bool $install Can be used by the package installer
*
* @return bool
*/
public function processImport($file, $install = false)
{
return true;
}
public static function addToProfile($id, $plugin)
{
JTable::addIncludePath(dirname(dirname(__FILE__)) . '/tables');
// Add to Default Group
$profile = JTable::getInstance('profiles', 'WFTable');
if ($profile->load($id)) {
// Add to plugins list
$plugins = explode(',', $profile->plugins);
if (!in_array($plugin->name, $plugins)) {
$plugins[] = $plugin->name;
}
$profile->plugins = implode(',', $plugins);
if ($plugin->icon) {
if (in_array($plugin->name, preg_split('/[;,]+/', $profile->rows)) === false) {
// get rows as array
$rows = explode(';', $profile->rows);
if (count($rows)) {
// get key (row number)
$key = count($rows) - 1;
// get row contents as array
$row = explode(',', $rows[$key]);
// add plugin name to end of row
$row[] = $plugin->name;
// add row data back to rows array
$rows[$key] = implode(',', $row);
$profile->rows = implode(';', $rows);
}
}
if (!$profile->store()) {
JError::raiseWarning(100, 'WF_INSTALLER_PLUGIN_PROFILE_ERROR');
}
}
}
return true;
}
public static function removeFromProfile($id, $plugin)
{
JTable::addIncludePath(dirname(dirname(__FILE__)) . '/tables');
// Add to Default Group
$profile = JTable::getInstance('profiles', 'WFTable');
if ($profile->load($id)) {
// remove from plugins list
$plugins = explode(',', $profile->plugins);
$key = array_search($plugin->name, $plugins);
if ($key) {
unset($plugins[$key]);
$profile->plugins = implode(',', array_values($plugins));
}
if ($plugin->icon) {
// check if its in the profile
if (in_array($plugin->name, preg_split('/[;,]+/', $profile->rows))) {
$lists = array();
foreach (explode(';', $profile->rows) as $list) {
$icons = explode(',', $list);
foreach ($icons as $k => $v) {
if ($plugin->name == $v) {
unset($icons[$k]);
}
}
$lists[] = implode(',', $icons);
}
$profile->rows = implode(';', $lists);
}
if (!$profile->store()) {
JError::raiseWarning(100, JText::sprintf('WF_INSTALLER_REMOVE_FROM_GROUP_ERROR', $plugin->name));
}
}
}
return true;
}
/**
* Add index.html files to each folder.
*/
private static function addIndexfiles($path)
{
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');
// get the base file
$file = dirname(dirname(__FILE__)) . '/index.html';
if (is_file($file) && is_dir($path)) {
JFile::copy($file, $path . '/' . basename($file));
// admin component
$folders = JFolder::folders($path, '.', true, true);
foreach ($folders as $folder) {
JFile::copy($file, $folder . '/' . basename($file));
}
}
}
public static function postInstall($route, $plugin, $installer)
{
$db = JFactory::getDBO();
jimport('joomla.filesystem.folder');
// load the plugin and enable
if (isset($plugin->row) && $plugin->row > 0) {
$query = $db->getQuery(true);
if (is_object($query)) {
$query->select('id')->from('#__wf_profiles')->where('name = ' . $db->Quote('Default') . ' OR id = 1');
} else {
$query = 'SELECT id'
. ' FROM #__wf_profiles'
. ' WHERE name = ' . $db->Quote('Default') . ' OR id = 1';
}
$db->setQuery($query);
$id = $db->loadResult();
if ($id) {
if ($route == 'install') {
// add to profile
self::addToProfile($id, $plugin);
} else {
// remove from profile
self::removeFromProfile($id, $plugin);
}
}
}
if ($route == 'install') {
if ($plugin->type == 'extension') {
$plugin->path = $plugin->path . '/' . $plugin->name;
}
// add index.html files
self::addIndexfiles($plugin->path);
}
return true;
}
}