FIX Usage of production mode with REST Api.
This commit is contained in:
parent
63dcdc3a03
commit
0b7c768f29
@ -42,10 +42,11 @@ class DolibarrApi
|
|||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param DoliDb $db Database handler
|
* @param DoliDb $db Database handler
|
||||||
* @param string $cachedir Cache dir
|
* @param string $cachedir Cache dir
|
||||||
|
* @param boolean $refreshCache Update cache
|
||||||
*/
|
*/
|
||||||
function __construct($db, $cachedir='')
|
function __construct($db, $cachedir='', $refreshCache=false)
|
||||||
{
|
{
|
||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
@ -54,7 +55,7 @@ class DolibarrApi
|
|||||||
|
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$production_mode = ( empty($conf->global->API_PRODUCTION_MODE) ? false : true );
|
$production_mode = ( empty($conf->global->API_PRODUCTION_MODE) ? false : true );
|
||||||
$this->r = new Restler($production_mode);
|
$this->r = new Restler($production_mode, $refreshCache);
|
||||||
|
|
||||||
$this->r->setAPIVersion(1);
|
$this->r->setAPIVersion(1);
|
||||||
}
|
}
|
||||||
@ -66,7 +67,7 @@ class DolibarrApi
|
|||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
/* Disabled, most APIs does not share same signature for method index
|
/* Disabled, most APIs does not share same signature for method index
|
||||||
function index()
|
function index()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
@ -93,9 +94,9 @@ class DolibarrApi
|
|||||||
unset($object->linkedObjects);
|
unset($object->linkedObjects);
|
||||||
|
|
||||||
unset($object->lines); // should be ->lines
|
unset($object->lines); // should be ->lines
|
||||||
|
|
||||||
unset($object->fields);
|
unset($object->fields);
|
||||||
|
|
||||||
unset($object->oldline);
|
unset($object->oldline);
|
||||||
|
|
||||||
unset($object->error);
|
unset($object->error);
|
||||||
@ -175,7 +176,7 @@ class DolibarrApi
|
|||||||
* @throws RestException
|
* @throws RestException
|
||||||
*/
|
*/
|
||||||
static function _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid') {
|
static function _checkAccessToResource($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid') {
|
||||||
|
|
||||||
// Features/modules to check
|
// Features/modules to check
|
||||||
$featuresarray = array($resource);
|
$featuresarray = array($resource);
|
||||||
if (preg_match('/&/', $resource)) {
|
if (preg_match('/&/', $resource)) {
|
||||||
|
|||||||
@ -24,8 +24,18 @@
|
|||||||
* \file htdocs/api/index.php
|
* \file htdocs/api/index.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (! defined("NOLOGIN")) define("NOLOGIN",'1');
|
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1');
|
||||||
if (! defined("NOCSRFCHECK")) define("NOCSRFCHECK",'1');
|
//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1');
|
||||||
|
//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
|
||||||
|
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
|
||||||
|
if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); // Do not check anti CSRF attack test
|
||||||
|
//if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK','1'); // Do not check style html tag into posted data
|
||||||
|
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Do not check anti POST attack test
|
||||||
|
if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); // If there is no need to load and show top and left menu
|
||||||
|
if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); // If we don't need to load the html.form.class.php
|
||||||
|
if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); // Do not load ajax.lib.php library
|
||||||
|
if (! defined("NOLOGIN")) define("NOLOGIN",'1'); // If this page is public (can be called outside logged session)
|
||||||
|
|
||||||
|
|
||||||
$res=0;
|
$res=0;
|
||||||
if (! $res && file_exists("../main.inc.php")) $res=include '../main.inc.php';
|
if (! $res && file_exists("../main.inc.php")) $res=include '../main.inc.php';
|
||||||
@ -65,17 +75,6 @@ if (preg_match('/api\/index\.php\/explorer/', $_SERVER["PHP_SELF"]) && ! empty($
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$api = new DolibarrApi($db);
|
|
||||||
|
|
||||||
// Enable the Restler API Explorer.
|
|
||||||
// See https://github.com/Luracast/Restler-API-Explorer for more info.
|
|
||||||
$api->r->addAPIClass('Luracast\\Restler\\Explorer');
|
|
||||||
|
|
||||||
$api->r->setSupportedFormats('JsonFormat', 'XmlFormat', 'UploadFormat');
|
|
||||||
$api->r->addAuthenticationClass('DolibarrApiAccess','');
|
|
||||||
|
|
||||||
// Define accepted mime types
|
|
||||||
UploadFormat::$allowedMimeTypes = array('image/jpeg', 'image/png', 'text/plain', 'application/octet-stream');
|
|
||||||
|
|
||||||
|
|
||||||
// Analyze URLs
|
// Analyze URLs
|
||||||
@ -91,6 +90,29 @@ preg_match('/index\.php\/([^\/]+)(.*)$/', $_SERVER["PHP_SELF"], $reg);
|
|||||||
// .../index.php/categories?sortfield=t.rowid&sortorder=ASC
|
// .../index.php/categories?sortfield=t.rowid&sortorder=ASC
|
||||||
|
|
||||||
|
|
||||||
|
// Set the flag to say to refresh (when we reload the explorer, production must be for API call only)
|
||||||
|
$refreshcache=false;
|
||||||
|
if (! empty($reg[1]) && $reg[1] == 'explorer' && ($reg[2] == '/resources.json' || $reg[2] == '/resources.json/root'))
|
||||||
|
{
|
||||||
|
$refreshcache=true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$api = new DolibarrApi($db, '', $refreshcache);
|
||||||
|
//var_dump($api->r->apiVersionMap);
|
||||||
|
|
||||||
|
// Enable the Restler API Explorer.
|
||||||
|
// See https://github.com/Luracast/Restler-API-Explorer for more info.
|
||||||
|
$api->r->addAPIClass('Luracast\\Restler\\Explorer');
|
||||||
|
|
||||||
|
$api->r->setSupportedFormats('JsonFormat', 'XmlFormat', 'UploadFormat');
|
||||||
|
$api->r->addAuthenticationClass('DolibarrApiAccess','');
|
||||||
|
|
||||||
|
// Define accepted mime types
|
||||||
|
UploadFormat::$allowedMimeTypes = array('image/jpeg', 'image/png', 'text/plain', 'application/octet-stream');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Call Explorer file for all APIs definitions
|
// Call Explorer file for all APIs definitions
|
||||||
if (! empty($reg[1]) && $reg[1] == 'explorer' && ($reg[2] == '/resources.json' || $reg[2] == '/resources.json/root'))
|
if (! empty($reg[1]) && $reg[1] == 'explorer' && ($reg[2] == '/resources.json' || $reg[2] == '/resources.json/root'))
|
||||||
{
|
{
|
||||||
@ -174,10 +196,9 @@ if (! empty($reg[1]) && $reg[1] == 'explorer' && ($reg[2] == '/resources.json' |
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sort the classes before adding them to Restler. The Restler API Explorer
|
// Sort the classes before adding them to Restler.
|
||||||
// shows the classes in the order they are added and it's a mess if they are not sorted.
|
// The Restler API Explorer shows the classes in the order they are added and it's a mess if they are not sorted.
|
||||||
sort($listofapis);
|
sort($listofapis);
|
||||||
//var_dump($listofapis);
|
|
||||||
foreach ($listofapis as $classname)
|
foreach ($listofapis as $classname)
|
||||||
{
|
{
|
||||||
$api->r->addAPIClass($classname);
|
$api->r->addAPIClass($classname);
|
||||||
@ -226,7 +247,7 @@ if (! empty($reg[1]) && ($reg[1] != 'explorer' || ($reg[2] != '/resources.json'
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TODO If not found, redirect to explorer
|
// TODO If not found, redirect to explorer
|
||||||
//var_dump($api);
|
//var_dump($api->r->apiVersionMap);
|
||||||
//exit;
|
//exit;
|
||||||
|
|
||||||
// Call API (we suppose we found it)
|
// Call API (we suppose we found it)
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
//if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Do not check anti POST attack test
|
//if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Do not check anti POST attack test
|
||||||
//if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); // If there is no need to load and show top and left menu
|
//if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); // If there is no need to load and show top and left menu
|
||||||
//if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); // If we don't need to load the html.form.class.php
|
//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('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); // Do not load ajax.lib.php library
|
||||||
//if (! defined("NOLOGIN")) define("NOLOGIN",'1'); // If this page is public (can be called outside logged session)
|
//if (! defined("NOLOGIN")) define("NOLOGIN",'1'); // If this page is public (can be called outside logged session)
|
||||||
|
|
||||||
// Load Dolibarr environment
|
// Load Dolibarr environment
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user