XoopsModules25x /
xfguestbook
This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include, or for example
via PHP's auto-loading mechanism.
| 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 Xmf\Database\TableLoad; |
||
| 18 | use \Xmf\Request; |
||
| 19 | use XoopsModules\Xfguestbook\{ |
||
| 20 | Helper, |
||
| 21 | Common, |
||
| 22 | Utility |
||
| 23 | }; |
||
| 24 | use Xmf\Yaml; |
||
| 25 | |||
| 26 | require_once dirname(__DIR__, 3) . '/include/cp_header.php'; |
||
| 27 | require dirname(__DIR__) . '/preloads/autoloader.php'; |
||
| 28 | |||
| 29 | $op = Request::getCmd('op', ''); |
||
| 30 | |||
| 31 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 32 | $moduleDirNameUpper = mb_strtoupper($moduleDirName); |
||
| 33 | |||
| 34 | $helper = Helper::getInstance(); |
||
| 35 | // Load language files |
||
| 36 | $helper->loadLanguage('common'); |
||
| 37 | |||
| 38 | switch ($op) { |
||
| 39 | case 'load': |
||
| 40 | if (Request::hasVar('ok', 'REQUEST') && 1 === Request::getInt('ok', 0)) { |
||
| 41 | if (!$GLOBALS['xoopsSecurity']->check()) { |
||
| 42 | redirect_header($helper->url('admin/index.php'), 3, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
||
| 43 | } |
||
| 44 | loadSampleData(); |
||
| 45 | } else { |
||
| 46 | xoops_cp_header(); |
||
| 47 | xoops_confirm(['ok' => 1, 'op' => 'load'], 'index.php', sprintf(constant('CO_' . $moduleDirNameUpper . '_' . 'ADD_SAMPLEDATA_OK')), constant('CO_' . $moduleDirNameUpper . '_' . 'CONFIRM'), true); |
||
| 48 | xoops_cp_footer(); |
||
| 49 | } |
||
| 50 | break; |
||
| 51 | case 'save': |
||
| 52 | saveSampleData(); |
||
| 53 | break; |
||
| 54 | } |
||
| 55 | |||
| 56 | // XMF TableLoad for SAMPLE data |
||
| 57 | |||
| 58 | function loadSampleData() |
||
| 59 | { |
||
| 60 | global $xoopsConfig; |
||
| 61 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 62 | $moduleDirNameUpper = mb_strtoupper($moduleDirName); |
||
| 63 | |||
| 64 | $utility = new Utility(); |
||
| 65 | $configurator = new Common\Configurator(); |
||
| 66 | |||
| 67 | $tables = \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getInfo('tables'); |
||
| 68 | |||
| 69 | $language = 'english/'; |
||
| 70 | if (is_dir(__DIR__ . '/' . $xoopsConfig['language'])) { |
||
| 71 | $language = $xoopsConfig['language'] . '/'; |
||
| 72 | } |
||
| 73 | |||
| 74 | // load module tables |
||
| 75 | foreach ($tables as $table) { |
||
| 76 | $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
||
| 77 | TableLoad::truncateTable($table); |
||
| 78 | TableLoad::loadTableFromArray($table, $tabledata); |
||
| 79 | } |
||
| 80 | |||
| 81 | // load permissions |
||
| 82 | $table = 'group_permission'; |
||
| 83 | $tabledata = Yaml::readWrapped($language . $table . '.yml'); |
||
| 84 | $mid = \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getVar('mid'); |
||
| 85 | loadTableFromArrayWithReplace($table, $tabledata, 'gperm_modid', $mid); |
||
| 86 | |||
| 87 | // --- COPY test folder files --------------- |
||
| 88 | if (is_array($configurator->copyTestFolders) && count($configurator->copyTestFolders) > 0) { |
||
| 89 | // $file = dirname(__DIR__) . '/testdata/images/'; |
||
| 90 | foreach (array_keys($configurator->copyTestFolders) as $i) { |
||
| 91 | $src = $configurator->copyTestFolders[$i][0]; |
||
| 92 | $dest = $configurator->copyTestFolders[$i][1]; |
||
| 93 | $utility::rcopy($src, $dest); |
||
| 94 | } |
||
| 95 | } |
||
| 96 | redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'SAMPLEDATA_SUCCESS')); |
||
| 97 | } |
||
| 98 | |||
| 99 | function saveSampleData() |
||
| 100 | { |
||
| 101 | global $xoopsConfig; |
||
| 102 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 103 | $moduleDirNameUpper = mb_strtoupper($moduleDirName); |
||
| 104 | |||
| 105 | $tables = \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getInfo('tables'); |
||
| 106 | |||
| 107 | $languageFolder = __DIR__ . '/' . $xoopsConfig['language']; |
||
| 108 | if (!file_exists($languageFolder . '/')) { |
||
| 109 | Utility::createFolder($languageFolder . '/'); |
||
| 110 | } |
||
| 111 | $exportFolder = $languageFolder . '/Exports-' . date('Y-m-d-H-i-s') . '/'; |
||
| 112 | Utility::createFolder($exportFolder); |
||
| 113 | |||
| 114 | // save module tables |
||
| 115 | foreach ($tables as $table) { |
||
| 116 | TableLoad::saveTableToYamlFile($table, $exportFolder . $table . '.yml'); |
||
| 117 | } |
||
| 118 | |||
| 119 | // save permissions |
||
| 120 | $criteria = new \CriteriaCompo(); |
||
| 121 | $criteria->add(new \Criteria('gperm_modid', \Xmf\Module\Helper::getHelper($moduleDirName)->getModule()->getVar('mid'))); |
||
| 122 | $skipColumns[] = 'gperm_id'; |
||
|
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
Loading history...
|
|||
| 123 | TableLoad::saveTableToYamlFile('group_permission', $exportFolder . 'group_permission.yml', $criteria, $skipColumns); |
||
| 124 | unset($criteria); |
||
| 125 | |||
| 126 | redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'SAMPLEDATA_SUCCESS')); |
||
| 127 | } |
||
| 128 | |||
| 129 | function exportSchema() |
||
| 130 | { |
||
| 131 | $moduleDirName = basename(dirname(__DIR__)); |
||
| 132 | $moduleDirNameUpper = mb_strtoupper($moduleDirName); |
||
| 133 | |||
| 134 | try { |
||
| 135 | // TODO set exportSchema |
||
| 136 | // $migrate = new Migrate($moduleDirName); |
||
| 137 | // $migrate->saveCurrentSchema(); |
||
| 138 | // |
||
| 139 | // redirect_header('../admin/index.php', 1, constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_SUCCESS')); |
||
| 140 | } catch (\Throwable $e) { |
||
| 141 | exit(constant('CO_' . $moduleDirNameUpper . '_' . 'EXPORT_SCHEMA_ERROR')); |
||
| 142 | } |
||
| 143 | } |
||
| 144 | |||
| 145 | /** |
||
| 146 | * loadTableFromArrayWithReplace |
||
| 147 | * |
||
| 148 | * @param string $table value with should be used insead of original value of $search |
||
| 149 | * |
||
| 150 | * @param array $data array of rows to insert |
||
| 151 | * Each element of the outer array represents a single table row. |
||
| 152 | * Each row is an associative array in 'column' => 'value' format. |
||
| 153 | * @param string $search name of column for which the value should be replaced |
||
| 154 | * @param $replace |
||
| 155 | * @return int number of rows inserted |
||
| 156 | */ |
||
| 157 | function loadTableFromArrayWithReplace($table, $data, $search, $replace) |
||
| 158 | { |
||
| 159 | /** @var \XoopsMySQLDatabase $db */ |
||
| 160 | $db = \XoopsDatabaseFactory::getDatabaseConnection(); |
||
| 161 | |||
| 162 | $prefixedTable = $db->prefix($table); |
||
| 163 | $count = 0; |
||
| 164 | |||
| 165 | $sql = 'DELETE FROM ' . $prefixedTable . ' WHERE `' . $search . '`=' . $db->quote($replace); |
||
| 166 | |||
| 167 | $result = $db->queryF($sql); |
||
| 168 | |||
| 169 | foreach ($data as $row) { |
||
| 170 | $insertInto = 'INSERT INTO ' . $prefixedTable . ' ('; |
||
| 171 | $valueClause = ' VALUES ('; |
||
| 172 | $first = true; |
||
| 173 | foreach ($row as $column => $value) { |
||
| 174 | if ($first) { |
||
| 175 | $first = false; |
||
| 176 | } else { |
||
| 177 | $insertInto .= ', '; |
||
| 178 | $valueClause .= ', '; |
||
| 179 | } |
||
| 180 | |||
| 181 | $insertInto .= $column; |
||
| 182 | if ($search === $column) { |
||
| 183 | $valueClause .= $db->quote($replace); |
||
| 184 | } else { |
||
| 185 | $valueClause .= $db->quote($value); |
||
| 186 | } |
||
| 187 | } |
||
| 188 | |||
| 189 | $sql = $insertInto . ') ' . $valueClause . ')'; |
||
| 190 | |||
| 191 | $result = $db->queryF($sql); |
||
| 192 | if (false !== $result) { |
||
| 193 | ++$count; |
||
| 194 | } |
||
| 195 | } |
||
| 196 | |||
| 197 | return $count; |
||
| 198 | } |
||
| 199 |