Skip to content

Commit

Permalink
NEW: vcard (vcf) download for third party (Dolibarr#31957)
Browse files Browse the repository at this point in the history
# NEW: vcard (vcf) download for third party (Dolibarr#31957)

This adds a download link to fetch a vcard for a Third party.
  • Loading branch information
mdeweerd committed Nov 17, 2024
1 parent b2bad15 commit 5c3d432
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 1 deletion.
6 changes: 5 additions & 1 deletion htdocs/societe/card.php
Original file line number Diff line number Diff line change
Expand Up @@ -2921,7 +2921,11 @@ function init_check_no_email(input) {

$linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';

dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom');
$morehtmlref = '<a href="'.DOL_URL_ROOT.'/societe/vcard.php?id='.$object->id.'" class="refid">';
$morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
$morehtmlref .= '</a>';

dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom', $morehtmlref);

// Call Hook tabContentViewThirdparty
$parameters = array();
Expand Down
102 changes: 102 additions & 0 deletions htdocs/societe/vcard.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <[email protected]>
* Copyright (C) 2004-2010 Laurent Destailleur <[email protected]>
* Copyright (C) 2005-2012 Regis Houssin <[email protected]>
* Copyright (C) 2020 Tobias Sekan <[email protected]>
* Copyright (C) 2024 MDW <[email protected]>
* Copyright (C) 2024 Frédéric France <[email protected]>
*
* 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
* (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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

/**
* \file htdocs/societe/vcard.php
* \ingroup societe
* \brief Third party vcard download
*/

// Load Dolibarr environment
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/vcard.class.php';

/**
* @var Conf $conf
* @var DoliDB $db
* @var HookManager $hookmanager
* @var Translate $langs
* @var User $user
*/

$company = new Societe($db);


$socid = GETPOSTINT('socid');

// Security check
$result = restrictedArea($user, 'societe', $socid, '&societe');


$result = $company->fetch($socid);
if ($result <= 0) {
dol_print_error($db, $company->error);
exit;
}


// Compute VCard
$v = new vCard();
$v->setProdId('Dolibarr '.DOL_VERSION);

$v->setUid('DOLIBARR-THIRDPARTYID-'.$societe->id);

Check warning on line 62 in htdocs/societe/vcard.php

View workflow job for this annotation

GitHub Actions / phan / Run phan

vcard.php: PhanUndeclaredGlobalVariable: Global variable $societe is undeclared


// Data from company
$v->setURL($company->url, "TYPE=WORK");
$v->setPhoneNumber($company->phone, "TYPE=WORK;VOICE");
$v->setPhoneNumber($company->fax, "TYPE=WORK;FAX");
$v->setAddress("", "", $company->address, $company->town, $company->state, $company->zip, $company->country, "TYPE=WORK;POSTAL");
if (!empty(trim($company->email))) {
$v->setEmail($company->email);
}

// If the company is not a private person
if ($company->typent_code != 'TE_PRIVATE') {
$v->setOrg($company->name);
$v->filename = $company->name.'.vcf';
$v->setFormattedName($company->name.(!empty($company->name_alias) ? ' ('.$company->name_alias.')' : ''));
} else {
$v->setName($company->lastname, $company->firstname, "", $company->civility, "");

Check warning on line 80 in htdocs/societe/vcard.php

View workflow job for this annotation

GitHub Actions / phan / Run phan

vcard.php: PhanUndeclaredProperty: Reference to undeclared property \Societe-&gt;civility (Did you mean expr-&gt;civility_code or expr-&gt;civility_id)
// TODO: Reuse getFullName() from commonsocpeople.
$v->setFormattedName(dolGetFirstLastname($company->firstname, $company->lastname));
}

$db->close();


// Send the vCard to the web client

$output = $v->getVCard();

$filename = trim(urldecode($v->getFileName())); // "Nom prenom.vcf"
$filenameurlencoded = dol_sanitizeFileName(urlencode($filename));
//$filename = dol_sanitizeFileName($filename);


header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-Length: ".dol_strlen($output));
header("Connection: close");
header("Content-Type: text/x-vcard; name=\"".$filename."\"");

print $output;

0 comments on commit 5c3d432

Please sign in to comment.