【发布时间】:2018-11-28 21:20:07
【问题描述】:
我有一个 Vue 应用程序,它对该页面进行 ajax 调用以“更新”我所说的更新订阅,但我实际上正在做的是取消当前订阅并添加另一个订阅。我会使用内置的更新功能,但是根据 Braintree 的文档,它目前不支持按比例分配具有不同计费周期的订阅。例如,如果要将每年重复发生的订阅更新为每月重复发生的订阅,则不能使用 Braintree::update(),反之亦然。该代码目前有效,但我想按比例分配。我怎样才能伪造这个,以便我可以按比例分配这些类型的订阅。这是我目前拥有的代码,有人可以给我发送代码 sn-p 吗?
<?php session_start(); ob_start();
$id=$_SESSION['braintreeid'];
$receiver='creativegroup@codernoob.com';
$username=$_SESSION['username'];
$email = $_SESSION['email'];
require 'PHPMailer/PHPMailerAutoload.php';
date_default_timezone_set('America/Denver');
$request_body = file_get_contents('php://input');
$json = json_decode($request_body);
$oldsubscriptionid=$json->oldsubscriptionid;
require_once 'lib/Braintree.php';
$gateway = new Braintree_Gateway([
'environment' => 'sandbox',
'merchantId' => '********',
'publicKey' => '*******',
'privateKey' => '********'
]);
$cancelresult=$gateway->subscription()->cancel($oldsubscriptionid);
$result = $gateway->subscription()->create([
'paymentMethodToken' => $json->token,
'planId' => $json->plan
]);
if($result){$data['error']=0;
$data['problemsending']=0;
$data['emailsent']=0;
$data['result']=$result;
} else {$data['error']=1;
$data['result']=$result;
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'donotreply@codernoob.com'; // SMTP username
$mail->Password = '*********'; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to
$mail->setFrom('donotreply@codernoob.com');
$mail->addAddress($email); // Add a recipient
$mail->addAddress($receiver); // Name is optional
$mail->addBCC(''); //WARNING: SMTP servers will cap 'potential' spammers to no more than 100 recipients per blast, and no more than 500 per day. If you need more than this get a professional SMTP server.
$mail->addAttachment(''); // Add attachments
$mail->addAttachment(''); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'codernoob: ERROR Updating Subscription!';
$body = "
<html>
<head>
<title>Error updating Subscription!</title>
</head>
<body>
<h1>There was an error updating subscription</h1>
<p>Username: ".$username."</p>
<p>Email: ".$email." </p>";
$body .= '<br><br>Had an error updating a subscription. If this is the first time you have seen this ignore it as a packet probably just dropped. However, if problem persists please have a web developer address the problem.';
$body .= "</body>
</html>
";
$mail->Body = $body;
if($mail->send()) {$data['emailsent']=1;}
else {$data['problemsending']=1;}
}
$customer = $gateway->customer()->find($id);
$plans = $gateway->plan()->all();
$plansArray = array();
foreach ($plans as $plan) {
array_push($plansArray, $plan);
}
$subscriptions = array();
foreach ($customer->creditCards as $card) {
foreach ($card->subscriptions as $subscription) {
array_push($subscriptions, $subscription);
}
}
$data['paymentMethods']=$customer->paymentMethods;
$data['plans']=$plansArray;
$data['subscriptions']=$subscriptions;
echo json_encode($data);
?>
【问题讨论】:
-
你能澄清问题是什么吗?您发布了长文本甚至更多代码,其中包含 API 调用和邮件生成等内容 - 但核心问题是什么?
-
我想使用具有不同计费周期的 Braintree 按比例分配订阅。忘记在出现任何问题时通知我的电子邮件
标签: php ajax vue.js updates braintree