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

444 lines
15 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).
2019-05-11 05:32:07 +02:00
*
* @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;
/**
* 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.
2019-06-25 07:08:07 +02:00
* @var string
*/
public $forced_index;
/**
* Fractal manager.
* @var object
*/
protected $manager;
2020-07-26 10:30:55 +02:00
private $first_load = [
'account',
2020-10-18 09:46:10 +02:00
'token.company_user',
2020-07-26 10:30:55 +02:00
'company.activities',
2020-10-19 12:59:58 +02:00
'company.users.company_users',
2020-07-26 10:30:55 +02:00
'company.tax_rates',
'company.groups',
'company.company_gateways.gateway',
'company.clients.contacts',
'company.clients.gateway_tokens',
2020-09-19 04:05:54 +02:00
'company.clients.documents',
2020-07-26 10:30:55 +02:00
'company.products',
2020-09-19 12:05:29 +02:00
'company.products.documents',
2020-09-10 03:05:42 +02:00
'company.recurring_invoices',
2020-07-26 10:30:55 +02:00
'company.invoices.invitations.contact',
'company.invoices.invitations.company',
'company.invoices.documents',
2020-09-19 04:05:54 +02:00
'company.recurring_invoices',
'company.recurring_invoices.invitations.contact',
'company.recurring_invoices.invitations.company',
'company.recurring_invoices.documents',
2020-07-26 10:30:55 +02:00
'company.payments.paymentables',
2020-10-18 09:46:10 +02:00
'company.payments.documents',
2020-07-26 10:30:55 +02:00
'company.quotes.invitations.contact',
'company.quotes.invitations.company',
'company.quotes.documents',
'company.credits.invitations.contact',
'company.credits.invitations.company',
'company.credits.documents',
'company.payment_terms.company',
'company.vendors.contacts',
2020-10-18 09:46:10 +02:00
'company.expenses.documents',
'company.tasks.documents',
'company.projects.documents',
'company.designs.company',
2020-09-19 12:05:29 +02:00
'company.documents',
2020-07-26 10:30:55 +02:00
'company.webhooks',
'company.tokens_hashed',
2020-07-26 10:30:55 +02:00
];
private $mini_load = [
'account',
'user.company_user',
'token',
'company.activities',
'company.users.company_user',
'company.tax_rates',
'company.groups',
'company.payment_terms',
];
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) {
$include = implode(',', $this->forced_includes);
2019-06-24 13:05:47 +02:00
}
$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.minimum_client_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 int $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 refreshResponse($query)
{
2020-07-26 10:30:55 +02:00
$this->manager->parseIncludes($this->first_load);
2020-07-24 11:39:43 +02:00
$this->serializer = request()->input('serializer') ?: EntityTransformer::API_SERIALIZER_ARRAY;
if ($this->serializer === EntityTransformer::API_SERIALIZER_JSON) {
$this->manager->setSerializer(new JsonApiSerializer());
} else {
$this->manager->setSerializer(new ArraySerializer());
}
2020-07-26 07:12:40 +02:00
$transformer = new $this->entity_transformer($this->serializer);
$updated_at = request()->has('updated_at') ? request()->input('updated_at') : 0;
if (auth()->user()->getCompany()->is_large && ! request()->has('updated_at')) {
return response()->json(['message' => 'Cannot load a large account without a updated_at parameter', 'errors' =>[]], 401);
}
$updated_at = date('Y-m-d H:i:s', $updated_at);
$query->with(
2020-10-19 12:59:58 +02:00
[ 'user.company_users',
'company' => function ($query) use ($updated_at) {
2020-09-19 12:05:29 +02:00
$query->whereNotNull('updated_at')->with('documents');
2020-07-26 12:21:55 +02:00
},
'company.clients' => function ($query) use ($updated_at) {
2020-10-19 12:59:58 +02:00
$query->where('clients.updated_at', '>=', $updated_at)->with('contacts.company', 'gateway_tokens','documents','company');
2020-07-26 12:21:55 +02:00
},
'company.company_gateways' => function ($query) {
$query->whereNotNull('updated_at');
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.credits'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('invitations', 'documents',);
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.designs'=> function ($query) use ($updated_at) {
2020-09-10 03:05:42 +02:00
$query->where('updated_at', '>=', $updated_at)->with('company');
},
2020-10-19 12:59:58 +02:00
'company.documents'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at);
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.expenses'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('documents' );
2020-09-19 04:05:54 +02:00
},
2020-10-19 12:59:58 +02:00
'company.groups' => function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at);
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.invoices'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('invitations', 'documents');
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.payments'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('paymentables','documents', );
2020-07-26 12:21:55 +02:00
},
'company.payment_terms'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at);
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.products' => function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('documents');
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.projects'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('documents' );
},
'company.quotes'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('invitations', 'documents',);
},
'company.recurring_invoices'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('invitations', 'documents');
2020-07-26 12:21:55 +02:00
},
'company.tasks'=> function ($query) use ($updated_at) {
2020-10-19 12:59:58 +02:00
$query->where('updated_at', '>=', $updated_at)->with('documents' );
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.tax_rates' => function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at);
2020-07-26 12:21:55 +02:00
},
2020-10-19 12:59:58 +02:00
'company.vendors'=> function ($query) use ($updated_at) {
$query->where('updated_at', '>=', $updated_at)->with('contacts','documents' );
2020-07-26 12:21:55 +02:00
},
]
);
2020-07-24 11:39:43 +02:00
if (is_a($query, "Illuminate\Database\Eloquent\Builder")) {
$limit = Input::get('per_page', 20);
$paginator = $query->paginate($limit);
$query = $paginator->getCollection();
$resource = new Collection($query, $transformer, $this->entity_type);
$resource->setPaginator(new IlluminatePaginatorAdapter($paginator));
} else {
$resource = new Collection($query, $transformer, $this->entity_type);
}
return $this->response($this->manager->createData($resource)->toArray());
}
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);
if (auth()->user() && ! 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
2020-07-28 14:06:47 +02:00
if (auth()->user() && 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',
'X-Api-Version' => config('ninja.minimum_client_version'),
2019-09-11 07:32:47 +02:00
'X-App-Version' => config('ninja.app_version'),
2019-03-28 22:34:58 +01:00
];
}
protected function getRequestIncludes($data)
{
/*
* Thresholds for displaying large account on first load
*/
if (request()->has('first_load') && request()->input('first_load') == 'true') {
if (auth()->user()->getCompany()->is_large && request()->missing('updated_at')) {
2020-07-26 10:30:55 +02:00
$data = $this->mini_load;
} else {
2020-07-26 10:30:55 +02:00
$data = $this->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()
{
if ((bool) $this->checkAppSetup() !== false && Schema::hasTable('accounts') && $account = Account::first()) {
if (config('ninja.require_https') && ! request()->isSecure()) {
return redirect()->secure(request()->getRequestUri());
}
$data = [];
2020-05-28 10:54:13 +02:00
if (Ninja::isSelfHost()) {
$data['report_errors'] = $account->report_errors;
} else {
$data['report_errors'] = true;
}
2020-07-26 00:27:49 +02:00
$data['hash'] = md5(public_path('main.dart.js'));
$this->buildCache();
return view('index.index', $data);
}
return redirect('/setup');
}
}