1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/controllers/PaymentApiController.php

41 lines
975 B
PHP
Raw Normal View History

2014-07-27 22:31:41 +02:00
<?php
use ninja\repositories\PaymentRepository;
2015-01-11 13:30:08 +01:00
class PaymentApiController extends Controller
{
protected $paymentRepo;
2014-07-27 22:31:41 +02:00
2015-01-11 13:30:08 +01:00
public function __construct(PaymentRepository $paymentRepo)
{
$this->paymentRepo = $paymentRepo;
}
2014-07-27 22:31:41 +02:00
2015-01-11 13:30:08 +01:00
public function index()
{
if (!Utils::isPro()) {
return Redirect::to('/');
}
2014-07-27 22:31:41 +02:00
2015-01-11 13:30:08 +01:00
$payments = Payment::scope()->orderBy('created_at', 'desc')->get();
$payments = Utils::remapPublicIds($payments->toArray());
2014-07-27 22:31:41 +02:00
2015-01-11 13:30:08 +01:00
$response = json_encode($payments, JSON_PRETTY_PRINT);
$headers = Utils::getApiHeaders(count($payments));
return Response::make($response, 200, $headers);
}
2014-07-27 22:31:41 +02:00
2015-01-11 13:30:08 +01:00
/*
2014-07-27 22:31:41 +02:00
public function store()
{
$data = Input::all();
$invoice = $this->invoiceRepo->save(false, $data, false);
$response = json_encode($invoice, JSON_PRETTY_PRINT);
$headers = Utils::getApiHeaders();
return Response::make($response, 200, $headers);
}
*/
}