mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
643c1c4a52
Summary: Ref T2787. This brings us up to date. Test Plan: `git clone` Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D9916
157 lines
3.8 KiB
PHP
157 lines
3.8 KiB
PHP
<?php
|
|
|
|
class Stripe_Customer extends Stripe_ApiResource
|
|
{
|
|
/**
|
|
* @param string $id The ID of the customer to retrieve.
|
|
* @param string|null $apiKey
|
|
*
|
|
* @return Stripe_Customer
|
|
*/
|
|
public static function retrieve($id, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedRetrieve($class, $id, $apiKey);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param string|null $apiKey
|
|
*
|
|
* @return array An array of Stripe_Customers.
|
|
*/
|
|
public static function all($params=null, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedAll($class, $params, $apiKey);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param string|null $apiKey
|
|
*
|
|
* @return Stripe_Customer The created customer.
|
|
*/
|
|
public static function create($params=null, $apiKey=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedCreate($class, $params, $apiKey);
|
|
}
|
|
|
|
/**
|
|
* @returns Stripe_Customer The saved customer.
|
|
*/
|
|
public function save()
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedSave($class);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns Stripe_Customer The deleted customer.
|
|
*/
|
|
public function delete($params=null)
|
|
{
|
|
$class = get_class();
|
|
return self::_scopedDelete($class, $params);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns Stripe_InvoiceItem The resulting invoice item.
|
|
*/
|
|
public function addInvoiceItem($params=null)
|
|
{
|
|
if (!$params)
|
|
$params = array();
|
|
$params['customer'] = $this->id;
|
|
$ii = Stripe_InvoiceItem::create($params, $this->_apiKey);
|
|
return $ii;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns array An array of the customer's Stripe_Invoices.
|
|
*/
|
|
public function invoices($params=null)
|
|
{
|
|
if (!$params)
|
|
$params = array();
|
|
$params['customer'] = $this->id;
|
|
$invoices = Stripe_Invoice::all($params, $this->_apiKey);
|
|
return $invoices;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns array An array of the customer's Stripe_InvoiceItems.
|
|
*/
|
|
public function invoiceItems($params=null)
|
|
{
|
|
if (!$params)
|
|
$params = array();
|
|
$params['customer'] = $this->id;
|
|
$iis = Stripe_InvoiceItem::all($params, $this->_apiKey);
|
|
return $iis;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns array An array of the customer's Stripe_Charges.
|
|
*/
|
|
public function charges($params=null)
|
|
{
|
|
if (!$params)
|
|
$params = array();
|
|
$params['customer'] = $this->id;
|
|
$charges = Stripe_Charge::all($params, $this->_apiKey);
|
|
return $charges;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns Stripe_Subscription The updated subscription.
|
|
*/
|
|
public function updateSubscription($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/subscription';
|
|
list($response, $apiKey) = $requestor->request('post', $url, $params);
|
|
$this->refreshFrom(array('subscription' => $response), $apiKey, true);
|
|
return $this->subscription;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns Stripe_Subscription The cancelled subscription.
|
|
*/
|
|
public function cancelSubscription($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/subscription';
|
|
list($response, $apiKey) = $requestor->request('delete', $url, $params);
|
|
$this->refreshFrom(array('subscription' => $response), $apiKey, true);
|
|
return $this->subscription;
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
*
|
|
* @returns Stripe_Customer The updated customer.
|
|
*/
|
|
public function deleteDiscount()
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$url = $this->instanceUrl() . '/discount';
|
|
list($response, $apiKey) = $requestor->request('delete', $url);
|
|
$this->refreshFrom(array('discount' => null), $apiKey, true);
|
|
}
|
|
}
|