NEW Add a button to create Stripe customer from the Payment mode tab
This commit is contained in:
parent
3f7cd8b1bd
commit
b232681318
@ -135,7 +135,7 @@ class InterfaceStripe
|
|||||||
if ($action == 'COMPANY_MODIFY') {
|
if ($action == 'COMPANY_MODIFY') {
|
||||||
dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
|
dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
|
||||||
if ($stripe->getStripeAccount($service) && $object->client != 0) {
|
if ($stripe->getStripeAccount($service) && $object->client != 0) {
|
||||||
$cu = $stripe->customerStripe($object->id, $stripe->getStripeAccount($service));
|
$cu = $stripe->customerStripe($object, $stripe->getStripeAccount($service));
|
||||||
if ($cu) {
|
if ($cu) {
|
||||||
if ($conf->entity == '1') {
|
if ($conf->entity == '1') {
|
||||||
$customer = \Stripe\Customer::retrieve("$cu->id");
|
$customer = \Stripe\Customer::retrieve("$cu->id");
|
||||||
@ -153,7 +153,7 @@ class InterfaceStripe
|
|||||||
}
|
}
|
||||||
} elseif ($action == 'COMPANY_DELETE') {
|
} elseif ($action == 'COMPANY_DELETE') {
|
||||||
dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
|
dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
|
||||||
$cu = $stripe->customerStripe($object->id, $stripe->getStripeAccount($service));
|
$cu = $stripe->customerStripe($object, $stripe->getStripeAccount($service));
|
||||||
if ($cu) {
|
if ($cu) {
|
||||||
if ($conf->entity == 1) {
|
if ($conf->entity == 1) {
|
||||||
$customer = \Stripe\Customer::retrieve("$cu->id");
|
$customer = \Stripe\Customer::retrieve("$cu->id");
|
||||||
|
|||||||
@ -59,3 +59,4 @@ ExpiryDate=Expiry Date
|
|||||||
CVN=CVN
|
CVN=CVN
|
||||||
DeleteACard=Delete Card record
|
DeleteACard=Delete Card record
|
||||||
ConfirmDeleteCard=Are you sure you want to delete this Card record?
|
ConfirmDeleteCard=Are you sure you want to delete this Card record?
|
||||||
|
CreateCustomerOnStripe=Create customer on Stripe
|
||||||
|
|||||||
@ -263,8 +263,10 @@ class SocieteAccount extends CommonObject
|
|||||||
$sql.= " WHERE sa.fk_soc = " . $id;
|
$sql.= " WHERE sa.fk_soc = " . $id;
|
||||||
$sql.= " AND sa.entity IN (".getEntity('societe').")";
|
$sql.= " AND sa.entity IN (".getEntity('societe').")";
|
||||||
$sql.= " AND sa.site = '".$this->db->escape($site)."' AND sa.status = ".((int) $status);
|
$sql.= " AND sa.site = '".$this->db->escape($site)."' AND sa.status = ".((int) $status);
|
||||||
|
$sql.= " AND key_account IS NOT NULL AND key_account <> ''";
|
||||||
|
//$sql.= " ORDER BY sa.key_account DESC";
|
||||||
|
|
||||||
dol_syslog(get_class($this) . "::getCustomerAccount Try to find the system customer id of thirdparty id=".$id." (exemple: cu_.... for stripe)", LOG_DEBUG);
|
dol_syslog(get_class($this) . "::getCustomerAccount Try to find the system customer id of thirdparty id=".$id." (exemple: cus_.... for stripe)", LOG_DEBUG);
|
||||||
$result = $this->db->query($sql);
|
$result = $this->db->query($sql);
|
||||||
if ($result) {
|
if ($result) {
|
||||||
if ($this->db->num_rows($result)) {
|
if ($this->db->num_rows($result)) {
|
||||||
|
|||||||
@ -41,6 +41,7 @@ require_once DOL_DOCUMENT_ROOT.'/stripe/class/stripe.class.php';
|
|||||||
|
|
||||||
$langs->loadLangs(array("companies","commercial","banks","bills"));
|
$langs->loadLangs(array("companies","commercial","banks","bills"));
|
||||||
|
|
||||||
|
|
||||||
// Security check
|
// Security check
|
||||||
$socid = GETPOST("socid","int");
|
$socid = GETPOST("socid","int");
|
||||||
if ($user->societe_id) $socid=$user->societe_id;
|
if ($user->societe_id) $socid=$user->societe_id;
|
||||||
@ -82,8 +83,8 @@ if (! empty($conf->stripe->enabled))
|
|||||||
}
|
}
|
||||||
|
|
||||||
$stripe = new Stripe($db);
|
$stripe = new Stripe($db);
|
||||||
$stripeacc = $stripe->getStripeAccount($service); // Stripe OAuth connect account of dolibarr user (no network access here)
|
$stripeacc = $stripe->getStripeAccount($service); // Get Stripe OAuth connect account (no network access here)
|
||||||
$stripecu = $stripe->getStripeCustomerAccount($object->id, $servicestatus); // Get thirdparty cu_...
|
$stripecu = $stripe->getStripeCustomerAccount($object->id, $servicestatus); // Get remote Stripe customer 'cus_...' (no network access here)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -474,6 +475,7 @@ if (empty($reshook))
|
|||||||
$_POST['lang_id'] = GETPOST('lang_idrib'.GETPOST('companybankid'));
|
$_POST['lang_id'] = GETPOST('lang_idrib'.GETPOST('companybankid'));
|
||||||
$_POST['model'] = GETPOST('modelrib'.GETPOST('companybankid'));
|
$_POST['model'] = GETPOST('modelrib'.GETPOST('companybankid'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$id = $socid;
|
$id = $socid;
|
||||||
$upload_dir = $conf->societe->multidir_output[$object->entity];
|
$upload_dir = $conf->societe->multidir_output[$object->entity];
|
||||||
$permissioncreate=$user->rights->societe->creer;
|
$permissioncreate=$user->rights->societe->creer;
|
||||||
@ -484,6 +486,29 @@ if (empty($reshook))
|
|||||||
// Action for stripe
|
// Action for stripe
|
||||||
if (! empty($conf->stripe->enabled) && class_exists('Stripe'))
|
if (! empty($conf->stripe->enabled) && class_exists('Stripe'))
|
||||||
{
|
{
|
||||||
|
if ($action == 'synccustomertostripe')
|
||||||
|
{
|
||||||
|
if ($object->client == 0)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
setEventMessages('ThisThirdpartyIsNotACustomer', null, 'errors');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Creation of Stripe customer + update of societe_account
|
||||||
|
$cu = $stripe->customerStripe($object, $stripeacc, $servicestatus, 1);
|
||||||
|
if (! $cu)
|
||||||
|
{
|
||||||
|
$error++;
|
||||||
|
setEventMessages($stripe->error, $stripe->errors, 'errors');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$stripecu = $cu->id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($action == 'setkey_account')
|
if ($action == 'setkey_account')
|
||||||
{
|
{
|
||||||
$error = 0;
|
$error = 0;
|
||||||
@ -655,7 +680,7 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||||||
if ($object->client)
|
if ($object->client)
|
||||||
{
|
{
|
||||||
print '<tr><td class="titlefield">';
|
print '<tr><td class="titlefield">';
|
||||||
print $langs->trans('CustomerCode').'</td><td colspan="3">';
|
print $langs->trans('CustomerCode').'</td><td colspan="2">';
|
||||||
print $object->code_client;
|
print $object->code_client;
|
||||||
if ($object->check_codeclient() <> 0) print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
if ($object->check_codeclient() <> 0) print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
@ -682,6 +707,17 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||||||
print '</td><td>';
|
print '</td><td>';
|
||||||
//print $stripecu;
|
//print $stripecu;
|
||||||
print $form->editfieldval("StripeCustomerId", 'key_account', $stripecu, $object, $permissiontowrite, 'string', '', null, null, '', 1, '', 'socid');
|
print $form->editfieldval("StripeCustomerId", 'key_account', $stripecu, $object, $permissiontowrite, 'string', '', null, null, '', 1, '', 'socid');
|
||||||
|
print '</td><td align="right">';
|
||||||
|
if (empty($stripecu))
|
||||||
|
{
|
||||||
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
||||||
|
print '<input type="hidden" name="action" value="synccustomertostripe">';
|
||||||
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
|
print '<input type="hidden" name="socid" value="'.$object->id.'">';
|
||||||
|
print '<input type="hidden" name="companybankid" value="'.$rib->id.'">';
|
||||||
|
print '<input type="submit" class="button" name="syncstripecustomer" value="'.$langs->trans("CreateCustomerOnStripe").'">';
|
||||||
|
print '</form>';
|
||||||
|
}
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -698,20 +734,20 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||||||
{
|
{
|
||||||
$morehtmlright='<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=createcard">'.$langs->trans("Add").'</a>';
|
$morehtmlright='<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=createcard">'.$langs->trans("Add").'</a>';
|
||||||
}
|
}
|
||||||
print load_fiche_titre($langs->trans('StripePaymentModes').($stripeacc?' ('.$stripeacc.')':''), $morehtmlright, '');
|
print load_fiche_titre($langs->trans('StripePaymentModes').($stripeacc?' ('.$stripeacc.')':' (API mode)'), $morehtmlright, '');
|
||||||
|
|
||||||
$listofsources = array();
|
$listofsources = array();
|
||||||
if (is_object($stripe) && $stripeacc)
|
if (is_object($stripe))
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$customerstripe=$stripe->customerStripe($object->id, $stripeacc, $servicestatus);
|
$customerstripe=$stripe->customerStripe($object, $stripeacc, $servicestatus);
|
||||||
if ($customerstripe->id) {
|
if ($customerstripe->id) {
|
||||||
$listofsources=$customerstripe->sources->data;
|
$listofsources=$customerstripe->sources->data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(Exception $e)
|
catch(Exception $e)
|
||||||
{
|
{
|
||||||
dol_syslog("Failed to get strip customer for thirdparty id =".$object->id);
|
dol_syslog("Error when searching/loading Stripe customer for thirdparty id =".$object->id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -816,10 +852,6 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
|
|||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
print $langs->trans("NoPaymentMethodOnFile");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else dol_print_error($db);
|
else dol_print_error($db);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -99,7 +99,7 @@ class ActionsStripeconnect
|
|||||||
$this->resprints.= '<td colspan="3">';
|
$this->resprints.= '<td colspan="3">';
|
||||||
$stripe=new Stripe($db);
|
$stripe=new Stripe($db);
|
||||||
if ($stripe->getStripeAccount($service)&&$object->client!=0) {
|
if ($stripe->getStripeAccount($service)&&$object->client!=0) {
|
||||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
$customer=$stripe->customerStripe($object,$stripe->getStripeAccount($service));
|
||||||
$this->resprints.= $customer->id;
|
$this->resprints.= $customer->id;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -117,8 +117,9 @@ class ActionsStripeconnect
|
|||||||
$this->resprints.= '</td>';
|
$this->resprints.= '</td>';
|
||||||
$this->resprints.= '<td colspan="3">';
|
$this->resprints.= '<td colspan="3">';
|
||||||
$stripe=new Stripe($db);
|
$stripe=new Stripe($db);
|
||||||
if ($stripe->getStripeAccount($service)&&$object->fk_soc>'0') {
|
if ($stripe->getStripeAccount($service) && $object->fk_soc > 0) {
|
||||||
$customer=$stripe->customerStripe($object->fk_soc,$stripe->getStripeAccount($service));
|
$object->fetch_thirdparty();
|
||||||
|
$customer=$stripe->customerStripe($object->thirdparty, $stripe->getStripeAccount($service));
|
||||||
$this->resprints.= $customer->id;
|
$this->resprints.= $customer->id;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -135,7 +136,8 @@ class ActionsStripeconnect
|
|||||||
$this->resprints.= '<td colspan="3">';
|
$this->resprints.= '<td colspan="3">';
|
||||||
$stripe=new Stripe($db);
|
$stripe=new Stripe($db);
|
||||||
if (7==4) {
|
if (7==4) {
|
||||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
$object->fetch_thirdparty();
|
||||||
|
$customer=$stripe->customerStripe($object,$stripe->getStripeAccount($service));
|
||||||
$this->resprints.= $customer->id;
|
$this->resprints.= $customer->id;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -154,7 +156,8 @@ class ActionsStripeconnect
|
|||||||
$this->resprints.= '<td colspan="3">';
|
$this->resprints.= '<td colspan="3">';
|
||||||
$stripe=new Stripe($db);
|
$stripe=new Stripe($db);
|
||||||
if (7==4) {
|
if (7==4) {
|
||||||
$customer=$stripe->customerStripe($object->id,$stripe->getStripeAccount($service));
|
$object->fetch_thirdparty();
|
||||||
|
$customer=$stripe->customerStripe($object,$stripe->getStripeAccount($service));
|
||||||
$this->resprints.= $customer->id;
|
$this->resprints.= $customer->id;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
@ -20,7 +20,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
|
|||||||
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/stripe/config.php';
|
require_once DOL_DOCUMENT_ROOT.'/stripe/config.php'; // This set stripe global env
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -86,6 +86,7 @@ class Stripe extends CommonObject
|
|||||||
dol_print_error($this->db);
|
dol_print_error($this->db);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dol_syslog("No dedicated Stipe Connect account available for entity".$conf->entity);
|
||||||
return $key;
|
return $key;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,30 +103,33 @@ class Stripe extends CommonObject
|
|||||||
|
|
||||||
include_once DOL_DOCUMENT_ROOT.'/societe/class/societeaccount.class.php';
|
include_once DOL_DOCUMENT_ROOT.'/societe/class/societeaccount.class.php';
|
||||||
$societeaccount = new SocieteAccount($this->db);
|
$societeaccount = new SocieteAccount($this->db);
|
||||||
return $societeaccount->getCustomerAccount($id, 'stripe', $status); // Get thirdparty cu_...
|
return $societeaccount->getCustomerAccount($id, 'stripe', $status); // Get thirdparty cus_...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the Stripe customer of a thirdparty (with option to create it if not linked yet)
|
* Get the Stripe customer of a thirdparty (with option to create it if not linked yet)
|
||||||
*
|
*
|
||||||
* @param int $id Id of third party
|
* @param Societe $object Object thirdparty to check, or create on stripe (create on strip also update the stripe_account table for current entity)
|
||||||
* @param string $key Stripe account acc_....
|
* @param string $key ''=Use common API. If not '', it is the Stripe connect account 'acc_....' to use Stripe connect
|
||||||
* @param int $status Status (0=test, 1=live)
|
* @param int $status Status (0=test, 1=live)
|
||||||
* @param int $createifnotlinkedtostripe 1=Create the stripe customer and the link if the thirdparty is not yet linked to a stripe customer
|
* @param int $createifnotlinkedtostripe 1=Create the stripe customer and the link if the thirdparty is not yet linked to a stripe customer
|
||||||
* @return \Stripe\StripeObject|\Stripe\ApiResource|null Stripe Customer or null if not found
|
* @return \Stripe\StripeCustomer|null Stripe Customer or null if not found
|
||||||
*/
|
*/
|
||||||
public function customerStripe($id, $key, $status=0, $createifnotlinkedtostripe=0)
|
public function customerStripe($object, $key='', $status=0, $createifnotlinkedtostripe=0)
|
||||||
{
|
{
|
||||||
global $conf;
|
global $conf, $user;
|
||||||
|
|
||||||
$sql = "SELECT sa.key_account as key_account, sa.entity"; // key_account is cu_....
|
$customer = null;
|
||||||
|
|
||||||
|
$sql = "SELECT sa.key_account as key_account, sa.entity"; // key_account is cus_....
|
||||||
$sql.= " FROM " . MAIN_DB_PREFIX . "societe_account as sa";
|
$sql.= " FROM " . MAIN_DB_PREFIX . "societe_account as sa";
|
||||||
$sql.= " WHERE sa.fk_soc = " . $id;
|
$sql.= " WHERE sa.fk_soc = " . $object->id;
|
||||||
$sql.= " AND sa.entity IN (".getEntity('societe').")";
|
$sql.= " AND sa.entity IN (".getEntity('societe').")";
|
||||||
$sql.= " AND sa.site = 'stripe' AND sa.status = ".((int) $status);
|
$sql.= " AND sa.site = 'stripe' AND sa.status = ".((int) $status);
|
||||||
|
$sql.= " AND key_account IS NOT NULL AND key_account <> ''";
|
||||||
|
|
||||||
dol_syslog(get_class($this) . "::fetch", LOG_DEBUG);
|
dol_syslog(get_class($this) . "::fetch search stripe customer id for thirdparty id=".$object->id, LOG_DEBUG);
|
||||||
$resql = $this->db->query($sql);
|
$resql = $this->db->query($sql);
|
||||||
if ($resql) {
|
if ($resql) {
|
||||||
$num = $this->db->num_rows($resql);
|
$num = $this->db->num_rows($resql);
|
||||||
@ -133,41 +137,52 @@ class Stripe extends CommonObject
|
|||||||
{
|
{
|
||||||
$obj = $this->db->fetch_object($resql);
|
$obj = $this->db->fetch_object($resql);
|
||||||
$tiers = $obj->key_account;
|
$tiers = $obj->key_account;
|
||||||
if ($conf->entity == 1) {
|
try {
|
||||||
$customer = \Stripe\Customer::retrieve("$tiers");
|
if (empty($key)) { // If the Stripe connect account not set, we use common API usage
|
||||||
} else {
|
$customer = \Stripe\Customer::retrieve("$tiers");
|
||||||
$customer = \Stripe\Customer::retrieve("$tiers", array(
|
} else {
|
||||||
"stripe_account" => $key
|
$customer = \Stripe\Customer::retrieve("$tiers", array("stripe_account" => $key));
|
||||||
));
|
}
|
||||||
|
}
|
||||||
|
catch(Exception $e)
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($createifnotlinkedtostripe)
|
elseif ($createifnotlinkedtostripe)
|
||||||
{
|
{
|
||||||
$soc = new Societe($this->db);
|
$dataforcustomer = array(
|
||||||
$soc->fetch($id);
|
"email" => $object->email,
|
||||||
|
"business_vat_id" => $object->tva_intra,
|
||||||
|
"description" => $object->name,
|
||||||
|
"metadata" => array('dol_id'=>$object->id, 'dol_version'=>DOL_VERSION, 'dol_entity'=>$conf->entity)
|
||||||
|
);
|
||||||
|
|
||||||
if ($conf->entity == 1) {
|
//$a = \Stripe\Stripe::getApiKey();
|
||||||
$customer = \Stripe\Customer::create(array(
|
//var_dump($a);var_dump($key);exit;
|
||||||
"email" => $soc->email,
|
try {
|
||||||
"business_vat_id" => $soc->tva_intra,
|
if (empty($key)) { // If the Stripe connect account not set, we use common API usage
|
||||||
"description" => $soc->name
|
$customer = \Stripe\Customer::create($dataforcustomer);
|
||||||
));
|
} else {
|
||||||
} else {
|
$customer = \Stripe\Customer::create($dataforcustomer, array("stripe_account" => $key));
|
||||||
$customer = \Stripe\Customer::create(array(
|
}
|
||||||
"email" => $soc->email,
|
$customer_id = $customer->id;
|
||||||
"business_vat_id" => $soc->tva_intra,
|
|
||||||
"description" => $soc->name
|
$sql = "INSERT INTO " . MAIN_DB_PREFIX . "societe_account (fk_soc, login, key_account, site, status, entity, date_creation, fk_user_creat)";
|
||||||
), array(
|
$sql .= " VALUES (".$object->id.", '', '".$this->db->escape($customer_id)."', 'stripe', " . $status . ", " . $conf->entity . ", '".$this->db->idate(dol_now())."', ".$user->id.")";
|
||||||
"stripe_account" => $key
|
$resql = $this->db->query($sql);
|
||||||
));
|
if (! $resql)
|
||||||
|
{
|
||||||
|
$this->error = $this->db->lasterror();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception $e)
|
||||||
|
{
|
||||||
|
//print $e->getMessage();
|
||||||
}
|
}
|
||||||
$customer_id = $customer->id;
|
|
||||||
|
|
||||||
$sql = "INSERT INTO " . MAIN_DB_PREFIX . "societe_account (fk_soc, key_account, site, status, entity)";
|
|
||||||
$sql .= " VALUES (".$id.", '".$this->db->escape($customer_id)."', 'stripe', " . $status . "," . $conf->entity . ")";
|
|
||||||
$resql = $this->db->query($sql);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $customer;
|
return $customer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,8 +193,8 @@ class Stripe extends CommonObject
|
|||||||
* @param string $currency EUR, GPB...
|
* @param string $currency EUR, GPB...
|
||||||
* @param string $origin order, invoice, contract...
|
* @param string $origin order, invoice, contract...
|
||||||
* @param int $item if of element to pay
|
* @param int $item if of element to pay
|
||||||
* @param string $source src_xxxxx or card_xxxxx or ac_xxxxx
|
* @param string $source src_xxxxx or card_xxxxx
|
||||||
* @param string $customer Stripe account ref 'cu_xxxxxxxxxxxxx' via customerStripe()
|
* @param string $customer Stripe customer ref 'cus_xxxxxxxxxxxxx' via customerStripe()
|
||||||
* @param string $account Stripe account ref 'acc_xxxxxxxxxxxxx' via getStripeAccount()
|
* @param string $account Stripe account ref 'acc_xxxxxxxxxxxxx' via getStripeAccount()
|
||||||
* @param int $status Status (0=test, 1=live)
|
* @param int $status Status (0=test, 1=live)
|
||||||
* @return Stripe
|
* @return Stripe
|
||||||
|
|||||||
@ -15,44 +15,38 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* Set Stripe environment: set the ApiKey and AppInfo
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file htdocs/public/stripe/config.php
|
* \file htdocs/stripe/config.php
|
||||||
* \ingroup Stripe
|
* \ingroup Stripe
|
||||||
* \brief Page to move config in api
|
* \brief Page to move config in api
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/stripe/lib/stripe.lib.php';
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/includes/stripe/init.php';
|
require_once DOL_DOCUMENT_ROOT.'/includes/stripe/init.php';
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/includes/stripe/lib/Stripe.php';
|
||||||
|
|
||||||
global $stripe;
|
global $stripe;
|
||||||
global $conf;
|
global $conf;
|
||||||
|
|
||||||
//use \includes\stripe as stripe;
|
|
||||||
$stripe = array();
|
|
||||||
|
|
||||||
|
$stripearrayofkeys = array();
|
||||||
if (empty($conf->global->STRIPE_LIVE) || GETPOST('forcesandbox','alpha'))
|
if (empty($conf->global->STRIPE_LIVE) || GETPOST('forcesandbox','alpha'))
|
||||||
{
|
{
|
||||||
$stripe = array(
|
$stripearrayofkeys = array(
|
||||||
"secret_key" => $conf->global->STRIPE_TEST_SECRET_KEY,
|
"secret_key" => $conf->global->STRIPE_TEST_SECRET_KEY,
|
||||||
"publishable_key" => $conf->global->STRIPE_TEST_PUBLISHABLE_KEY
|
"publishable_key" => $conf->global->STRIPE_TEST_PUBLISHABLE_KEY
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$stripe = array(
|
$stripearrayofkeys = array(
|
||||||
"secret_key" => $conf->global->STRIPE_LIVE_SECRET_KEY,
|
"secret_key" => $conf->global->STRIPE_LIVE_SECRET_KEY,
|
||||||
"publishable_key" => $conf->global->STRIPE_LIVE_PUBLISHABLE_KEY
|
"publishable_key" => $conf->global->STRIPE_LIVE_PUBLISHABLE_KEY
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once DOL_DOCUMENT_ROOT."/includes/stripe/lib/Stripe.php";
|
\Stripe\Stripe::setApiKey($stripearrayofkeys['secret_key']);
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
|
|
||||||
|
|
||||||
\Stripe\Stripe::setApiKey($stripe['secret_key']);
|
|
||||||
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
|
|
||||||
|
|
||||||
\Stripe\Stripe::setAppInfo("Stripe", DOL_VERSION, "https://www.dolibarr.org"); // add dolibarr version
|
\Stripe\Stripe::setAppInfo("Stripe", DOL_VERSION, "https://www.dolibarr.org"); // add dolibarr version
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user