mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
126 lines
4.5 KiB
PHP
126 lines
4.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \defgroup api Module DolibarrApi
|
|
* \brief API loader
|
|
* Search files htdocs/<module>/class/api_<module>.class.php
|
|
* \file htdocs/api/indexphp
|
|
*
|
|
* @todo User authentication with api_key
|
|
*
|
|
*
|
|
*/
|
|
if (! defined("NOLOGIN")) define("NOLOGIN",'1');
|
|
|
|
$res=0;
|
|
if (! $res && file_exists("../../main.inc.php")) $res=include '../../main.inc.php';
|
|
if (! $res) die("Include of main fails");
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/includes/restler/vendor/autoload.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/api/class/api.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/api/class/api_access.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
|
|
|
// Enable and test if module Api is enabled
|
|
if (empty($conf->global->MAIN_MODULE_API))
|
|
{
|
|
$langs->load("admin");
|
|
dol_syslog("Call Dolibarr API interfaces with module disabled");
|
|
print $langs->trans("WarningModuleNotActive",'Api').'.<br><br>';
|
|
print $langs->trans("ToActivateModule");
|
|
exit;
|
|
}
|
|
|
|
use \Luracast\Restler\Defaults;
|
|
|
|
$api = new DolibarrApi($db);
|
|
|
|
$api->r->addAPIClass('Luracast\\Restler\\Resources'); //this creates resources.json at API Root
|
|
$api->r->addAPIClass('DolibarrApiInit',''); // Just for url root page
|
|
$api->r->setSupportedFormats('JsonFormat', 'XmlFormat');
|
|
$api->r->addAuthenticationClass('DolibarrApiAccess','');
|
|
|
|
$modulesdir = dolGetModulesDirs();
|
|
foreach ($modulesdir as $dir)
|
|
{
|
|
/*
|
|
* Search available module
|
|
*/
|
|
dol_syslog("Scan directory ".$dir." for API modules");
|
|
|
|
$handle=@opendir(dol_osencode($dir));
|
|
if (is_resource($handle))
|
|
{
|
|
while (($file = readdir($handle))!==false)
|
|
{
|
|
if (is_readable($dir.$file) && preg_match("/^(mod.*)\.class\.php$/i",$file,$reg))
|
|
{
|
|
$modulename=$reg[1];
|
|
|
|
// Defined if module is enabled
|
|
$enabled=true;
|
|
$module=$part=$obj=strtolower(preg_replace('/^mod/i','',$modulename));
|
|
//if ($part == 'propale') $part='propal';
|
|
if ($module == 'societe') {
|
|
$obj = 'thirdparty';
|
|
}
|
|
if ($module == 'categorie') {
|
|
$part = 'categories';
|
|
$obj = 'category';
|
|
}
|
|
if ($module == 'facture') {
|
|
$part = 'compta/facture';
|
|
$obj = 'facture';
|
|
}
|
|
if (empty($conf->$module->enabled)) $enabled=false;
|
|
|
|
if ($enabled)
|
|
{
|
|
/*
|
|
* If exists, load the API class for enable module
|
|
*
|
|
* Search files named api_<object>.class.php into /htdocs/<module>/class directory
|
|
*
|
|
* @todo : take care of externals module!
|
|
* @todo : use getElementProperties() function ?
|
|
*/
|
|
$dir_part = DOL_DOCUMENT_ROOT.'/'.$part.'/class/';
|
|
|
|
$handle_part=@opendir(dol_osencode($dir_part));
|
|
if (is_resource($handle_part))
|
|
{
|
|
while (($file_searched = readdir($handle_part))!==false)
|
|
{
|
|
if (is_readable($dir_part.$file_searched) && preg_match("/^(api_.*)\.class\.php$/i",$file_searched,$reg))
|
|
{
|
|
$classname=$reg[1];
|
|
$classname = str_replace('Api_','',ucwords($reg[1])).'Api';
|
|
require_once $dir_part.$file_searched;
|
|
if(class_exists($classname)) {
|
|
$api->r->addAPIClass($classname,'');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$api->r->handle(); //serve the response
|