dolibarr 18.0.6
stripetest_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 Frederic France <frederic.france@free.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26require '../../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.'/includes/OAuth/bootstrap.php';
28use OAuth\Common\Storage\DoliStorage;
29use OAuth\Common\Consumer\Credentials;
30use OAuth\OAuth2\Service\GitHub;
31
32// Define $urlwithroot
33$urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
34$urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
35//$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
36
37
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"];
43}
44
45
49$uriFactory = new \OAuth\Common\Http\Uri\UriFactory();
50//$currentUri = $uriFactory->createFromSuperGlobalArray($_SERVER);
51//$currentUri->setQuery('');
52$currentUri = $uriFactory->createFromAbsolute($urlwithroot.'/core/modules/oauth/stripetest_oauthcallback.php');
53
54
60$serviceFactory = new \OAuth\ServiceFactory();
61$httpClient = new \OAuth\Common\Http\Client\CurlClient();
62// TODO Set options for proxy and timeout
63// $params=array('CURLXXX'=>value, ...)
64//$httpClient->setCurlParameters($params);
65$serviceFactory->setHttpClient($httpClient);
66
67// Dolibarr storage
68$storage = new DoliStorage($db, $conf, $keyforprovider);
69
70// Setup the credentials for the requests
71$keyforparamid = 'OAUTH_STRIPE_TEST'.($keyforprovider ? '-'.$keyforprovider : '').'_ID';
72$keyforparamsecret = 'OAUTH_STRIPE_TEST'.($keyforprovider ? '-'.$keyforprovider : '').'_SECRET';
73$credentials = new Credentials(
74 getDolGlobalString($keyforparamid),
75 getDolGlobalString($keyforparamsecret),
76 $currentUri->getAbsoluteUri()
77);
78
79$requestedpermissionsarray = array();
80if (GETPOST('state')) {
81 $requestedpermissionsarray = explode(',', GETPOST('state')); // Example: 'userinfo_email,userinfo_profile,cloud_print'. 'state' parameter is standard to retrieve some parameters back
82}
83/*if ($action != 'delete' && empty($requestedpermissionsarray))
84{
85 print 'Error, parameter state is not defined';
86 exit;
87}*/
88//var_dump($requestedpermissionsarray);exit;
89
90// Instantiate the Api service using the credentials, http client and storage mechanism for the token
91//$apiService = $serviceFactory->createService('StripeTest', $credentials, $storage, $requestedpermissionsarray);
92
93$servicesuffix = ($keyforprovider ? '-'.$keyforprovider : '');
94$sql = "INSERT INTO ".MAIN_DB_PREFIX."oauth_token SET service = 'StripeTest".$db->escape($servicesuffix)."', entity = ".((int) $conf->entity);
95$db->query($sql);
96
97// access type needed to have oauth provider refreshing token
98//$apiService->setAccessType('offline');
99
100$langs->load("oauth");
101
102if (!getDolGlobalString($keyforparamid)) {
103 accessforbidden('Setup of service is not complete. Customer ID is missing');
104}
105if (!getDolGlobalString($keyforparamsecret)) {
106 accessforbidden('Setup of service is not complete. Secret key is missing');
107}
108
109
110/*
111 * Actions
112 */
113
114
115if ($action == 'delete') {
116 $storage->clearToken('StripeTest');
117
118 setEventMessages($langs->trans('TokenDeleted'), null, 'mesgs');
119
120 header('Location: '.$backtourl);
121 exit();
122}
123
124if (GETPOST('code')) { // We are coming from oauth provider page
125 // We should have
126 //$_GET=array('code' => string 'aaaaaaaaaaaaaa' (length=20), 'state' => string 'user,public_repo' (length=16))
127
128 dol_syslog("We are coming from the oauth provider page code=".dol_trunc(GETPOST('code'), 5));
129
130 // This was a callback request from service, get the token
131 try {
132 //var_dump($state);
133 //var_dump($apiService); // OAuth\OAuth2\Service\Stripe
134
135 //$token = $apiService->requestAccessToken(GETPOST('code'), $state);
136 $token = $apiService->requestAccessToken(GETPOST('code'));
137 // Stripe is a service that does not need state to be stored as second paramater of requestAccessToken
138
139 setEventMessages($langs->trans('NewTokenStored'), null, 'mesgs'); // Stored into object managed by class DoliStorage so into table oauth_token
140
141 $backtourl = $_SESSION["backtourlsavedbeforeoauthjump"];
142 unset($_SESSION["backtourlsavedbeforeoauthjump"]);
143
144 if (empty($backtourl)) {
145 $backtourl = DOL_URL_ROOT.'/';
146 }
147
148 header('Location: '.$backtourl);
149 exit();
150 } catch (Exception $e) {
151 print $e->getMessage();
152 }
153} else // If entry on page with no parameter, we arrive here
154{
155 $_SESSION["backtourlsavedbeforeoauthjump"] = $backtourl;
156 $_SESSION["oauthkeyforproviderbeforeoauthjump"] = $keyforprovider;
157 $_SESSION['oauthstateanticsrf'] = $state;
158
159 // This may create record into oauth_state before the header redirect.
160 // Creation of record with state in this tables depend on the Provider used (see its constructor).
161 if (GETPOST('state')) {
162 $url = $apiService->getAuthorizationUri(array('state'=>GETPOST('state')));
163 } else {
164 //$url = $apiService->getAuthorizationUri(); // Parameter state will be randomly generated
165 //https://connect.stripe.com/oauth/authorize?response_type=code&client_id=ca_AX27ut70tJ1j6eyFCV3ObEXhNOo2jY6V&scope=read_write
166 $url = 'https://connect.stripe.com/oauth/authorize?response_type=code&client_id='.$conf->global->$keyforparamid.'&scope=read_write';
167 }
168
169 if (empty($url)) {
170 $url = DOL_URL_ROOT.'/';
171 }
172
173 // we go on oauth provider authorization page
174 header('Location: '.$url);
175 exit();
176}
177
178
179/*
180 * View
181 */
182
183// No view at all, just actions
184
185$db->close();
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
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 dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
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.