forked from Wavyzz/dolibarr
343 lines
9.6 KiB
PHP
343 lines
9.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2008-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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/public/agenda/agendaexport.php
|
|
* \ingroup agenda
|
|
* \brief Page to export agenda
|
|
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=vcal&exportkey=cle
|
|
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=ical&type=event&exportkey=cle
|
|
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=rss&exportkey=cle
|
|
* Other parameters into url are:
|
|
* ¬olderthan=99
|
|
* &year=2015
|
|
* &id=..., &idfrom=..., &idto=...
|
|
*/
|
|
|
|
if (!defined('NOTOKENRENEWAL')) {
|
|
define('NOTOKENRENEWAL', '1');
|
|
}
|
|
if (!defined('NOREQUIREMENU')) {
|
|
define('NOREQUIREMENU', '1'); // If there is no menu to show
|
|
}
|
|
if (!defined('NOREQUIREHTML')) {
|
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
|
}
|
|
if (!defined('NOREQUIREAJAX')) {
|
|
define('NOREQUIREAJAX', '1');
|
|
}
|
|
if (!defined('NOLOGIN')) {
|
|
define("NOLOGIN", 1); // This means this output page does not require to be logged.
|
|
}
|
|
if (!defined('NOCSRFCHECK')) {
|
|
define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
|
|
}
|
|
if (!defined('NOIPCHECK')) {
|
|
define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
|
|
}
|
|
|
|
|
|
// It's a wrapper, so empty header
|
|
|
|
/**
|
|
* Header function
|
|
*
|
|
* @return void
|
|
*/
|
|
function llxHeaderVierge()
|
|
{
|
|
print '<html><title>Export agenda cal</title><body>';
|
|
}
|
|
/**
|
|
* Footer function
|
|
*
|
|
* @return void
|
|
*/
|
|
function llxFooterVierge()
|
|
{
|
|
print '</body></html>';
|
|
}
|
|
|
|
// For MultiCompany module.
|
|
// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
|
|
$entity = (!empty($_GET['entity']) ? (int) $_GET['entity'] : (!empty($_POST['entity']) ? (int) $_POST['entity'] : 1));
|
|
if (is_numeric($entity)) {
|
|
define("DOLENTITY", $entity);
|
|
}
|
|
|
|
// Load Dolibarr environment
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
|
|
|
|
// Security check
|
|
if (empty($conf->agenda->enabled)) {
|
|
httponly_accessforbidden('Module Agenda not enabled');
|
|
}
|
|
|
|
// Not older than
|
|
if (!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) {
|
|
$conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY = 100; // default limit
|
|
}
|
|
|
|
// Define format, type and filter
|
|
$format = 'ical';
|
|
$type = 'event';
|
|
if (GETPOST("format", 'alpha')) {
|
|
$format = GETPOST("format", 'alpha');
|
|
}
|
|
if (GETPOST("type", 'alpha')) {
|
|
$type = GETPOST("type", 'alpha');
|
|
}
|
|
|
|
$filters = array();
|
|
if (GETPOST("year", 'int')) {
|
|
$filters['year'] = GETPOST("year", 'int');
|
|
}
|
|
if (GETPOST("id", 'int')) {
|
|
$filters['id'] = GETPOST("id", 'int');
|
|
}
|
|
if (GETPOST("idfrom", 'int')) {
|
|
$filters['idfrom'] = GETPOST("idfrom", 'int');
|
|
}
|
|
if (GETPOST("idto", 'int')) {
|
|
$filters['idto'] = GETPOST("idto", 'int');
|
|
}
|
|
if (GETPOST("project", 'alpha')) {
|
|
$filters['project'] = GETPOST("project", 'alpha');
|
|
}
|
|
if (GETPOST("logina", 'alpha')) {
|
|
$filters['logina'] = GETPOST("logina", 'alpha');
|
|
}
|
|
if (GETPOST("logint", 'alpha')) {
|
|
$filters['logint'] = GETPOST("logint", 'alpha');
|
|
}
|
|
if (GETPOST("notactiontype", 'alpha')) {
|
|
$filters['notactiontype'] = GETPOST("notactiontype", 'alpha');
|
|
}
|
|
if (GETPOST("actiontype", 'alpha')) {
|
|
$filters['actiontype'] = GETPOST("actiontype", 'alpha');
|
|
}
|
|
if (GETPOST("notolderthan", 'int')) {
|
|
$filters['notolderthan'] = GETPOST("notolderthan", "int");
|
|
} else {
|
|
$filters['notolderthan'] = $conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY;
|
|
}
|
|
if (GETPOST("module", 'alpha')) {
|
|
$filters['module'] = GETPOST("module", 'alpha');
|
|
}
|
|
if (GETPOST("status", 'int')) {
|
|
$filters['status'] = GETPOST("status", 'int');
|
|
}
|
|
// Check config
|
|
if (empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY)) {
|
|
$user->getrights();
|
|
|
|
llxHeaderVierge();
|
|
print '<div class="error">Module Agenda was not configured properly.</div>';
|
|
llxFooterVierge();
|
|
exit;
|
|
}
|
|
|
|
// Initialize technical object to manage hooks. Note that conf->hooks_modules contains array of hooks
|
|
$hookmanager->initHooks(array('agendaexport'));
|
|
|
|
$reshook = $hookmanager->executeHooks('doActions', $filters); // Note that $action and $object may have been modified by some
|
|
if ($reshook < 0) {
|
|
llxHeaderVierge();
|
|
if (!empty($hookmanager->errors) && is_array($hookmanager->errors)) {
|
|
print '<div class="error">'.implode('<br>', $hookmanager->errors).'</div>';
|
|
} else {
|
|
print '<div class="error">'.$hookmanager->error.'</div>';
|
|
}
|
|
llxFooterVierge();
|
|
} elseif (empty($reshook)) {
|
|
// Check exportkey
|
|
if (empty($_GET["exportkey"]) || $conf->global->MAIN_AGENDA_XCAL_EXPORTKEY != $_GET["exportkey"]) {
|
|
$user->getrights();
|
|
|
|
llxHeaderVierge();
|
|
print '<div class="error">Bad value for key.</div>';
|
|
llxFooterVierge();
|
|
exit;
|
|
}
|
|
}
|
|
|
|
|
|
// Define filename with prefix on filters predica (each predica set must have on cache file)
|
|
$shortfilename = 'dolibarrcalendar';
|
|
$filename = $shortfilename;
|
|
// Complete long filename
|
|
foreach ($filters as $key => $value) {
|
|
//if ($key == 'notolderthan') $filename.='-notolderthan'.$value; This filter key is already added before and does not need to be in filename
|
|
if ($key == 'year') {
|
|
$filename .= '-year'.$value;
|
|
}
|
|
if ($key == 'id') {
|
|
$filename .= '-id'.$value;
|
|
}
|
|
if ($key == 'idfrom') {
|
|
$filename .= '-idfrom'.$value;
|
|
}
|
|
if ($key == 'idto') {
|
|
$filename .= '-idto'.$value;
|
|
}
|
|
if ($key == 'project') {
|
|
$filename .= '-project'.$value;
|
|
}
|
|
if ($key == 'logina') {
|
|
$filename .= '-logina'.$value; // Author
|
|
}
|
|
if ($key == 'logint') {
|
|
$filename .= '-logint'.$value; // Assigned to
|
|
}
|
|
if ($key == 'notactiontype') {
|
|
$filename .= '-notactiontype'.$value;
|
|
}
|
|
if ($key == 'actiontype') {
|
|
$filename .= '-actiontype'.$value;
|
|
}
|
|
if ($key == 'module') {
|
|
$filename .= '-module'.$value;
|
|
}
|
|
if ($key == 'status') {
|
|
$filename .= '-status'.$value;
|
|
}
|
|
}
|
|
// Add extension
|
|
if ($format == 'vcal') {
|
|
$shortfilename .= '.vcs'; $filename .= '.vcs';
|
|
}
|
|
if ($format == 'ical') {
|
|
$shortfilename .= '.ics'; $filename .= '.ics';
|
|
}
|
|
if ($format == 'rss') {
|
|
$shortfilename .= '.rss'; $filename .= '.rss';
|
|
}
|
|
if ($shortfilename == 'dolibarrcalendar') {
|
|
$langs->load("errors");
|
|
llxHeaderVierge();
|
|
print '<div class="error">'.$langs->trans("ErrorWrongValueForParameterX", 'format').'</div>';
|
|
llxFooterVierge();
|
|
exit;
|
|
}
|
|
|
|
$agenda = new ActionComm($db);
|
|
|
|
$cachedelay = 0;
|
|
if (!empty($conf->global->MAIN_AGENDA_EXPORT_CACHE)) {
|
|
$cachedelay = $conf->global->MAIN_AGENDA_EXPORT_CACHE;
|
|
}
|
|
|
|
$exportholidays = GETPOST('includeholidays', 'int');
|
|
|
|
// Build file
|
|
if ($format == 'ical' || $format == 'vcal') {
|
|
$result = $agenda->build_exportfile($format, $type, $cachedelay, $filename, $filters, $exportholidays);
|
|
if ($result >= 0) {
|
|
$attachment = true;
|
|
if (isset($_GET["attachment"])) {
|
|
$attachment = $_GET["attachment"];
|
|
}
|
|
//$attachment = false;
|
|
$contenttype = 'text/calendar';
|
|
if (isset($_GET["contenttype"])) {
|
|
$contenttype = $_GET["contenttype"];
|
|
}
|
|
//$contenttype='text/plain';
|
|
$outputencoding = 'UTF-8';
|
|
|
|
if ($contenttype) {
|
|
header('Content-Type: '.$contenttype.($outputencoding ? '; charset='.$outputencoding : ''));
|
|
}
|
|
if ($attachment) {
|
|
header('Content-Disposition: attachment; filename="'.$shortfilename.'"');
|
|
}
|
|
|
|
if ($cachedelay) {
|
|
header('Cache-Control: max-age='.$cachedelay.', private, must-revalidate');
|
|
} else {
|
|
header('Cache-Control: private, must-revalidate');
|
|
}
|
|
|
|
// Clean parameters
|
|
$outputfile = $conf->agenda->dir_temp.'/'.$filename;
|
|
$result = readfile($outputfile);
|
|
if (!$result) {
|
|
print 'File '.$outputfile.' was empty.';
|
|
}
|
|
|
|
//header("Location: ".DOL_URL_ROOT.'/document.php?modulepart=agenda&file='.urlencode($filename));
|
|
exit;
|
|
} else {
|
|
print 'Error '.$agenda->error;
|
|
|
|
exit;
|
|
}
|
|
}
|
|
|
|
if ($format == 'rss') {
|
|
$result = $agenda->build_exportfile($format, $type, $cachedelay, $filename, $filters, $exportholidays);
|
|
if ($result >= 0) {
|
|
$attachment = false;
|
|
if (isset($_GET["attachment"])) {
|
|
$attachment = $_GET["attachment"];
|
|
}
|
|
//$attachment = false;
|
|
$contenttype = 'application/rss+xml';
|
|
if (isset($_GET["contenttype"])) {
|
|
$contenttype = $_GET["contenttype"];
|
|
}
|
|
//$contenttype='text/plain';
|
|
$outputencoding = 'UTF-8';
|
|
|
|
if ($contenttype) {
|
|
header('Content-Type: '.$contenttype.($outputencoding ? '; charset='.$outputencoding : ''));
|
|
}
|
|
if ($attachment) {
|
|
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
|
}
|
|
|
|
// Ajout directives pour resoudre bug IE
|
|
//header('Cache-Control: Public, must-revalidate');
|
|
//header('Pragma: public');
|
|
if ($cachedelay) {
|
|
header('Cache-Control: max-age='.$cachedelay.', private, must-revalidate');
|
|
} else {
|
|
header('Cache-Control: private, must-revalidate');
|
|
}
|
|
|
|
// Clean parameters
|
|
$outputfile = $conf->agenda->dir_temp.'/'.$filename;
|
|
$result = readfile($outputfile);
|
|
if (!$result) {
|
|
print 'File '.$outputfile.' was empty.';
|
|
}
|
|
|
|
// header("Location: ".DOL_URL_ROOT.'/document.php?modulepart=agenda&file='.urlencode($filename));
|
|
exit;
|
|
} else {
|
|
print 'Error '.$agenda->error;
|
|
|
|
exit;
|
|
}
|
|
}
|
|
|
|
|
|
llxHeaderVierge();
|
|
print '<div class="error">'.$agenda->error.'</div>';
|
|
llxFooterVierge();
|