在webhooks响应中的stripe invoice.payment_succeeded事件中,始终显示Response 500。
我的编码invoice_payment_succeeded事件下面,
<?php
if (Yii::app()->request->isPostRequest) {
try {
/*
* Initialize API
*/
Stripe::setApiKey(Yii::app()->params['secret_key']);
/*
* Get and decode data
*/
$postdata = file_get_contents("php://input");
$event = json_decode($postdata);
/*
* Find the event in our database or save it if doesn't exist
*/
/*
* If the event hasn't been processed yet...
*/
/*
* We don't manage all Stripe events but only relevant events
*
*/
switch ($event->type) {
/*
* When a payment success we get a invoice.payment_succeeded
*/
case 'invoice.payment_succeeded':
Yii::log('', 'trace', 'stripe');
Yii::log('==================================', 'trace', 'stripe');
Yii::log('==== Event (' . $event->type . ') ====', 'trace', 'stripe');
Yii::log('==================================', 'trace', 'stripe');
$customer_id = $event->data->object->customer;
$customer = Stripe_Customer::retrieve($customer_id);
$invoice = Stripe_Invoice::retrieve($event->data->object->id);
$user = TblPackageUserplan::model()->findByAttributes(array('customer_id' => $customer_id));
/* Customer, invoice and user must exist */
if (!$customer || !$invoice || !$user) {
throw new Exception('No customer, invoice or user object retrieved');
}
$saved = false;
/* Begin db transaction, we will commit/rollback depending on possible exceptions */
$transaction = Yii::app()->db->beginTransaction();
try {
Yii::log('Invoce period start: ' . date('Y-m-d H:i:s', $event->data->object->period_start), 'trace', 'stripe');
Yii::log('Invoce period end: ' . date('Y-m-d H:i:s', $event->data->object->period_end), 'trace', 'stripe');
/* Save transaction in database including post data
if (!$this->saveTransaction($user, $event, $postdata)) {
throw new Exception('Transaction not saved', '400');
} else {
Yii::log('Payment transaction saved (not commited)', 'trace', 'stripe');
}*/
/* We updated local status here using lines. Now we use subscription's customer */
//$event->type sent by sathis to manage new plan upgrade
$this->manageSubscription($customer->subscriptions, $user, $event->type);
Yii::log('Commiting db transaction...', 'trace', 'stripe');
/* NO EXCEPTION, everything is ok. Let's commit */
$transaction->commit();
Yii::log('Done', 'trace', 'stripe');
/* This flag let us know if we have to send a email or not */
$saved = true;
} catch (Exception $e) {
Yii::log("Rolling back transaction", 'error', 'stripe');
Yii::log("Exception: " . $e->getMessage(), 'error', 'stripe');
/* Something went wrong, log the error, rollback and continue */
$transaction->rollback();
}
if ($saved) {
/* If everything ok, send an email */
Yii::log("Checking if user must receive email", 'error', 'stripe');
Yii::log("Sending", 'error', 'stripe');
if ($this->sendMailToUser($customer, $invoice)) {
Yii::log("Mail (to user) sent", 'error', 'stripe');
} else {
Yii::log("Mail (to user) not sent", 'error', 'stripe');
}
if ($this->sendMailToAdmin($user, $invoice)) {
Yii::log("Mail (to admin) sent", 'error', 'stripe');
} else {
Yii::log("Mail (to admin) not sent", 'error', 'stripe');
}
}
}
}
catch (Exception $e) {
Yii::log("Rolling back transaction", 'error', 'stripe');
Yii::log("Exception: " . $e->getMessage(), 'error', 'stripe');
/* Something went wrong, log the error, rollback and continue */
$transaction->rollback();
}
}
public function manageSubscription($subscription, $user , $event_type = '') {
$update = TblPackageUserplan::model()->updateByPk(62, array('create_date'=> '2015-08-08'));
$period_end = $subscription->current_period_end;
$period_start = $subscription->current_period_start;
$plan = $subscription->plan->id;
Yii::log('subscription is ' . $subscription->status, 'trace', 'stripe');
if ($subscription->data[0]->status == 'active') {
if (!$this->updateCompanyUserExpireDate($user, $period_end,$period_start)) {
throw new Exception('User not saved', '400');
} else {
Yii::log('User data saved (not commited)', 'trace', 'stripe');
}
}
}
我的代码出了什么问题?为什么我得到了响应500.我在测试响应中检查了一次我更改了客户ID和发票ID给静态意味着它工作正常。如何获取订阅详情$ customer-&gt;订阅或 $客户 - &GT;订阅?当前事件时如何检查发票ID和客户?
答案 0 :(得分:0)
致电manageSubscription()
:
$this->manageSubscription($customer->subscriptions, $user, $event->type);
你通过了$customer->subscriptions
。 subscriptions
属性是subscription objects的列表。但是在manageSubscription()
方法本身中,您将其视为单个客户对象。
如果您的客户永远不会有多个订阅,则可能很容易将呼叫更改为:
$this->manageSubscription($customer->subscriptions[0], $user, $event->type);
否则,您需要修改方法的正文。
在方法中,还有这一行:
if ($subscription->data[0]->status == 'active') {
如果$subscription
是单个订阅对象,则该行应为:
if ($subscription->status == 'active') {
由于订阅对象没有data
属性。