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"];
61$currentUri =
$uriFactory->createFromAbsolute($urlwithroot.
'/core/modules/oauth/stripetest_oauthcallback.php');
72$serviceFactory = new \OAuth\ServiceFactory();
73$httpClient = new \OAuth\Common\Http\Client\CurlClient();
77$serviceFactory->setHttpClient($httpClient);
80$storage =
new DoliStorage($db,
$conf, $keyforprovider);
83$keyforparamid =
'OAUTH_STRIPETEST'.($keyforprovider ?
'-'.$keyforprovider :
'').
'_ID';
84$keyforparamsecret =
'OAUTH_STRIPETEST'.($keyforprovider ?
'-'.$keyforprovider :
'').
'_SECRET';
85$credentials =
new Credentials(
88 $currentUri->getAbsoluteUri()
91$requestedpermissionsarray = array();
93 $requestedpermissionsarray = explode(
',',
GETPOST(
'state'));
105$servicesuffix = ($keyforprovider ?
'-'.$keyforprovider :
'');
106$sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"oauth_token SET service = 'StripeTest".$db->escape($servicesuffix).
"', entity = ".((int)
$conf->entity);
112$langs->load(
"oauth");
115 accessforbidden(
'Setup of service is not complete. Customer ID is missing');
118 accessforbidden(
'Setup of service is not complete. Secret key is missing');
126if ($action ==
'delete' && (!empty($user->admin) || $user->id ==
GETPOSTINT(
'userid'))) {
128 $storage->clearToken(
'StripeTest');
132 header(
'Location: '.$backtourl);
144 '@phan-var-force OAuth\OAuth2\Service\AbstractService|OAuth\OAuth1\Service\AbstractService $apiService';
149 $token = $apiService->requestAccessToken(
GETPOST(
'code'));
154 $backtourl = $_SESSION[
"backtourlsavedbeforeoauthjump"];
155 unset($_SESSION[
"backtourlsavedbeforeoauthjump"]);
157 if (empty($backtourl)) {
158 $backtourl = DOL_URL_ROOT.
'/';
161 header(
'Location: '.$backtourl);
164 print $e->getMessage();
167 $_SESSION[
"backtourlsavedbeforeoauthjump"] = $backtourl;
168 $_SESSION[
"oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
169 $_SESSION[
'oauthstateanticsrf'] = $state;
174 if (is_object($apiService)) {
175 '@phan-var-force OAuth\OAuth2\Service\AbstractService|OAuth\OAuth1\Service\AbstractService $apiService';
176 $url = $apiService->getAuthorizationUri(array(
'state' =>
GETPOST(
'state')));
183 $url =
'https://connect.stripe.com/oauth/authorize?response_type=code&client_id=' .
getDolGlobalString($keyforparamid).
'&scope=read_write';
187 $url = DOL_URL_ROOT.
'/';
191 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...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
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.