2012-09-18 17:09:48 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* vCard export plugin for importexport framework
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package addressbook
|
|
|
|
* @subpackage importexport
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright 2012 Nathan Gray
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* export addressbook contacts as vcard
|
|
|
|
*/
|
|
|
|
class addressbook_export_vcard implements importexport_iface_export_plugin {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exports records as defined in $_definition
|
|
|
|
*
|
|
|
|
* @param egw_record $_definition
|
|
|
|
*/
|
|
|
|
public function export( $_stream, importexport_definition $_definition) {
|
|
|
|
|
2012-10-09 20:01:00 +02:00
|
|
|
$options = $_definition->plugin_options;
|
2012-09-18 17:09:48 +02:00
|
|
|
$uicontacts = new addressbook_ui();
|
|
|
|
$selection = array();
|
|
|
|
|
|
|
|
// Addressbook defines its own export imits
|
|
|
|
$limit_exception = bo_merge::is_export_limit_excepted();
|
|
|
|
$export_limit = bo_merge::getExportLimit($app='addressbook');
|
|
|
|
if (!$limit_exception) $export_object->export_limit = $export_limit; // we may not need that after all
|
|
|
|
if($export_limit == 'no' && !$limit_exception) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Need to switch the app to get the same results
|
|
|
|
$old_app = $GLOBALS['egw_info']['flags']['currentapp'];
|
|
|
|
$GLOBALS['egw_info']['flags']['currentapp'] = 'addressbook';
|
|
|
|
|
|
|
|
if ($options['selection'] == 'use_all' || $options['selection'] == 'all') {
|
|
|
|
// uicontacts selection with checkbox 'use_all'
|
|
|
|
$query = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
$query['num_rows'] = -1; // all
|
|
|
|
$query['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session
|
|
|
|
if(!array_key_exists('filter',$query)) $query['filter'] = $GLOBALS['egw_info']['user']['account_id'];
|
|
|
|
$uicontacts->get_rows($query,$selection,$readonlys, true); // only return the ids
|
|
|
|
}
|
|
|
|
elseif ( $options['selection'] == 'all_contacts' ) {
|
|
|
|
if ($GLOBALS['egw_info']['user']['preferences']['addressbook']['hide_accounts']) {
|
|
|
|
$col_filter['account_id'] = null;
|
|
|
|
}
|
|
|
|
$selection = ExecMethod2('addressbook.addressbook_bo.search', array(), true, '', '','',false,'AND',false,$col_filter);
|
|
|
|
//$uicontacts->get_rows($query,$selection,$readonlys,true);
|
|
|
|
} else {
|
|
|
|
$selection = explode(',',$options['selection']);
|
|
|
|
}
|
|
|
|
$GLOBALS['egw_info']['flags']['currentapp'] = $old_app;
|
|
|
|
|
|
|
|
if(bo_merge::hasExportLimit($export_limit) && !$limit_exception) {
|
|
|
|
$selection = array_slice($selection, 0, $export_limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($selection as &$_contact) {
|
|
|
|
if(is_array($_contact) && ($_contact['id'] || $_contact['contact_id']))
|
|
|
|
{
|
|
|
|
$_contact = $_contact[$_contact['id'] ? 'id' : 'contact_id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// vCard opens & closes the resource itself, but this doesn't seem to matter
|
|
|
|
$meta = stream_get_meta_data($_stream);
|
|
|
|
|
|
|
|
$vcard = new addressbook_vcal();
|
|
|
|
$vcard->export($selection, $meta['uri']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns translated name of plugin
|
|
|
|
*
|
|
|
|
* @return string name
|
|
|
|
*/
|
|
|
|
public static function get_name() {
|
|
|
|
return lang('Addressbook vCard export');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns translated (user) description of plugin
|
|
|
|
*
|
|
|
|
* @return string descriprion
|
|
|
|
*/
|
|
|
|
public static function get_description() {
|
|
|
|
return lang("Exports contacts from your Addressbook into a vCard File.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* retruns file suffix for exported file
|
|
|
|
*
|
|
|
|
* @return string suffix
|
|
|
|
*/
|
|
|
|
public static function get_filesuffix() {
|
|
|
|
return 'vcf';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_mimetype() {
|
|
|
|
return 'text/x-vcard';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return html for options.
|
|
|
|
* this way the plugin has all opertunities for options tab
|
|
|
|
*
|
|
|
|
* @return string html
|
|
|
|
*/
|
|
|
|
public function get_options_etpl() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns slectors of this plugin via xajax
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function get_selectors_etpl() {
|
|
|
|
return array(
|
|
|
|
'name' => 'addressbook.export_csv_selectors',
|
|
|
|
'content' => 'use_all',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|