From b8e971b8e2b93312f7a71151babec38dbb9860de Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 2 Sep 2004 10:16:30 +0000 Subject: [PATCH] allow to specify cats by there id again --- calendar/csv_import.php | 526 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 526 insertions(+) create mode 100644 calendar/csv_import.php diff --git a/calendar/csv_import.php b/calendar/csv_import.php new file mode 100644 index 0000000000..7ece2c16c0 --- /dev/null +++ b/calendar/csv_import.php @@ -0,0 +1,526 @@ + * + * -------------------------------------------- * + * 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$ */ + + $GLOBALS['phpgw_info']['flags'] = array( + 'currentapp' => 'calendar', + 'noheader' => True + ); + include('../header.inc.php'); + + if (!isset($GLOBALS['phpgw_info']['user']['apps']['admin']) || + !$GLOBALS['phpgw_info']['user']['apps']['admin']) // no admin + { + $GLOBALS['phpgw']->redirect_link('/home.php'); + } + if (isset($_FILES['csvfile']['tmp_name'])) + { + $csvfile = tempnam($GLOBALS['phpgw_info']['server']['temp_dir'],$GLOBALS['phpgw_info']['flags']['currentapp']."_"); + $GLOBALS['phpgw']->session->appsession('csvfile','',$csvfile); + $_POST['action'] = move_uploaded_file($_FILES['csvfile']['tmp_name'],$csvfile) ? + 'download' : ''; + } + else + { + $csvfile = $GLOBALS['phpgw']->session->appsession('csvfile'); + } + if ($_POST['cancel']) + { + @unlink($csvfile); + $GLOBALS['phpgw']->redirect_link('/admin/index.php'); + } + $GLOBALS['phpgw_info']['flags']['app_header'] = $GLOBALS['phpgw_info']['apps']['calendar']['title'].' - '.lang('Import CSV-File'); + $GLOBALS['phpgw']->common->phpgw_header(); + + $GLOBALS['phpgw']->template->set_file(array('import_t' => 'csv_import.tpl')); + $GLOBALS['phpgw']->template->set_block('import_t','filename','filenamehandle'); + $GLOBALS['phpgw']->template->set_block('import_t','fheader','fheaderhandle'); + $GLOBALS['phpgw']->template->set_block('import_t','fields','fieldshandle'); + $GLOBALS['phpgw']->template->set_block('import_t','ffooter','ffooterhandle'); + $GLOBALS['phpgw']->template->set_block('import_t','imported','importedhandle'); + $GLOBALS['phpgw']->template->set_block('import_t','import','importhandle'); + + if(($_POST['action'] == 'download' || $_POST['action'] == 'continue') && (!$_POST['fieldsep'] || !$csvfile || !($fp=fopen($csvfile,'rb')))) + { + $_POST['action'] = ''; + } + $GLOBALS['phpgw']->template->set_var("action_url",$GLOBALS['phpgw']->link("/calendar/csv_import.php")); + + $PSep = '||'; // Pattern-Separator, separats the pattern-replacement-pairs in trans + $ASep = '|>'; // Assignment-Separator, separats pattern and replacesment + $VPre = '|#'; // Value-Prefix, is expanded to \ for ereg_replace + $CPre = '|['; $CPreReg = '\|\['; // |{csv-fieldname} is expanded to the value of the csv-field + $CPos = ']'; $CPosReg = '\]'; // if used together with @ (replacement is eval-ed) value gets autom. quoted + + function addr_id( $n_family,$n_given,$org_name ) + { // find in Addressbook, at least n_family AND (n_given OR org_name) have to match + $contacts = createobject('phpgwapi.contacts'); + + $addrs = $contacts->read(0,0,array('id'),'',"n_family=$n_family,n_given=$n_given,org_name=$org_name"); + if(!count($addrs)) + { + $addrs = $contacts->read(0,0,array('id'),'',"n_family=$n_family,n_given=$n_given"); + } + if(!count($addrs)) + { + $addrs = $contacts->read(0,0,array('id'),'',"n_family=$n_family,org_name=$org_name"); + } + + if (count($addrs)) + { + return $addrs[0]['id']; + } + + return False; + } + + $cat2id = array( ); + + function cat_id($cats) + { + if (!$cats) + { + return ''; + } + + foreach(split('[,;]',$cats) as $cat) + { + if (isset($cat2id[$cat])) + { + $ids[$cat] = $cat2id[$cat]; // cat is in cache + } + else + { + if (!is_object($GLOBALS['phpgw']->categories)) + { + $GLOBALS['phpgw']->categories = createobject('phpgwapi.categories'); + } + if (is_numeric($cat) && $GLOBALS['phpgw']->categories->id2name($cat) != '--') + { + $cat2id[$cat] = $ids[$cat] = $cat; + } + elseif ($id = $GLOBALS['phpgw']->categories->name2id( addslashes($cat) )) + { // cat exists + $cat2id[$cat] = $ids[$cat] = $id; + } + else + { // create new cat + $GLOBALS['phpgw']->categories->add( array('name' => $cat,'descr' => $cat )); + $cat2id[$cat] = $ids[$cat] = $GLOBALS['phpgw']->categories->name2id( addslashes($cat) ); + } + } + } + $id_str = implode( ',',$ids ); + + if (count($ids) > 1) // multiple cats need to be in ',' + { + $id_str = ",$id_str,"; + } + return $id_str; + } + + if (!is_object($GLOBALS['phpgw']->html)) + { + $GLOBALS['phpgw']->html = CreateObject('phpgwapi.html'); + } + + if ($_POST['next']) $_POST['action'] = 'next'; + switch ($_POST['action']) + { + case '': // Start, ask Filename + $GLOBALS['phpgw']->template->set_var('lang_csvfile',lang('CSV-Filename')); + $GLOBALS['phpgw']->template->set_var('lang_fieldsep',lang('Fieldseparator')); + $GLOBALS['phpgw']->template->set_var('lang_charset',lang('Charset of file')); + $GLOBALS['phpgw']->template->set_var('select_charset', + $GLOBALS['phpgw']->html->select('charset','', + $GLOBALS['phpgw']->translation->get_installed_charsets()+ + array('utf-8' => 'utf-8 (Unicode)'),True)); + $GLOBALS['phpgw']->template->set_var('fieldsep',$_POST['fieldsep'] ? $_POST['fieldsep'] : ','); + $GLOBALS['phpgw']->template->set_var('submit',lang('Import')); + $GLOBALS['phpgw']->template->set_var('enctype','ENCTYPE="multipart/form-data"'); + + $GLOBALS['phpgw']->template->parse('rows','filename'); + break; + + case 'continue': + case 'download': + $GLOBALS['phpgw']->preferences->read_repository(); + $defaults = $GLOBALS['phpgw_info']['user']['preferences']['calendar']['cvs_import']; + if (!is_array($defaults)) + { + $defaults = array(); + } + $GLOBALS['phpgw']->template->set_var('lang_csv_fieldname',lang('CSV-Fieldname')); + $GLOBALS['phpgw']->template->set_var('lang_info_fieldname',lang('calendar-Fieldname')); + $GLOBALS['phpgw']->template->set_var('lang_translation',lang("Translation").' '.lang('help').''); + $GLOBALS['phpgw']->template->set_var('submit', + $GLOBALS['phpgw']->html->submit_button('convert','Import') . ' '. + $GLOBALS['phpgw']->html->submit_button('cancel','Cancel')); + $GLOBALS['phpgw']->template->set_var('lang_debug',lang('Test Import (show importable records only in browser)')); + $GLOBALS['phpgw']->template->parse('rows','fheader'); + + $cal_names = array( + 'title' => 'Title varchar(80)', + 'description' => 'Description text', + 'location' => 'Location varchar(255)', + 'start' => 'Start Date: Timestamp or eg. YYYY-MM-DD hh:mm', + 'end' => 'End Date: Timestamp or eg. YYYY-MM-DD hh:mm', + 'participants' => 'Participants: comma separated user-id\'s or -names', + 'category' => 'Categories: id\'s or names, comma separated (new ones got created)', + 'priority' => 'Priority: 1=Low, 2=Normal, 3=High', + 'public' => 'Access: 1=public, 0=private', + 'owner' => 'Owner: int(11) user-id/-name', + 'modtime' => 'Modification date', +// 'groups' => 'Groups (dont know what this field is for)', +// 'cal_type' => 'cal_type: single_event=E (default) else M', + ); + $custom_fields = CreateObject('calendar.bocustom_fields'); + //echo "custom-fields=
".print_r($custom_fields,True)."
"; + foreach ($custom_fields->fields as $name => $data) + { + if ($name[0] == '#') // a custom field ? + { + $cal_names[$name] = $data['name'].': Custom field, varchar('.$data['length'].')'; + } + } + + // the next line is used in the help-text too + $mktime_lotus = "${PSep}0?([0-9]+)[ .:-]+0?([0-9]*)[ .:-]+0?([0-9]*)[ .:-]+0?([0-9]*)[ .:-]+0?([0-9]*)[ .:-]+0?([0-9]*).*$ASep@mktime(${VPre}4,${VPre}5,${VPre}6,${VPre}2,${VPre}3,${VPre}1)"; + + $cal_name_options = "