PHP Classes

File: include/update.php

Recommend this page to a friend!
  Classes of Goffy G   XOOPS Transifex   include/update.php   Download  
File: include/update.php
Role: Example script
Content type: text/plain
Description: Example script
Class: XOOPS Transifex
Manage project text translations with Transifex
Author: By
Last change:
Date: 3 years ago
Size: 11,617 bytes
 

Contents

Class file image Download
<?php declare(strict_types=1); /* You may not change or alter any portion of this comment or credits of supporting developers from this source code or any supporting source code which is considered copyrighted (c) material of the original comment or credit authors. 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. */ /** * Wgtransifex module for xoops * * @param mixed $module * @param null|mixed $prev_version * @since 1.0 * @min_xoops 2.5.9 * @author Wedega - Email:<webmaster@wedega.com> - Website:<https://wedega.com> * @version $Id: 1.0 update.php 1 Mon 2018-03-19 10:04:53Z XOOPS Project (www.xoops.org) $ * @copyright module for xoops * @license GPL 2.0 or later */ /** * @param $module * @param null $prev_version * * @return bool|null */ function xoops_module_update_wgtransifex($module, $prev_version = null) { $ret = null; if ($prev_version < 10) { update_wgtransifex_v10($module); } wgtransifex_check_db($module); //check upload directory require_once __DIR__ . '/install.php'; $ret = xoops_module_install_wgtransifex($module); $errors = $module->getErrors(); if (!empty($errors)) { print_r($errors); } return $ret; } // irmtfan bug fix: solve templates duplicate issue /** * @param $module * * @return bool */ function update_wgtransifex_v10($module) { global $xoopsDB; $result = $xoopsDB->query( 'SELECT t1.tpl_id FROM ' . $xoopsDB->prefix('tplfile') . ' t1, ' . $xoopsDB->prefix('tplfile') . ' t2 WHERE t1.tpl_refid = t2.tpl_refid AND t1.tpl_module = t2.tpl_module AND t1.tpl_tplset=t2.tpl_tplset AND t1.tpl_file = t2.tpl_file AND t1.tpl_type = t2.tpl_type AND t1.tpl_id > t2.tpl_id' ); $tplids = []; while (false !== (list($tplid) = $xoopsDB->fetchRow($result))) { $tplids[] = $tplid; } if (\count($tplids) > 0) { /** @var \XoopsTplfileHandler $tplfileHandler */ $tplfileHandler = \xoops_getHandler('tplfile'); $duplicate_files = $tplfileHandler->getObjects(new \Criteria('tpl_id', '(' . \implode(',', $tplids) . ')', 'IN')); if (\count($duplicate_files) > 0) { foreach (\array_keys($duplicate_files) as $i) { $tplfileHandler->delete($duplicate_files[$i]); } } } $sql = 'SHOW INDEX FROM ' . $xoopsDB->prefix('tplfile') . " WHERE KEY_NAME = 'tpl_refid_module_set_file_type'"; if (!$result = $xoopsDB->queryF($sql)) { xoops_error($xoopsDB->error() . '<br>' . $sql); return false; } $ret = []; while (false !== ($myrow = $xoopsDB->fetchArray($result))) { $ret[] = $myrow; } if (!empty($ret)) { $module->setErrors("'tpl_refid_module_set_file_type' unique index is exist. Note: check 'tplfile' table to be sure this index is UNIQUE because XOOPS CORE need it."); return true; } $sql = 'ALTER TABLE ' . $xoopsDB->prefix('tplfile') . ' ADD UNIQUE tpl_refid_module_set_file_type ( tpl_refid, tpl_module, tpl_tplset, tpl_file, tpl_type )'; if (!$result = $xoopsDB->queryF($sql)) { xoops_error($xoopsDB->error() . '<br>' . $sql); $module->setErrors("'tpl_refid_module_set_file_type' unique index is not added to 'tplfile' table. Warning: do not use XOOPS until you add this unique index."); return false; } return true; } // irmtfan bug fix: solve templates duplicate issue /** * @param $module * * @return bool */ function wgtransifex_check_db($module) { $ret = true; //insert here code for database check // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_packages'); $field = 'pkg_logo'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` VARCHAR(255) NOT NULL DEFAULT '' AFTER `pkg_zip`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_projects'); $field = 'pro_archived'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `pro_name`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_projects'); $field = 'pro_teams'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` TEXT NULL AFTER `pro_name`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_projects'); $field = 'pro_last_updated'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(10) NOT NULL DEFAULT '0' AFTER `pro_name`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_projects'); $field = 'pro_txresources'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(10) NOT NULL DEFAULT '0' AFTER `pro_name`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_languages'); $field = 'lang_primary'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `lang_flag`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_languages'); $field = 'lang_online'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `lang_flag`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_settings'); $field = 'set_request'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `set_primary`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // create new table $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_requests'); $check = $GLOBALS['xoopsDB']->queryF("SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA=DATABASE() AND TABLE_NAME='$table'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "CREATE TABLE `$table` ( `req_id` INT(8) UNSIGNED NOT NULL AUTO_INCREMENT, `req_pro_id` INT(0) NOT NULL DEFAULT '0', `req_lang_id` INT(0) NOT NULL DEFAULT '0', `req_info` VARCHAR(255) NOT NULL DEFAULT '', `req_date` INT(11) NOT NULL DEFAULT '0', `req_submitter` INT(10) NOT NULL DEFAULT '0', `req_status` INT(1) NOT NULL DEFAULT '0', `req_statusdate` INT(11) NOT NULL DEFAULT '0', `req_statusuid` INT(10) NOT NULL DEFAULT '0', PRIMARY KEY (`req_id`) ) ENGINE=InnoDB;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when creating table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_requests'); $field = 'req_info'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` VARCHAR(255) NOT NULL DEFAULT '' AFTER `req_lang_id`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } // update table (add new field) $table = $GLOBALS['xoopsDB']->prefix('wgtransifex_projects'); $field = 'pro_type'; $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); if (!$numRows) { $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `pro_status`;"; if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); $module->setErrors("Error when adding '$field' to table '$table'."); $ret = false; } } return $ret; }