mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
78 lines
3.5 KiB
PHP
78 lines
3.5 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
/*
|
|
* LimeSurvey
|
|
* Copyright (C) 2007-2011 The LimeSurvey Project Team / Carsten Schmitz
|
|
* All rights reserved.
|
|
* License: GNU/GPL License v2 or later, see LICENSE.php
|
|
* LimeSurvey 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.
|
|
* See COPYRIGHT.php for copyright notices and details.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* This functions checks if the databaseversion in the settings table is the same one as required
|
|
* If not then the necessary upgrade procedures are run
|
|
*/
|
|
function CheckForDBUpgrades($subaction = null)
|
|
{
|
|
$clang = Yii::app()->getController()->lang;
|
|
$dbversionnumber = Yii::app()->getConfig('dbversionnumber');
|
|
$currentDBVersion=GetGlobalSetting('DBVersion');
|
|
$usertemplaterootdir = Yii::app()->getConfig('usertemplaterootdir');
|
|
$standardtemplaterootdir = Yii::app()->getConfig('standardtemplaterootdir');
|
|
if (intval($dbversionnumber)>intval($currentDBVersion))
|
|
{
|
|
if(isset($subaction) && $subaction=="yes")
|
|
{
|
|
echo Yii::app()->getController()->_getAdminHeader();
|
|
echo "<div style='width:90%; padding:1% 5%;background-color:#eee;'>";
|
|
Yii::app()->loadHelper('update/updatedb');
|
|
$result=db_upgrade_all(intval($currentDBVersion));
|
|
if ($result)
|
|
{
|
|
$data = "<br />".sprintf($clang->gT("Database has been successfully upgraded to version %s"),$dbversionnumber);
|
|
$data .= "<br /><a href='".Yii::app()->getController()->createUrl("/admin")."'>".$clang->gT("Back to main menu")."</a></div>";
|
|
}
|
|
else
|
|
{
|
|
$data = "<p><a href='".Yii::app()->getController()->createUrl("/admin/update/sa/db")."'>".$clang->gT("Please fix this error in your database and try again")."</a></p></div>";
|
|
}
|
|
return $data;
|
|
}
|
|
else {
|
|
return ShowDBUpgradeNotice();
|
|
}
|
|
}
|
|
}
|
|
|
|
function ShowDBUpgradeNotice() {
|
|
//$error=false;
|
|
$clang = Yii::app()->lang;
|
|
//$sitename = Yii::app()->getConfig('sitename');
|
|
return '<div class="messagebox">'
|
|
."<div class='header'>".$clang->gT('Database upgrade').'</div><p>'
|
|
.$clang->gT('Please verify the following information before continuing with the database upgrade:').'</p><ul>'
|
|
."<li><b>" .$clang->gT('Database type') . ":</b> " . Yii::app()->db->getDriverName() . "</li>"
|
|
."<li><b>" .$clang->gT('Database name') . ":</b> " . getDBConnectionStringProperty('dbname') . "</li>"
|
|
."<li><b>" .$clang->gT('Table prefix') . ":</b> " . Yii::app()->db->tablePrefix . "</li>"
|
|
."<li><b>" .$clang->gT('Site name') . ":</b> " . Yii::app()->getConfig("sitename") . "</li>"
|
|
."<li><b>" .$clang->gT('Root URL') . ":</b> " . Yii::app()->getController()->createUrl('') . "</li>"
|
|
.'</ul><br/>'
|
|
."<p>"
|
|
."<a href='".Yii::app()->getController()->createUrl("admin/update/sa/db/continue/yes")."'>" . $clang->gT('Click here to continue') . "</a>"
|
|
."</p>"
|
|
.'</div>';
|
|
}
|
|
|
|
function getDBConnectionStringProperty($sProperty)
|
|
{
|
|
// Yii doesn't give us a good way to get the database name
|
|
preg_match('/'.$sProperty.'=([^;]*)/', Yii::app()->db->getSchema()->getDbConnection()->connectionString, $aMatches);
|
|
if ( count($aMatches) === 0 ) {
|
|
return null;
|
|
}
|
|
return $aMatches[1];
|
|
}
|