2015-03-17 11:30:56 +10:00
|
|
|
<?php namespace App\Http\Controllers;
|
2015-03-17 07:45:25 +10:00
|
|
|
|
2015-07-05 11:01:16 +03:00
|
|
|
use Input;
|
2015-03-17 11:30:56 +10:00
|
|
|
use Utils;
|
2015-04-08 21:19:58 +03:00
|
|
|
use Response;
|
|
|
|
|
use App\Models\Payment;
|
2015-07-05 11:01:16 +03:00
|
|
|
use App\Models\Invoice;
|
2015-03-24 18:21:12 +10:00
|
|
|
use App\Ninja\Repositories\PaymentRepository;
|
2015-03-17 07:45:25 +10:00
|
|
|
|
|
|
|
|
class PaymentApiController extends Controller
|
|
|
|
|
{
|
|
|
|
|
protected $paymentRepo;
|
|
|
|
|
|
|
|
|
|
public function __construct(PaymentRepository $paymentRepo)
|
|
|
|
|
{
|
|
|
|
|
$this->paymentRepo = $paymentRepo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
2015-07-05 11:01:16 +03:00
|
|
|
$payments = Payment::scope()
|
|
|
|
|
->with('client', 'contact', 'invitation', 'user', 'invoice')
|
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
|
->get();
|
2015-07-02 23:21:29 +03:00
|
|
|
$payments = Utils::remapPublicIds($payments);
|
|
|
|
|
|
2015-03-17 07:45:25 +10:00
|
|
|
$response = json_encode($payments, JSON_PRETTY_PRINT);
|
|
|
|
|
$headers = Utils::getApiHeaders(count($payments));
|
|
|
|
|
|
|
|
|
|
return Response::make($response, 200, $headers);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-05 11:01:16 +03:00
|
|
|
|
|
|
|
|
public function store()
|
|
|
|
|
{
|
|
|
|
|
$data = Input::all();
|
|
|
|
|
$error = false;
|
|
|
|
|
|
|
|
|
|
if (isset($data['invoice_id'])) {
|
|
|
|
|
$invoice = Invoice::scope($data['invoice_id'])->with('client')->first();
|
|
|
|
|
|
|
|
|
|
if ($invoice) {
|
|
|
|
|
$data['invoice'] = $invoice->public_id;
|
|
|
|
|
$data['client'] = $invoice->client->public_id;
|
|
|
|
|
} else {
|
|
|
|
|
$error = trans('validation.not_in', ['attribute' => 'invoice_id']);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$error = trans('validation.not_in', ['attribute' => 'invoice_id']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isset($data['transaction_reference'])) {
|
|
|
|
|
$data['transaction_reference'] = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!$error) {
|
|
|
|
|
$payment = $this->paymentRepo->save(false, $data);
|
|
|
|
|
$payment = Payment::scope($payment->public_id)->with('client', 'contact', 'user', 'invoice')->first();
|
|
|
|
|
|
|
|
|
|
$payment = Utils::remapPublicIds([$payment]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$response = json_encode($error ?: $payment, JSON_PRETTY_PRINT);
|
|
|
|
|
$headers = Utils::getApiHeaders();
|
|
|
|
|
return Response::make($response, 200, $headers);
|
|
|
|
|
}
|
2015-03-17 07:45:25 +10:00
|
|
|
}
|