dolibarr/htdocs/contact/vcard.php

105 lines
3.6 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2010-03-26 23:11:11 +01:00
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
2004-01-23 18:54:22 +01:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2004-01-23 18:54:22 +01:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2011-08-01 01:54:11 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2004-01-23 18:54:22 +01:00
*/
2004-11-11 22:19:50 +01:00
/**
2010-03-26 23:11:11 +01:00
* \file htdocs/contact/vcard.php
* \ingroup societe
* \brief Onglet vcard d'un contact
*/
2004-11-11 22:19:50 +01:00
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/vcard.class.php';
2004-01-23 18:54:22 +01:00
$id = GETPOST('id', 'int');
// Security check
$result = restrictedArea($user, 'contact', $id, 'socpeople&societe');
2004-01-23 18:54:22 +01:00
$contact = new Contact($db);
$result=$contact->fetch($id);
2004-01-23 18:54:22 +01:00
2007-07-24 01:05:45 +02:00
$physicalperson=1;
2007-07-24 01:05:45 +02:00
$company = new Societe($db);
if ($contact->socid)
{
$result=$company->fetch($contact->socid);
//print "ee";
}
2007-07-24 01:05:45 +02:00
// We create VCard
2004-01-23 18:54:22 +01:00
$v = new vCard();
2007-07-24 01:51:23 +02:00
$v->setProdId('Dolibarr '.DOL_VERSION);
2004-01-23 18:54:22 +01:00
2007-07-24 01:51:23 +02:00
$v->setUid('DOLIBARR-CONTACTID-'.$contact->id);
$v->setName($contact->lastname, $contact->firstname, "", "", "");
$v->setFormattedName($contact->getFullName($langs));
2004-01-23 18:54:22 +01:00
2007-07-24 01:05:45 +02:00
// By default, all informations are for work (except phone_perso and phone_mobile)
$v->setPhoneNumber($contact->phone_pro, "PREF;WORK;VOICE");
$v->setPhoneNumber($contact->phone_mobile, "CELL;VOICE");
$v->setPhoneNumber($contact->fax, "WORK;FAX");
2013-02-25 17:56:41 +01:00
$v->setAddress("", "", $contact->address, $contact->town, "", $contact->zip, ($contact->country_code?$contact->country_id:''), "WORK;POSTAL");
$v->setLabel("", "", $contact->address, $contact->town, "", $contact->zip, ($contact->country_code?$contact->country_id:''), "WORK");
2007-07-24 01:51:23 +02:00
$v->setEmail($contact->email,'internet,pref');
2007-07-24 01:05:45 +02:00
$v->setNote($contact->note);
2007-07-24 01:51:23 +02:00
$v->setTitle($contact->poste);
2007-07-24 01:05:45 +02:00
// Data from linked company
if ($company->id)
{
$v->setURL($company->url, "WORK");
if (! $contact->phone_pro) $v->setPhoneNumber($company->phone, "WORK;VOICE");
2007-07-24 01:05:45 +02:00
if (! $contact->fax) $v->setPhoneNumber($company->fax, "WORK;FAX");
2013-02-25 09:52:24 +01:00
if (! $contact->zip) $v->setAddress("", "", $company->address, $company->town, "", $company->zip, $company->country_code, "WORK;POSTAL");
2007-07-24 01:51:23 +02:00
if ($company->email != $contact->email) $v->setEmail($company->email,'internet');
// Si contact lie a un tiers non de type "particulier"
2007-07-24 01:51:23 +02:00
if ($contact->typent_code != 'TE_PRIVATE') $v->setOrg($company->nom);
2007-07-24 01:05:45 +02:00
}
// Personal informations
$v->setPhoneNumber($contact->phone_perso, "HOME;VOICE");
if ($contact->birthday) $v->setBirthday($contact->birthday);
$db->close();
// Renvoi la VCard au navigateur
2004-01-23 18:54:22 +01:00
$output = $v->getVCard();
$filename =trim(urldecode($v->getFileName())); // "Nom prenom.vcf"
$filenameurlencoded = dol_sanitizeFileName(urlencode($filename));
//$filename = dol_sanitizeFileName($filename);
2012-08-31 05:58:38 +02:00
header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-Length: ".dol_strlen($output));
header("Connection: close");
header("Content-Type: text/x-vcard; name=\"".$filename."\"");
2004-01-23 18:54:22 +01:00
print $output;
2004-01-23 18:54:22 +01:00
?>