1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00
OwncloudContactsOfficial/export.php

79 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-09-07 14:32:45 +02:00
2012-05-01 22:59:38 +02:00
OCP\User::checkLoggedIn();
2012-05-02 19:08:37 +02:00
OCP\App::checkAppEnabled('contacts');
2012-07-20 17:09:03 +02:00
$bookid = isset($_GET['bookid']) ? $_GET['bookid'] : null;
$contactid = isset($_GET['contactid']) ? $_GET['contactid'] : null;
2012-12-13 02:32:25 +01:00
$selectedids = isset($_GET['selectedids']) ? $_GET['selectedids'] : null;
$nl = "\n";
2012-11-15 03:51:46 +01:00
if(!is_null($bookid)) {
2012-10-05 05:05:49 +02:00
try {
2012-12-13 02:32:25 +01:00
$addressbook = OCA\Contacts\Addressbook::find($bookid);
2012-10-05 05:05:49 +02:00
} catch(Exception $e) {
OCP\JSON::error(
array(
'data' => array(
'message' => $e->getMessage(),
)
)
);
exit();
}
2012-12-13 02:32:25 +01:00
header('Content-Type: text/directory');
2012-09-07 14:32:45 +02:00
header('Content-Disposition: inline; filename='
. str_replace(' ', '_', $addressbook['displayname']) . '.vcf');
$start = 0;
2012-09-07 14:32:45 +02:00
$batchsize = OCP\Config::getUserValue(OCP\User::getUser(),
'contacts',
2012-07-20 17:09:03 +02:00
'export_batch_size', 20);
2012-12-13 02:32:25 +01:00
while($cardobjects = OCA\Contacts\VCard::all($bookid, $start, $batchsize, array('carddata'))) {
foreach($cardobjects as $card) {
echo $card['carddata'] . $nl;
}
2012-07-06 13:49:04 +02:00
$start += $batchsize;
}
2012-11-15 03:51:46 +01:00
} elseif(!is_null($contactid)) {
2012-10-05 05:05:49 +02:00
try {
2013-03-25 17:10:21 +01:00
$app = new OCA\Contacts\App();
$contact = $app->getContact($_GET['backend'], $_GET['parent'], $_GET['contactid']);
$data = $contact->serialize();
2012-10-05 05:05:49 +02:00
} catch(Exception $e) {
OCP\JSON::error(
array(
'data' => array(
'message' => $e->getMessage(),
)
)
);
exit();
}
2012-06-06 13:18:33 +02:00
header('Content-Type: text/vcard');
2012-09-07 14:32:45 +02:00
header('Content-Disposition: inline; filename='
2013-03-25 17:10:21 +01:00
. str_replace(' ', '_', $contact->FN) . '.vcf');
echo $data;
2012-12-13 02:32:25 +01:00
} elseif(!is_null($selectedids)) {
$selectedids = explode(',', $selectedids);
$l10n = \OC_L10N::get('contacts');
header('Content-Type: text/directory');
header('Content-Disposition: inline; filename='
. $l10n->t('%d_selected_contacts', array(count($selectedids))) . '.vcf');
foreach($selectedids as $id) {
try {
$data = OCA\Contacts\VCard::find($id);
echo $data['carddata'] . $nl;
} catch(Exception $e) {
continue;
}
}
}