27require
'../../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/includes/OAuth/bootstrap.php';
29use OAuth\Common\Storage\DoliStorage;
30use OAuth\Common\Consumer\Credentials;
33$urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
34$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
38$action =
GETPOST(
'action',
'aZ09');
39$backtourl =
GETPOST(
'backtourl',
'alpha');
40$keyforprovider =
GETPOST(
'keyforprovider',
'aZ09');
41if (empty($keyforprovider) && !empty($_SESSION[
"oauthkeyforproviderbeforeoauthjump"]) && (
GETPOST(
'code') || $action ==
'delete')) {
42 $keyforprovider = $_SESSION[
"oauthkeyforproviderbeforeoauthjump"];
44$genericstring =
'MICROSOFT';
52$currentUri =
$uriFactory->createFromAbsolute($urlwithroot.
'/core/modules/oauth/microsoft_oauthcallback.php');
60$serviceFactory = new \OAuth\ServiceFactory();
61$httpClient = new \OAuth\Common\Http\Client\CurlClient();
65$serviceFactory->setHttpClient($httpClient);
68$keyforparamid =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_ID';
69$keyforparamsecret =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_SECRET';
70$keyforparamtenant =
'OAUTH_'.$genericstring.($keyforprovider ?
'-'.$keyforprovider :
'').
'_TENANT';
73$storage =
new DoliStorage($db, $conf, $keyforprovider,
getDolGlobalString($keyforparamtenant));
75$credentials =
new Credentials(
78 $currentUri->getAbsoluteUri()
83$requestedpermissionsarray = array();
85 $requestedpermissionsarray = explode(
',', $state);
87if ($action !=
'delete' && empty($requestedpermissionsarray)) {
88 print
'Error, parameter state is not defined';
98 $nameofservice = ucfirst(strtolower($genericstring));
99 $apiService = $serviceFactory->createService($nameofservice, $credentials, $storage, $requestedpermissionsarray);
100 '@phan-var-force OAuth\OAuth2\Service\AbstractService|OAuth\OAuth1\Service\AbstractService $apiService';
102 print $e->getMessage();
112if (empty($apiService)) {
113 print
'Error, failed to create serviceFactory';
120$langs->load(
"oauth");
123 accessforbidden(
'Setup of service is not complete. Customer ID is missing');
126 accessforbidden(
'Setup of service is not complete. Secret key is missing');
129 accessforbidden(
'Setup of service is not complete. Tenant/Annuary ID key is missing');
137if ($action ==
'delete' && (!empty($user->admin) || $user->id ==
GETPOSTINT(
'userid'))) {
139 $storage->clearToken($genericstring);
143 if (empty($backtourl)) {
144 $backtourl = DOL_URL_ROOT.
'/';
147 header(
'Location: '.$backtourl);
171 $token = $apiService->requestAccessToken(
GETPOST(
'code'));
181 $backtourl = $_SESSION[
"backtourlsavedbeforeoauthjump"];
182 unset($_SESSION[
"backtourlsavedbeforeoauthjump"]);
184 header(
'Location: '.$backtourl);
187 print $e->getMessage();
192 $_SESSION[
"backtourlsavedbeforeoauthjump"] = $backtourl;
193 $_SESSION[
"oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
194 $_SESSION[
'oauthstateanticsrf'] = $state;
203 $url = $apiService->getAuthorizationUri(array(
'state' => $state));
205 $url = $apiService->getAuthorizationUri();
213 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.
$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.