1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/controllers/PaymentController.php

531 lines
20 KiB
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
2014-01-06 19:03:00 +01:00
use ninja\repositories\PaymentRepository;
2014-05-25 16:25:58 +02:00
use ninja\repositories\InvoiceRepository;
2014-01-06 19:03:00 +01:00
2013-11-26 13:45:07 +01:00
class PaymentController extends \BaseController
{
2014-01-06 19:03:00 +01:00
protected $creditRepo;
2014-05-25 16:25:58 +02:00
public function __construct(PaymentRepository $paymentRepo, InvoiceRepository $invoiceRepo)
2014-01-06 19:03:00 +01:00
{
parent::__construct();
$this->paymentRepo = $paymentRepo;
2014-05-25 16:25:58 +02:00
$this->invoiceRepo = $invoiceRepo;
2014-01-06 19:03:00 +01:00
}
2013-11-26 13:45:07 +01:00
public function index()
{
2013-12-03 23:00:01 +01:00
return View::make('list', array(
'entityType'=>ENTITY_PAYMENT,
2014-06-15 22:54:58 +02:00
'title' => trans('texts.payments'),
2014-03-27 13:25:31 +01:00
'columns'=>Utils::trans(['checkbox', 'invoice', 'client', 'transaction_reference', 'method', 'payment_amount', 'payment_date', 'action'])
2013-12-03 23:00:01 +01:00
));
2013-11-26 13:45:07 +01:00
}
2013-12-04 17:20:14 +01:00
public function getDatatable($clientPublicId = null)
2013-11-26 13:45:07 +01:00
{
2014-01-06 19:03:00 +01:00
$payments = $this->paymentRepo->find($clientPublicId, Input::get('sSearch'));
$table = Datatable::query($payments);
2013-11-29 13:09:21 +01:00
2013-12-04 17:20:14 +01:00
if (!$clientPublicId) {
$table->addColumn('checkbox', function($model) { return '<input type="checkbox" name="ids[]" value="' . $model->public_id . '">'; });
2013-11-29 13:09:21 +01:00
}
2014-01-16 22:12:46 +01:00
$table->addColumn('invoice_number', function($model) { return $model->invoice_public_id ? link_to('invoices/' . $model->invoice_public_id . '/edit', $model->invoice_number) : ''; });
2013-12-03 23:00:01 +01:00
2013-12-04 17:20:14 +01:00
if (!$clientPublicId) {
2013-12-30 21:17:45 +01:00
$table->addColumn('client_name', function($model) { return link_to('clients/' . $model->client_public_id, Utils::getClientDisplayName($model)); });
2014-01-16 22:12:46 +01:00
}
$table->addColumn('transaction_reference', function($model) { return $model->transaction_reference ? $model->transaction_reference : '<i>Manual entry</i>'; })
->addColumn('payment_type', function($model) { return $model->payment_type ? $model->payment_type : ($model->account_gateway_id ? '<i>Online payment</i>' : ''); });
2013-12-03 23:00:01 +01:00
2014-01-16 22:12:46 +01:00
return $table->addColumn('amount', function($model) { return Utils::formatMoney($model->amount, $model->currency_id); })
2013-12-16 22:27:32 +01:00
->addColumn('payment_date', function($model) { return Utils::dateToString($model->payment_date); })
2013-12-05 16:23:24 +01:00
->addColumn('dropdown', function($model)
{
2013-12-05 21:25:20 +01:00
return '<div class="btn-group tr-action" style="visibility:hidden;">
2013-12-05 16:23:24 +01:00
<button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown">
2014-03-27 13:25:31 +01:00
'.trans('texts.select').' <span class="caret"></span>
2013-12-05 16:23:24 +01:00
</button>
<ul class="dropdown-menu" role="menu">
2014-03-27 13:25:31 +01:00
<li><a href="javascript:archiveEntity(' . $model->public_id. ')">'.trans('texts.archive_payment').'</a></li>
<li><a href="javascript:deleteEntity(' . $model->public_id. ')">'.trans('texts.delete_payment').'</a></li>
2013-12-05 16:23:24 +01:00
</ul>
</div>';
})
2013-11-26 13:45:07 +01:00
->make();
}
2013-12-04 17:20:14 +01:00
2014-01-02 14:21:15 +01:00
public function create($clientPublicId = 0, $invoicePublicId = 0)
2013-12-04 17:20:14 +01:00
{
$data = array(
2014-01-14 12:52:56 +01:00
'clientPublicId' => Input::old('client') ? Input::old('client') : $clientPublicId,
'invoicePublicId' => Input::old('invoice') ? Input::old('invoice') : $invoicePublicId,
2013-12-05 16:23:24 +01:00
'invoice' => null,
2014-05-20 23:40:09 +02:00
'invoices' => Invoice::scope()->where('is_recurring', '=', false)->where('is_quote', '=', false)
->with('client', 'invoice_status')->orderBy('invoice_number')->get(),
2013-12-04 17:20:14 +01:00
'payment' => null,
'method' => 'POST',
2014-01-14 12:52:56 +01:00
'url' => "payments",
2014-06-15 22:54:58 +02:00
'title' => trans('texts.new_payment'),
2014-01-15 15:01:24 +01:00
//'currencies' => Currency::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(),
2014-01-13 20:22:43 +01:00
'paymentTypes' => PaymentType::remember(DEFAULT_QUERY_CACHE)->orderBy('id')->get(),
2013-12-30 21:17:45 +01:00
'clients' => Client::scope()->with('contacts')->orderBy('name')->get());
2013-12-04 17:20:14 +01:00
return View::make('payments.edit', $data);
}
public function edit($publicId)
{
$payment = Payment::scope($publicId)->firstOrFail();
2014-01-01 00:50:13 +01:00
$payment->payment_date = Utils::fromSqlDate($payment->payment_date);
2013-12-04 17:20:14 +01:00
$data = array(
2013-12-05 16:23:24 +01:00
'client' => null,
'invoice' => null,
2014-05-20 23:40:09 +02:00
'invoices' => Invoice::scope()->where('is_recurring', '=', false)->where('is_quote', '=', false)
->with('client', 'invoice_status')->orderBy('invoice_number')->get(),
2013-12-04 17:20:14 +01:00
'payment' => $payment,
'method' => 'PUT',
'url' => 'payments/' . $publicId,
2014-06-15 22:54:58 +02:00
'title' => 'Edit Payment',
2014-01-15 15:01:24 +01:00
//'currencies' => Currency::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(),
2014-01-13 20:22:43 +01:00
'paymentTypes' => PaymentType::remember(DEFAULT_QUERY_CACHE)->orderBy('id')->get(),
2013-12-30 21:17:45 +01:00
'clients' => Client::scope()->with('contacts')->orderBy('name')->get());
2013-12-04 17:20:14 +01:00
return View::make('payments.edit', $data);
}
2014-02-02 19:14:56 +01:00
private function createGateway($accountGateway)
{
$gateway = Omnipay::create($accountGateway->gateway->provider);
$config = json_decode($accountGateway->config);
/*
2014-05-25 20:38:40 +02:00
$gateway->setSolutionType("Sole");
2014-02-02 19:14:56 +01:00
$gateway->setLandingPage("Billing");
*/
foreach ($config as $key => $val)
{
if (!$val)
{
continue;
}
$function = "set" . ucfirst($key);
$gateway->$function($val);
}
2014-05-25 20:38:40 +02:00
/*
if (!Utils::isProd())
{
$gateway->setTestMode(true);
2014-04-13 15:34:58 +02:00
}
2014-05-25 20:38:40 +02:00
*/
2014-02-02 19:14:56 +01:00
return $gateway;
}
private function getPaymentDetails($invoice, $input = null)
{
$key = $invoice->invoice_number . '_details';
$gateway = $invoice->client->account->account_gateways[0]->gateway;
$paymentLibrary = $gateway->paymentlibrary;
if ($input && $paymentLibrary->id == PAYMENT_LIBRARY_OMNIPAY)
2014-02-02 19:14:56 +01:00
{
$data = [
'firstName' => $input['first_name'],
'lastName' => $input['last_name'],
'number' => $input['card_number'],
'expiryMonth' => $input['expiration_month'],
'expiryYear' => $input['expiration_year'],
'cvv' => $input['cvv'],
'billingAddress1' => $input['address1'],
'billingAddress2' => $input['address2'],
'billingCity' => $input['city'],
'billingState' => $input['state'],
'billingPostcode' => $input['postal_code'],
'shippingAddress1' => $input['address1'],
'shippingAddress2' => $input['address2'],
'shippingCity' => $input['city'],
'shippingState' => $input['state'],
'shippingPostcode' => $input['postal_code'],
];
Session::put($key, $data);
}
else if ($input && $paymentLibrary->id == PAYMENT_LIBRARY_PHP_PAYMENTS)
{
$input = Input::all();
$data = [
'first_name' => $input['first_name'],
'last_name' => $input['last_name'],
'cc_number' => $input['card_number'],
'cc_exp' => $input['expiration_month'].$input['expiration_year'],
'cc_code' => $input['cvv'],
'street' => $input['address1'],
'street2' => $input['address2'],
'city' => $input['city'],
'state' => $input['state'],
'postal_code' => $input['postal_code'],
'amt' => $invoice->amount,
'ship_to_street' => $input['address1'],
'ship_to_city' => $input['city'],
'ship_to_state' => $input['state'],
'ship_to_postal_code' => $input['postal_code'],
'currency_code' => $invoice->client->currency->code,
];
switch($gateway->id)
{
case GATEWAY_BEANSTREAM:
$data['phone'] = $input['phone'];
$data['email'] = $input['email'];
$data['country'] = $input['country'];
$data['ship_to_country'] = $input['country'];
break;
case GATEWAY_BRAINTREE:
$data['ship_to_state'] = 'Ohio'; //$input['state'];
break;
}
if(strlen($data['cc_exp']) == 5)
{
$data['cc_exp'] = '0'.$data['cc_exp'];
}
Session::put($key, $data);
return $data;
}
else if (Session::get($key))
{
$data = Session::get($key);
2014-02-02 19:14:56 +01:00
}
else
{
$data = [];
2014-02-02 19:14:56 +01:00
}
if($paymentLibrary->id == PAYMENT_LIBRARY_OMNIPAY)
{
$card = new CreditCard($data);
return [
'amount' => $invoice->amount,
'card' => $card,
'currency' => $invoice->client->currency->code,
'returnUrl' => URL::to('complete'),
'cancelUrl' => URL::to('/')
];
}
else
{
return $data;
}
2014-02-02 19:14:56 +01:00
}
/** HÄR SKALL DET HÄMTAS UT BILDER!!!!! **/
2014-02-02 19:14:56 +01:00
public function show_payment($invitationKey)
{
// For PayPal Express we redirect straight to their site
$invitation = Invitation::with('invoice.client.account', 'invoice.client.account.account_gateways.gateway')->where('invitation_key', '=', $invitationKey)->firstOrFail();
$account = $invitation->invoice->client->account;
if ($account->isGatewayConfigured(GATEWAY_PAYPAL_EXPRESS))
{
2014-03-20 23:12:07 +01:00
if (Session::has('error'))
{
Session::reflash();
return Redirect::to('view/' . $invitationKey);
}
else
{
return self::do_payment($invitationKey, false);
}
}
$invitation = Invitation::with('invoice.invoice_items', 'invoice.client.currency', 'invoice.client.account.account_gateways.gateway')->where('invitation_key', '=', $invitationKey)->firstOrFail();
$invoice = $invitation->invoice;
$client = $invoice->client;
$gateway = $invoice->client->account->account_gateways[0]->gateway;
$paymentLibrary = $gateway->paymentlibrary;
$mask = $invoice->client->account->account_gateways[0]->accepted_credit_cards;
$acceptedCreditCardTypes = Utils::getCreditcardTypes($mask);
2014-02-02 19:14:56 +01:00
$data = [
2014-02-17 00:09:34 +01:00
'showBreadcrumbs' => false,
2014-04-23 15:46:52 +02:00
'hideHeader' => true,
2014-02-02 19:14:56 +01:00
'invitationKey' => $invitationKey,
'invoice' => $invoice,
'client' => $client,
'contact' => $invitation->contact,
'paymentLibrary' => $paymentLibrary,
'gateway' => $gateway,
'acceptedCreditCardTypes' => $acceptedCreditCardTypes,
'countries' => Country::remember(DEFAULT_QUERY_CACHE)->orderBy('name')->get(),
2014-02-02 19:14:56 +01:00
];
return View::make('payments.payment', $data);
}
public function do_payment($invitationKey, $onSite = true)
2014-02-02 19:14:56 +01:00
{
$rules = array(
'first_name' => 'required',
'last_name' => 'required',
'card_number' => 'required',
'expiration_month' => 'required',
'expiration_year' => 'required',
'cvv' => 'required',
'address1' => 'required',
'city' => 'required',
'state' => 'required',
'postal_code' => 'required',
);
if ($onSite)
2014-02-02 19:14:56 +01:00
{
$validator = Validator::make(Input::all(), $rules);
if ($validator->fails())
{
return Redirect::to('payment/' . $invitationKey)
->withErrors($validator);
}
}
$invitation = Invitation::with('invoice.invoice_items', 'invoice.client.currency', 'invoice.client.account.account_gateways.gateway')->where('invitation_key', '=', $invitationKey)->firstOrFail();
$invoice = $invitation->invoice;
$accountGateway = $invoice->client->account->account_gateways[0];
$paymentLibrary = $accountGateway->gateway->paymentlibrary;
2014-02-02 19:14:56 +01:00
if ($onSite)
{
2014-02-02 21:37:37 +01:00
$client = $invoice->client;
$client->address1 = trim(Input::get('address1'));
$client->address2 = trim(Input::get('address2'));
$client->city = trim(Input::get('city'));
$client->state = trim(Input::get('state'));
$client->postal_code = trim(Input::get('postal_code'));
$client->save();
}
try
{
if($paymentLibrary->id == PAYMENT_LIBRARY_OMNIPAY)
{
$gateway = self::createGateway($accountGateway);
$details = self::getPaymentDetails($invoice, Input::all());
$response = $gateway->purchase($details)->send();
$ref = $response->getTransactionReference();
if (!$ref)
{
Session::flash('error', $response->getMessage());
return Redirect::to('payment/' . $invitationKey)
->withInput();
}
if ($response->isSuccessful())
{
$payment = self::createPayment($invitation, $ref);
2014-05-25 16:25:58 +02:00
2014-04-06 17:47:22 +02:00
Session::flash('message', trans('texts.applied_payment'));
return Redirect::to('view/' . $payment->invitation->invitation_key);
}
else if ($response->isRedirect())
{
$invitation->transaction_reference = $ref;
$invitation->save();
$response->redirect();
}
else
{
Session::flash('error', $response->getMessage());
return Utils::fatalError('Sorry, there was an error processing your payment. Please try again later.<p>', $response->getMessage());
}
}
else if ($paymentLibrary->id == PAYMENT_LIBRARY_PHP_PAYMENTS)
{
$gateway = $accountGateway->gateway;
$provider = $gateway->provider;
$p = new PHP_Payments(array('mode' => 'test'));
$config = Payment_Utility::load('config', 'drivers/'.$provider);
switch($gateway->id)
{
case GATEWAY_BEANSTREAM:
$config['delay_charge'] = FALSE;
$config['bill_outstanding'] = TRUE;
break;
case GATEWAY_AMAZON:
$config['return_url'] = URL::to('complete');
$config['abandon_url'] = URL::to('/');
$config['immediate_return'] = 0;
$config['process_immediate'] = 1;
$config['ipn_url'] = URL::to('ipn');
$config['collect_shipping_address'] = false;
break;
}
$details = self::getPaymentDetails($invoice, Input::all());
$response = $p->oneoff_payment($provider, $details, $config);
if (strtolower($response->status) == 'success')
{
$payment = self::createPayment($invitation, $response->response_message);
2014-05-25 16:25:58 +02:00
2014-04-06 17:47:22 +02:00
Session::flash('message', trans('texts.applied_payment'));
return Redirect::to('view/' . $payment->invitation->invitation_key);
}
else
{
Session::flash('error', $response->response_message);
return Utils::fatalError('Sorry, there was an error processing your payment. Please try again later.<p>', $response->response_message);
}
}
}
catch (\Exception $e)
{
2014-04-02 14:28:23 +02:00
$errorMessage = trans('texts.payment_error');
Session::flash('error', $errorMessage);
Utils::logError($e->getMessage());
return Redirect::to('payment/' . $invitationKey)
->withInput();
2014-02-02 19:14:56 +01:00
}
}
private function createPayment($invitation, $ref, $payerId = null)
{
$invoice = $invitation->invoice;
$accountGateway = $invoice->client->account->account_gateways[0];
2014-05-25 15:40:09 +02:00
if ($invoice->account->account_key == NINJA_ACCOUNT_KEY)
{
$account = Account::find($invoice->client->public_id);
$account->pro_plan_paid = date_create()->format('Y-m-d');
$account->save();
}
2014-05-25 16:25:58 +02:00
2014-05-25 15:40:09 +02:00
if ($invoice->is_quote)
{
2014-05-25 16:48:00 +02:00
$invoice = $this->invoiceRepo->cloneInvoice($invoice, $invoice->id);
2014-05-25 15:40:09 +02:00
}
2014-05-25 16:25:58 +02:00
2014-03-20 23:12:07 +01:00
$payment = Payment::createNew($invitation);
2014-02-02 19:14:56 +01:00
$payment->invitation_id = $invitation->id;
$payment->account_gateway_id = $accountGateway->id;
$payment->invoice_id = $invoice->id;
$payment->amount = $invoice->amount;
$payment->client_id = $invoice->client_id;
$payment->contact_id = $invitation->contact_id;
$payment->transaction_reference = $ref;
$payment->payment_date = date_create()->format('Y-m-d');
2014-05-25 16:25:58 +02:00
2014-02-02 19:14:56 +01:00
if ($payerId)
{
$payment->payer_id = $payerId;
}
2014-05-25 16:25:58 +02:00
2014-02-02 19:14:56 +01:00
$payment->save();
2014-05-25 16:48:00 +02:00
2014-05-25 16:25:58 +02:00
Event::fire('invoice.paid', $payment);
2014-02-02 19:14:56 +01:00
return $payment;
}
public function offsite_payment()
{
$payerId = Request::query('PayerID');
$token = Request::query('token');
$invitation = Invitation::with('invoice.client.currency', 'invoice.client.account.account_gateways.gateway')->where('transaction_reference', '=', $token)->firstOrFail();
$invoice = $invitation->invoice;
$accountGateway = $invoice->client->account->account_gateways[0];
$gateway = self::createGateway($accountGateway);
try
{
$details = self::getPaymentDetails($invoice);
$response = $gateway->completePurchase($details)->send();
$ref = $response->getTransactionReference();
if ($response->isSuccessful())
{
2014-05-25 16:25:58 +02:00
$payment = self::createPayment($invitation, $ref, $payerId);
2014-02-02 19:14:56 +01:00
2014-04-02 14:28:23 +02:00
Session::flash('message', trans('texts.applied_payment'));
2014-02-02 19:14:56 +01:00
return Redirect::to('view/' . $invitation->invitation_key);
}
else
{
2014-04-02 14:28:23 +02:00
$errorMessage = trans('texts.payment_error') . "\n\n" . $response->getMessage();
Session::flash('error', $errorMessage);
Utils::logError($errorMessage);
return Redirect::to('view/' . $invitation->invitation_key);
2014-02-02 19:14:56 +01:00
}
}
catch (\Exception $e)
{
2014-04-02 14:28:23 +02:00
$errorMessage = trans('texts.payment_error');
Session::flash('error', $errorMessage);
Utils::logError($errorMessage . "\n\n" . $e->getMessage());
return Redirect::to('view/' . $invitation->invitation_key);
2014-02-02 19:14:56 +01:00
}
}
2013-12-05 16:23:24 +01:00
public function store()
{
return $this->save();
}
2013-12-04 17:20:14 +01:00
2013-12-05 16:23:24 +01:00
public function update($publicId)
2013-12-01 21:58:25 +01:00
{
2013-12-05 16:23:24 +01:00
return $this->save($publicId);
}
2013-12-01 21:58:25 +01:00
2013-12-05 16:23:24 +01:00
private function save($publicId = null)
{
2014-01-16 22:12:46 +01:00
if ($errors = $this->paymentRepo->getErrors(Input::all()))
2014-01-06 19:03:00 +01:00
{
2013-12-05 16:23:24 +01:00
$url = $publicId ? 'payments/' . $publicId . '/edit' : 'payments/create';
return Redirect::to($url)
2014-01-16 22:12:46 +01:00
->withErrors($errors)
2013-12-05 16:23:24 +01:00
->withInput();
2014-01-06 19:03:00 +01:00
}
else
{
$this->paymentRepo->save($publicId, Input::all());
2013-12-05 16:23:24 +01:00
2014-04-02 14:28:23 +02:00
Session::flash('message', trans('texts.created_payment'));
2014-01-01 00:50:13 +01:00
return Redirect::to('clients/' . Input::get('client'));
2013-12-05 16:23:24 +01:00
}
2013-12-01 21:58:25 +01:00
}
2013-12-05 16:23:24 +01:00
public function bulk()
2013-12-01 21:58:25 +01:00
{
2013-12-05 16:23:24 +01:00
$action = Input::get('action');
2013-12-05 21:25:20 +01:00
$ids = Input::get('id') ? Input::get('id') : Input::get('ids');
2014-01-06 19:03:00 +01:00
$count = $this->paymentRepo->bulk($ids, $action);
2013-12-01 21:58:25 +01:00
2014-01-12 19:55:33 +01:00
if ($count > 0)
{
2014-04-02 14:28:23 +02:00
$message = Utils::pluralize($action.'d_payment', $count);
2014-01-12 19:55:33 +01:00
Session::flash('message', $message);
}
2013-12-05 16:23:24 +01:00
return Redirect::to('payments');
2013-12-01 21:58:25 +01:00
}
2013-11-26 13:45:07 +01:00
}