Fix: Use entity

This commit is contained in:
Laurent Destailleur 2013-04-25 10:22:08 +02:00
parent 86ea79c860
commit 023b6f2e8b
4 changed files with 14 additions and 12 deletions

View File

@ -1233,13 +1233,15 @@ function dol_most_recent_file($dir,$regexfilter='',$excludefilter=array('\.meta$
* *
* @param string $modulepart Module of document * @param string $modulepart Module of document
* @param string $original_file Relative path with filename * @param string $original_file Relative path with filename
* @param string $entity Restrict onto entity
* @return mixed Array with access information : accessallowed & sqlprotectagainstexternals & original_file (as full path name) * @return mixed Array with access information : accessallowed & sqlprotectagainstexternals & original_file (as full path name)
*/ */
function dol_check_secure_access_document($modulepart,$original_file) function dol_check_secure_access_document($modulepart,$original_file,$entity)
{ {
global $user, $conf; global $user, $conf;
if (empty($modulepart)) return 'ErrorBadParameter'; if (empty($modulepart)) return 'ErrorBadParameter';
if (empty($entity)) $entity=0;
// We define $accessallowed and $sqlprotectagainstexternals // We define $accessallowed and $sqlprotectagainstexternals
$accessallowed=0; $accessallowed=0;

View File

@ -96,7 +96,7 @@ $refname=basename(dirname($original_file)."/");
// Security check // Security check
if (empty($modulepart)) accessforbidden('Bad value for parameter modulepart'); if (empty($modulepart)) accessforbidden('Bad value for parameter modulepart');
$check_access = dol_check_secure_access_document($modulepart,$original_file); $check_access = dol_check_secure_access_document($modulepart,$original_file,$entity);
$accessallowed = $check_access['accessallowed']; $accessallowed = $check_access['accessallowed'];
$sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals']; $sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals'];
$original_file = $check_access['original_file']; $original_file = $check_access['original_file'];

View File

@ -100,7 +100,7 @@ $original_file = str_replace("../","/", $original_file);
// Security check // Security check
if (empty($modulepart)) accessforbidden('Bad value for parameter modulepart'); if (empty($modulepart)) accessforbidden('Bad value for parameter modulepart');
$check_access = dol_check_secure_access_document($modulepart,$original_file); $check_access = dol_check_secure_access_document($modulepart,$original_file,$entity);
$accessallowed = $check_access['accessallowed']; $accessallowed = $check_access['accessallowed'];
$sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals']; $sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals'];
$original_file = $check_access['original_file']; $original_file = $check_access['original_file'];

View File

@ -192,7 +192,7 @@ function getDocument($authentication, $modulepart, $file)
$error=0; $error=0;
// Properties of doc // Properties of doc
$original_file = $file; $original_file = $file;
$type=dol_mimetype($original_file); $type=dol_mimetype($original_file);
$relativefilepath = $ref . "/"; $relativefilepath = $ref . "/";
$relativepath = $relativefilepath . $ref.'.pdf'; $relativepath = $relativefilepath . $ref.'.pdf';
@ -221,10 +221,10 @@ function getDocument($authentication, $modulepart, $file)
$refname=basename(dirname($original_file)."/"); $refname=basename(dirname($original_file)."/");
// Security check // Security check
$accessallowed=0; $check_access = dol_check_secure_access_document($modulepart,$original_file,$conf->entity);
$check_access = dol_check_secure_access_document($modulepart,$original_file); $accessallowed = $check_access['accessallowed'];
$accessallowed=$check_access['accessallowed'];
$sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals']; $sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals'];
$original_file = $check_access['original_file'];
// Basic protection (against external users only) // Basic protection (against external users only)
if ($fuser->societe_id > 0) if ($fuser->societe_id > 0)
@ -277,27 +277,27 @@ function getDocument($authentication, $modulepart, $file)
if(file_exists($original_file)) if(file_exists($original_file))
{ {
dol_syslog("Function: getDocument $original_file $filename content-type=$type"); dol_syslog("Function: getDocument $original_file $filename content-type=$type");
$file=$fileparams['fullname']; $file=$fileparams['fullname'];
$filename = basename($file); $filename = basename($file);
$f = fopen($original_file,'r'); $f = fopen($original_file,'r');
$content_file = fread($f,filesize($original_file)); $content_file = fread($f,filesize($original_file));
$objectret = array( $objectret = array(
'filename' => basename($original_file), 'filename' => basename($original_file),
'mimetype' => dol_mimetype($original_file), 'mimetype' => dol_mimetype($original_file),
'content' => base64_encode($content_file), 'content' => base64_encode($content_file),
'length' => filesize($original_file) 'length' => filesize($original_file)
); );
// Create return object // Create return object
$objectresp = array( $objectresp = array(
'result'=>array('result_code'=>'OK', 'result_label'=>''), 'result'=>array('result_code'=>'OK', 'result_label'=>''),
'document'=>$objectret 'document'=>$objectret
); );
} }
else else
{ {
dol_syslog("File doesn't exist ".$original_file); dol_syslog("File doesn't exist ".$original_file);
$errorcode='NOT_FOUND'; $errorcode='NOT_FOUND';