dolibarr  16.0.5
api_access.class.php
1 <?php
2 /* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
3  * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2023 Ferran Marcet <fmarcet@2byte.es>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
20 // Create the autoloader for Luracast
21 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/AutoLoader.php';
22 call_user_func(function () {
23  $loader = Luracast\Restler\AutoLoader::instance();
24  spl_autoload_register($loader);
25  return $loader;
26 });
27 
28 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/iAuthenticate.php';
29 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/iUseAuthentication.php';
30 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/Resources.php';
31 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/Defaults.php';
32 require_once DOL_DOCUMENT_ROOT.'/includes/restler/framework/Luracast/Restler/RestException.php';
33 use \Luracast\Restler\iAuthenticate;
34 use \Luracast\Restler\iUseAuthentication;
35 use \Luracast\Restler\Resources;
36 use \Luracast\Restler\Defaults;
37 use \Luracast\Restler\RestException;
38 
43 class DolibarrApiAccess implements iAuthenticate
44 {
45  const REALM = 'Restricted Dolibarr API';
46 
50  public static $requires = array('user', 'external', 'admin');
51 
55  public static $role = 'user';
56 
60  public static $user = '';
61 
62 
66  public function __construct()
67  {
68  global $db;
69  $this->db = $db;
70  }
71 
72  // phpcs:disable PEAR.NamingConventions.ValidFunctionName
81  public function __isAllowed()
82  {
83  // phpcs:enable
84  global $conf, $db, $user;
85 
86  $login = '';
87  $stored_key = '';
88 
89  $userClass = Defaults::$userIdentifierClass;
90 
91  /*foreach ($_SERVER as $key => $val)
92  {
93  dol_syslog($key.' - '.$val);
94  }*/
95 
96  // api key can be provided in url with parameter api_key=xxx or ni header with header DOLAPIKEY:xxx
97  $api_key = '';
98  if (isset($_GET['api_key'])) { // For backward compatibility
99  // TODO Add option to disable use of api key on url. Return errors if used.
100  $api_key = $_GET['api_key'];
101  }
102  if (isset($_GET['DOLAPIKEY'])) {
103  // TODO Add option to disable use of api key on url. Return errors if used.
104  $api_key = $_GET['DOLAPIKEY']; // With GET method
105  }
106  if (isset($_SERVER['HTTP_DOLAPIKEY'])) { // Param DOLAPIKEY in header can be read with HTTP_DOLAPIKEY
107  $api_key = $_SERVER['HTTP_DOLAPIKEY']; // With header method (recommanded)
108  }
109 
110  if ($api_key) {
111  $userentity = 0;
112 
113  $sql = "SELECT u.login, u.datec, u.api_key, ";
114  $sql .= " u.tms as date_modification, u.entity";
115  $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
116  $sql .= " WHERE u.api_key = '".$this->db->escape($api_key)."'";
117  // TODO Check if 2 users has same API key.
118 
119  $result = $this->db->query($sql);
120  if ($result) {
121  if ($this->db->num_rows($result)) {
122  $obj = $this->db->fetch_object($result);
123  $login = $obj->login;
124  $stored_key = $obj->api_key;
125  $userentity = $obj->entity;
126 
127  if (!defined("DOLENTITY") && $conf->entity != ($obj->entity ? $obj->entity : 1)) { // If API was not forced with HTTP_DOLENTITY, and user is on another entity, so we reset entity to entity of user
128  $conf->entity = ($obj->entity ? $obj->entity : 1);
129  // We must also reload global conf to get params from the entity
130  dol_syslog("Entity was not set on http header with HTTP_DOLAPIENTITY (recommanded for performance purpose), so we switch now on entity of user (".$conf->entity.") and we have to reload configuration.", LOG_WARNING);
131  $conf->setValues($this->db);
132  }
133  }
134  } else {
135  throw new RestException(503, 'Error when fetching user api_key :'.$this->db->error_msg);
136  }
137 
138  if ($stored_key != $api_key) { // This should not happen since we did a search on api_key
139  $userClass::setCacheIdentifier($api_key);
140  return false;
141  }
142 
143  if (!$login) {
144  throw new RestException(503, 'Error when searching login user from api key');
145  }
146  $fuser = new User($this->db);
147  $result = $fuser->fetch('', $login, '', 0, (empty($userentity) ? -1 : $conf->entity)); // If user is not entity 0, we search in working entity $conf->entity (that may have been forced to a different value than user entity)
148  if ($result <= 0) {
149  throw new RestException(503, 'Error when fetching user :'.$fuser->error.' (conf->entity='.$conf->entity.')');
150  }
151  if ($fuser->statut == 0) {
152  throw new RestException(503, 'Error when fetching user. This user has been locked or disabled');
153  }
154 
155  $fuser->getrights();
156 
157  // Set the property $user to the $user of API
158  static::$user = $fuser;
159 
160  // Set also the global variable $user to the $user of API
161  $user = $fuser;
162 
163  if ($fuser->socid) {
164  static::$role = 'external';
165  }
166 
167  if ($fuser->admin) {
168  static::$role = 'admin';
169  }
170  } else {
171  throw new RestException(401, "Failed to login to API. No parameter 'HTTP_DOLAPIKEY' on HTTP header (and no parameter DOLAPIKEY in URL).");
172  }
173 
174  $userClass::setCacheIdentifier(static::$role);
175  Resources::$accessControlFunction = 'DolibarrApiAccess::verifyAccess';
176  $requirefortest = static::$requires;
177  if (!is_array($requirefortest)) {
178  $requirefortest = explode(',', $requirefortest);
179  }
180  return in_array(static::$role, (array) $requirefortest) || static::$role == 'admin';
181  }
182 
183  // phpcs:disable PEAR.NamingConventions.ValidFunctionName
187  public function __getWWWAuthenticateString()
188  {
189  // phpcs:enable
190  return '';
191  }
192 
201  public static function verifyAccess(array $m)
202  {
203  $requires = isset($m['class']['DolibarrApiAccess']['properties']['requires'])
204  ? $m['class']['DolibarrApiAccess']['properties']['requires']
205  : false;
206 
207 
208  return $requires
209  ? static::$role == 'admin' || in_array(static::$role, (array) $requires)
210  : true;
211  }
212 }
db
$conf db
API class for accounts.
Definition: inc.php:41
DolibarrApiAccess\__construct
__construct()
Constructor.
Definition: api_access.class.php:66
DolibarrApiAccess\verifyAccess
static verifyAccess(array $m)
Verify access.
Definition: api_access.class.php:201
DolibarrApiAccess
Dolibarr API access class.
Definition: api_access.class.php:43
DolibarrApiAccess\__isAllowed
__isAllowed()
Check access.
Definition: api_access.class.php:81
DolibarrApiAccess\__getWWWAuthenticateString
__getWWWAuthenticateString()
Definition: api_access.class.php:187
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1603
User
Class to manage Dolibarr users.
Definition: user.class.php:44