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"];
52$currentUri =
$uriFactory->createFromAbsolute($urlwithroot.
'/core/modules/oauth/github_oauthcallback.php');
60$serviceFactory = new \OAuth\ServiceFactory();
61$httpClient = new \OAuth\Common\Http\Client\CurlClient();
65$serviceFactory->setHttpClient($httpClient);
68$storage =
new DoliStorage($db, $conf, $keyforprovider);
71$keyforparamid =
'OAUTH_GITHUB'.($keyforprovider ?
'-'.$keyforprovider :
'').
'_ID';
72$keyforparamsecret =
'OAUTH_GITHUB'.($keyforprovider ?
'-'.$keyforprovider :
'').
'_SECRET';
73$credentials =
new Credentials(
76 $currentUri->getAbsoluteUri()
79$requestedpermissionsarray = array();
81 $requestedpermissionsarray = explode(
',',
GETPOST(
'state'));
83if ($action !=
'delete' && empty($requestedpermissionsarray)) {
84 print
'Error, parameter state is not defined';
90$apiService = $serviceFactory->createService(
'GitHub', $credentials, $storage, $requestedpermissionsarray);
91'@phan-var-force OAuth\OAuth2\Service\AbstractService|OAuth\OAuth1\Service\AbstractService $apiService';
99 accessforbidden(
'Setup of service is not complete. Customer ID is missing');
102 accessforbidden(
'Setup of service is not complete. Secret key is missing');
110if ($action ==
'delete' && (!empty($user->admin) || $user->id ==
GETPOSTINT(
'userid'))) {
112 $storage->clearToken(
'GitHub');
116 header(
'Location: '.$backtourl);
132 $token = $apiService->requestAccessToken(
GETPOST(
'code'));
141 $backtourl = $_SESSION[
"backtourlsavedbeforeoauthjump"];
142 unset($_SESSION[
"backtourlsavedbeforeoauthjump"]);
144 if (empty($backtourl)) {
145 $backtourl = DOL_URL_ROOT.
'/';
148 header(
'Location: '.$backtourl);
151 print $e->getMessage();
154 $_SESSION[
"backtourlsavedbeforeoauthjump"] = $backtourl;
155 $_SESSION[
"oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
156 $_SESSION[
'oauthstateanticsrf'] = $state;
161 $url = $apiService->getAuthorizationUri(array(
'state' =>
GETPOST(
'state')));
163 $url = $apiService->getAuthorizationUri();
167 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.
if(empty($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.