Skip to content
Snippets Groups Projects
Select Git revision
  • develop
  • 6.0
  • 5.0
  • 4.0
  • scrutinizer-patch-4
  • 3.9 default
  • scrutinizer-patch-3
  • scrutinizer-patch-2
  • scrutinizer-patch-1
  • 3.7
  • 3.8
  • 3.6
  • 3.9_backported
  • 3.8_backported
  • 3.7_backported
  • 3.5
  • 3.6_backported
  • 3.5_backported
  • 3.4
  • 3.3_backported
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 5.0.6
  • 6.0.0
  • 5.0.5
  • 6.0.0-rc
  • 5.0.4
  • 6.0.0-beta
  • 5.0.3
  • 4.0.6
  • 5.0.2
  • 5.0.1
  • 4.0.5
  • 5.0.0
  • 4.0.4
  • 5.0.0-rc2
  • 5.0.0-rc1
40 results

document.php

Blame
  • document.php 17.95 KiB
    <?php
    /* Copyright (C) 2004-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
     * Copyright (C) 2004-2010 Laurent Destailleur  <eldy@users.sourceforge.net>
     * Copyright (C) 2005      Simon Tosser         <simon@kornog-computing.com>
     * Copyright (C) 2005-2009 Regis Houssin        <regis@dolibarr.fr>
     * Copyright (C) 2010	   Pierre Morin         <pierre.morin@auguria.net>
     * Copyright (C) 2010	   Juanjo Menent        <jmenent@2byte.es>
     *
     * 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 2 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, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     * or see http://www.gnu.org/
     */
    
    /**
     *	\file       htdocs/document.php
     *  \brief      Wrapper to download data files
     *  \version    $Id$
     *  \remarks    Call of this wrapper is made with URL:
     * 				document.php?modulepart=repfichierconcerne&file=pathrelatifdufichier
     */
    
    define('NOTOKENRENEWAL',1); // Disables token renewal
    // Pour autre que bittorrent, on charge environnement + info issus de logon (comme le user)
    if (isset($_GET["modulepart"]) && $_GET["modulepart"] == 'bittorrent' && ! defined("NOLOGIN"))
    {
    	define("NOLOGIN",1);
    	define("NOCSRFCHECK",1);	// We accept to go on this page from external web site.
    }
    if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
    if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
    if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
    
    // C'est un wrapper, donc header vierge
    function llxHeader() { }
    
    require("./main.inc.php");	// Load $user and permissions
    require_once(DOL_DOCUMENT_ROOT.'/lib/files.lib.php');
    
    $encoding = '';
    $action = GETPOST("action");
    $original_file = GETPOST("file");	// Do not use urldecode here ($_GET are already decoded by PHP).
    $modulepart = GETPOST("modulepart");
    $urlsource = GETPOST("urlsource");
    
    
    /*
     * Action
     */
    
    // None
    
    
    /*
     * View
     */
    
    // Define mime type
    $type = 'application/octet-stream';
    if (GETPOST('type')) $type=GETPOST('type');
    else $type=dol_mimetype($original_file);
    //print 'X'.$type.'-'.$original_file;exit;
    
    // Define attachment (attachment=true to force choice popup 'open'/'save as')
    $attachment = true;
    // Text files
    if (preg_match('/\.txt$/i',$original_file))  	{ $attachment = false; }
    if (preg_match('/\.csv$/i',$original_file))  	{ $attachment = true; }
    if (preg_match('/\.tsv$/i',$original_file))  	{ $attachment = true; }
    // Documents MS office
    if (preg_match('/\.doc(x)?$/i',$original_file)) { $attachment = true; }
    if (preg_match('/\.dot(x)?$/i',$original_file)) { $attachment = true; }
    if (preg_match('/\.mdb$/i',$original_file))     { $attachment = true; }
    if (preg_match('/\.ppt(x)?$/i',$original_file)) { $attachment = true; }
    if (preg_match('/\.xls(x)?$/i',$original_file)) { $attachment = true; }
    // Documents Open office
    if (preg_match('/\.odp$/i',$original_file))     { $attachment = true; }
    if (preg_match('/\.ods$/i',$original_file))     { $attachment = true; }
    if (preg_match('/\.odt$/i',$original_file))     { $attachment = true; }
    // Misc
    if (preg_match('/\.(html|htm)$/i',$original_file)) 	{ $attachment = false; }
    if (preg_match('/\.pdf$/i',$original_file))  	{ $attachment = true; }
    if (preg_match('/\.sql$/i',$original_file))     { $attachment = true; }
    // Images
    if (preg_match('/\.jpg$/i',$original_file)) 	{ $attachment = true; }
    if (preg_match('/\.jpeg$/i',$original_file)) 	{ $attachment = true; }
    if (preg_match('/\.png$/i',$original_file)) 	{ $attachment = true; }
    if (preg_match('/\.gif$/i',$original_file)) 	{ $attachment = true; }
    if (preg_match('/\.bmp$/i',$original_file)) 	{ $attachment = true; }
    if (preg_match('/\.tiff$/i',$original_file)) 	{ $attachment = true; }
    // Calendar
    if (preg_match('/\.vcs$/i',$original_file))  	{ $attachment = true; }
    if (preg_match('/\.ics$/i',$original_file))  	{ $attachment = true; }
    if (GETPOST("attachment"))                      { $attachment = true; }
    if (! empty($conf->global->MAIN_DISABLE_FORCE_SAVEAS)) $attachment=false;
    //print "XX".$attachment;exit;
    
    // Suppression de la chaine de caractere ../ dans $original_file
    $original_file = str_replace("../","/", $original_file);
    
    // find the subdirectory name as the reference
    $refname=basename(dirname($original_file)."/");
    
    // Security check
    if (empty($modulepart)) accessforbidden('Bad value for modulepart');
    $accessallowed=0;
    $sqlprotectagainstexternals='';
    if ($modulepart)
    {
    	// On fait une verification des droits et on definit le repertoire concerne
    
    	// Wrapping for third parties
    	if ($modulepart == 'company')
    	{
    		if ($user->rights->societe->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->societe->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT rowid as fk_soc FROM ".MAIN_DB_PREFIX."societe WHERE rowid='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping for invoices
    	else if ($modulepart == 'facture')
    	{
    		if ($user->rights->facture->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->facture->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."facture WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	else if ($modulepart == 'unpaid')
    	{
    		if ($user->rights->facture->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->facture->dir_output.'/unpaid/temp/'.$original_file;
    	}
    
    	// Wrapping pour les fiches intervention
    	else if ($modulepart == 'ficheinter')
    	{
    		if ($user->rights->ficheinter->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->ficheinter->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."fichinter WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les prelevements
    	else if ($modulepart == 'prelevement')
    	{
    		if ($user->rights->prelevement->bons->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->prelevement->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les propales
    	else if ($modulepart == 'propal')
    	{
    		if ($user->rights->propale->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    
    		$original_file=$conf->propale->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."propal WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les commandes
    	else if ($modulepart == 'commande')
    	{
    		if ($user->rights->commande->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->commande->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."commande WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les projets
    	else if ($modulepart == 'project')
    	{
    		if ($user->rights->projet->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->projet->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."projet WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les commandes fournisseurs
    	else if ($modulepart == 'commande_fournisseur')
    	{
    		if ($user->rights->fournisseur->commande->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->fournisseur->commande->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."commande_fournisseur WHERE ref='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les factures fournisseurs
    	else if ($modulepart == 'facture_fournisseur' || $modulepart == 'invoice_supplier')
    	{
    		if ($user->rights->fournisseur->facture->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->fournisseur->facture->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT fk_soc as fk_soc FROM ".MAIN_DB_PREFIX."facture_fourn WHERE facnumber='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les rapport de paiements
    	else if ($modulepart == 'facture_paiement')
    	{
    		if ($user->rights->facture->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		if ($user->societe_id > 0) $original_file=$conf->facture->dir_output.'/payments/private/'.$user->id.'/'.$original_file;
    		else $original_file=$conf->facture->dir_output.'/payments/'.$original_file;
    	}
    
    	// Wrapping pour les exports de compta
    	else if ($modulepart == 'export_compta')
    	{
    		if ($user->rights->compta->ventilation->creer || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->compta->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les societe
    	else if ($modulepart == 'societe')
    	{
    		if ($user->rights->societe->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->societe->dir_output.'/'.$original_file;
    		$sqlprotectagainstexternals = "SELECT rowid as fk_soc FROM ".MAIN_DB_PREFIX."societe WHERE rowid='".$refname."' AND entity=".$conf->entity;
    	}
    
    	// Wrapping pour les expedition
    	else if ($modulepart == 'expedition')
    	{
    		if ($user->rights->expedition->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->expedition->dir_output."/sending/".$original_file;
    	}
    
    	// Wrapping pour les bons de livraison
    	else if ($modulepart == 'livraison')
    	{
    		if ($user->rights->expedition->livraison->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->expedition->dir_output."/receipt/".$original_file;
    	}
    
    	// Wrapping pour les actions
    	else if ($modulepart == 'actions')
    	{
    		if ($user->rights->agenda->myactions->read || preg_match('/^specimen/i',$original_file))
    		{
    		$accessallowed=1;
    		}
    		$original_file=$conf->agenda->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les actions
    	else if ($modulepart == 'actionsreport')
    	{
    		if ($user->rights->agenda->allactions->read || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file = $conf->agenda->dir_temp."/".$original_file;
    	}
    
    	// Wrapping pour les produits et services
    	else if ($modulepart == 'produit' || $modulepart == 'service')
    	{
    		if (($user->rights->produit->lire || $user->rights->service->lire) || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		if ($conf->product->enabled) $original_file=$conf->product->dir_output.'/'.$original_file;
    		elseif ($conf->service->enabled) $original_file=$conf->service->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les contrats
    	else if ($modulepart == 'contract')
    	{
    		if ($user->rights->contrat->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->contrat->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les documents generaux
    	else if ($modulepart == 'ged')
    	{
    		if ($user->rights->document->lire)
    		{
    			$accessallowed=1;
    		}
    		$original_file= $conf->ged->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les dons
    	else if ($modulepart == 'donation')
    	{
    		if ($user->rights->don->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->don->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les remises de cheques
    	else if ($modulepart == 'remisecheque')
    	{
    		if ($user->rights->banque->lire || preg_match('/^specimen/i',$original_file))
    		{
    			$accessallowed=1;
    		}
    
    		$original_file=$conf->banque->dir_output.'/bordereau/'.get_exdir(basename($original_file,".pdf"),2,1).$original_file;
    	}
    
    	// Wrapping for export module
    	else if ($modulepart == 'export')
    	{
    		// Aucun test necessaire car on force le rep de download sur
    		// le rep export qui est propre a l'utilisateur
    		$accessallowed=1;
    		$original_file=$conf->export->dir_temp.'/'.$user->id.'/'.$original_file;
    	}
    
    	// Wrapping for import module
    	else if ($modulepart == 'import')
    	{
    		// Aucun test necessaire car on force le rep de download sur
    		// le rep export qui est propre a l'utilisateur
    		$accessallowed=1;
    		$original_file=$conf->import->dir_temp.'/'.$original_file;
    	}
    
    	// Wrapping pour l'editeur wysiwyg
    	else if ($modulepart == 'editor')
    	{
    		// Aucun test necessaire car on force le rep de download sur
    		// le rep export qui est propre a l'utilisateur
    		$accessallowed=1;
    		$original_file=$conf->fckeditor->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour les backups
    	else if ($modulepart == 'systemtools')
    	{
    		if ($user->admin)
    		{
    			$accessallowed=1;
    		}
    		$original_file=$conf->admin->dir_output.'/'.$original_file;
    	}
    
    	// Wrapping pour BitTorrent
    	else if ($modulepart == 'bittorrent')
    	{
    		$accessallowed=1;
    		$dir='files';
    		if ($type == 'application/x-bittorrent') $dir='torrents';
    		$original_file=$conf->bittorrent->dir_output.'/'.$dir.'/'.$original_file;
    	}
    
        // Wrapping pour Foundation module
        else if ($modulepart == 'member')
        {
            if ($user->rights->adherent->lire || preg_match('/^specimen/i',$original_file))
            {
                $accessallowed=1;
            }
            $original_file=$conf->adherent->dir_output.'/'.$original_file;
        }
    
        // Wrapping for Scanner
        else if ($modulepart == 'scanner_user_temp')
        {
            $accessallowed=1;
            $original_file=$conf->scanner->dir_temp.'/'.$user->id.'/'.$original_file;
        }
    
    	// Generic wrapping
    	else
    	{
    		// Define $accessallowed
    		$subPermCategoryConstName = strtoupper($modulepart).'_SUBPERMCATEGORY_FOR_DOCUMENTS';
    		if (! empty($conf->global->$subPermCategoryConstName)) $subPermCategory = $conf->global->$subPermCategoryConstName;
    		if (empty($subPermCategory) && (($user->rights->$modulepart->lire) || ($user->rights->$modulepart->read) || ($user->rights->$modulepart->download)))
    		{
    			$accessallowed=1;	// No subpermission, we have checked on main permission
    		}
    		elseif (! empty($subPermCategory) && (($user->rights->$modulepart->$subPermCategory->lire) || ($user->rights->$modulepart->$subPermCategory->read) || ($user->rights->$modulepart->$subPermCategory->download)))
    		{
    			$accessallowed=1;	// There is subpermission supported, we have checked on them
    		}
     		elseif (preg_match('/^specimen/i',$original_file))	// If link to a specimen
     		{
    			$accessallowed=1;
     		}
     		// Define $original_file
     		$original_file=$conf->$modulepart->dir_output.'/'.$original_file;
     		// Define $sqlprotectagainstexternals
     		$sqlProtectConstName = strtoupper($modulepart).'_SQLPROTECTAGAINSTEXTERNALS_FOR_DOCUMENTS';
    		if (! empty($conf->global->$sqlProtectConstName))	// If module want to define its own $sqlprotectagainstexternals
    		{
    			// Example: mymodule__SQLPROTECTAGAINSTEXTERNALS_FOR_DOCUMENTS = "SELECT fk_soc FROM ".MAIN_DB_PREFIX.$modulepart." WHERE ref='".$refname."' AND entity=".$conf->entity;
    			eval('$sqlprotectagainstexternals = "'.$conf->global->$sqlProtectConstName.'";');
    		}
    	}
    }
    
    // Basic protection (against external users only)
    if ($user->societe_id > 0)
    {
    	if ($sqlprotectagainstexternals)
    	{
    		$resql = $db->query($sqlprotectagainstexternals);
    		if ($resql)
    		{
    			$num=$db->num_rows($resql);
    			$i=0;
    			while ($i < $num)
    			{
    				$obj = $db->fetch_object($resql);
    				if ($user->societe_id != $obj->fk_soc)
    				{
    					$accessallowed=0;
    					break;
    				}
    				$i++;
    			}
    		}
    	}
    }
    
    // Security:
    // Limite acces si droits non corrects
    if (! $accessallowed)
    {
    	accessforbidden();
    }
    
    // Security:
    // On interdit les remontees de repertoire ainsi que les pipe dans
    // les noms de fichiers.
    if (preg_match('/\.\./',$original_file) || preg_match('/[<>|]/',$original_file))
    {
    	dol_syslog("Refused to deliver file ".$original_file);
    	$file=basename($original_file);		// Do no show plain path of original_file in shown error message
    	dol_print_error(0,$langs->trans("ErrorFileNameInvalid",$file));
    	exit;
    }
    
    
    if ($action == 'remove_file')	// Remove a file
    {
    	clearstatcache();
    
    	dol_syslog("document.php remove $original_file $urlsource", LOG_DEBUG);
    
    	// This test should be useless. We keep it to find bug more easily
    	$original_file_osencoded=dol_osencode($original_file);	// New file name encoded in OS encoding charset
    	if (! file_exists($original_file_osencoded))
    	{
    		$file=basename($original_file);		// Do no show plain path of original_file in shown error message
    		dol_print_error(0,$langs->trans("ErrorFileDoesNotExists",$file));
    		exit;
    	}
    
    	dol_delete_file($original_file);
    
    	dol_syslog("document.php back to ".urldecode($urlsource), LOG_DEBUG);
    
    	header("Location: ".urldecode($urlsource));
    
    	return;
    }
    else						// Open and return file
    {
    	clearstatcache();
    
    	$filename = basename($original_file);
    
    	// Output file on browser
    	dol_syslog("document.php download $original_file $filename content-type=$type");
    	$original_file_osencoded=dol_osencode($original_file);	// New file name encoded in OS encoding charset
    
    	// This test if file exists should be useless. We keep it to find bug more easily
    	if (! file_exists($original_file_osencoded))
    	{
    		dol_print_error(0,$langs->trans("ErrorFileDoesNotExists",$original_file));
    		exit;
    	}
    
    	// Les drois sont ok et fichier trouve, on l'envoie
    
    	if ($encoding)   header('Content-Encoding: '.$encoding);
    	if ($type)       header('Content-Type: '.$type.(preg_match('/text/',$type)?'; charset="'.$conf->file->character_set_client:''));
    	if ($attachment) header('Content-Disposition: attachment; filename="'.$filename.'"');
    	else header('Content-Disposition: inline; filename="'.$filename.'"');
    
    	// Ajout directives pour resoudre bug IE
    	header('Cache-Control: Public, must-revalidate');
    	header('Pragma: public');
    
    	readfile($original_file_osencoded);
    }
    
    ?>