2002-05-12 09:14:01 +02:00
< ? php
2007-05-22 15:40:35 +02:00
/**
2010-09-05 17:24:34 +02:00
* EGroupware - InfoLog - Setup
2007-05-22 15:40:35 +02:00
*
* @ link http :// www . egroupware . org
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de >
* @ package infolog
* @ subpackage setup
2017-10-20 16:31:41 +02:00
* @ copyright ( c ) 2003 - 17 by Ralf Becker < RalfBecker - AT - outdoor - training . de >
2007-05-22 15:40:35 +02:00
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
* @ version $Id $
*/
2002-05-12 09:14:01 +02:00
2017-11-26 10:51:28 +01:00
use EGroupware\Api ;
2008-10-07 14:50:14 +02:00
function infolog_upgrade0_9_11 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameColumn ( 'phpgw_infolog' , 'info_datecreated' , 'info_datemodified' );
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'phpgw_infolog' , 'info_event_id' , array (
'type' => 'int' ,
'precision' => '4' ,
'default' => '0' ,
'nullable' => False
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.001' ;
}
function infolog_upgrade0_9_15_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateTable ( 'phpgw_links' , array (
'fd' => array (
'link_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'link_app1' => array ( 'type' => 'varchar' , 'precision' => '25' , 'nullable' => False ),
'link_id1' => array ( 'type' => 'varchar' , 'precision' => '50' , 'nullable' => False ),
'link_app2' => array ( 'type' => 'varchar' , 'precision' => '25' , 'nullable' => False ),
'link_id2' => array ( 'type' => 'varchar' , 'precision' => '50' , 'nullable' => False ),
'link_remark' => array ( 'type' => 'varchar' , 'precision' => '50' , 'nullable' => True ),
'link_lastmod' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'link_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False )
),
'pk' => array ( 'link_id' ),
'fk' => array (),
'ix' => array (),
'uc' => array ()
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.002' ;
}
function infolog_upgrade0_9_15_002 ()
{
//echo "<p>infolog_upgrade0_9_15_002</p>\n";
$insert = 'INSERT INTO phpgw_links (link_app1,link_id1,link_app2,link_id2,link_remark,link_lastmod,link_owner) ' ;
$select = " SELECT 'infolog',info_id,'addressbook',info_addr_id,info_from,info_datemodified,info_owner FROM phpgw_infolog WHERE info_addr_id != 0 " ;
//echo "<p>copying address-links: $insert.$select</p>\n";
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( $insert . $select );
2014-01-28 11:10:27 +01:00
$select2 = " SELECT 'infolog',info_id,'projects',info_proj_id,'',info_datemodified,info_owner FROM phpgw_infolog WHERE info_proj_id != 0 " ;
2008-10-07 14:50:14 +02:00
//echo "<p>copying projects-links: $insert.$select</p>\n";
2014-01-28 11:10:27 +01:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( $insert . $select2 );
$select3 = " SELECT 'infolog',info_id,'calendar',info_event_id,'',info_datemodified,info_owner FROM phpgw_infolog WHERE info_event_id != 0 " ;
2008-10-07 14:50:14 +02:00
//echo "<p>copying calendar-links: $insert.$select</p>\n";
2014-01-28 11:10:27 +01:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( $insert . $select3 );
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'phpgw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '255' , 'default' => 'task' , 'nullable' => False ),
'info_proj_id' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_des' => array ( 'type' => 'text' , 'nullable' => True ),
'info_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_responsible' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_access' => array ( 'type' => 'varchar' , 'precision' => '10' , 'nullable' => True , 'default' => 'public' ),
'info_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_datemodified' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_startdate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_enddate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_pri' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'normal' ),
'info_time' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_bill_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'done' ),
'info_confirm' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'not' ),
'info_event_id' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array (),
'uc' => array ()
), 'info_addr_id' );
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'phpgw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '255' , 'default' => 'task' , 'nullable' => False ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_des' => array ( 'type' => 'text' , 'nullable' => True ),
'info_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_responsible' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_access' => array ( 'type' => 'varchar' , 'precision' => '10' , 'nullable' => True , 'default' => 'public' ),
'info_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_datemodified' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_startdate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_enddate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_pri' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'normal' ),
'info_time' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_bill_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'done' ),
'info_confirm' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'not' ),
'info_event_id' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array (),
'uc' => array ()
), 'info_proj_id' );
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'phpgw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '255' , 'default' => 'task' , 'nullable' => False ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '64' , 'nullable' => True ),
'info_des' => array ( 'type' => 'text' , 'nullable' => True ),
'info_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_responsible' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_access' => array ( 'type' => 'varchar' , 'precision' => '10' , 'nullable' => True , 'default' => 'public' ),
'info_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_datemodified' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_startdate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_enddate' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_pri' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'normal' ),
'info_time' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_bill_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'nullable' => False ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'done' ),
'info_confirm' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => True , 'default' => 'not' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array (),
'uc' => array ()
), 'info_event_id' );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.003' ;
}
function infolog_upgrade0_9_15_003 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_type' , array (
'type' => 'varchar' ,
'precision' => '10' ,
'nullable' => False ,
'default' => 'task'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_pri' , array (
'type' => 'varchar' ,
'precision' => '10' ,
'nullable' => True ,
'default' => 'normal'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_status' , array (
'type' => 'varchar' ,
'precision' => '10' ,
'nullable' => True ,
'default' => 'done'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_confirm' , array (
'type' => 'varchar' ,
'precision' => '10' ,
'nullable' => True ,
'default' => 'not'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'phpgw_infolog' , 'info_modifier' , array (
'type' => 'int' ,
'precision' => '4' ,
'nullable' => False ,
'default' => '0'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'phpgw_infolog' , 'info_link_id' , array (
'type' => 'int' ,
'precision' => '4' ,
'nullable' => False ,
'default' => '0'
));
// ORDER BY link_app2 DESC gives addressbook the highes precedens, use ASC for projects
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " SELECT link_id,link_id1 FROM phpgw_links WHERE link_app1='infolog' ORDER BY link_app2 DESC " );
$links = array ();
while ( $GLOBALS [ 'egw_setup' ] -> oProc -> next_record ())
2002-05-12 09:14:01 +02:00
{
2008-10-07 14:50:14 +02:00
$links [ $GLOBALS [ 'egw_setup' ] -> oProc -> f ( 1 )] = $GLOBALS [ 'egw_setup' ] -> oProc -> f ( 0 );
2002-05-12 09:14:01 +02:00
}
2008-10-07 14:50:14 +02:00
reset ( $links );
while ( list ( $info_id , $link_id ) = each ( $links ))
2002-09-01 20:59:01 +02:00
{
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE phpgw_infolog SET info_link_id= $link_id WHERE info_id= $info_id " );
2002-09-01 20:59:01 +02:00
}
2002-09-01 22:41:36 +02:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.004' ;
}
2002-09-01 22:41:36 +02:00
2002-10-18 00:02:44 +02:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade0_9_15_004 ()
{
// this update correctes wrong escapes of ' and " in the past
//
$db2 = $GLOBALS [ 'egw_setup' ] -> db ; // we need a 2. result-set
2002-10-18 00:02:44 +02:00
2008-10-07 14:50:14 +02:00
$to_correct = array ( 'info_from' , 'info_subject' , 'info_des' );
foreach ( $to_correct as $col )
2002-10-18 00:02:44 +02:00
{
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " SELECT info_id, $col FROM phpgw_infolog WHERE $col LIKE '% \\ '%' OR $col LIKE '% \" %' " );
while ( $GLOBALS [ 'egw_setup' ] -> oProc -> next_record ())
2002-10-18 00:02:44 +02:00
{
2008-10-07 14:50:14 +02:00
$db2 -> query ( " UPDATE phpgw_infolog SET $col =' " . $db2 -> db_addslashes ( stripslashes ( $GLOBALS [ 'egw_setup' ] -> oProc -> f ( $col ))) .
" ' WHERE info_id= " . $GLOBALS [ 'egw_setup' ] -> oProc -> f ( 'info_id' ));
2002-10-18 00:02:44 +02:00
}
}
2008-04-19 12:20:40 +02:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.005' ;
}
function infolog_upgrade0_9_15_005 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateTable ( 'phpgw_infolog_extra' , array (
'fd' => array (
'info_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_extra_name' => array ( 'type' => 'varchar' , 'precision' => '32' , 'nullable' => False ),
'info_extra_value' => array ( 'type' => 'varchar' , 'precision' => '255' , 'nullable' => False , 'default' => '' )
),
'pk' => array ( 'info_id' , 'info_extra_name' ),
'fk' => array (),
'ix' => array (),
'uc' => array ()
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.006' ;
}
// the following series of updates add some indices, to speedup the selects
function infolog_upgrade0_9_15_006 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> RefreshTable ( 'phpgw_links' , array (
'fd' => array (
'link_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'link_app1' => array ( 'type' => 'varchar' , 'precision' => '25' , 'nullable' => False ),
'link_id1' => array ( 'type' => 'varchar' , 'precision' => '50' , 'nullable' => False ),
'link_app2' => array ( 'type' => 'varchar' , 'precision' => '25' , 'nullable' => False ),
'link_id2' => array ( 'type' => 'varchar' , 'precision' => '50' , 'nullable' => False ),
'link_remark' => array ( 'type' => 'varchar' , 'precision' => '50' ),
'link_lastmod' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'link_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False )
),
'pk' => array ( 'link_id' ),
'fk' => array (),
'ix' => array ( array ( 'link_app1' , 'link_id1' , 'link_lastmod' ), array ( 'link_app2' , 'link_id2' , 'link_lastmod' )),
'uc' => array ()
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '0.9.15.007' ;
}
function infolog_upgrade0_9_15_007 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> RefreshTable ( 'phpgw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '10' , 'nullable' => False , 'default' => 'task' ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '64' ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '64' ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '64' ),
'info_des' => array ( 'type' => 'text' ),
'info_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_responsible' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_access' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'public' ),
'info_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_datemodified' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_startdate' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_enddate' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_pri' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'normal' ),
'info_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_bill_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'done' ),
'info_confirm' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'not' ),
'info_modifier' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_link_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array ( array ( 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' ), array ( 'info_id_parent' , 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' )),
'uc' => array ()
));
// we dont need to do update 0.9.15.008, as UpdateSequenze is called now by RefreshTable
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.0.0' ;
}
function infolog_upgrade0_9_15_008 ()
{
// update the sequenzes for refreshed tables (postgres only)
$GLOBALS [ 'egw_setup' ] -> oProc -> UpdateSequence ( 'phpgw_infolog' , 'info_id' );
$GLOBALS [ 'egw_setup' ] -> oProc -> UpdateSequence ( 'phpgw_links' , 'link_id' );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.0.0' ;
}
function infolog_upgrade1_0_0 ()
{
// longer columns to cope with multibyte charsets
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_type' , array (
'type' => 'varchar' ,
'precision' => '40' ,
'nullable' => False ,
'default' => 'task'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_from' , array (
'type' => 'varchar' ,
'precision' => '255'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_addr' , array (
'type' => 'varchar' ,
'precision' => '255'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_subject' , array (
'type' => 'varchar' ,
'precision' => '255'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_status' , array (
'type' => 'varchar' ,
'precision' => '40' ,
'default' => 'done'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.0.0.001' ;
}
function infolog_upgrade1_0_0_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameColumn ( 'phpgw_infolog' , 'info_time' , 'info_planned_time' );
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameColumn ( 'phpgw_infolog' , 'info_bill_cat' , 'info_used_time' );
// timestamps have to be 8byte ints
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_datemodified' , array (
'type' => 'int' ,
'precision' => '8' ,
'nullable' => False
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_startdate' , array (
'type' => 'int' ,
'precision' => '8' ,
'nullable' => False ,
'default' => '0'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'phpgw_infolog' , 'info_enddate' , array (
'type' => 'int' ,
'precision' => '8' ,
'nullable' => False ,
'default' => '0'
));
// setting numerical priority 3=urgent, 2=high, 1=normal, 0=
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'phpgw_infolog' , 'info_priority' , array (
'type' => 'int' ,
'precision' => '2' ,
'default' => '1'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE phpgw_infolog SET info_priority=(CASE WHEN info_pri='urgent' THEN 3 WHEN info_pri='high' THEN 2 WHEN info_pri='low' THEN 0 ELSE 1 END) " , __LINE__ , __FILE__ );
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'phpgw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '40' , 'nullable' => False , 'default' => 'task' ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '255' ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '255' ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '255' ),
'info_des' => array ( 'type' => 'text' ),
'info_owner' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'info_responsible' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_access' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'public' ),
'info_cat' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_datemodified' => array ( 'type' => 'int' , 'precision' => '8' , 'nullable' => False ),
'info_startdate' => array ( 'type' => 'int' , 'precision' => '8' , 'nullable' => False , 'default' => '0' ),
'info_enddate' => array ( 'type' => 'int' , 'precision' => '8' , 'nullable' => False , 'default' => '0' ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_planned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_used_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '40' , 'default' => 'done' ),
'info_confirm' => array ( 'type' => 'varchar' , 'precision' => '10' , 'default' => 'not' ),
'info_modifier' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_link_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' ),
'info_priority' => array ( 'type' => 'int' , 'precision' => '2' , 'default' => '1' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array ( array ( 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' ), array ( 'info_id_parent' , 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' )),
'uc' => array ()
), 'info_pri' );
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameTable ( 'phpgw_infolog' , 'egw_infolog' );
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameTable ( 'phpgw_infolog_extra' , 'egw_infolog_extra' );
// only rename links table, if it has not been moved into the API and therefor been already renamed by the API update
if ( $GLOBALS [ 'egw_setup' ] -> oProc -> GetTableDefinition ( 'phpgw_links' ))
2003-06-14 15:52:45 +02:00
{
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> RenameTable ( 'phpgw_links' , 'egw_links' );
2003-06-14 15:52:45 +02:00
}
2003-08-28 16:31:11 +02:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.0.1.001' ;
}
function infolog_upgrade1_0_1_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_responsible' , array (
'type' => 'varchar' ,
'precision' => '255' ,
'nullable' => False ,
'default' => '0'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.0.1.002' ;
}
function infolog_upgrade1_0_1_002 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.2' ;
}
function infolog_upgrade1_2 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'pl_id' , array (
'type' => 'int' ,
'precision' => '4'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_price' , array (
'type' => 'float' ,
'precision' => '8'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.2.001' ;
}
function infolog_upgrade1_2_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_percent' , array (
'type' => 'int' ,
'precision' => '2' ,
'default' => '0'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_datecompleted' , array (
'type' => 'int' ,
'precision' => '8'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_location' , array (
'type' => 'varchar' ,
'precision' => '255'
));
// all not explicit named stati have the default percent 0
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_percent=10 WHERE info_status='ongoing' " , __LINE__ , __FILE__ );
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_percent=50 WHERE info_status='will-call' " , __LINE__ , __FILE__ );
for ( $p = 0 ; $p <= 90 ; $p += 10 )
2003-08-28 16:31:11 +02:00
{
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_percent= $p ,info_status=' " . ( ! $p ? 'not-started' : 'ongoing' ) .
" ' WHERE info_status = ' $p %' " , __LINE__ , __FILE__ );
2003-08-28 16:31:11 +02:00
}
2008-10-07 14:50:14 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_datecompleted=info_datemodified,info_percent=100 WHERE info_status IN ('done','billed','100%') " , __LINE__ , __FILE__ );
2004-06-27 11:54:57 +02:00
2008-10-07 14:50:14 +02:00
// remove the percentages from the custom stati, if they exist
$config =& CreateObject ( 'phpgwapi.config' , 'infolog' );
$config -> read_repository ();
if ( is_array ( $config -> config_data [ 'status' ][ 'task' ]))
2004-06-27 11:54:57 +02:00
{
2008-10-07 14:50:14 +02:00
$config -> config_data [ 'status' ][ 'task' ] = array_diff ( $config -> config_data [ 'status' ][ 'task' ],
array ( '0%' , '10%' , '20%' , '30%' , '40%' , '50%' , '60%' , '70%' , '80%' , '90%' , '100%' ));
$config -> save_repository ();
2004-06-27 11:54:57 +02:00
}
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.2.002' ;
}
2004-06-27 11:54:57 +02:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade1_2_002 ()
{
// change the phone-status: call --> not-started, will-call --> ongoing to be able to sync them
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_status='not-started' WHERE info_status='call' " , __LINE__ , __FILE__ );
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_status='ongoing' WHERE info_status='will-call' " , __LINE__ , __FILE__ );
2008-04-19 12:20:40 +02:00
2008-10-07 14:50:14 +02:00
// remove the call and will-call from the custom stati, if they exist
$config =& CreateObject ( 'phpgwapi.config' , 'infolog' );
$config -> read_repository ();
if ( is_array ( $config -> config_data [ 'status' ][ 'phone' ]))
2004-07-03 00:25:26 +02:00
{
2008-10-07 14:50:14 +02:00
unset ( $config -> config_data [ 'status' ][ 'phone' ][ 'call' ]);
unset ( $config -> config_data [ 'status' ][ 'phone' ][ 'will-call' ]);
2004-06-27 11:54:57 +02:00
2008-10-07 14:50:14 +02:00
$config -> save_repository ();
2004-06-27 11:54:57 +02:00
}
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.2.003' ;
}
2004-08-28 16:39:46 +02:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade1_2_003 ()
{
// fix wrong info_responsible='' --> '0'
$GLOBALS [ 'egw_setup' ] -> oProc -> query ( " UPDATE egw_infolog SET info_responsible='0' WHERE info_responsible='' " , __LINE__ , __FILE__ );
2005-10-05 09:50:47 +02:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.2.004' ;
}
2006-02-04 08:49:47 +01:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade1_2_004 ()
{
// column to save if from contains a custom text
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_custom_from' , array (
'type' => 'int' ,
'precision' => '1' ,
));
2006-03-17 21:53:26 +01:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.3.001' ;
}
2006-03-17 21:53:26 +01:00
2008-04-19 12:20:40 +02:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade1_3_001 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.4' ;
}
2006-03-20 20:43:33 +01:00
2008-10-07 14:50:14 +02:00
function infolog_upgrade1_4 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_uid' , array (
'type' => 'varchar' ,
'precision' => '255'
));
$GLOBALS [ 'egw_setup' ] -> db -> query ( " SELECT config_value FROM egw_config WHERE config_app='phpgwapi' AND config_name='install_id' " , __LINE__ , __FILE__ );
$install_id = $GLOBALS [ 'egw_setup' ] -> db -> next_record () ? $GLOBALS [ 'egw_setup' ] -> db -> f ( 0 ) : md5 ( time ());
$GLOBALS [ 'egw_setup' ] -> db -> query ( 'UPDATE egw_infolog SET info_uid=' . $GLOBALS [ 'egw_setup' ] -> db -> concat ( " 'infolog-' " , 'info_id' , " '- $install_id ' " ), __LINE__ , __FILE__ );
2006-03-20 20:43:33 +01:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.5.001' ;
}
2006-09-26 06:50:37 +02:00
2008-10-07 14:50:14 +02:00
/**
* Fix missing info_from values , caused by a ( fixed ) bug
*
* @ return string version
*/
function infolog_upgrade1_5_001 ()
{
foreach ( $GLOBALS [ 'egw_setup' ] -> db -> select ( 'egw_infolog' , 'info_id,info_link_id,org_name,adr_one_locality,n_family,n_given' , array (
'info_from' => '' ,
'info_link_id > 0' ,
), __LINE__ , __FILE__ , false , '' , 'infolog' , 0 ,
" JOIN egw_links ON info_link_id=link_id AND link_app2='addressbook' " .
" JOIN egw_addressbook ON contact_id=link_id2 " ) as $row )
2006-09-26 06:50:37 +02:00
{
2008-10-07 14:50:14 +02:00
$from = ( $row [ 'org_name' ] ? $row [ 'org_name' ] . ', ' . $row [ 'adr_one_locality' ] . ': ' : '' ) .
$row [ 'n_family' ] . ( $row [ 'n_given' ] ? ', ' . $row [ 'n_given' ] : '' );
$GLOBALS [ 'egw_setup' ] -> db -> update ( 'egw_infolog' , array ( 'info_from' => $from ),
array ( 'info_id' => $row [ 'info_id' ]), __LINE__ , __FILE__ , 'infolog' );
2006-09-26 06:50:37 +02:00
}
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.5.002' ;
}
2006-10-04 19:40:33 +02:00
2008-10-07 14:50:14 +02:00
/**
* make customfield names varchar ( 64 ) and values text
*
* @ return string version
*/
function infolog_upgrade1_5_002 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog_extra' , 'info_extra_name' , array (
'type' => 'varchar' ,
'precision' => '64' ,
'nullable' => False
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog_extra' , 'info_extra_value' , array (
'type' => 'text' ,
'nullable' => False
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.5.003' ;
}
2007-04-30 11:10:36 +02:00
2007-08-27 15:04:05 +02:00
2008-10-07 14:50:14 +02:00
/**
* Add re - planned time column
*
* @ return string version
*/
function infolog_upgrade1_5_003 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_replanned_time' , array (
'type' => 'int' ,
'precision' => '4' ,
'nullable' => False ,
'default' => '0'
));
2008-03-31 19:05:12 +02:00
2008-10-07 14:50:14 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.5.004' ;
}
2008-04-19 12:20:40 +02:00
2008-10-07 10:40:46 +02:00
2008-10-07 14:50:14 +02:00
/**
* 1.6 release
*
* @ return string
*/
function infolog_upgrade1_5_004 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.6' ;
}
2010-09-05 17:24:34 +02:00
function infolog_upgrade1_6 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.8' ;
}
2011-03-08 20:18:07 +01:00
function infolog_upgrade1_8 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_cc' , array (
'type' => 'varchar' ,
'precision' => '255'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.001' ;
}
2011-04-11 11:29:39 +02:00
/**
* Add column to store CalDAV name given by client and etag ( not yet used ! )
*/
function infolog_upgrade1_9_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'caldav_name' , array (
'type' => 'varchar' ,
'precision' => '64' ,
'comment' => 'name part of CalDAV URL, if specified by client'
));
$GLOBALS [ 'egw_setup' ] -> db -> query ( 'UPDATE egw_infolog SET caldav_name=' .
$GLOBALS [ 'egw_setup' ] -> db -> concat (
$GLOBALS [ 'egw_setup' ] -> db -> to_varchar ( 'info_id' ), " '.ics' " ), __LINE__ , __FILE__ );
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateIndex ( 'egw_infolog' , 'caldav_name' );
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_etag' , array (
'type' => 'int' ,
'precision' => '4' ,
'default' => '0' ,
'comment' => 'etag, not yet used'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_created' , array (
'type' => 'int' ,
'precision' => '8' ,
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AddColumn ( 'egw_infolog' , 'info_creator' , array (
'type' => 'int' ,
'precision' => '4' ,
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.002' ;
2012-02-18 14:39:56 +01:00
}
/**
* Fix caldav_name of subentries is identical with parent
*/
function infolog_upgrade1_9_002 ()
{
$ids = array ();
foreach ( $GLOBALS [ 'egw_setup' ] -> db -> query ( ' SELECT sub . info_id
FROM egw_infolog sub
JOIN egw_infolog parent ON sub . info_id_parent = parent . info_id
WHERE parent . caldav_name = sub . caldav_name ' , __LINE__ , __FILE__ ) as $row )
{
$ids [] = $row [ 'info_id' ];
}
if ( $ids )
{
$GLOBALS [ 'egw_setup' ] -> db -> query ( 'UPDATE egw_infolog SET caldav_name=' .
$GLOBALS [ 'egw_setup' ] -> db -> concat ( 'info_id' , " '.ics' " ) .
' WHERE info_id IN (' . implode ( ',' , $ids ) . ')' , __LINE__ , __FILE__ );
}
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.003' ;
2013-05-13 11:35:51 +02:00
}
2014-01-28 09:34:23 +01:00
2013-05-13 11:35:51 +02:00
function infolog_upgrade1_9_003 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'caldav_name' , array (
'type' => 'varchar' ,
'precision' => '200' ,
'comment' => 'name part of CalDAV URL, if specified by client'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.004' ;
}
2014-01-28 09:34:23 +01:00
2013-08-26 11:19:47 +02:00
/**
* Enable ajax = true
*/
function infolog_upgrade1_9_004 ()
{
2013-08-26 12:05:45 +02:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.005' ;
2013-08-26 11:19:47 +02:00
}
2014-01-28 09:34:23 +01:00
/**
* Change infolog async job method from infolog . boinfolog . async_notification to infolog_bo
*/
function infolog_upgrade1_9_005 ()
{
$GLOBALS [ 'egw_setup' ] -> db -> query ( " UPDATE egw_async SET async_method='infolog.infolog_bo.async_notification' " .
" WHERE async_method='infolog.boinfolog.async_notification' " , __LINE__ , __FILE__ );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '1.9.006' ;
}
2014-06-24 12:00:50 +02:00
function infolog_upgrade1_9_006 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '14.1' ;
}
2015-03-09 20:33:53 +01:00
function infolog_upgrade14_1 ()
{
// Restore any hiding infologs
2015-03-12 10:44:48 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> query ( " UPDATE egw_infolog SET info_status='not-started' WHERE info_status IS NULL " , __LINE__ , __FILE__ );
2015-03-09 20:33:53 +01:00
2015-03-12 10:44:48 +01:00
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '14.2' ;
2015-07-11 15:56:50 +02:00
}
function infolog_upgrade14_2 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_responsible' , array (
'type' => 'ascii' ,
'meta' => 'account-commasep' ,
'precision' => '255' ,
'nullable' => False ,
'default' => '0' ,
'comment' => 'responsible users or groups (multiple)'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_access' , array (
'type' => 'ascii' ,
'precision' => '10' ,
'default' => 'public' ,
'comment' => 'public or privat'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_confirm' , array (
'type' => 'ascii' ,
'precision' => '10' ,
'default' => 'not'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_uid' , array (
'type' => 'ascii' ,
'precision' => '128' ,
'comment' => 'unique id of the infolog-entry'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'caldav_name' , array (
'type' => 'ascii' ,
'precision' => '128' ,
'comment' => 'name part of CalDAV URL, if specified by client'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '14.2.001' ;
}
function infolog_upgrade14_2_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog_extra' , 'info_extra_value' , array (
'type' => 'varchar' ,
'meta' => 'cfvalue' ,
'precision' => '16384' ,
'nullable' => False
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '14.3' ;
}
2016-04-30 19:05:23 +02:00
function infolog_upgrade14_3 ()
{
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '16.1' ;
}
2016-06-20 14:13:16 +02:00
/**
* Change description column from text ( 64 K ) to longtext ( 4 G )
*
* @ return string
*/
function infolog_upgrade16_1 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_des' , array (
'type' => 'longtext' ,
'comment' => 'desciption of the infolog-entry'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '16.1.001' ;
}
2016-09-11 13:03:54 +02:00
/**
* Add extra attendee table
*
* @ return string
*/
function infolog_upgrade16_1_001 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateTable ( 'egw_infolog_users' , array (
'fd' => array (
'info_res_id' => array ( 'type' => 'auto' , 'nullable' => False , 'comment' => 'auto id' ),
'info_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False ),
'account_id' => array ( 'type' => 'int' , 'meta' => 'account' , 'precision' => '4' , 'nullable' => False , 'comment' => 'attendee' ),
'info_res_deleted' => array ( 'type' => 'bool' ),
'info_res_modified' => array ( 'type' => 'timestamp' , 'meta' => 'timestamp' , 'default' => 'current_timestamp' , 'comment' => 'last modification time' ),
'info_res_modifier' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'comment' => 'modifying user' ),
'info_res_status' => array ( 'type' => 'varchar' , 'precision' => '16' , 'default' => 'NEEDS-ACTION' , 'comment' => 'attendee status' ),
'info_res_attendee' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'attendee email or json object with attr. cn, url, ...' )
),
'pk' => array ( 'info_res_id' ),
'fk' => array (),
'ix' => array ( 'account_id' ),
'uc' => array ( array ( 'info_id' , 'account_id' ))
));
$n = 0 ;
$chunk_size = 500 ;
do
{
$i = 0 ;
foreach ( $GLOBALS [ 'egw_setup' ] -> db -> select ( 'egw_infolog' , 'info_id,info_responsible' ,
" info_responsible<>'0' AND info_responsible<>'' " , __LINE__ , __FILE__ ,
$n * $chunk_size , 'ORDER BY info_id' , 'infolog' , $chunk_size ) as $row )
{
2016-09-12 15:07:31 +02:00
foreach ( array_unique ( explode ( ',' , $row [ 'info_responsible' ])) as $responsible )
2016-09-11 13:03:54 +02:00
{
if ( $responsible )
{
$GLOBALS [ 'egw_setup' ] -> db -> insert ( 'egw_infolog_users' , array (
'info_id' => $row [ 'info_id' ],
'account_id' => $responsible ,
), false , __LINE__ , __FILE__ , 'infolog' );
}
}
++ $i ;
}
++ $n ;
}
while ( $i == $chunk_size );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '16.1.002' ;
}
/**
* Drop egw_infolog . info_responsible and indexes containing it , creating indexes on info_owner , info_id_parent and info_datemodified
*
* @ return string
*/
function infolog_upgrade16_1_002 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> DropIndex ( 'egw_infolog' , array ( 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' ));
$GLOBALS [ 'egw_setup' ] -> oProc -> DropIndex ( 'egw_infolog' , array ( 'info_id_parent' , 'info_owner' , 'info_responsible' , 'info_status' , 'info_startdate' ));
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateIndex ( 'egw_infolog' , 'info_owner' );
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateIndex ( 'egw_infolog' , 'info_id_parent' );
$GLOBALS [ 'egw_setup' ] -> oProc -> CreateIndex ( 'egw_infolog' , 'info_datemodified' );
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'egw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False , 'comment' => 'id of the infolog-entry' ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '40' , 'nullable' => False , 'default' => 'task' , 'comment' => 'infolog-type e.g. task, phone, email or note' ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'text of the primary link' ),
'info_addr' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield for phone-number or email of the primary contact' ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'title of the infolog-entry' ),
'info_des' => array ( 'type' => 'longtext' , 'comment' => 'desciption of the infolog-entry' ),
'info_owner' => array ( 'type' => 'int' , 'meta' => 'account' , 'precision' => '4' , 'nullable' => False , 'comment' => 'owner of the entry, can be account or group' ),
'info_access' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'public' , 'comment' => 'public or privat' ),
'info_cat' => array ( 'type' => 'int' , 'meta' => 'category' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'category id' ),
'info_datemodified' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'comment' => 'timestamp of the last mofification' ),
'info_startdate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the startdate' ),
'info_enddate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the enddate' ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the parent infolog' ),
'info_planned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: planned time' ),
'info_replanned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: replanned time' ),
'info_used_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: used time' ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '40' , 'default' => 'done' , 'comment' => 'status e.g. ongoing, done ...' ),
'info_confirm' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'not' ),
'info_modifier' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'account id of the last modifier' ),
'info_link_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the primary link' ),
'info_priority' => array ( 'type' => 'int' , 'precision' => '2' , 'default' => '1' , 'comment' => '0=Low, 1=Normal, 2=High, 3=Urgent' ),
'pl_id' => array ( 'type' => 'int' , 'precision' => '4' , 'comment' => 'pm-field: id of the pricelist' ),
'info_price' => array ( 'type' => 'float' , 'precision' => '8' , 'comment' => 'pm-field: price-field' ),
'info_percent' => array ( 'type' => 'int' , 'meta' => 'percent' , 'precision' => '2' , 'default' => '0' , 'comment' => 'percentage of completion' ),
'info_datecompleted' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of completion' ),
'info_location' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield location' ),
'info_custom_from' => array ( 'type' => 'int' , 'precision' => '1' , 'comment' => 'tick-box to show infolog_from' ),
'info_uid' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'unique id of the infolog-entry' ),
'info_cc' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield for email-adress to be notified via email of changes' ),
'caldav_name' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'name part of CalDAV URL, if specified by client' ),
'info_etag' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'comment' => 'etag, not yet used' ),
'info_created' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of the creation date' ),
'info_creator' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'comment' => 'account id of the creator' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array ( 'caldav_name' , 'info_owner' , 'info_datemodified' , 'info_id_parent' ),
'uc' => array ()
), 'info_responsible' );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '16.1.003' ;
}
2017-09-13 18:21:50 +02:00
/**
* Copy info_addr contents into info_from , contatinating if there is anything there
* already , then drop the info_addr column .
* @ return string
*/
function infolog_upgrade16_1_003 ()
{
2017-11-26 10:51:28 +01:00
// copy full info_addr to info_des, if length(info_from)+length(info_addr)+2 > 255 and then shorten it to fit
$GLOBALS [ 'egw_setup' ] -> db -> query ( " UPDATE egw_infolog SET info_des= " .
2017-11-30 01:26:23 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> concat ( 'info_addr' , " ' \n \n ' " , 'info_des' ) .
" WHERE LENGTH(info_from)+LENGTH(info_addr) > 253 " , __LINE__ , __FILE__ );
2017-11-26 10:51:28 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> query ( " UPDATE egw_infolog SET info_from = CASE WHEN info_from != '' THEN SUBSTRING( " .
$GLOBALS [ 'egw_setup' ] -> db -> concat ( 'info_from' , " ', ' " , 'info_addr' ) . " FROM 1 FOR 255) ELSE info_addr END " .
2017-11-23 14:47:50 +01:00
" WHERE info_addr != '' " , __LINE__ , __FILE__ );
2017-09-13 18:21:50 +02:00
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'egw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False , 'comment' => 'id of the infolog-entry' ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '40' , 'nullable' => False , 'default' => 'task' , 'comment' => 'infolog-type e.g. task, phone, email or note' ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'text of the primary link' ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'title of the infolog-entry' ),
'info_des' => array ( 'type' => 'longtext' , 'comment' => 'desciption of the infolog-entry' ),
'info_owner' => array ( 'type' => 'int' , 'meta' => 'account' , 'precision' => '4' , 'nullable' => False , 'comment' => 'owner of the entry, can be account or group' ),
'info_access' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'public' , 'comment' => 'public or privat' ),
'info_cat' => array ( 'type' => 'int' , 'meta' => 'category' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'category id' ),
'info_datemodified' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'comment' => 'timestamp of the last mofification' ),
'info_startdate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the startdate' ),
'info_enddate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the enddate' ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the parent infolog' ),
'info_planned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: planned time' ),
'info_replanned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: replanned time' ),
'info_used_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: used time' ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '40' , 'default' => 'done' , 'comment' => 'status e.g. ongoing, done ...' ),
'info_confirm' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'not' ),
'info_modifier' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'account id of the last modifier' ),
'info_link_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the primary link' ),
'info_priority' => array ( 'type' => 'int' , 'precision' => '2' , 'default' => '1' , 'comment' => '0=Low, 1=Normal, 2=High, 3=Urgent' ),
'pl_id' => array ( 'type' => 'int' , 'precision' => '4' , 'comment' => 'pm-field: id of the pricelist' ),
'info_price' => array ( 'type' => 'float' , 'precision' => '8' , 'comment' => 'pm-field: price-field' ),
'info_percent' => array ( 'type' => 'int' , 'meta' => 'percent' , 'precision' => '2' , 'default' => '0' , 'comment' => 'percentage of completion' ),
'info_datecompleted' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of completion' ),
'info_location' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield location' ),
'info_custom_from' => array ( 'type' => 'int' , 'precision' => '1' , 'comment' => 'tick-box to show infolog_from' ),
'info_uid' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'unique id of the infolog-entry' ),
'info_cc' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield for email-adress to be notified via email of changes' ),
'caldav_name' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'name part of CalDAV URL, if specified by client' ),
'info_etag' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'comment' => 'etag, not yet used' ),
'info_created' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of the creation date' ),
'info_creator' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'comment' => 'account id of the creator' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array ( 'caldav_name' , 'info_owner' , 'info_datemodified' , 'info_id_parent' ),
'uc' => array ()
), 'info_addr' );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '16.1.004' ;
2017-10-20 16:31:41 +02:00
}
/**
* Move comma - separated info_cc ( CC email addresses ) to egw_info_users and drop info_cc column
*
* @ return string
*/
function infolog_upgrade16_1_004 ()
{
// make account_id column ascii(32) to store either numeric account_id or md5 of email
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog_users' , 'account_id' , array (
'type' => 'ascii' ,
'precision' => '32' ,
'nullable' => false ,
));
$n = 0 ;
$chunk_size = 500 ;
do
{
$i = 0 ;
foreach ( $GLOBALS [ 'egw_setup' ] -> db -> select ( 'egw_infolog' , 'info_id,info_cc' ,
" info_cc <> '' " , __LINE__ , __FILE__ ,
$n * $chunk_size , 'ORDER BY info_id' , 'infolog' , $chunk_size ) as $row )
{
foreach ( array_unique ( explode ( ',' , $row [ 'info_cc' ])) as $email )
{
if ( $email )
{
$email = trim ( $email );
$matches = null ;
if ( preg_match ( '/<([^>]+@[^>])>$/' , $email , $matches ))
{
$hash = md5 ( strtolower ( $matches [ 1 ]));
}
else
{
$hash = md5 ( strtolower ( $email ));
}
$GLOBALS [ 'egw_setup' ] -> db -> insert ( 'egw_infolog_users' , array (
'info_id' => $row [ 'info_id' ],
'account_id' => $hash ,
'info_res_attendee' => $email ,
), false , __LINE__ , __FILE__ , 'infolog' );
}
}
++ $i ;
}
++ $n ;
}
while ( $i == $chunk_size );
$GLOBALS [ 'egw_setup' ] -> oProc -> DropColumn ( 'egw_infolog' , array (
'fd' => array (
'info_id' => array ( 'type' => 'auto' , 'nullable' => False , 'comment' => 'id of the infolog-entry' ),
'info_type' => array ( 'type' => 'varchar' , 'precision' => '40' , 'nullable' => False , 'default' => 'task' , 'comment' => 'infolog-type e.g. task, phone, email or note' ),
'info_from' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'text of the primary link' ),
'info_subject' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'title of the infolog-entry' ),
'info_des' => array ( 'type' => 'longtext' , 'comment' => 'desciption of the infolog-entry' ),
'info_owner' => array ( 'type' => 'int' , 'meta' => 'account' , 'precision' => '4' , 'nullable' => False , 'comment' => 'owner of the entry, can be account or group' ),
'info_access' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'public' , 'comment' => 'public or privat' ),
'info_cat' => array ( 'type' => 'int' , 'meta' => 'category' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'category id' ),
'info_datemodified' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'comment' => 'timestamp of the last mofification' ),
'info_startdate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the startdate' ),
'info_enddate' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'nullable' => False , 'default' => '0' , 'comment' => 'timestamp of the enddate' ),
'info_id_parent' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the parent infolog' ),
'info_planned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: planned time' ),
'info_replanned_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: replanned time' ),
'info_used_time' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'pm-field: used time' ),
'info_status' => array ( 'type' => 'varchar' , 'precision' => '40' , 'default' => 'done' , 'comment' => 'status e.g. ongoing, done ...' ),
'info_confirm' => array ( 'type' => 'ascii' , 'precision' => '10' , 'default' => 'not' ),
'info_modifier' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'account id of the last modifier' ),
'info_link_id' => array ( 'type' => 'int' , 'precision' => '4' , 'nullable' => False , 'default' => '0' , 'comment' => 'id of the primary link' ),
'info_priority' => array ( 'type' => 'int' , 'precision' => '2' , 'default' => '1' , 'comment' => '0=Low, 1=Normal, 2=High, 3=Urgent' ),
'pl_id' => array ( 'type' => 'int' , 'precision' => '4' , 'comment' => 'pm-field: id of the pricelist' ),
'info_price' => array ( 'type' => 'float' , 'precision' => '8' , 'comment' => 'pm-field: price-field' ),
'info_percent' => array ( 'type' => 'int' , 'meta' => 'percent' , 'precision' => '2' , 'default' => '0' , 'comment' => 'percentage of completion' ),
'info_datecompleted' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of completion' ),
'info_location' => array ( 'type' => 'varchar' , 'precision' => '255' , 'comment' => 'textfield location' ),
'info_custom_from' => array ( 'type' => 'int' , 'precision' => '1' , 'comment' => 'tick-box to show infolog_from' ),
'info_uid' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'unique id of the infolog-entry' ),
'caldav_name' => array ( 'type' => 'ascii' , 'precision' => '128' , 'comment' => 'name part of CalDAV URL, if specified by client' ),
'info_etag' => array ( 'type' => 'int' , 'precision' => '4' , 'default' => '0' , 'comment' => 'etag, not yet used' ),
'info_created' => array ( 'type' => 'int' , 'meta' => 'timestamp' , 'precision' => '8' , 'comment' => 'timestamp of the creation date' ),
'info_creator' => array ( 'type' => 'int' , 'meta' => 'user' , 'precision' => '4' , 'comment' => 'account id of the creator' )
),
'pk' => array ( 'info_id' ),
'fk' => array (),
'ix' => array ( 'caldav_name' , 'info_owner' , 'info_datemodified' , 'info_id_parent' ),
'uc' => array ()
), 'info_cc' );
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '17.1' ;
}
2018-12-04 10:48:59 +01:00
function infolog_upgrade17_1 ()
{
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'info_uid' , array (
'type' => 'ascii' ,
'precision' => '255' ,
'comment' => 'unique id of the infolog-entry'
));
$GLOBALS [ 'egw_setup' ] -> oProc -> AlterColumn ( 'egw_infolog' , 'caldav_name' , array (
'type' => 'ascii' ,
'precision' => '260' ,
'comment' => 'name part of CalDAV URL, if specified by client'
));
return $GLOBALS [ 'setup_info' ][ 'infolog' ][ 'currentver' ] = '17.1.001' ;
}