* * -------------------------------------------- * * 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 boaddressbook { var $public_functions = array( 'read_entries' => True, 'read_entry' => True, 'read_last_entry' => True, 'add_entry' => True, 'add_vcard' => True, 'add_email' => True, 'update_entry' => True ); var $soap_functions = array( 'read_entries' => array( 'in' => array( 'int', 'int', 'struct', 'string', 'int' ), 'out' => array( 'array' ) ), 'read_entry' => array( 'in' => array( 'int', 'struct' ), 'out' => array( 'array' ) ), 'read_last_entry' => array( 'in' => array( 'struct' ), 'out' => array( 'array' ) ), 'add_entry' => array( 'in' => array( 'int', 'struct' ), 'out' => array() ), 'update_entry' => array( 'in' => array( 'int', 'struct' ), 'out' => array() ) ); var $debug = False; var $so; var $start; var $limit; var $query; var $sort; var $order; var $filter; var $cat_id; var $total; var $use_session = False; function boaddressbook($session=False) { global $phpgw; $this->so = CreateObject('addressbook.soaddressbook'); $this->rights = $this->so->rights; $this->grants = $this->so->grants; if($session) { $this->read_sessiondata(); $this->use_session = True; } global $start,$limit,$query,$sort,$order,$filter,$cat_id,$fcat_id; if(!empty($start) || ($start == "0" )) { if($this->debug) { echo '
overriding start: "' . $this->start . '" now "' . $start . '"'; } $this->start = $start; } if($limit) { $this->limit = $limit; } if(isset($query)) { $this->query = $query; } if(isset($sort)) { $this->sort = $sort; } if(isset($order)) { $this->order = $order; } if(isset($filter)) { $this->filter = $filter; } if(isset($fcat_id)) { $this->cat_id = $fcat_id; } } function save_sessiondata($data) { if ($this->use_session) { global $phpgw; if($this->debug) { echo '
Save:'; _debug_array($data); } $phpgw->session->appsession('session_data','addressbook',$data); } } function read_sessiondata() { global $phpgw; $data = $phpgw->session->appsession('session_data','addressbook'); if($this->debug) { echo '
Read:'; _debug_array($data); } $this->start = $data['start']; $this->limit = $data['limit']; $this->query = $data['query']; $this->sort = $data['sort']; $this->order = $data['order']; $this->filter = $data['filter']; $this->cat_id = $data['cat_id']; } function strip_html($dirty = '') { global $phpgw; if ($dirty == '') { $dirty = array(); } for($i=0;$istrip_html($dirty[$i][$name]); } } else { $cleaned[$i] == $phpgw->strip_html($dirty[$i]); } } return $cleaned; } function read_entries($start,$limit,$qcols,$qfilter) { $entries = $this->so->read_entries($start,$limit,$qcols,$this->query,$qfilter,$this->sort,$this->order); $this->total = $this->so->contacts->total_records; if($this->debug) { echo '
Total records="' . $this->total . '"'; } return $this->strip_html($entries); } function read_entry($id,$fields) { $entry = $this->so->read_entry($id,$fields); return $this->strip_html($entry); } function read_last_entry($fields) { $entry = $this->so->read_last_entry($fields); return $this->strip_html($entry); } function add_vcard() { global $phpgw,$phpgw_info,$uploadedfile; if($uploadedfile == 'none' || $uploadedfile == '') { Header('Location: ' . $phpgw->link('/index.php','menuaction=addressbook.uivcard.in&action=GetFile')); } else { $uploaddir = $phpgw_info['server']['temp_dir'] . SEP; srand((double)microtime()*1000000); $random_number = rand(100000000,999999999); $newfilename = md5("$uploadedfile, $uploadedfile_name, " . time() . getenv("REMOTE_ADDR") . $random_number ); copy($uploadedfile, $uploaddir . $newfilename); $ftp = fopen($uploaddir . $newfilename . '.info','w'); fputs($ftp,"$uploadedfile_type\n$uploadedfile_name\n"); fclose($ftp); $filename = $uploaddir . $newfilename; $vcard = CreateObject('phpgwapi.vcard'); $entry = $vcard->in_file($filename); /* _debug_array($entry);exit; */ $entry['owner'] = $phpgw_info['user']['account_id']; $entry['access'] = 'private'; $entry['tid'] = 'n'; /* _debug_array($entry);exit; */ $this->so->add_entry($entry); $ab_id = $this->get_lastid(); /* Delete the temp file. */ unlink($filename); unlink($filename . '.info'); Header('Location: ' . $phpgw->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id)); } } function add_email() { global $phpgw_info,$name,$referer; $named = explode(' ', $name); for ($i=count($named);$i>=0;$i--) { $names[$i] = $named[$i]; } if ($names[2]) { $fields['n_given'] = $names[0]; $fields['n_middle'] = $names[1]; $fields['n_family'] = $names[2]; } else { $fields['n_given'] = $names[0]; $fields['n_family'] = $names[1]; } $fields['email'] = $add_email; $referer = urlencode($referer); $this->so->add_entry($phpgw_info['user']['account_id'],$fields,'private','','n'); $ab_id = $this->get_lastid(); Header('Location: ' . $phpgw->link('/index.php',"menuaction=addressbook.uiaddressbook.view&ab_id=$ab_id&referer=$referer")); } function add_entry($fields) { return $this->so->add_entry($fields); } function get_lastid() { return $this->so->get_lastid(); } function update_entry($fields) { return $this->so->update_entry($fields); } function delete_entry($ab_id) { return $this->so->delete_entry($ab_id); } function save_preferences($prefs,$other,$qfields,$fcat_id) { global $phpgw; $phpgw->preferences->read_repository(); if (is_array($prefs)) { /* _debug_array($prefs);exit; */ while (list($pref,$x) = each($qfields)) { /* echo '
checking: ' . $pref . '=' . $prefs[$pref]; */ if ($prefs[$pref] == 'on') { $phpgw->preferences->add('addressbook',$pref,'addressbook_on'); } else { $phpgw->preferences->delete('addressbook',$pref); } } } if(is_array($other)) { $phpgw->preferences->delete('addressbook','mainscreen_showbirthdays'); if ($other['mainscreen_showbirthdays']) { $phpgw->preferences->add('addressbook','mainscreen_showbirthdays'); } $phpgw->preferences->delete('addressbook','default_filter'); if ($other['default_filter']) { $phpgw->preferences->add('addressbook','default_filter'); } $phpgw->preferences->delete('addressbook','autosave_category'); if ($other['autosave_category']) { $phpgw->preferences->add('addressbook','autosave_category',True); } } if($fcat_id) { $phpgw->preferences->delete('addressbook','default_category'); $phpgw->preferences->add('addressbook','default_category',$fcat_id); } $phpgw->preferences->save_repository(True); /* _debug_array($prefs);exit; */ Header('Location: ' . $phpgw->link('/preferences/index.php')); } } ?>