2011-12-01 05:02:45 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-01-11 06:56:53 +04:00
|
|
|
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-01 05:02:45 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkLoggedIn();
|
2012-05-02 21:08:37 +04:00
|
|
|
OCP\App::checkAppEnabled('contacts');
|
2012-02-12 19:12:46 +04:00
|
|
|
$bookid = isset($_GET['bookid']) ? $_GET['bookid'] : NULL;
|
|
|
|
$contactid = isset($_GET['contactid']) ? $_GET['contactid'] : NULL;
|
2012-01-15 03:55:02 +04:00
|
|
|
$nl = "\n";
|
2012-02-12 19:12:46 +04:00
|
|
|
if(isset($bookid)){
|
|
|
|
$addressbook = OC_Contacts_App::getAddressbook($bookid);
|
2012-07-04 18:54:00 +04:00
|
|
|
//$cardobjects = OC_Contacts_VCard::all($bookid);
|
2011-12-01 19:06:27 +04:00
|
|
|
header('Content-Type: text/directory');
|
2011-12-16 20:42:07 +04:00
|
|
|
header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $addressbook['displayname']) . '.vcf');
|
2012-01-11 06:56:53 +04:00
|
|
|
|
2012-07-04 18:54:00 +04:00
|
|
|
$start = 0;
|
2012-07-06 15:49:04 +04:00
|
|
|
$batchsize = OCP\Config::getUserValue(OCP\User::getUser(), 'contacts', 'export_batch_size', 20);
|
|
|
|
while($cardobjects = OC_Contacts_VCard::all($bookid, $start, $batchsize)){
|
2012-07-04 18:54:00 +04:00
|
|
|
foreach($cardobjects as $card) {
|
|
|
|
echo $card['carddata'] . $nl;
|
|
|
|
}
|
2012-07-06 15:49:04 +04:00
|
|
|
$start += $batchsize;
|
2011-12-01 05:02:45 +04:00
|
|
|
}
|
2012-02-12 19:12:46 +04:00
|
|
|
}elseif(isset($contactid)){
|
|
|
|
$data = OC_Contacts_App::getContactObject($contactid);
|
2012-06-06 15:18:33 +04:00
|
|
|
header('Content-Type: text/vcard');
|
2012-01-11 09:20:06 +04:00
|
|
|
header('Content-Disposition: inline; filename=' . str_replace(' ', '_', $data['fullname']) . '.vcf');
|
2011-12-01 19:06:27 +04:00
|
|
|
echo $data['carddata'];
|
2011-12-01 05:02:45 +04:00
|
|
|
}
|