1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Controllers/BaseController.php

337 lines
9.8 KiB
PHP
Raw Normal View History

2019-03-28 22:34:58 +01:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-03-28 22:34:58 +01:00
namespace App\Http\Controllers;
use App\Models\Account;
2019-09-29 10:46:53 +02:00
use App\Models\Company;
use App\Models\Design;
2019-09-27 06:31:13 +02:00
use App\Models\User;
2019-03-28 22:34:58 +01:00
use App\Transformers\ArraySerializer;
use App\Transformers\EntityTransformer;
use App\Utils\Ninja;
2019-09-11 02:37:53 +02:00
use App\Utils\Statics;
use App\Utils\Traits\AppSetup;
2019-03-28 22:34:58 +01:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
2019-09-27 06:31:13 +02:00
use Illuminate\Support\Facades\Request as Input;
2020-05-28 11:40:35 +02:00
use Illuminate\Support\Facades\Schema;
2019-03-28 22:34:58 +01:00
use League\Fractal\Manager;
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
use League\Fractal\Resource\Collection;
use League\Fractal\Resource\Item;
use League\Fractal\Serializer\JsonApiSerializer;
/**
2019-09-11 02:37:53 +02:00
* Class BaseController
*/
2019-03-28 22:34:58 +01:00
class BaseController extends Controller
{
use AppSetup;
/**
* Passed from the parent when we need to force
* includes internally rather than externally via
2019-09-11 02:37:53 +02:00
* the $_REQUEST 'include' variable.
*
* @var array
*/
public $forced_includes;
2019-06-25 07:08:07 +02:00
/**
* Passed from the parent when we need to force
* the key of the response object
* @var string
*/
public $forced_index;
/**
* Fractal manager
* @var object
*/
protected $manager;
2019-03-28 22:34:58 +01:00
public function __construct()
2019-03-28 22:34:58 +01:00
{
$this->manager = new Manager();
$this->forced_includes = [];
2019-06-25 07:08:07 +02:00
$this->forced_index = 'data';
}
private function buildManager()
{
2019-06-24 13:05:47 +02:00
$include = '';
if (request()->has('first_load') && request()->input('first_load') == 'true') {
$include = implode(",", array_merge($this->forced_includes, $this->getRequestIncludes([])));
} elseif (request()->input('include') !== null) {
$include = array_merge($this->forced_includes, explode(",", request()->input('include')));
$include = implode(",", $include);
} elseif (count($this->forced_includes) >= 1) {
2019-06-24 13:05:47 +02:00
$include = implode(",", $this->forced_includes);
}
$this->manager->parseIncludes($include);
2019-03-28 22:34:58 +01:00
$this->serializer = request()->input('serializer') ?: EntityTransformer::API_SERIALIZER_ARRAY;
if ($this->serializer === EntityTransformer::API_SERIALIZER_JSON) {
2019-03-28 22:34:58 +01:00
$this->manager->setSerializer(new JsonApiSerializer());
} else {
2019-03-28 22:34:58 +01:00
$this->manager->setSerializer(new ArraySerializer());
}
2019-03-28 22:34:58 +01:00
}
/**
* Catch all fallback route
* for non-existant route
*/
public function notFound()
{
2019-09-11 02:37:53 +02:00
return response()->json(['message' => '404 | Nothing to see here!'], 404)
->header('X-API-VERSION', config('ninja.api_version'))
->header('X-APP-VERSION', config('ninja.app_version'));
}
/**
* 404 for the client portal
* @return Response 404 response
*/
public function notFoundClient()
{
return abort(404);
}
/**
* API Error response
* @param string $message The return error message
* @param integer $httpErrorCode 404/401/403 etc
* @return Response The JSON response
*/
protected function errorResponse($message, $httpErrorCode = 400)
2019-03-28 22:34:58 +01:00
{
$error['error'] = $message;
2019-03-28 22:34:58 +01:00
$error = json_encode($error, JSON_PRETTY_PRINT);
2019-03-28 22:34:58 +01:00
$headers = self::getApiHeaders();
return response()->make($error, $httpErrorCode, $headers);
}
protected function listResponse($query)
2019-03-28 22:34:58 +01:00
{
$this->buildManager();
2019-04-03 04:34:28 +02:00
$transformer = new $this->entity_transformer(Input::get('serializer'));
2019-03-28 22:34:58 +01:00
$includes = $transformer->getDefaultIncludes();
2019-03-28 22:34:58 +01:00
$includes = $this->getRequestIncludes($includes);
$query->with($includes);
2020-04-01 14:34:50 +02:00
if (!auth()->user()->hasPermission('view_'.lcfirst(class_basename($this->entity_type)))) {
$query->where('user_id', '=', auth()->user()->id);
2019-09-27 06:31:13 +02:00
}
if (request()->has('updated_at') && request()->input('updated_at') > 0) {
$updated_at = intval(request()->input('updated_at'));
$query->where('updated_at', '>=', date('Y-m-d H:i:s', $updated_at));
}
2019-04-03 04:34:28 +02:00
$data = $this->createCollection($query, $transformer, $this->entity_type);
2019-03-28 22:34:58 +01:00
return $this->response($data);
}
2019-04-03 04:34:28 +02:00
protected function createCollection($query, $transformer, $entity_type)
2019-03-28 22:34:58 +01:00
{
$this->buildManager();
if ($this->serializer && $this->serializer != EntityTransformer::API_SERIALIZER_JSON) {
2019-04-03 04:34:28 +02:00
$entity_type = null;
}
2019-03-28 22:34:58 +01:00
if (is_a($query, "Illuminate\Database\Eloquent\Builder")) {
$limit = Input::get('per_page', 20);
$paginator = $query->paginate($limit);
$query = $paginator->getCollection();
2019-04-03 04:34:28 +02:00
$resource = new Collection($query, $transformer, $entity_type);
2019-03-28 22:34:58 +01:00
$resource->setPaginator(new IlluminatePaginatorAdapter($paginator));
} else {
2019-04-03 04:34:28 +02:00
$resource = new Collection($query, $transformer, $entity_type);
2019-03-28 22:34:58 +01:00
}
return $this->manager->createData($resource)->toArray();
}
protected function response($response)
{
2019-06-25 07:08:07 +02:00
$index = request()->input('index') ?: $this->forced_index;
2019-03-28 22:34:58 +01:00
if ($index == 'none') {
unset($response['meta']);
} else {
$meta = isset($response['meta']) ? $response['meta'] : null;
$response = [
$index => $response,
];
if ($meta) {
$response['meta'] = $meta;
unset($response[$index]['meta']);
}
2019-09-18 08:02:05 +02:00
if (request()->include_static) {
2019-09-18 08:02:05 +02:00
$response['static'] = Statics::company(auth()->user()->getCompany()->getLocale());
}
2019-03-28 22:34:58 +01:00
}
ksort($response);
2019-03-28 22:34:58 +01:00
$response = json_encode($response, JSON_PRETTY_PRINT);
2019-03-28 22:34:58 +01:00
$headers = self::getApiHeaders();
2019-03-28 22:34:58 +01:00
return response()->make($response, 200, $headers);
}
protected function itemResponse($item)
{
$this->buildManager();
2019-03-28 22:34:58 +01:00
2019-04-03 04:34:28 +02:00
$transformer = new $this->entity_transformer(Input::get('serializer'));
2019-03-28 22:34:58 +01:00
2019-04-03 04:34:28 +02:00
$data = $this->createItem($item, $transformer, $this->entity_type);
2019-03-28 22:34:58 +01:00
if (request()->include_static) {
2019-09-11 02:37:53 +02:00
$data['static'] = Statics::company(auth()->user()->getCompany()->getLocale());
}
2019-03-28 22:34:58 +01:00
return $this->response($data);
}
2019-04-03 04:34:28 +02:00
protected function createItem($data, $transformer, $entity_type)
2019-03-28 22:34:58 +01:00
{
if ($this->serializer && $this->serializer != EntityTransformer::API_SERIALIZER_JSON) {
$entity_type = null;
}
2019-04-03 04:34:28 +02:00
$resource = new Item($data, $transformer, $entity_type);
2019-03-28 22:34:58 +01:00
return $this->manager->createData($resource)->toArray();
}
public static function getApiHeaders($count = 0)
{
return [
'Content-Type' => 'application/json',
2019-09-11 07:32:47 +02:00
'X-Api-Version' => config('ninja.api_version'),
'X-App-Version' => config('ninja.app_version'),
2019-03-28 22:34:58 +01:00
];
}
2019-03-28 22:34:58 +01:00
protected function getRequestIncludes($data)
{
$first_load = [
'account',
'user.company_user',
'token',
'company.activities',
'company.users.company_user',
'company.tax_rates',
'company.groups',
'company.company_gateways.gateway',
'company.clients.contacts',
'company.products',
'company.invoices.invitations.contact',
'company.invoices.invitations.company',
'company.invoices.documents',
'company.payments.paymentables',
'company.quotes.invitations.contact',
'company.quotes.invitations.company',
2020-06-15 13:42:46 +02:00
'company.credits.invitations.company',
'company.payment_terms.company',
//'company.credits.invitations.contact',
//'company.credits.invitations.company',
'company.vendors.contacts',
'company.expenses',
'company.tasks',
'company.projects',
'company.designs',
];
$mini_load = [
'account',
'user.company_user',
'token',
'company.activities',
'company.users.company_user',
'company.tax_rates',
'company.groups',
'company.payment_terms',
];
/**
* Thresholds for displaying large account on first load
*/
if (request()->has('first_load') && request()->input('first_load') == 'true') {
2020-06-12 23:37:36 +02:00
if (auth()->user()->getCompany()->invoices->count() > 1000 || auth()->user()->getCompany()->products->count() > 1000 || auth()->user()->getCompany()->clients->count() > 1000) {
$data = $mini_load;
} else {
$data = $first_load;
}
} else {
$included = request()->input('include');
$included = explode(',', $included);
foreach ($included as $include) {
if ($include == 'clients') {
$data[] = 'clients.contacts';
} elseif ($include) {
$data[] = $include;
}
}
2019-03-28 22:34:58 +01:00
}
return $data;
}
public function flutterRoute()
{
2020-06-18 01:49:05 +02:00
if (config('ninja.require_https') && !request()->isSecure()) {
return redirect()->secure(request()->getRequestUri());
}
2020-05-28 11:40:35 +02:00
if ((bool)$this->checkAppSetup() !== false && Schema::hasTable('accounts') && $account = Account::all()->first()) {
$data = [];
2020-05-28 10:54:13 +02:00
if (Ninja::isSelfHost()) {
$data['report_errors'] = $account->report_errors;
} else {
$data['report_errors'] = true;
}
return view('index.index', $data);
}
return redirect('/setup');
}
}