dolibarr 24.0.0-beta
google_oauthcallback.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2022 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2015-2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
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// This page is used as callback for token generation of an OAUTH request.
21// This page can also be used to make the process to login and get token as described here:
22// https://developers.google.com/identity/protocols/oauth2/openid-connect#server-flow
23
30// Force keyforprovider
31$forlogin = 0;
32if (!empty($_GET['state']) && preg_match('/^forlogin-/', $_GET['state'])) {
33 $forlogin = 1;
34 $_GET['keyforprovider'] = 'Login';
35}
36
37if (!defined('NOLOGIN') && $forlogin) {
38 define("NOLOGIN", 1); // This means this output page does not require to be logged.
39}
40
41// Load Dolibarr environment
42require '../../../main.inc.php';
43require_once DOL_DOCUMENT_ROOT.'/includes/OAuth/bootstrap.php';
53use OAuth\Common\Storage\DoliStorage;
54use OAuth\Common\Consumer\Credentials;
55
56// Define $urlwithroot
58$urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
59$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
60//$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
61
62$langs->load("oauth");
63
64$action = GETPOST('action', 'aZ09');
65$backtourl = GETPOST('backtourl', 'alpha');
66$keyforprovider = GETPOST('keyforprovider', 'aZ09');
67if (!GETPOSTISSET('keyforprovider') && !empty($_SESSION["oauthkeyforproviderbeforeoauthjump"]) && (GETPOST('code') || $action == 'delete')) {
68 // If we are coming from the Oauth page
69 $keyforprovider = $_SESSION["oauthkeyforproviderbeforeoauthjump"];
70}
71
72
76$uriFactory = new \OAuth\Common\Http\Uri\UriFactory();
77//$currentUri = $uriFactory->createFromSuperGlobalArray($_SERVER);
78//$currentUri->setQuery('');
79$currentUri = $uriFactory->createFromAbsolute($urlwithroot.'/core/modules/oauth/google_oauthcallback.php');
80
81
87$serviceFactory = new \OAuth\ServiceFactory();
88$httpClient = new \OAuth\Common\Http\Client\CurlClient();
89// TODO Set options for proxy and timeout
90// $params=array('CURLXXX'=>value, ...)
91//$httpClient->setCurlParameters($params);
92$serviceFactory->setHttpClient($httpClient);
93
94// Setup the credentials for the requests
95$keyforparamid = 'OAUTH_GOOGLE'.($keyforprovider ? '-'.$keyforprovider : '').'_ID';
96$keyforparamsecret = 'OAUTH_GOOGLE'.($keyforprovider ? '-'.$keyforprovider : '').'_SECRET';
97$credentials = new Credentials(
98 getDolGlobalString($keyforparamid),
99 getDolGlobalString($keyforparamsecret),
100 $currentUri->getAbsoluteUri()
101);
102
103$state = GETPOST('state');
104$statewithscopeonly = '';
105$statewithanticsrfonly = '';
106
107$requestedpermissionsarray = array();
108if ($state) {
109 // 'state' parameter is standard to store a hash value and can be used to retrieve some parameters back
110 $statewithscopeonly = preg_replace('/\-.*$/', '', preg_replace('/^forlogin-/', '', $state));
111 $requestedpermissionsarray = explode(',', $statewithscopeonly); // Example: 'userinfo_email,userinfo_profile,openid,email,profile,cloud_print'.
112 $statewithanticsrfonly = preg_replace('/^.*\-/', '', $state);
113}
114
115// Add a test to check that the state parameter is provided into URL when we make the first call to ask the redirect or when we receive the callback
116// but not when callback was ok and we recall the page
117if ($action != 'delete' && !GETPOST('afteroauthloginreturn') && (empty($statewithscopeonly) || empty($requestedpermissionsarray))) {
118 dol_syslog("state or statewithscopeonly and/or requestedpermissionsarray are empty");
119 setEventMessages($langs->trans('ScopeUndefined'), null, 'errors');
120 if (empty($backtourl)) {
121 $backtourl = DOL_URL_ROOT.'/';
122 }
123 header('Location: '.$backtourl);
124 exit();
125}
126
127//var_dump($requestedpermissionsarray);exit;
128
129
130// Dolibarr storage
131$storage = new DoliStorage($db, $conf, $keyforprovider);
132
133// Instantiate the Api service using the credentials, http client and storage mechanism for the token
134// $requestedpermissionsarray contains list of scopes.
135// Conversion into URL is done by Reflection on constant with name SCOPE_scope_in_uppercase
136$apiService = null;
137$nameofservice = 'Google';
138try {
139 //$nameofservice = ucfirst(strtolower($genericstring));
140 $apiService = $serviceFactory->createService($nameofservice, $credentials, $storage, $requestedpermissionsarray);
141 '@phan-var-force OAuth\OAuth2\Service\Google $apiService'; // createService is only ServiceInterface
142} catch (Exception $e) {
143 print 'Error, failed to create service for provider '.$nameofservice.($keyforprovider ? '-'.$keyforprovider : '').'. Message was: '.$e->getMessage();
144 exit;
145}
146// access type needed to have oauth provider refreshing token
147// also note that a refresh token is sent only after a prompt
148$apiService->setAccessType('offline');
149
150
151if (!getDolGlobalString($keyforparamid)) {
152 accessforbidden('Setup of service '.$keyforparamid.' is not complete. Customer ID is missing');
153}
154if (!getDolGlobalString($keyforparamsecret)) {
155 accessforbidden('Setup of service '.$keyforparamid.' is not complete. Secret key is missing');
156}
157
158
159/*
160 * Actions
161 */
162
163if ($action == 'delete' && (!empty($user->admin) || $user->id == GETPOSTINT('userid'))) {
164 $storage->userid = GETPOSTINT('userid');
165 $storage->clearToken('Google');
166
167 setEventMessages($langs->trans('TokenDeleted'), null, 'mesgs');
168
169 header('Location: '.$backtourl);
170 exit();
171}
172
173
174if (!GETPOST('code')) {
175 dol_syslog("Page is called without the 'code' parameter defined");
176
177 // If we enter this page without 'code' parameter, it means we click on the link from login page ($forlogin is set) or from setup page and we want to get the redirect
178 // to the OAuth provider login page.
179 // $backtourl should be a relative url like /mypage.php?param1=value1 but without param token and action. Part after the # should also have been removed by caller.
180
181 // Clean the backtourl we can use after an OAuth authentication
182 $backtourl = preg_replace('/token=[^&]+/', '', $backtourl); // We remove any token into url so we are sure only url with no action are qualified as call back urls.
183 $backtourl = preg_replace('/action=[a-z0-9]+/i', '', $backtourl); // We remove any token into url so we are sure only url with no action are qualified as call back urls.
184 $backtourl = preg_replace('/save_lastsearch_values=[a-z0-9]+/i', '', $backtourl);
185 $backtourl = preg_replace('/mainmenu=[a-z0-9]+/i', '', $backtourl);
186 $backtourl = preg_replace('/leftmenu=[a-z0-9]+/i', '', $backtourl);
187 $backtourl = preg_replace('/#.*$/i', '', $backtourl); // We remove part after the #...
188
189 $_SESSION["backtourlsavedbeforeoauthjump"] = $backtourl;
190 $_SESSION["oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
191 $_SESSION['oauthstateanticsrf'] = $state;
192
193 // Save more data into session
194 // No need to save more data in sessions. We have several info into $_SESSION['datafromloginform'], saved when form is posted with a click
195 // on "Login with Google" with param actionlogin=login and beforeoauthloginredirect=google, by the functions_googleoauth.php.
196
197 // Set approval_prompt. Note: A refresh token will be provided only if prompt is done.
198 if ($forlogin) {
199 $approval_prompt = getDolGlobalString('OAUTH_GOOGLE_FORCE_PROMPT_ON_LOGIN', 'auto'); // Can be 'force'
200 $apiService->setApprouvalPrompt($approval_prompt);
201 } else {
202 $apiService->setApprouvalPrompt('force');
203 }
204
205 // This may create record into oauth_state before the header redirect.
206 // Creation of record with state, create record or just update column state of table llx_oauth_token (and create/update entry in llx_oauth_state) depending on the Provider used (see its constructor).
207 if ($state) {
208 $url = $apiService->getAuthorizationUri(array('state' => $state));
209 } else {
210 $url = $apiService->getAuthorizationUri(); // Parameter state will be randomly generated
211 }
212 // The redirect_uri is included into this $url
213
214 // Add more param
215 $url .= '&nonce='.bin2hex(random_bytes(64 / 8));
216
217 if ($forlogin) {
218 // TODO Add param hd. What is it for ?
219 //$url .= 'hd=xxx';
220
221 if (GETPOST('username')) {
222 $url .= '&login_hint='.urlencode(GETPOST('username'));
223 }
224
225 // Check that the redirect_uri that will be used is same than url of current domain
226
227 // Define $urlwithroot
229 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
230 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
231 //$urlwithroot = DOL_MAIN_URL_ROOT; // This is to use same domain name than current
232
233 include DOL_DOCUMENT_ROOT.'/core/lib/geturl.lib.php';
234 $currentrooturl = getRootURLFromURL(DOL_MAIN_URL_ROOT);
235 $externalrooturl = getRootURLFromURL($urlwithroot);
236
237 if ($currentrooturl != $externalrooturl) {
238 $langs->load("errors");
239 setEventMessages($langs->trans("ErrorTheUrlOfYourDolInstanceDoesNotMatchURLIntoOAuthSetup", $currentrooturl, $externalrooturl), null, 'errors');
240 $url = DOL_URL_ROOT;
241 }
242 }
243
244 //var_dump($url);exit;
245
246 // we go on oauth provider authorization page, we will then go back on this page but into the other branch of the if (!GETPOST('code'))
247 header('Location: '.$url);
248 exit();
249} else {
250 // We are coming from the return of an OAuth2 provider page.
251 dol_syslog(basename(__FILE__)." We are coming from the oauth provider page keyforprovider=".$keyforprovider." code=".dol_trunc(GETPOST('code'), 5));
252
253 // We must validate that the $state is the same than the one into $_SESSION['oauthstateanticsrf'], return error if not.
254 if (isset($_SESSION['oauthstateanticsrf']) && $state != $_SESSION['oauthstateanticsrf']) {
255 //var_dump($_SESSION['oauthstateanticsrf']);exit;
256 print 'Value for state='.dol_escape_htmltag($state).' differs from value in $_SESSION["oauthstateanticsrf"]. Code is refused.';
257 unset($_SESSION['oauthstateanticsrf']);
258 } else {
259 // This was a callback request from service, get the token
260 try {
261 //var_dump($state);
262 //var_dump($apiService); // OAuth\OAuth2\Service\Google
263 //dol_syslog("_GET=".var_export($_GET, true));
264
265 $errorincheck = 0;
266
267 $db->begin();
268
269 $token = null;
270 try {
271 // This requests the token from the received OAuth code (call of the https://oauth2.googleapis.com/token endpoint)
272 // Result is stored into object managed by class DoliStorage into includes/OAuth/Common/Storage/DoliStorage.php and into database table llx_oauth_token
273 $token = $apiService->requestAccessToken(GETPOST('code'), $state);
274 } catch (Exception $e) {
275 dol_syslog("Failed to get token with requestAccessToken: ".$e->getMessage(), LOG_ERR);
276 setEventMessages("Failed to get token with requestAccessToken: ".$e->getMessage(), null, 'errors');
277 $errorincheck++;
278 }
279
280 // The refresh token is inside the object token if the prompt was forced only.
281 //$refreshtoken = $token->getRefreshToken();
282 //var_dump($refreshtoken);
283 dol_syslog("requestAccessToken complete");
284
285 // Note: The extraparams has the 'id_token' than contains a lot of information about the user.
286 $extraparams = array();
287 if ($token) {
288 $extraparams = $token->getExtraParams();
289 }
290 $jwt = explode('.', $extraparams['id_token']);
291
292 $username = '';
293 $useremail = '';
294
295 // Extract the middle part, base64 decode, then json_decode it
296 if (!empty($jwt[1])) {
297 $userinfo = json_decode(base64_decode($jwt[1]), true);
298
299 dol_syslog("userinfo=".formatLogObject($userinfo));
300
301 $useremail = $userinfo['email'];
302
303 /*
304 $useremailverified = $userinfo['email_verified'];
305 $useremailuniq = $userinfo['sub'];
306 $username = $userinfo['name'];
307 $userfamilyname = $userinfo['family_name'];
308 $usergivenname = $userinfo['given_name'];
309 $hd = $userinfo['hd'];
310 */
311
312 // We should make the steps of validation of id_token
313
314 // Verify that the state is the one expected
315 // TODO
316
317 // Verify that the ID token is properly signed by the issuer. Google-issued tokens are signed using one of the certificates found at the URI specified in the jwks_uri metadata value of the Discovery document.
318 // TODO
319
320 // Verify that email is a verified email
321 /*if (empty($userinfo['email_verified'])) {
322 setEventMessages($langs->trans('Bad value for email, email was not verified by Google'), null, 'errors');
323 $errorincheck++;
324 }*/
325
326 // Verify that the value of the iss claim in the ID token is equal to https://accounts.google.com or accounts.google.com.
327 if ($userinfo['iss'] != 'accounts.google.com' && $userinfo['iss'] != 'https://accounts.google.com') {
328 setEventMessages($langs->trans('Bad value for returned userinfo[iss]'), null, 'errors');
329 $errorincheck++;
330 }
331
332 // Verify that the value of the aud claim in the ID token is equal to your app's client ID.
333 if ($userinfo['aud'] != getDolGlobalString($keyforparamid)) {
334 setEventMessages($langs->trans('Bad value for returned userinfo[aud]'), null, 'errors');
335 $errorincheck++;
336 }
337
338 // Verify that the expiry time (exp claim) of the ID token has not passed.
339 if ($userinfo['exp'] <= dol_now()) {
340 setEventMessages($langs->trans('Bad value for returned userinfo[exp]. Token expired.'), null, 'errors');
341 $errorincheck++;
342 }
343
344 // If you specified a hd parameter value in the request, verify that the ID token has a hd claim that matches an accepted G Suite hosted domain.
345 // $userinfo['hd'] is the domain name of Gmail account.
346 // TODO
347 }
348
349 if (!$errorincheck) {
350 // If call back to url for a OAUTH2 login
351 if ($forlogin) {
352 dol_syslog("we received the login/email to log to, it is ".$useremail);
353
354 $tmparray = (empty($_SESSION['datafromloginform']) ? array() : $_SESSION['datafromloginform']);
355 $entitytosearchuser = ((isset($tmparray['entity']) && $tmparray['entity'] != '') ? $tmparray['entity'] : -1);
356
357 // Delete the old token
358 $storage->clearToken('Google'); // Delete the token called ("Google-".$storage->keyforprovider)
359
360 $tmpuser = new User($db);
361 $res = $tmpuser->fetch(0, '', '', 0, $entitytosearchuser, $useremail, 0, 1); // Load user. Can load with email_oauth2.
362
363 if ($res > 0) {
364 $username = $tmpuser->login;
365
366 $_SESSION['googleoauth_receivedlogin'] = dol_hash($conf->file->instance_unique_id.$username, '0');
367 dol_syslog('We set $_SESSION[\'googleoauth_receivedlogin\']='.$_SESSION['googleoauth_receivedlogin']);
368 } else {
369 $errormessage = "Failed to login using Google. User with the Email '".$useremail."' was not found";
370 if ($entitytosearchuser > 0) {
371 $errormessage .= ' ('.$langs->trans("Entity").' '.$entitytosearchuser.')';
372 }
373 $_SESSION["dol_loginmesg"] = $errormessage;
374 $errorincheck++;
375
376 dol_syslog($errormessage);
377 }
378 } else {
379 setEventMessages("TokenSaved", null);
380 }
381 } else {
382 // If call back to url for a OAUTH2 login
383 if ($forlogin) {
384 $_SESSION["dol_loginmesg"] = "Failed to login using Google. OAuth callback URL retrieves a token with non valid data";
385 $errorincheck++;
386 }
387 }
388
389 if (!$errorincheck) {
390 $db->commit();
391 } else {
392 $db->rollback();
393 }
394
395 $backtourl = $_SESSION["backtourlsavedbeforeoauthjump"];
396 unset($_SESSION["backtourlsavedbeforeoauthjump"]);
397
398 if (empty($backtourl)) {
399 $backtourl = DOL_URL_ROOT.'/';
400 }
401
402 // If call back to this url was for a OAUTH2 login
403 if ($forlogin) {
404 // _SESSION['googleoauth_receivedlogin'] has been set to the key to validate the next test by function_googleoauth(), so we can make the redirect
405 // $backtourl is a relative url like /mypage.php?param1=value1 but without param token and action. Part after the # should also have been removed when saving it.
406 $backtourl = DOL_MAIN_URL_ROOT.$backtourl;
407 $backtourl .= (preg_match('/\?/', $backtourl) ? '&' : '?').'actionlogin=login&afteroauthloginreturn=google&mainmenu=home'.($username ? '&username='.urlencode($username) : '').'&token='.newToken();
408 if (!empty($tmparray['entity'])) {
409 $backtourl .= '&entity='.$tmparray['entity'];
410 }
411 }
412
413 dol_syslog("Redirect now on backtourl=".$backtourl);
414
415 header('Location: '.$backtourl);
416 exit();
417 } catch (Exception $e) {
418 print $e->getMessage();
419 }
420 }
421}
422
423
424/*
425 * View
426 */
427
428// No view at all, just actions, so we reach this line only on error.
429
430$db->close();
global $dolibarr_main_url_root
Class to manage Dolibarr users.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_now($mode='gmt')
Return date for now.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!function_exists( 'utf8_encode')) if(!function_exists('utf8_decode')) if(!function_exists( 'str_starts_with')) if(!function_exists('str_ends_with')) if(!function_exists( 'str_contains')) formatLogObject($data)
Return a string serialized to be output on log with dol_syslog() An option allow to output log in one...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getRootURLFromURL($url)
Function root url from a long url For example: https://www.abc.mydomain.com/dir/page....
if(!GETPOSTISSET('keyforprovider') &&!empty($_SESSION["oauthkeyforproviderbeforeoauthjump"]) &&(GETPOST('code')|| $action=='delete')) $uriFactory
Create a new instance of the URI class with the current URI, stripping the query string.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
dol_hash($chain, $type='0', $nosalt=0, $mode=0)
Returns a hash (non reversible encryption) of a string.