summaryrefslogtreecommitdiff
path: root/app/Module.php
blob: 5885dfae0f8fc742a15641395836b92fcfd692ae (plain)
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
<?php
/**
 * webtrees: online genealogy
 * Copyright (C) 2018 webtrees development team
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
namespace Fisharebest\Webtrees;

use Fisharebest\Webtrees\Module\AbstractModule;
use Fisharebest\Webtrees\Module\ModuleBlockInterface;
use Fisharebest\Webtrees\Module\ModuleChartInterface;
use Fisharebest\Webtrees\Module\ModuleConfigInterface;
use Fisharebest\Webtrees\Module\ModuleMenuInterface;
use Fisharebest\Webtrees\Module\ModuleReportInterface;
use Fisharebest\Webtrees\Module\ModuleSidebarInterface;
use Fisharebest\Webtrees\Module\ModuleTabInterface;
use Fisharebest\Webtrees\Module\ModuleThemeInterface;
use League\Flysystem\Exception;

/**
 * Functions for managing and maintaining modules.
 */
class Module
{
    // We use a list of core modules to help identify custom ones.
    const CORE_MODULES = [
        'GEDFact_assistant',
        'ahnentafel_report',
        'ancestors_chart',
        'batch_update',
        'bdm_report',
        'birth_report',
        'cemetery_report',
        'change_report',
        'charts',
        'ckeditor',
        'clippings',
        'compact_tree_chart',
        'death_report',
        'descendancy',
        'descendancy_chart',
        'descendancy_report',
        'extra_info',
        'fact_sources',
        'family_book_chart',
        'family_group_report',
        'family_nav',
        'fan_chart',
        'faq',
        'gedcom_block',
        'gedcom_favorites',
        'gedcom_news',
        'gedcom_stats',
        'hourglass_chart',
        'html',
        'individual_ext_report',
        'individual_report',
        'lifespans_chart',
        'lightbox',
        'logged_in',
        'login_block',
        'marriage_report',
        'media',
        'missing_facts_report',
        'notes',
        'occupation_report',
        'pedigree-map',
        'pedigree_chart',
        'pedigree_report',
        'personal_facts',
        'places',
        'random_media',
        'recent_changes',
        'relationships_chart',
        'relative_ext_report',
        'relatives',
        'review_changes',
        'sitemap',
        'sources_tab',
        'statistics_chart',
        'stories',
        'theme_select',
        'timeline_chart',
        'todays_events',
        'todo',
        'top10_givnnames',
        'top10_pageviews',
        'top10_surnames',
        'tree',
        'upcoming_events',
        'user_blog',
        'user_favorites',
        'user_messages',
        'user_welcome',
        'yahrzeit',
    ];

    /** @var AbstractModule[] */
    private static $modules = [];

    /**
     * Load a module from a file.  Since third-party modules may declare classes or functions,
     * we must only load each file once.
     *
     * @param string $file
     *
     * @return AbstractModule|null
     */
    private static function loadModule($file)
    {
        if (!array_key_exists($file, self::$modules)) {
            self::$modules[$file] = null;
            try {
                $module = include $file;
                if ($module instanceof AbstractModule) {
                    self::$modules[$file] = $module;
                }
            } catch (Exception $ex) {
                DebugBar::addThrowable($ex);

                Log::addErrorLog($ex->getMessage());
            }
        }

        return self::$modules[$file];
    }

    /**
     * Get a list of all core modules.  We need to identify
     * third-party during upgrade and on the module admin page.
     *
     * @return string[]
     */
    public static function getCoreModuleNames(): array
    {
        return [
            'GEDFact_assistant',
            'ahnentafel_report',
            'ancestors_chart',
            'batch_update',
            'bdm_report',
            'birth_report',
            'cemetery_report',
            'change_report',
            'charts',
            //'ckeditor',
            'clippings',
            'compact_tree_chart',
            'death_report',
            'descendancy',
            'descendancy_chart',
            'descendancy_report',
            'extra_info',
            'fact_sources',
            'families',
            'family_book_chart',
            'family_group_report',
            'family_nav',
            'fan_chart',
            'faq',
            'gedcom_block',
            'gedcom_favorites',
            'gedcom_news',
            'gedcom_stats',
            'googlemap',
            'hourglass_chart',
            'html',
            'individual_ext_report',
            'individual_report',
            'individuals',
            'lifespans_chart',
            'lightbox',
            'logged_in',
            'login_block',
            'marriage_report',
            'media',
            'missing_facts_report',
            'notes',
            'occupation_report',
            'openstreetmap',
            'pedigree_chart',
            'pedigree_report',
            'personal_facts',
            'random_media',
            'recent_changes',
            'relationships_chart',
            'relative_ext_report',
            'relatives',
            'review_changes',
            'sitemap',
            'sources_tab',
            'statistics_chart',
            'stories',
            'theme_select',
            'timeline_chart',
            'todays_events',
            'todo',
            'top10_givnnames',
            'top10_pageviews',
            'top10_surnames',
            'tree',
            'upcoming_events',
            'user_blog',
            'user_favorites',
            'user_messages',
            'user_welcome',
            'yahrzeit',
        ];
    }

    /**
     * Get a list of all active (enabled) modules.
     *
     * @return AbstractModule[]
     */
    private static function getActiveModules(): array
    {
        /** @var AbstractModule[] - Only query the database once. */
        static $modules;

        if ($modules === null) {
            $module_names = Database::prepare(
                "SELECT module_name FROM `##module` WHERE status = 'enabled'"
            )->fetchOneColumn();

            $modules = [];
            foreach ($module_names as $module_name) {
                try {
                    $module = self::loadModule(WT_ROOT . WT_MODULES_DIR . $module_name . '/module.php');
                    if ($module instanceof AbstractModule) {
                        $modules[$module->getName()] = $module;
                    } else {
                        throw new \Exception();
                    }
                } catch (\Exception $ex) {
                    DebugBar::addThrowable($ex);

                    // The module has been deleted or is broken? Disable it.
                    Log::addConfigurationLog("Module {$module_name} is missing or broken - disabling it. " . $ex->getMessage(), null);
                    Database::prepare(
                        "UPDATE `##module` SET status = 'disabled' WHERE module_name = :module_name"
                    )->execute([
                        'module_name' => $module_name,
                    ]);
                }
            }
        }

        return $modules;
    }

    /**
     * Get a list of modules which (a) provide a specific function and (b) we have permission to see.
     *
     * We cannot currently use auto-loading for modules, as there may be user-defined
     * modules about which the auto-loader knows nothing.
     *
     * @param Tree   $tree
     * @param string $component The type of module, such as "tab", "report" or "menu"
     *
     * @return ModuleBlockInterface[]|ModuleChartInterface[]|ModuleMenuInterface[]|ModuleReportInterface[]|ModuleSidebarInterface[]|ModuleTabInterface[]|ModuleThemeInterface[]
     */
    private static function getActiveModulesByComponent(Tree $tree, $component): array
    {
        $module_names = Database::prepare(
            "SELECT module_name" .
            " FROM `##module`" .
            " JOIN `##module_privacy` USING (module_name)" .
            " WHERE gedcom_id = :tree_id AND component = :component AND status = 'enabled' AND access_level >= :access_level" .
            " ORDER BY CASE component WHEN 'menu' THEN menu_order WHEN 'sidebar' THEN sidebar_order WHEN 'tab' THEN tab_order ELSE 0 END, module_name"
        )->execute([
            'tree_id'      => $tree->getTreeId(),
            'component'    => $component,
            'access_level' => Auth::accessLevel($tree),
        ])->fetchOneColumn();

        $array = [];
        foreach ($module_names as $module_name) {
            $interface = '\Fisharebest\Webtrees\Module\Module' . ucfirst($component) . 'Interface';
            $module    = self::getModuleByName($module_name);
            if ($module instanceof $interface) {
                $array[$module_name] = $module;
            }
        }

        // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
        if ($component !== 'menu' && $component !== 'sidebar' && $component !== 'tab') {
            uasort($array, function (AbstractModule $x, AbstractModule $y) {
                return I18N::strcasecmp($x->getTitle(), $y->getTitle());
            });
        }

        return $array;
    }

    /**
     * Get a list of all modules, enabled or not, which provide a specific function.
     *
     * We cannot currently use auto-loading for modules, as there may be user-defined
     * modules about which the auto-loader knows nothing.
     *
     * @param string $component The type of module, such as "tab", "report" or "menu"
     *
     * @return AbstractModule[]
     */
    public static function getAllModulesByComponent($component): array
    {
        $module_names = Database::prepare(
            "SELECT module_name" .
            " FROM `##module`" .
            " ORDER BY CASE :component WHEN 'menu' THEN menu_order WHEN 'sidebar' THEN sidebar_order WHEN 'tab' THEN tab_order ELSE 0 END, module_name"
        )->execute([
            'component' => $component,
        ])->fetchOneColumn();

        $array = [];
        foreach ($module_names as $module_name) {
            $interface = '\Fisharebest\Webtrees\Module\Module' . ucfirst($component) . 'Interface';
            $module    = self::getModuleByName($module_name);
            if ($module instanceof $interface) {
                $array[$module_name] = $module;
            }
        }

        // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
        if ($component !== 'menu' && $component !== 'sidebar' && $component !== 'tab') {
            uasort($array, function (AbstractModule $x, AbstractModule $y) {
                return I18N::strcasecmp($x->getTitle(), $y->getTitle());
            });
        }

        return $array;
    }

    /**
     * Get a list of modules which (a) provide a block and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleBlockInterface[]
     */
    public static function getActiveBlocks(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'block');
    }

    /**
     * Get a list of modules which (a) provide a chart and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleChartInterface[]
     */
    public static function getActiveCharts(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'chart');
    }

    /**
     * Get a list of modules which (a) provide a chart and (b) we have permission to see.
     *
     * @param Tree   $tree
     * @param string $module
     *
     * @return bool
     */
    public static function isActiveChart(Tree $tree, $module): bool
    {
        return array_key_exists($module, self::getActiveModulesByComponent($tree, 'chart'));
    }

    /**
     * Get a list of module names which have configuration options.
     *
     * @return ModuleConfigInterface[]
     */
    public static function configurableModules(): array
    {
        $modules = array_filter(self::getInstalledModules('disabled'), function (AbstractModule $module): bool {
            return $module instanceof ModuleConfigInterface;
        });

        // Exclude disabled modules
        $enabled_modules = Database::prepare("SELECT module_name, status FROM `##module` WHERE status='enabled'")->fetchOneColumn();

        return array_filter($modules, function (AbstractModule $module) use ($enabled_modules): bool {
            return in_array($module->getName(), $enabled_modules);
        });
    }

    /**
     * Get a list of modules which (a) provide a menu and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleMenuInterface[]
     */
    public static function getActiveMenus(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'menu');
    }

    /**
     * Get a list of modules which (a) provide a report and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleReportInterface[]
     */
    public static function getActiveReports(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'report');
    }

    /**
     * Get a list of modules which (a) provide a sidebar and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleSidebarInterface[]
     */
    public static function getActiveSidebars(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'sidebar');
    }

    /**
     * Get a list of modules which (a) provide a tab and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleTabInterface[]
     */
    public static function getActiveTabs(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'tab');
    }

    /**
     * Get a list of modules which (a) provide a theme and (b) we have permission to see.
     *
     * @param Tree $tree
     *
     * @return ModuleThemeInterface[]
     */
    public static function getActiveThemes(Tree $tree): array
    {
        return self::getActiveModulesByComponent($tree, 'theme');
    }

    /**
     * Find a specified module, if it is currently active.
     *
     * @param string $module_name
     *
     * @return AbstractModule|null
     */
    public static function getModuleByName($module_name)
    {
        $modules = self::getActiveModules();
        if (array_key_exists($module_name, $modules)) {
            return $modules[$module_name];
        }

        return null;
    }

    /**
     * Scan the source code to find a list of all installed modules.
     *
     * During setup, new modules need a status of “enabled”.
     * In admin->modules, new modules need status of “disabled”.
     *
     * @param string $default_status
     *
     * @return AbstractModule[]
     */
    public static function getInstalledModules($default_status): array
    {
        $modules = [];

        foreach (glob(WT_ROOT . WT_MODULES_DIR . '*/module.php') as $file) {
            try {
                $module = self::loadModule($file);
                if ($module instanceof AbstractModule) {
                    $modules[$module->getName()] = $module;
                    Database::prepare("INSERT IGNORE INTO `##module` (module_name, status, menu_order, sidebar_order, tab_order) VALUES (?, ?, ?, ?, ?)")->execute([
                        $module->getName(),
                        $default_status,
                        $module instanceof ModuleMenuInterface ? $module->defaultMenuOrder() : null,
                        $module instanceof ModuleSidebarInterface ? $module->defaultSidebarOrder() : null,
                        $module instanceof ModuleTabInterface ? $module->defaultTabOrder() : null,
                    ]);
                    // Set the default privcy for this module. Note that this also sets it for the
                    // default family tree, with a gedcom_id of -1
                    if ($module instanceof ModuleMenuInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'menu', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleSidebarInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'sidebar', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleTabInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'tab', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleBlockInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'block', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleChartInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'chart', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleReportInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'report', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                    if ($module instanceof ModuleThemeInterface) {
                        Database::prepare(
                            "INSERT IGNORE INTO `##module_privacy` (module_name, gedcom_id, component, access_level)" .
                            " SELECT ?, gedcom_id, 'theme', ?" .
                            " FROM `##gedcom`"
                        )->execute([
                            $module->getName(),
                            $module->defaultAccessLevel(),
                        ]);
                    }
                }
            } catch (\Exception $ex) {
                DebugBar::addThrowable($ex);

                // Old or invalid module?
                Log::addErrorLog($ex->getMessage());
            }
        }

        return $modules;
    }

    /**
     * After creating a new family tree, we need to assign the default access
     * rights for each module.
     *
     * @param int $tree_id
     */
    public static function setDefaultAccess($tree_id)
    {
        foreach (self::getInstalledModules('disabled') as $module) {
            if ($module instanceof ModuleMenuInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'menu', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleSidebarInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'sidebar', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleTabInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'tab', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleBlockInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'block', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleChartInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'chart', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleReportInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'report', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
            if ($module instanceof ModuleThemeInterface) {
                Database::prepare(
                    "INSERT IGNORE `##module_privacy` (module_name, gedcom_id, component, access_level) VALUES (?, ?, 'theme', ?)"
                )->execute([
                    $module->getName(),
                    $tree_id,
                    $module->defaultAccessLevel(),
                ]);
            }
        }
    }
}