123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <?php
- require_once("install_upgrade.lib.php");
- if(function_exists('ini_set'))
- {
- ini_set('memory_limit',-1);
- ini_set('max_execution_time',0);
- }else{
- error_log('Update-db script: could not change memory and time limits',0);
- }
- if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE'))
- {
-
- if (empty ($updateFromConfigFile) || !file_exists($_POST['updatePath'].$updateFromConfigFile) || !in_array(get_config_param('clarolineVersion'), $update_from_version_6))
- {
- echo '<b>'.get_lang('Error').' !</b> Dokeos '.implode('|', $updateFromVersion).' '.get_lang('HasNotBeenFound').'.<br><br>
- '.get_lang('PleasGoBackToStep1').'.
- <p><input type="submit" name="step1" value="< '.get_lang('Back').'"></p>
- </td></tr></table></form></body></html>';
- exit ();
- }
-
-
-
- $_configuration['db_glue'] = get_config_param('dbGlu');
- if ($singleDbForm)
- {
- $_configuration['table_prefix'] = get_config_param('courseTablePrefix');
- $_configuration['main_database'] = get_config_param('mainDbName');
- $_configuration['db_prefix'] = get_config_param('dbNamePrefix');
- }
- $dbScormForm = eregi_replace('[^a-z0-9_-]', '', $dbScormForm);
- if (!empty ($dbPrefixForm) && !ereg('^'.$dbPrefixForm, $dbScormForm))
- {
- $dbScormForm = $dbPrefixForm.$dbScormForm;
- }
- if (empty ($dbScormForm) || $dbScormForm == 'mysql' || $dbScormForm == $dbPrefixForm)
- {
- $dbScormForm = $dbPrefixForm.'scorm';
- }
- $res = @mysql_connect($dbHostForm, $dbUsernameForm, $dbPassForm);
-
- if ($res === false)
- {
-
-
-
- echo get_lang('DBServerDoesntWorkOrLoginPassIsWrong').'.<br /><br />
- '.get_lang('PleaseCheckTheseValues').' :<br /><br />
- <b>'.get_lang('DBHost').'</b> : '.$dbHostForm.'<br />
- <b>'.get_lang('DBLogin').'</b> : '.$dbUsernameForm.'<br />
- <b>'.get_lang('DBPassword').'</b> : '.$dbPassForm.'<br /><br />
- '.get_lang('PleaseGoBackToStep').' '. (defined('DOKEOS_INSTALL') ? '3' : '1').'.
- <p><input type="submit" name="step'. (defined('DOKEOS_INSTALL') ? '3' : '1').'" value="< '.get_lang('Back').'"></p>
- </td></tr></table></form></body></html>';
- exit ();
- }
- $dblistres = mysql_list_dbs();
- $dblist = array();
- while ($row = mysql_fetch_object($dblistres)) {
- $dblist[] = $row->Database;
- }
-
-
-
- $only_test = false;
- $log = 0;
- if (defined('DOKEOS_INSTALL'))
- {
- if ($singleDbForm)
- {
- if(empty($dbStatsForm)) $dbStatsForm = $dbNameForm;
- if(empty($dbScormForm)) $dbScormForm = $dbNameForm;
- if(empty($dbUserForm)) $dbUserForm = $dbNameForm;
- }
-
- include ("../lang/english/create_course.inc.php");
- if ($languageForm != 'english')
- {
-
- include ("../lang/$languageForm/create_course.inc.php");
- }
-
- $m_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-pre.sql','main');
- if(count($m_q_list)>0)
- {
-
-
- if(strlen($dbNameForm)>40){
- error_log('Database name '.$dbNameForm.' is too long, skipping',0);
- }elseif(!in_array($dbNameForm,$dblist)){
- error_log('Database '.$dbNameForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbNameForm);
- foreach($m_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbNameForm,$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In $dbNameForm, executed: $query",0);
- }
- }
- }
- }
- }
-
-
- $s_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-pre.sql','stats');
- if(count($s_q_list)>0)
- {
-
-
- if(strlen($dbStatsForm)>40){
- error_log('Database name '.$dbStatsForm.' is too long, skipping',0);
- }elseif(!in_array($dbStatsForm,$dblist)){
- error_log('Database '.$dbStatsForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbStatsForm);
- foreach($s_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbStatsForm,$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In $dbStatsForm, executed: $query",0);
- }
- }
- }
- }
- }
-
- $u_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-pre.sql','user');
- if(count($u_q_list)>0)
- {
-
-
- if(strlen($dbUserForm)>40){
- error_log('Database name '.$dbUserForm.' is too long, skipping',0);
- }elseif(!in_array($dbUserForm,$dblist)){
- error_log('Database '.$dbUserForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbUserForm);
- foreach($u_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbUserForm,$query)",0);
- error_log("In $dbUserForm, executed: $query",0);
- }else{
- $res = mysql_query($query);
- }
- }
- }
- }
-
- }
-
- $prefix = '';
- if ($singleDbForm)
- {
- $prefix = $_configuration['table_prefix'];
- }
-
- $c_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-pre.sql','course');
- if(count($c_q_list)>0)
- {
-
- if(strlen($dbNameForm)>40){
- error_log('Database name '.$dbNameForm.' is too long, skipping',0);
- }elseif(!in_array($dbNameForm,$dblist)){
- error_log('Database '.$dbNameForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbNameForm);
- $res = mysql_query("SELECT code,db_name,directory,course_language FROM course WHERE target_course_code IS NULL");
- if($res===false){die('Error while querying the courses list in update_db.inc.php');}
- if(mysql_num_rows($res)>0)
- {
- $i=0;
-
- while($row = mysql_fetch_array($res))
- {
- $list[] = $row;
- $i++;
- }
- foreach($list as $row_course)
- {
-
-
- if (!$singleDbForm)
- {
- mysql_select_db($row_course['db_name']);
- }
-
- foreach($c_q_list as $query)
- {
- if ($singleDbForm)
- {
- $query = preg_replace('/^(UPDATE|ALTER TABLE|CREATE TABLE|DROP TABLE|INSERT INTO|DELETE FROM)\s+(\w*)(.*)$/',"$1 $prefix{$row_course['db_name']}_$2$3",$query);
- }
-
- if($only_test)
- {
- error_log("mysql_query(".$row_course['db_name'].",$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In ".$row_course['db_name'].", executed: $query",0);
- }
- }
- }
-
-
-
- $users_list = array();
- $sql_uc = "SELECT u.user_id as ui, u.firstname as fn, u.lastname as ln " .
- " FROM $dbNameForm.user u, $dbNameForm.course_rel_user cu " .
- " WHERE cu.course_code = '".$row_course['code']."' " .
- " AND u.user_id = cu.user_id";
- $res_uc = mysql_query($sql_uc);
- while($user_row = mysql_fetch_array($res_uc))
- {
- $users_list[$user_row['fn'].' '.$user_row['ln']] = $user_row['ui'];
- }
-
-
-
-
-
-
-
-
- $prefix_course = $prefix;
- if($singleDbForm)
- {
- $prefix_course = $prefix.$row_course['db_name']."_";
- }
- $sql_orig = "SELECT * FROM ".$prefix_course."bb_categories";
- $res_orig = mysql_query($sql_orig);
- $order = 1;
- while($row = mysql_fetch_array($res_orig)){
- $myorder = (empty($row['cat_order'])?$order:$row['cat_order']);
- $sql = "INSERT INTO ".$prefix_course."forum_category " .
- "(cat_id,cat_title,cat_comment,cat_order,locked) VALUES " .
- "('".$row['cat_id']."','".mysql_real_escape_string($row['cat_title'])."','','".$myorder."',0)";
- $res = mysql_query($sql);
- $lastcatid = mysql_insert_id();
-
- $order ++;
-
- $sql = "INSERT INTO ".$prefix_course."item_property (tool,insert_user_id,ref,lastedit_type,lastedit_user_id,visibility) " .
- "VALUES ('forum_category','1','$lastcatid','ForumCategoryAdded','1','1')";
- $res = mysql_query($sql);
-
- }
- $sql_orig = "SELECT * FROM ".$prefix_course."bb_forums ORDER BY forum_last_post_id desc";
- $res_orig = mysql_query($sql_orig);
- $order = 1;
- while($row = mysql_fetch_array($res_orig)){
- $sql = "INSERT INTO ".$prefix_course."forum_forum " .
- "(forum_id,forum_category,allow_edit,forum_comment," .
- "forum_title," .
- "forum_last_post, forum_threads," .
- "locked, forum_posts, " .
- "allow_new_threads, forum_order) VALUES " .
- "('".$row['forum_id']."','".$row['cat_id']."',1,'".mysql_real_escape_string($row['forum_desc'])."'," .
- "'".mysql_real_escape_string($row['forum_name'])."'," .
- "'".$row['forum_last_post_id']."','".$row['forum_topics']."'," .
- "0,'".$row['forum_posts']."'," .
- "1,$order)";
-
- $res = mysql_query($sql);
- $lastforumid = mysql_insert_id();
- $order++;
-
-
- $sql = "INSERT INTO ".$prefix_course."item_property (tool,insert_user_id,ref,lastedit_type,lastedit_user_id,visibility) " .
- "VALUES ('forum','1','$lastforumid','ForumAdded','1','1')";
- $res = mysql_query($sql);
-
- }
- $sql_orig = "SELECT * FROM ".$prefix_course."bb_topics";
- $res_orig = mysql_query($sql_orig);
- while($row = mysql_fetch_array($res_orig)){
- $name = $row['prenom'].' '.$row['nom'];
-
- if($row['topic_poster'] <= 1 )
- {
- if(isset($users_list[$name]))
- {
- $poster_id = $users_list[$name];
- }
- else
- {
- $poster_id = $row['topic_poster'];
- }
- }
-
- $time = $row['topic_time'];
- $name = mysql_real_escape_string($name);
- $sql = "INSERT INTO ".$prefix_course."forum_thread " .
- "(thread_id,forum_id,thread_poster_id," .
- "locked,thread_replies,thread_sticky,thread_title," .
- "thread_poster_name, thread_date, thread_last_post," .
- "thread_views) VALUES " .
- "('".$row['topic_id']."','".$row['forum_id']."','".$poster_id."'," .
- "0,'".$row['topic_replies']."',0,'".mysql_real_escape_string($row['topic_title'])."'," .
- "'$name','$time','".$row['topic_last_post_id']."'," .
- "'".$row['topic_views']."')";
-
- $res = mysql_query($sql);
- $lastthreadid = mysql_insert_id();
-
-
- $sql = "INSERT INTO ".$prefix_course."item_property (tool,insert_user_id,ref,lastedit_type,lastedit_user_id,visibility) " .
- "VALUES ('forum_thread','1','$lastthreadid','ForumThreadAdded','1','1')";
- $res = mysql_query($sql);
-
- }
- $sql_orig = "SELECT * FROM ".$prefix_course."bb_posts bp, ".$prefix_course."bb_posts_text bpt WHERE bp.post_id = bpt.post_id";
- $res_orig = mysql_query($sql_orig);
- while($row = mysql_fetch_array($res_orig)){
- $name = $row['prenom'].' '.$row['nom'];
-
- if($row['poster_id'] <= 0 )
- {
- if(isset($users_list[$name]))
- {
- $poster_id = $users_list[$name];
- }
- else
- {
- $poster_id = $row['poster_id'];
- }
- }
-
- $time = $row['post_time'];
- $name = mysql_real_escape_string($name);
- $sql = "INSERT INTO ".$prefix_course."forum_post " .
- "(post_id,forum_id,thread_id," .
- "poster_id,post_parent_id,visible, " .
- "post_title,poster_name, post_text, " .
- "post_date, post_notification) VALUES " .
- "('".$row['post_id']."','".$row['forum_id']."','".$row['topic_id']."'," .
- "'".$poster_id."','".$row['parent_id']."',1," .
- "'".mysql_real_escape_string($row['post_title'])."','$name', '".mysql_real_escape_string($row['post_text'])."'," .
- "'$time',0)";
-
- $res = mysql_query($sql);
- $lastpostid = mysql_insert_id();
-
-
- $sql = "INSERT INTO ".$prefix_course."item_property(tool,insert_user_id,ref,lastedit_type,lastedit_user_id,visibility) " .
- "VALUES ('forum_post','1','$lastpostid','ForumPostAdded','1','1')";
- $res = mysql_query($sql);
-
- }
- unset($users_list);
- $sql_orig = "SELECT id, tutor_id FROM ".$prefix_course."group_info";
- $res_orig = mysql_query($sql_orig);
- $order = 1;
- while($row = mysql_fetch_array($res_orig)){
- $sql = "INSERT INTO ".$prefix_course."group_rel_tutor " .
- "(user_id,group_id) VALUES " .
- "('".$row['tutor_id']."','".$row['id']."')";
- $res = mysql_query($sql);
- }
- }
- }
- }
- }
-
-
- if(!$only_test){
- include('update-db-scorm-1.6.x-1.8.0.inc.php');
- }
- if (defined('DOKEOS_INSTALL'))
- {
- if ($singleDbForm)
- {
- if(empty($dbStatsForm)) $dbStatsForm = $dbNameForm;
- if(empty($dbScormForm)) $dbScormForm = $dbNameForm;
- if(empty($dbUserForm)) $dbUserForm = $dbNameForm;
- }
-
-
- $m_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-post.sql','main');
- if(count($m_q_list)>0)
- {
-
-
- if(strlen($dbNameForm)>40){
- error_log('Database name '.$dbNameForm.' is too long, skipping',0);
- }elseif(!in_array($dbNameForm,$dblist)){
- error_log('Database '.$dbNameForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbNameForm);
- foreach($m_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbNameForm,$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In $dbNameForm, executed: $query",0);
- }
- }
- }
- }
- }
-
-
- $s_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-post.sql','stats');
- if(count($s_q_list)>0)
- {
-
-
- if(strlen($dbStatsForm)>40){
- error_log('Database name '.$dbStatsForm.' is too long, skipping',0);
- }elseif(!in_array($dbNameForm,$dblist)){
- error_log('Database '.$dbNameForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbStatsForm);
- foreach($s_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbStatsForm,$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In $dbStatsForm, executed: $query",0);
- }
- }
- }
- }
- }
-
- $u_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-post.sql','user');
- if(count($u_q_list)>0)
- {
-
-
- if(strlen($dbUserForm)>40){
- error_log('Database name '.$dbUserForm.' is too long, skipping',0);
- }elseif(!in_array($dbUserForm,$dblist)){
- error_log('Database '.$dbUserForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbUserForm);
- foreach($u_q_list as $query){
- if($only_test){
- error_log("mysql_query($dbUserForm,$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In $dbUserForm, executed: $query",0);
- }
- }
- }
- }
- }
-
- }
-
- $c_q_list = get_sql_file_contents('migrate-db-1.6.x-1.8.0-post.sql','course');
- if(count($c_q_list)>0)
- {
-
- if(strlen($dbNameForm)>40){
- error_log('Database name '.$dbNameForm.' is too long, skipping',0);
- }elseif(!in_array($dbNameForm,$dblist)){
- error_log('Database '.$dbNameForm.' was not found, skipping',0);
- }else{
- mysql_select_db($dbNameForm);
- $res = mysql_query("SELECT code,db_name,directory,course_language FROM course WHERE target_course_code IS NULL");
- if($res===false){die('Error while querying the courses list in update_db.inc.php');}
- if(mysql_num_rows($res)>0)
- {
- $i=0;
-
- while($row = mysql_fetch_array($res))
- {
- $list[] = $row;
- $i++;
- }
- foreach($list as $row)
- {
-
-
- $prefix_course = $prefix;
- if($singleDbForm)
- {
- $prefix_course = $prefix.$row['db_name']."_";
- }else{
- mysql_select_db($row['db_name']);
- }
- foreach($c_q_list as $query)
- {
- if ($singleDbForm)
- {
- $query = preg_replace('/^(UPDATE|ALTER TABLE|CREATE TABLE|DROP TABLE|INSERT INTO|DELETE FROM)\s+(\w*)(.*)$/',"$1 $prefix$2$3",$query);
- }
- if($only_test)
- {
- error_log("mysql_query(".$row['db_name'].",$query)",0);
- }else{
- $res = mysql_query($query);
- if($log)
- {
- error_log("In ".$row['db_name'].", executed: $query",0);
- }
- }
- }
- }
- }
- }
- }
-
-
- $table_user_categories = $dbUserForm.'.user_course_category';
-
-
- $sql = 'SELECT * FROM '.$table_user_categories.' ORDER BY user_id, title';
-
- $rs = api_sql_query($sql, __FILE__, __LINE__);
-
- $sort = 0;
- $old_user = 0;
- while($cat = Database :: fetch_array($rs))
- {
- if($old_user != $cat['user_id'])
- {
- $old_user = $cat['user_id'];
- $sort = 0;
- }
- $sort++;
- $sql = 'UPDATE '.$table_user_categories.' SET
- sort = '.intval($sort).'
- WHERE id='.intval($cat['id']);
- api_sql_query($sql, __FILE__, __LINE__);
- }
-
-
- }
- else
- {
- echo 'You are not allowed here !';
- }
- ?>
|