2011-12-01 02:02:45 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2012-01-11 03:56:53 +01:00
|
|
|
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-01 02:02:45 +01:00
|
|
|
* 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;
|
2012-01-15 00:55:02 +01:00
|
|
|
$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
|
|
|
|
2011-12-01 16:06:27 +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');
|
2012-01-11 03:56:53 +01:00
|
|
|
|
2012-07-04 16:54:00 +02:00
|
|
|
$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'))) {
|
2012-07-04 16:54:00 +02:00
|
|
|
foreach($cardobjects as $card) {
|
|
|
|
echo $card['carddata'] . $nl;
|
|
|
|
}
|
2012-07-06 13:49:04 +02:00
|
|
|
$start += $batchsize;
|
2011-12-01 02:02:45 +01:00
|
|
|
}
|
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();
|
2013-04-08 22:39:53 +02:00
|
|
|
$contact = $app->getContact($_GET['backend'], $_GET['addressbookid'], $_GET['contactid']);
|
2013-03-25 17:10:21 +01:00
|
|
|
$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;
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 02:02:45 +01:00
|
|
|
}
|