1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/ViewComposers/PortalComposer.php

132 lines
4.6 KiB
PHP
Raw Normal View History

2019-07-19 06:32:51 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-07-19 06:32:51 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-07-19 06:32:51 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-07-19 06:32:51 +02:00
*/
namespace App\Http\ViewComposers;
2020-11-10 04:36:16 +01:00
use App\Utils\Ninja;
2019-08-12 00:33:17 +02:00
use App\Utils\TranslationHelper;
2021-06-01 00:09:38 +02:00
use Illuminate\Support\Facades\App;
2020-11-10 04:36:16 +01:00
use Illuminate\Support\Facades\Lang;
2019-07-19 06:32:51 +02:00
use Illuminate\View\View;
/**
* Class PortalComposer.
2019-07-19 06:32:51 +02:00
*/
class PortalComposer
{
public const MODULE_RECURRING_INVOICES = 1;
public const MODULE_CREDITS = 2;
public const MODULE_QUOTES = 4;
public const MODULE_TASKS = 8;
public const MODULE_EXPENSES = 16;
public const MODULE_PROJECTS = 32;
public const MODULE_VENDORS = 64;
public const MODULE_TICKETS = 128;
public const MODULE_PROPOSALS = 256;
public const MODULE_RECURRING_EXPENSES = 512;
public const MODULE_RECURRING_TASKS = 1024;
public const MODULE_RECURRING_QUOTES = 2048;
public const MODULE_INVOICES = 4096;
public const MODULE_PROFORMAL_INVOICES = 8192;
public const MODULE_PURCHASE_ORDERS = 16384;
public $settings;
2019-07-19 06:32:51 +02:00
/**
* Bind data to the view.
*
* @param View $view
* @return void
*/
2019-07-22 05:54:34 +02:00
public function compose(View $view) :void
2019-07-19 06:32:51 +02:00
{
2021-09-01 06:02:57 +02:00
$view->with($this->portalData());
2020-11-10 04:36:16 +01:00
if (auth()->guard('contact')->user()) {
2021-05-31 12:40:34 +02:00
App::forgetInstance('translator');
$t = app('translator');
$t->replace(Ninja::transformTranslations(auth()->guard('contact')->user()->client->getMergedSettings()));
2020-11-25 15:19:52 +01:00
}
2019-07-19 06:32:51 +02:00
}
/**
* @return array
*/
2019-07-22 05:54:34 +02:00
private function portalData() :array
2019-07-19 06:32:51 +02:00
{
if (! auth()->guard('contact')->user()) {
2019-07-19 06:32:51 +02:00
return [];
}
2019-07-19 06:32:51 +02:00
$this->settings = auth()->guard('contact')->user()->client->getMergedSettings();
2019-07-22 05:54:34 +02:00
$data['sidebar'] = $this->sidebarMenu();
$data['header'] = [];
$data['footer'] = [];
2019-08-12 00:33:17 +02:00
$data['countries'] = TranslationHelper::getCountries();
$data['company'] = auth()->guard('contact')->user()->company;
$data['client'] = auth()->guard('contact')->user()->client;
$data['settings'] = $this->settings;
$data['currencies'] = TranslationHelper::getCurrencies();
$data['contact'] = auth()->guard('contact')->user();
2021-09-01 09:01:39 +02:00
$data['multiple_contacts'] = session()->get('multiple_contacts') ?: collect();
2019-07-19 06:32:51 +02:00
return $data;
}
2019-07-22 05:54:34 +02:00
private function sidebarMenu() :array
{
$enabled_modules = auth()->guard('contact')->user()->company->enabled_modules;
2019-07-22 05:54:34 +02:00
$data = [];
// TODO: Enable dashboard once it's completed.
// $this->settings->enable_client_portal_dashboard
// $data[] = [ 'title' => ctrans('texts.dashboard'), 'url' => 'client.dashboard', 'icon' => 'activity'];
if (self::MODULE_INVOICES & $enabled_modules) {
$data[] = ['title' => ctrans('texts.invoices'), 'url' => 'client.invoices.index', 'icon' => 'file-text'];
}
if (self::MODULE_RECURRING_INVOICES & $enabled_modules) {
$data[] = ['title' => ctrans('texts.recurring_invoices'), 'url' => 'client.recurring_invoices.index', 'icon' => 'file'];
}
2021-02-16 13:16:22 +01:00
$data[] = ['title' => ctrans('texts.payments'), 'url' => 'client.payments.index', 'icon' => 'credit-card'];
if (self::MODULE_QUOTES & $enabled_modules) {
$data[] = ['title' => ctrans('texts.quotes'), 'url' => 'client.quotes.index', 'icon' => 'align-left'];
}
if (self::MODULE_CREDITS & $enabled_modules) {
$data[] = ['title' => ctrans('texts.credits'), 'url' => 'client.credits.index', 'icon' => 'credit-card'];
}
$data[] = ['title' => ctrans('texts.payment_methods'), 'url' => 'client.payment_methods.index', 'icon' => 'shield'];
$data[] = ['title' => ctrans('texts.documents'), 'url' => 'client.documents.index', 'icon' => 'download'];
2019-07-22 05:54:34 +02:00
if (auth()->guard('contact')->user()->client->getSetting('enable_client_portal_tasks')) {
2021-05-12 16:39:29 +02:00
$data[] = ['title' => ctrans('texts.tasks'), 'url' => 'client.tasks.index', 'icon' => 'clock'];
2020-11-17 15:01:28 +01:00
}
2021-09-07 18:00:22 +02:00
$data[] = ['title' => ctrans('texts.statement'), 'url' => 'client.statement', 'icon' => 'activity'];
if(Ninja::isHosted() && auth()->guard('contact')->user()->company->id == config('ninja.ninja_default_company_id'))
2021-11-23 22:57:24 +01:00
$data[] = ['title' => ctrans('texts.plan'), 'url' => 'client.plan', 'icon' => 'credit-card'];
2021-11-28 00:58:54 +01:00
else
$data[] = ['title' => ctrans('texts.subscriptions'), 'url' => 'client.subscriptions.index', 'icon' => 'calendar'];
2021-11-23 22:57:24 +01:00
2019-07-22 05:54:34 +02:00
return $data;
}
}