2001-07-08 15:54:40 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - addressbook *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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$ */
|
|
|
|
|
|
|
|
class uiXport
|
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
var $template;
|
2001-07-08 15:54:40 +02:00
|
|
|
var $public_functions = array(
|
|
|
|
'import' => True,
|
|
|
|
'export' => True
|
|
|
|
);
|
|
|
|
var $bo;
|
|
|
|
var $cat;
|
|
|
|
|
|
|
|
var $start;
|
|
|
|
var $limit;
|
|
|
|
var $query;
|
|
|
|
var $sort;
|
|
|
|
var $order;
|
|
|
|
var $filter;
|
|
|
|
var $cat_id;
|
|
|
|
|
|
|
|
function uiXport()
|
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
$this->template = $GLOBALS['phpgw']->template;
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->cat = CreateObject('phpgwapi.categories');
|
|
|
|
$this->bo = CreateObject('addressbook.boXport',True);
|
2001-07-10 01:20:46 +02:00
|
|
|
$this->browser = CreateObject('phpgwapi.browser');
|
|
|
|
|
|
|
|
$this->start = $this->bo->start;
|
|
|
|
$this->limit = $this->bo->limit;
|
|
|
|
$this->query = $this->bo->query;
|
|
|
|
$this->sort = $this->bo->sort;
|
|
|
|
$this->order = $this->bo->order;
|
|
|
|
$this->filter = $this->bo->filter;
|
|
|
|
$this->cat_id = $this->bo->cat_id;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a select form element with the categories option dialog in it */
|
|
|
|
function cat_option($cat_id='',$notall=False,$java=True,$multiple=False)
|
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
if ($java)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$jselect = ' onChange="this.form.submit();"';
|
|
|
|
}
|
|
|
|
/* Setup all and none first */
|
2001-07-13 19:57:10 +02:00
|
|
|
$cats_link = "\n" .'<select name="fcat_id'.($multiple?'[]':'').'"' .$jselect . ($multiple ? 'multiple size="3"' : '') . ">\n";
|
2003-08-28 16:16:30 +02:00
|
|
|
if (!$notall)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$cats_link .= '<option value=""';
|
2003-08-28 16:16:30 +02:00
|
|
|
if ($cat_id=='all')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$cats_link .= ' selected';
|
|
|
|
}
|
2001-12-30 12:57:02 +01:00
|
|
|
$cats_link .= '>'.lang('all').'</option>'."\n";
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get global and app-specific category listings */
|
2003-08-28 16:16:30 +02:00
|
|
|
$cats_link .= $this->cat->formated_list('select','all',$cat_id,True);
|
2001-07-08 15:54:40 +02:00
|
|
|
$cats_link .= '</select>'."\n";
|
|
|
|
return $cats_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
function import()
|
|
|
|
{
|
2003-10-03 14:00:20 +02:00
|
|
|
if ($_POST['convert'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2003-10-12 10:14:35 +02:00
|
|
|
$buffer = $this->bo->import($_FILES['tsvfile']['tmp_name'],$_POST['conv_type'],$_POST['private'],$_POST['fcat_id']);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2003-10-03 14:00:20 +02:00
|
|
|
if ($_POST['download'] == '')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2003-10-03 14:00:20 +02:00
|
|
|
if($_POST['conv_type'] == 'Debug LDAP' || $_POST['conv_type'] == 'Debug SQL' )
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
// filename, default application/octet-stream, length of file, default nocache True
|
2003-10-03 14:00:20 +02:00
|
|
|
$GLOBALS['phpgw']->browser->content_header($_POST['tsvfilename'],'',strlen($buffer));
|
2001-07-08 15:54:40 +02:00
|
|
|
echo $buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
echo "<pre>$buffer</pre>";
|
2001-12-30 12:57:02 +01:00
|
|
|
echo '<a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index') . '">'.lang('OK').'</a>';
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
echo "<pre>$buffer</pre>";
|
2001-12-30 12:57:02 +01:00
|
|
|
echo '<a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'). '">'.lang('OK').'</a>';
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2002-08-24 20:04:27 +02:00
|
|
|
set_time_limit(0);
|
2002-06-23 20:52:50 +02:00
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$this->template->set_file(array('import' => 'import.tpl'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
$dir_handle = opendir(PHPGW_APP_INC . SEP . 'import');
|
|
|
|
$i=0; $myfilearray = '';
|
2003-08-28 16:16:30 +02:00
|
|
|
while ($file = readdir($dir_handle))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
if ((substr($file, 0, 1) != '.') && is_file(PHPGW_APP_INC . SEP . 'import' . SEP . $file) )
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$myfilearray[$i] = $file;
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($dir_handle);
|
|
|
|
sort($myfilearray);
|
2003-08-28 16:16:30 +02:00
|
|
|
for ($i=0;$i<count($myfilearray);$i++)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$fname = ereg_replace('_',' ',$myfilearray[$i]);
|
|
|
|
$conv .= '<OPTION VALUE="' . $myfilearray[$i].'">' . $fname . '</OPTION>';
|
|
|
|
}
|
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$this->template->set_var('lang_cancel',lang('Cancel'));
|
|
|
|
$this->template->set_var('lang_cat',lang('Select Category'));
|
|
|
|
$this->template->set_var('cancel_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
|
|
|
$this->template->set_var('navbar_bg',$GLOBALS['phpgw_info']['theme']['navbar_bg']);
|
|
|
|
$this->template->set_var('navbar_text',$GLOBALS['phpgw_info']['theme']['navbar_text']);
|
|
|
|
$this->template->set_var('import_text',lang('Import from LDIF, CSV, or VCard'));
|
|
|
|
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.import'));
|
|
|
|
$this->template->set_var('cat_link',$this->cat_option($this->cat_id,True,False));
|
|
|
|
$this->template->set_var('tsvfilename','');
|
|
|
|
$this->template->set_var('conv',$conv);
|
|
|
|
$this->template->set_var('debug',lang('Debug output in browser'));
|
|
|
|
$this->template->set_var('filetype',lang('LDIF'));
|
|
|
|
$this->template->set_var('download',lang('Submit'));
|
|
|
|
$this->template->set_var('start',$this->start);
|
|
|
|
$this->template->set_var('sort',$this->sort);
|
|
|
|
$this->template->set_var('order',$this->order);
|
|
|
|
$this->template->set_var('filter',$this->filter);
|
|
|
|
$this->template->set_var('query',$this->query);
|
|
|
|
$this->template->set_var('cat_id',$this->cat_id);
|
|
|
|
$this->template->pparse('out','import');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
// $GLOBALS['phpgw']->common->phpgw_footer();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function export()
|
|
|
|
{
|
2003-10-03 14:00:20 +02:00
|
|
|
if ($_POST['convert'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2003-10-03 14:00:20 +02:00
|
|
|
if ($_POST['conv_type'] == 'none')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['noheader'] = False;
|
|
|
|
$GLOBALS['phpgw_info']['flags']['noheader'] = True;
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
echo lang('<b>No conversion type <none> could be located.</b> Please choose a conversion type from the list');
|
2001-12-30 12:57:02 +01:00
|
|
|
echo ' <a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export') . '">' . lang('OK') . '</a>';
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2003-10-03 14:00:20 +02:00
|
|
|
$buffer = $this->bo->export($_POST['conv_type'],$_POST['cat_id']);
|
2002-02-14 03:39:51 +01:00
|
|
|
|
2003-10-03 14:00:20 +02:00
|
|
|
if(($_POST['download'] == 'on') || ($_POST['conv_type'] == 'Palm_PDB') )
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
// filename, default application/octet-stream, length of file, default nocache True
|
2003-10-03 14:00:20 +02:00
|
|
|
$this->browser->content_header($_POST['tsvfilename'],'application/x-octet-stream',strlen($buffer));
|
2001-07-08 15:54:40 +02:00
|
|
|
echo $buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
echo "<pre>\n";
|
|
|
|
echo $buffer;
|
|
|
|
echo "\n</pre>\n";
|
2001-12-30 12:57:02 +01:00
|
|
|
echo '<a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export') . '">' . lang('OK') . '</a>';
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-30 12:57:02 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2003-08-28 16:16:30 +02:00
|
|
|
echo parse_navbar();
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2002-08-24 20:04:27 +02:00
|
|
|
set_time_limit(0);
|
2003-08-28 16:16:30 +02:00
|
|
|
|
|
|
|
$this->template->set_file(array('export' => 'export.tpl'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
$dir_handle = opendir(PHPGW_APP_INC. SEP . 'export');
|
|
|
|
$i=0; $myfilearray = '';
|
2003-08-28 16:16:30 +02:00
|
|
|
while ($file = readdir($dir_handle))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
if ((substr($file, 0, 1) != '.') && is_file(PHPGW_APP_INC . SEP . 'export' . SEP . $file) )
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$myfilearray[$i] = $file;
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($dir_handle);
|
|
|
|
sort($myfilearray);
|
2003-08-28 16:16:30 +02:00
|
|
|
for ($i=0;$i<count($myfilearray);$i++)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$fname = ereg_replace('_',' ',$myfilearray[$i]);
|
|
|
|
$conv .= ' <option value="'.$myfilearray[$i].'">'.$fname.'</option>'."\n";
|
|
|
|
}
|
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$this->template->set_var('lang_cancel',lang('Cancel'));
|
|
|
|
$this->template->set_var('lang_cat',lang('Select Category'));
|
|
|
|
$this->template->set_var('cat_link',$this->cat_option($this->cat_id,False,False));
|
|
|
|
$this->template->set_var('cancel_url',$GLOBALS['phpgw']->link('/addressbook/index.php'));
|
|
|
|
$this->template->set_var('navbar_bg',$GLOBALS['phpgw_info']['theme']['navbar_bg']);
|
|
|
|
$this->template->set_var('navbar_text',$GLOBALS['phpgw_info']['theme']['navbar_text']);
|
|
|
|
$this->template->set_var('export_text',lang('Export from Addressbook'));
|
|
|
|
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export'));
|
|
|
|
$this->template->set_var('filename',lang('Export file name'));
|
|
|
|
$this->template->set_var('conv',$conv);
|
|
|
|
$this->template->set_var('debug',lang(''));
|
|
|
|
$this->template->set_var('download',lang('Submit'));
|
|
|
|
$this->template->set_var('start',$this->start);
|
|
|
|
$this->template->set_var('sort',$this->sort);
|
|
|
|
$this->template->set_var('order',$this->order);
|
|
|
|
$this->template->set_var('filter',$this->filter);
|
|
|
|
$this->template->set_var('query',$this->query);
|
|
|
|
$this->template->set_var('cat_id',$this->cat_id);
|
|
|
|
$this->template->pparse('out','export');
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|