27require
'../../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/includes/OAuth/bootstrap.php';
38use OAuth\Common\Storage\DoliStorage;
39use OAuth\Common\Consumer\Credentials;
42$urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
43$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
47$action =
GETPOST(
'action',
'aZ09');
48$backtourl =
GETPOST(
'backtourl',
'alpha');
49$keyforprovider =
GETPOST(
'keyforprovider',
'aZ09');
50if (empty($keyforprovider) && !empty($_SESSION[
"oauthkeyforproviderbeforeoauthjump"]) && (
GETPOST(
'code') || $action ==
'delete')) {
51 $keyforprovider = $_SESSION[
"oauthkeyforproviderbeforeoauthjump"];
53$genericstring =
'MICROSOFT2';
63$currentUri =
$uriFactory->createFromAbsolute($urlwithroot.
'/core/modules/oauth/microsoft2_oauthcallback.php');
71$serviceFactory = new \OAuth\ServiceFactory();
72$httpClient = new \OAuth\Common\Http\Client\CurlClient();
76$serviceFactory->setHttpClient($httpClient);
79$keyforparamid =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_ID';
80$keyforparamsecret =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_SECRET';
81$keyforparamtenant =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_TENANT';
86$credentials =
new Credentials(
89 $currentUri->getAbsoluteUri()
95$requestedpermissionsarray = array();
97 $requestedpermissionsarray = explode(
',', $state);
99if ($action !=
'delete' && empty($requestedpermissionsarray)) {
100 print
'Error, parameter state is not defined';
110 $nameofservice = ucfirst(strtolower($genericstring));
111 $apiService = $serviceFactory->createService($nameofservice, $credentials, $storage, $requestedpermissionsarray);
112 '@phan-var-force OAuth\OAuth2\Service\AbstractService|OAuth\OAuth1\Service\AbstractService $apiService';
114 print $e->getMessage();
124if (empty($apiService)) {
125 print
'Error, failed to create serviceFactory';
132$langs->load(
"oauth");
135 accessforbidden(
'Setup of service is not complete. Customer ID is missing');
138 accessforbidden(
'Setup of service is not complete. Secret key is missing');
141 accessforbidden(
'Setup of service is not complete. Tenant/Annuary ID key is missing');
149if ($action ==
'delete' && (!empty($user->admin) || $user->id ==
GETPOSTINT(
'userid'))) {
151 $storage->clearToken($genericstring);
155 if (empty($backtourl)) {
156 $backtourl = DOL_URL_ROOT.
'/';
159 header(
'Location: '.$backtourl);
183 $token = $apiService->requestAccessToken(
GETPOST(
'code'));
193 $backtourl = $_SESSION[
"backtourlsavedbeforeoauthjump"];
194 unset($_SESSION[
"backtourlsavedbeforeoauthjump"]);
196 header(
'Location: '.$backtourl);
199 print $e->getMessage();
204 $_SESSION[
"backtourlsavedbeforeoauthjump"] = $backtourl;
205 $_SESSION[
"oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
206 $_SESSION[
'oauthstateanticsrf'] = $state;
215 $url = $apiService->getAuthorizationUri(array(
'state' => $state));
217 $url = $apiService->getAuthorizationUri();
225 header(
'Location: '.$url);
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.
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
$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.