Passed
Push — master ( f06c90...84997c )
by Michael
03:06 queued 11s
created

exportSchema()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 13
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 1
nop 0
dl 0
loc 13
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * You may not change or alter any portion of this comment or credits
4
 * of supporting developers from this source code or any supporting source code
5
 * which is considered copyrighted (c) material of the original comment or credit authors.
6
 * This program is distributed in the hope that it will be useful,
7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9
 *
10
 * @copyright       XOOPS Project (https://xoops.org)
11
 * @license         GNU GPL 2 (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
12
 * @package
13
 * @since           2.5.9
14
 * @author          Michael Beck (aka Mamba)
15
 */
16
17
use XoopsModules\Moduleinstaller;
18
use XoopsModules\Moduleinstaller\Common;
19
use XoopsModules\Moduleinstaller\Utility;
20
21
require_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php';
22
require dirname(__DIR__) . '/preloads/autoloader.php';
23
24
$op = \Xmf\Request::getCmd('op', '');
25
26
$moduleDirName      = basename(dirname(__DIR__));
27
$moduleDirNameUpper = mb_strtoupper($moduleDirName);
28
29
$helper = Moduleinstaller\Helper::getInstance();
30
// Load language files
31
$helper->loadLanguage('common');
32
33
switch ($op) {
34
    case 'load':
35
        if (\Xmf\Request::hasVar('ok', 'REQUEST') && 1 == $_REQUEST['ok']) {
36
            if (!$GLOBALS['xoopsSecurity']->check()) {
37
                redirect_header('../admin/index.php', 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors()));
38
            }
39
            loadSampleData();
40
        } else {
41
            xoops_cp_header();
42
            xoops_confirm(['ok' => 1, 'op' => 'load'], 'index.php', sprintf(constant('CO_' . $moduleDirNameUpper . '_' . 'ADD_SAMPLEDATA_OK')), constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true);
43
            xoops_cp_footer();
44
        }
45
        break;
46
    case 'save':
47
        saveSampleData();
48
        break;
49
}
50
51
// XMF TableLoad for SAMPLE data
52
53
function loadSampleData()
54
{
55
    global $xoopsConfig;
56
    $moduleDirName      = basename(dirname(__DIR__));
57
    $moduleDirNameUpper = mb_strtoupper($moduleDirName);
58
59
    $utility      = new Moduleinstaller\Utility();
60
    $configurator = new Common\Configurator();
61
62
    $tables = \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getInfo('tables');
63
64
    $language = 'english/';
65
    if (is_dir(__DIR__ . '/' . $xoopsConfig['language'])) {
66
        $language = $xoopsConfig['language'] . '/';
67
    }
68
69
    foreach ($tables as $table) {
70
        $tabledata = \Xmf\Yaml::readWrapped($language . $table . '.yml');
71
        \Xmf\Database\TableLoad::truncateTable($table);
72
        \Xmf\Database\TableLoad::loadTableFromArray($table, $tabledata);
73
    }
74
75
    //  ---  COPY test folder files ---------------
76
    if (is_array($configurator->copyTestFolders) && count($configurator->copyTestFolders) > 0) {
77
        //        $file =  dirname(__DIR__) . '/testdata/images/';
78
        foreach (array_keys($configurator->copyTestFolders) as $i) {
79
            $src  = $configurator->copyTestFolders[$i][0];
80
            $dest = $configurator->copyTestFolders[$i][1];
81
            $utility::rcopy($src, $dest);
82
        }
83
    }
84
    redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'SAMPLEDATA_SUCCESS'));
85
}
86
87
function saveSampleData()
88
{
89
    global $xoopsConfig;
90
    $moduleDirName      = basename(dirname(__DIR__));
91
    $moduleDirNameUpper = mb_strtoupper($moduleDirName);
92
93
    $tables = \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getInfo('tables');
94
95
    $languageFolder = __DIR__ . '/' . $xoopsConfig['language'];
96
    if (!file_exists($languageFolder . '/')) {
97
        Utility::createFolder($languageFolder . '/');
98
    }
99
    $exportFolder = $languageFolder . '/Exports-' . date('Y-m-d-H-i-s') . '/';
100
    Utility::createFolder($exportFolder);
101
102
    foreach ($tables as $table) {
103
        \Xmf\Database\TableLoad::saveTableToYamlFile($table, $exportFolder . $table . '.yml');
104
    }
105
106
    redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'SAMPLEDATA_SUCCESS'));
107
}
108
109
function exportSchema()
110
{
111
    $moduleDirName      = basename(dirname(__DIR__));
112
    $moduleDirNameUpper = mb_strtoupper($moduleDirName);
0 ignored issues
show
Unused Code introduced by
The assignment to $moduleDirNameUpper is dead and can be removed.
Loading history...
113
114
    try {
115
        // TODO set exportSchema
116
        //        $migrate = new Moduleinstaller\Migrate($moduleDirName);
117
        //        $migrate->saveCurrentSchema();
118
        //
119
        //        redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_SUCCESS'));
120
    } catch (\Exception $e) {
0 ignored issues
show
Unused Code introduced by
catch (\Exception $e) is not reachable.

This check looks for unreachable code. It uses sophisticated control flow analysis techniques to find statements which will never be executed.

Unreachable code is most often the result of return, die or exit statements that have been added for debug purposes.

function fx() {
    try {
        doSomething();
        return true;
    }
    catch (\Exception $e) {
        return false;
    }

    return false;
}

In the above example, the last return false will never be executed, because a return statement has already been met in every possible execution path.

Loading history...
121
        exit(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_ERROR'));
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
122
    }
123
}
124