summaryrefslogtreecommitdiffstats
path: root/apps/contacts/export.php
diff options
context:
space:
mode:
authorThomas Olsen <tol@tanghus>2011-12-01 02:02:45 +0100
committerThomas Olsen <tol@tanghus>2011-12-01 02:02:45 +0100
commit21d613cbc651d537c6fe145a8ddbec99a56035d1 (patch)
tree8be4d0031933a20b1c4388bd89c42d39fdb626ba /apps/contacts/export.php
parent1d312cf070d809ab1b09b978dfa9d918ffe2c253 (diff)
downloadnextcloud-server-21d613cbc651d537c6fe145a8ddbec99a56035d1.tar.gz
nextcloud-server-21d613cbc651d537c6fe145a8ddbec99a56035d1.zip
Added export.php for contacts app. Works the same way as the one in the calendar app, except there is no UI for it.
Fixed indentation in /index.php
Diffstat (limited to 'apps/contacts/export.php')
-rw-r--r--apps/contacts/export.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/contacts/export.php b/apps/contacts/export.php
new file mode 100644
index 00000000000..3c74d7f553a
--- /dev/null
+++ b/apps/contacts/export.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Copyright (c) 2011 Georg Ehrke <ownclouddev at georgswebsite dot de>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+require_once ("../../lib/base.php");
+OC_Util::checkLoggedIn();
+OC_Util::checkAppEnabled('contacts');
+$book = isset($_GET["bookid"]) ? $_GET["bookid"] : NULL;
+$contact = isset($_GET["contactid"]) ? $_GET["contactid"] : NULL;
+if(isset($book)){
+ OC_Log::write('contacts',"book isset($book)",OC_Log::DEBUG);
+ $addressbook = OC_Contacts_Addressbook::find($book);
+ OC_Log::write('contacts',"Got addressbook",OC_Log::DEBUG);
+ OC_Log::write('contacts',"userid: {$addressbook["userid"]}",OC_Log::DEBUG);
+ if($addressbook["userid"] != OC_User::getUser()){
+ OC_JSON::error();
+ exit;
+ }
+ OC_Log::write('contacts',"User match",OC_Log::DEBUG);
+ $cardobjects = OC_Contacts_VCard::all($book);
+ header("Content-Type: text/directory");
+ header("Content-Disposition: inline; filename=addressbook.vcf");
+ for($i = 0;$i <= count($cardobjects); $i++){
+ echo $cardobjects[$i]["carddata"] . "\n";
+ }
+}elseif(isset($contact)){
+ OC_Log::write('contacts',"contact isset($contact)",OC_Log::DEBUG);
+ $data = OC_Contacts_VCard::find($contact);
+ $addressbookid = $data["addressbookid"];
+ OC_Log::write('contacts',"addressbookid: $addressbookid",OC_Log::DEBUG);
+ $addressbook = OC_Contacts_Addressbook::find($addressbookid);
+ if($addressbook["userid"] != OC_User::getUser()){
+ OC_JSON::error();
+ exit;
+ }
+ header("Content-Type: text/directory");
+ header("Content-Disposition: inline; filename=" . $data["fullname"] . ".vcf");
+ echo $data["carddata"];
+}
+?>