Update stripe.php

This commit is contained in:
Laurent Destailleur 2019-04-24 21:12:43 +02:00 committed by GitHub
parent 8007b222d0
commit 77f92a5da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -215,7 +215,7 @@ if ( empty(GETPOST('status', 'alpha')) ) {
} else { } else {
$endpoint->disabled = false; $endpoint->disabled = false;
}} }}
$endpoint->url = dol_buildpath('/public/stripe/ipn.php?test', 2); $endpoint->url = dol_buildpath('/public/stripe/ipn.php?test', 3);
$endpoint->save(); $endpoint->save();
if ($endpoint->status == 'enabled') if ($endpoint->status == 'enabled')
{ {
@ -256,8 +256,8 @@ if (empty($conf->stripeconnect->enabled))
print '</td><td></td></tr>'; print '</td><td></td></tr>';
print '<tr class="oddeven"><td>'; print '<tr class="oddeven"><td>';
print '<input class="minwidth300" type="text" name="STRIPE_LIVE_WEBHOOK_ID" value="'.$conf->global->STRIPE_LIVE_WEBHOOK_ID.'">'; print '<input class="minwidth300" type="text" name="STRIPE_LIVE_WEBHOOK_ID" value="'.$conf->global->STRIPE_LIVE_WEBHOOK_ID.'">';
print ' &nbsp; '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx<br>'; print ' &nbsp; '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx<br>';
print '<span class="titlefield fieldrequired">'.$langs->trans("STRIPE_LIVE_WEBHOOK_KEY").'</span></td><td>'; print '<span class="titlefield fieldrequired">'.$langs->trans("STRIPE_LIVE_WEBHOOK_KEY").'</span></td><td>';
print '<input class="minwidth300" type="text" name="STRIPE_LIVE_WEBHOOK_KEY" value="'.$conf->global->STRIPE_LIVE_WEBHOOK_KEY.'">'; print '<input class="minwidth300" type="text" name="STRIPE_LIVE_WEBHOOK_KEY" value="'.$conf->global->STRIPE_LIVE_WEBHOOK_KEY.'">';
print ' &nbsp; '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx'; print ' &nbsp; '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx';
@ -267,31 +267,31 @@ if (empty($conf->stripeconnect->enabled))
$out.= ajax_autoselect("onlinelivewebhookurl", 0); $out.= ajax_autoselect("onlinelivewebhookurl", 0);
print '<br />'.$out; print '<br />'.$out;
print '</td><td>'; print '</td><td>';
if ( !empty($conf->global->STRIPE_LIVE_WEBHOOK_KEY) && !empty($conf->global->STRIPE_LIVE_SECRET_KEY) && !empty($conf->global->STRIPE_LIVE_WEBHOOK_ID) ) { if ( !empty($conf->global->STRIPE_LIVE_WEBHOOK_KEY) && !empty($conf->global->STRIPE_LIVE_SECRET_KEY) && !empty($conf->global->STRIPE_LIVE_WEBHOOK_ID) ) {
\Stripe\Stripe::setApiKey($conf->global->STRIPE_LIVE_SECRET_KEY); \Stripe\Stripe::setApiKey($conf->global->STRIPE_LIVE_SECRET_KEY);
$endpoint = \Stripe\WebhookEndpoint::retrieve($conf->global->STRIPE_LIVE_WEBHOOK_ID); $endpoint = \Stripe\WebhookEndpoint::retrieve($conf->global->STRIPE_LIVE_WEBHOOK_ID);
$endpoint->enabled_events = $stripearrayofwebhookevents; $endpoint->enabled_events = $stripearrayofwebhookevents;
if ( GETPOST('webhook', 'alpha') == $conf->global->STRIPE_LIVE_WEBHOOK_ID ) { if ( GETPOST('webhook', 'alpha') == $conf->global->STRIPE_LIVE_WEBHOOK_ID ) {
if ( empty(GETPOST('status', 'alpha')) ) { if ( empty(GETPOST('status', 'alpha')) ) {
$endpoint->disabled = true; $endpoint->disabled = true;
} else { } else {
$endpoint->disabled = false; $endpoint->disabled = false;
}} }}
$endpoint->url = dol_buildpath('/public/stripe/ipn.php', 2); $endpoint->url = dol_buildpath('/public/stripe/ipn.php', 3);
$endpoint->save(); $endpoint->save();
if ($endpoint->status == 'enabled') if ($endpoint->status == 'enabled')
{ {
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=0">'; print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=0">';
print img_picto($langs->trans("Activated"), 'switch_on'); print img_picto($langs->trans("Activated"), 'switch_on');
} }
else else
{ {
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=1">'; print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=1">';
print img_picto($langs->trans("Disabled"), 'switch_off'); print img_picto($langs->trans("Disabled"), 'switch_off');
} }
//print $endpoint; //print $endpoint;
} else print img_picto($langs->trans("inactive"), 'statut5'); } else print img_picto($langs->trans("inactive"), 'statut5');
print '</td></tr>'; print '</td></tr>';
} }
else else
{ {