2001-07-30 17:59:25 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2003-11-13 13:25:56 +01:00
|
|
|
* eGroupWare - Setup *
|
|
|
|
* http://www.egroupware.org *
|
2001-07-30 17:59:25 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2001-12-18 03:25:55 +01:00
|
|
|
$phpgw_info = array();
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
2001-07-30 17:59:25 +02:00
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'currentapp' => 'home',
|
|
|
|
'noapi' => True
|
|
|
|
);
|
2003-11-13 13:25:56 +01:00
|
|
|
include('./inc/functions.inc.php');
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2002-03-03 22:53:00 +01:00
|
|
|
/* Check header and authentication */
|
2003-11-13 13:25:56 +01:00
|
|
|
if(!$GLOBALS['phpgw_setup']->auth('Config'))
|
2001-12-18 03:20:31 +01:00
|
|
|
{
|
|
|
|
Header('Location: index.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
// Does not return unless user is authorized
|
|
|
|
|
2002-03-03 22:53:00 +01:00
|
|
|
$tpl_root = $GLOBALS['phpgw_setup']->html->setup_tpl_dir('setup');
|
2002-08-12 01:54:58 +02:00
|
|
|
$setup_tpl = CreateObject('setup.Template',$tpl_root);
|
2001-08-21 20:48:50 +02:00
|
|
|
|
2002-04-29 21:49:24 +02:00
|
|
|
$download = get_var('download',Array('GET','POST'));
|
|
|
|
$submit = get_var('submit',Array('GET','POST'));
|
|
|
|
$showall = get_var('showall',Array('GET','POST'));
|
|
|
|
$appname = get_var('appname',Array('GET','POST'));
|
2003-11-13 13:25:56 +01:00
|
|
|
if($download)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$setup_tpl->set_file(array(
|
|
|
|
'sqlarr' => 'arraydl.tpl'
|
2002-01-08 03:12:43 +01:00
|
|
|
));
|
2001-07-30 17:59:25 +02:00
|
|
|
$setup_tpl->set_var('idstring',"/* \$Id" . ": tables_current.inc.php" . ",v 1.0" . " 2001/05/28 08:42:04 username " . "Exp \$ */");
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlheader','sqlheader');
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlbody','sqlbody');
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlfooter','sqlfooter');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$setup_tpl->set_file(array(
|
|
|
|
'T_head' => 'head.tpl',
|
|
|
|
'T_footer' => 'footer.tpl',
|
|
|
|
'T_alert_msg' => 'msg_alert_msg.tpl',
|
|
|
|
'T_login_main' => 'login_main.tpl',
|
|
|
|
'T_login_stage_header' => 'login_stage_header.tpl',
|
|
|
|
'T_setup_main' => 'schema.tpl',
|
|
|
|
'applist' => 'applist.tpl',
|
|
|
|
'sqlarr' => 'sqltoarray.tpl',
|
|
|
|
'T_head' => 'head.tpl',
|
|
|
|
'T_footer' => 'footer.tpl'
|
|
|
|
));
|
|
|
|
$setup_tpl->set_block('T_login_stage_header','B_multi_domain','V_multi_domain');
|
|
|
|
$setup_tpl->set_block('T_login_stage_header','B_single_domain','V_single_domain');
|
|
|
|
$setup_tpl->set_block('T_setup_main','header','header');
|
|
|
|
$setup_tpl->set_block('applist','appheader','appheader');
|
|
|
|
$setup_tpl->set_block('applist','appitem','appitem');
|
|
|
|
$setup_tpl->set_block('applist','appfooter','appfooter');
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlheader','sqlheader');
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlbody','sqlbody');
|
|
|
|
$setup_tpl->set_block('sqlarr','sqlfooter','sqlfooter');
|
|
|
|
}
|
|
|
|
|
2002-03-03 22:53:00 +01:00
|
|
|
$GLOBALS['phpgw_setup']->loaddb();
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
function parse_vars($table,$term)
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('table', $table);
|
|
|
|
$GLOBALS['setup_tpl']->set_var('term',$term);
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2002-03-03 22:53:00 +01:00
|
|
|
list($arr,$pk,$fk,$ix,$uc) = $GLOBALS['phpgw_setup']->process->sql_to_array($table);
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('arr',$arr);
|
2003-11-13 13:25:56 +01:00
|
|
|
if(count($pk) > 1)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('pks', "'".implode("','",$pk)."'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
elseif($pk && !empty($pk))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('pks', "'" . $pk[0] . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('pks','');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if(count($fk) > 1)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('fks', "'" . implode("','",$fk) . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
elseif($fk && !empty($fk))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('fks', "'" . $fk[0] . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('fks','');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if(count($ix) > 1)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ixs', "'" . implode("','",$ix) . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
elseif($ix && !empty($ix))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ixs', "'" . $ix[0] . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ixs','');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if(count($uc) > 1)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ucs', "'" . implode("','",$uc) . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
elseif($uc && !empty($uc))
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ucs', "'" . $uc[0] . "'");
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('ucs','');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function printout($template)
|
|
|
|
{
|
2003-11-13 13:25:56 +01:00
|
|
|
$download = get_var('download',array('POST','GET'));
|
|
|
|
$appname = get_var('appname',array('POST','GET'));
|
|
|
|
$table = get_var('table','GLOBALS');
|
|
|
|
$showall = get_var('showall',array('POST','GET'));
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if($download)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('appname',$appname);
|
|
|
|
$string = $GLOBALS['setup_tpl']->parse('out',$template);
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-21 16:01:43 +01:00
|
|
|
$GLOBALS['setup_tpl']->set_var('appname',$appname);
|
|
|
|
$GLOBALS['setup_tpl']->set_var('table',$table);
|
|
|
|
$GLOBALS['setup_tpl']->set_var('lang_download','Download');
|
|
|
|
$GLOBALS['setup_tpl']->set_var('showall',$showall);
|
|
|
|
$GLOBALS['setup_tpl']->set_var('action_url','sqltoarray.php');
|
|
|
|
$GLOBALS['setup_tpl']->pfp('out',$template);
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
return $string;
|
|
|
|
}
|
|
|
|
|
|
|
|
function download_handler($dlstring,$fn='tables_current.inc.php')
|
|
|
|
{
|
|
|
|
$b = CreateObject('phpgwapi.browser');
|
|
|
|
$b->content_header($fn);
|
|
|
|
echo $dlstring;
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if($submit || $showall)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$dlstring = '';
|
2001-08-25 22:23:50 +02:00
|
|
|
$term = '';
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if(!$download)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2002-03-03 22:53:00 +01:00
|
|
|
$GLOBALS['phpgw_setup']->html->show_header();
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
if($showall)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$table = $appname = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!$table && !$appname)
|
|
|
|
{
|
|
|
|
$term = ',';
|
|
|
|
$dlstring .= printout('sqlheader');
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
copyobj($GLOBALS['phpgw_setup']->db,$db);
|
2001-08-25 22:23:50 +02:00
|
|
|
$db->query('SHOW TABLES');
|
2003-11-13 13:25:56 +01:00
|
|
|
$i = 0;
|
|
|
|
$tbls = $db->num_rows();
|
2001-07-30 17:59:25 +02:00
|
|
|
while($db->next_record())
|
|
|
|
{
|
2003-11-13 13:25:56 +01:00
|
|
|
$i++;
|
|
|
|
if($i == $tbls)
|
|
|
|
{
|
|
|
|
$term = '';
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
$table = $db->f(0);
|
|
|
|
parse_vars($table,$term);
|
|
|
|
$dlstring .= printout('sqlbody');
|
|
|
|
}
|
|
|
|
$dlstring .= printout('sqlfooter');
|
|
|
|
|
|
|
|
}
|
|
|
|
elseif($appname)
|
|
|
|
{
|
|
|
|
$dlstring .= printout('sqlheader');
|
|
|
|
$term = ',';
|
|
|
|
|
|
|
|
if(!$setup_info[$appname]['tables'])
|
|
|
|
{
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $appname . '/setup/setup.inc.php';
|
2003-11-13 13:25:56 +01:00
|
|
|
if(file_exists($f))
|
|
|
|
{
|
|
|
|
include($f);
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//$tables = explode(',',$setup_info[$appname]['tables']);
|
|
|
|
$tables = $setup_info[$appname]['tables'];
|
2003-11-13 13:25:56 +01:00
|
|
|
$i = 0;
|
|
|
|
$tbls = count($tables);
|
2001-07-30 17:59:25 +02:00
|
|
|
while(list($key,$table) = @each($tables))
|
|
|
|
{
|
2003-11-13 13:25:56 +01:00
|
|
|
$i++;
|
|
|
|
if($i == $tbls)
|
2001-08-25 22:23:50 +02:00
|
|
|
{
|
|
|
|
$term = '';
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
parse_vars($table,$term);
|
|
|
|
$dlstring .= printout('sqlbody');
|
2001-08-25 23:02:53 +02:00
|
|
|
/* $i++; */
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
$dlstring .= printout('sqlfooter');
|
|
|
|
}
|
|
|
|
elseif($table)
|
|
|
|
{
|
|
|
|
$term = ';';
|
|
|
|
parse_vars($table,$term);
|
|
|
|
$dlstring .= printout('sqlheader');
|
|
|
|
$dlstring .= printout('sqlbody');
|
|
|
|
$dlstring .= printout('sqlfooter');
|
|
|
|
}
|
2003-11-13 13:25:56 +01:00
|
|
|
if($download)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
download_handler($dlstring);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-03-03 22:53:00 +01:00
|
|
|
$GLOBALS['phpgw_setup']->html->show_header();
|
2001-07-30 17:59:25 +02:00
|
|
|
|
|
|
|
$setup_tpl->set_var('action_url','sqltoarray.php');
|
|
|
|
$setup_tpl->set_var('lang_submit','Show selected');
|
|
|
|
$setup_tpl->set_var('lang_showall','Show all');
|
|
|
|
$setup_tpl->set_var('title','SQL to schema_proc array util');
|
|
|
|
$setup_tpl->set_var('lang_applist','Applications');
|
2001-09-27 01:59:52 +02:00
|
|
|
$setup_tpl->set_var('select_to_download_file',lang('Select to download file'));
|
2001-07-30 17:59:25 +02:00
|
|
|
$setup_tpl->pfp('out','appheader');
|
|
|
|
|
|
|
|
$d = dir(PHPGW_SERVER_ROOT);
|
2003-11-13 13:25:56 +01:00
|
|
|
while($entry = $d->read())
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $entry . '/setup/setup.inc.php';
|
2003-11-13 13:25:56 +01:00
|
|
|
if(file_exists($f))
|
|
|
|
{
|
|
|
|
include($f);
|
|
|
|
}
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
|
2003-11-13 13:25:56 +01:00
|
|
|
while(list($key,$data) = @each($setup_info))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2003-11-13 13:25:56 +01:00
|
|
|
if($data['tables'] && $data['title'])
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
|
|
|
$setup_tpl->set_var('appname',$data['name']);
|
|
|
|
$setup_tpl->set_var('apptitle',$data['title']);
|
|
|
|
$setup_tpl->pfp('out','appitem');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$setup_tpl->pfp('out','appfooter');
|
|
|
|
}
|
|
|
|
?>
|