Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for CreditNote #621

Merged
merged 1 commit into from
Apr 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
require(dirname(__FILE__) . '/lib/Collection.php');
require(dirname(__FILE__) . '/lib/CountrySpec.php');
require(dirname(__FILE__) . '/lib/Coupon.php');
require(dirname(__FILE__) . '/lib/CreditNote.php');
require(dirname(__FILE__) . '/lib/Customer.php');
require(dirname(__FILE__) . '/lib/Discount.php');
require(dirname(__FILE__) . '/lib/Dispute.php');
Expand Down
73 changes: 73 additions & 0 deletions lib/CreditNote.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?php

namespace Stripe;

/**
* Class CreditNote
*
* @property string $id
* @property string $object
* @property int $amount
* @property int $created
* @property string $currency
* @property string $customer
* @property string $invoice
* @property bool $livemode
* @property string $memo
* @property StripeObject $metadata
* @property string $number
* @property string $pdf
* @property string $reason
* @property string $refund
* @property string $status
* @property string $type
*
* @package Stripe
*/
class CreditNote extends ApiResource
{

const OBJECT_NAME = "credit_note";

use ApiOperations\All;
use ApiOperations\Create;
use ApiOperations\Retrieve;
use ApiOperations\Update;

/**
* Possible string representations of the credit note reason.
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-reason
*/
const REASON_DUPLICATE = 'duplicate';
const REASON_FRAUDULENT = 'fraudulent';
const REASON_ORDER_CHANGE = 'order_change';
const REASON_PRODUCT_UNSATISFACTORY = 'product_unsatisfactory';

/**
* Possible string representations of the credit note status.
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-status
*/
const STATUS_ISSUED = 'issued';
const STATUS_VOID = 'void';

/**
* Possible string representations of the credit note type.
* @link https://stripe.com/docs/api/credit_notes/object#credit_note_object-status
*/
const TYPE_POST_PAYMENT = 'post_payment';
const TYPE_PRE_PAYMENT = 'pre_payment';

/**
* @param array|null $params
* @param array|string|null $opts
*
* @return CreditNote The voided credit note.
*/
public function voidCreditNote($params = null, $opts = null)
{
$url = $this->instanceUrl() . '/void';
list($response, $opts) = $this->_request('post', $url, $params, $opts);
$this->refreshFrom($response, $opts);
return $this;
}
}
3 changes: 3 additions & 0 deletions lib/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ class Event extends ApiResource
const COUPON_CREATED = 'coupon.created';
const COUPON_DELETED = 'coupon.deleted';
const COUPON_UPDATED = 'coupon.updated';
const CREDIT_NOTE_CREATED = 'credit_note.created';
const CREDIT_NOTE_UPDATED = 'credit_note.updated';
const CREDIT_NOTE_VOIDED = 'credit_note.voided';
const CUSTOMER_CREATED = 'customer.created';
const CUSTOMER_DELETED = 'customer.deleted';
const CUSTOMER_UPDATED = 'customer.updated';
Expand Down
1 change: 1 addition & 0 deletions lib/Util/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public static function convertToStripeObject($resp, $opts)
\Stripe\Checkout\Session::OBJECT_NAME => 'Stripe\\Checkout\\Session',
\Stripe\CountrySpec::OBJECT_NAME => 'Stripe\\CountrySpec',
\Stripe\Coupon::OBJECT_NAME => 'Stripe\\Coupon',
\Stripe\CreditNote::OBJECT_NAME => 'Stripe\\CreditNote',
\Stripe\Customer::OBJECT_NAME => 'Stripe\\Customer',
\Stripe\Discount::OBJECT_NAME => 'Stripe\\Discount',
\Stripe\Dispute::OBJECT_NAME => 'Stripe\\Dispute',
Expand Down
79 changes: 79 additions & 0 deletions tests/Stripe/CreditNoteTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<?php

namespace Stripe;

class CreditNoteTest extends TestCase
{
const TEST_RESOURCE_ID = 'cn_123';

public function testIsListable()
{
$this->expectsRequest(
'get',
'/v1/credit_notes'
);
$resources = CreditNote::all();
$this->assertTrue(is_array($resources->data));
$this->assertInstanceOf("Stripe\\CreditNote", $resources->data[0]);
}

public function testIsRetrievable()
{
$this->expectsRequest(
'get',
'/v1/credit_notes/' . self::TEST_RESOURCE_ID
);
$resource = CreditNote::retrieve(self::TEST_RESOURCE_ID);
$this->assertInstanceOf("Stripe\\CreditNote", $resource);
}

public function testIsCreatable()
{
$this->expectsRequest(
'post',
'/v1/credit_notes'
);
$resource = CreditNote::create([
"amount" => 100,
"invoice" => "in_132",
"reason" => "duplicate",
]);
$this->assertInstanceOf("Stripe\\CreditNote", $resource);
}

public function testIsSaveable()
{
$resource = CreditNote::retrieve(self::TEST_RESOURCE_ID);
$resource->metadata["key"] = "value";
$this->expectsRequest(
'post',
'/v1/credit_notes/' . $resource->id
);
$resource->save();
$this->assertInstanceOf("Stripe\\CreditNote", $resource);
}

public function testIsUpdatable()
{
$this->expectsRequest(
'post',
'/v1/credit_notes/' . self::TEST_RESOURCE_ID
);
$resource = CreditNote::update(self::TEST_RESOURCE_ID, [
"metadata" => ["key" => "value"],
]);
$this->assertInstanceOf("Stripe\\CreditNote", $resource);
}

public function testCanVoidCreditNote()
{
$creditNote = CreditNote::retrieve(self::TEST_RESOURCE_ID);
$this->expectsRequest(
'post',
'/v1/credit_notes/' . $creditNote->id . '/void'
);
$resource = $creditNote->voidCreditNote();
$this->assertInstanceOf("Stripe\\CreditNote", $resource);
$this->assertSame($resource, $creditNote);
}
}