2019-07-19 06:32:51 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-07-19 06:32:51 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. 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;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class PortalComposer.
|
2019-07-19 06:32:51 +02:00
|
|
|
*/
|
|
|
|
class PortalComposer
|
|
|
|
{
|
2021-06-17 14:06:44 +02:00
|
|
|
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;
|
|
|
|
|
2021-01-13 08:43:26 +01:00
|
|
|
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
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$view->with($this->portalData());
|
2020-11-10 04:36:16 +01:00
|
|
|
|
2021-09-01 06:02:57 +02:00
|
|
|
if (auth('contact')->user()) {
|
2021-05-31 12:40:34 +02:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
2021-09-01 06:02:57 +02:00
|
|
|
$t->replace(Ninja::transformTranslations(auth('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
|
|
|
{
|
2021-09-01 06:02:57 +02:00
|
|
|
if (! auth('contact')->user()) {
|
2019-07-19 06:32:51 +02:00
|
|
|
return [];
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-07-19 06:32:51 +02:00
|
|
|
|
2021-09-01 06:02:57 +02:00
|
|
|
$this->settings = auth('contact')->user()->client->getMergedSettings();
|
2021-01-13 08:43:26 +01:00
|
|
|
|
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();
|
2021-09-01 06:02:57 +02:00
|
|
|
$data['company'] = auth('contact')->user()->company;
|
|
|
|
$data['client'] = auth('contact')->user()->client;
|
2021-01-13 08:43:26 +01:00
|
|
|
$data['settings'] = $this->settings;
|
2020-06-09 14:42:23 +02:00
|
|
|
$data['currencies'] = TranslationHelper::getCurrencies();
|
2021-02-16 13:16:22 +01:00
|
|
|
$data['contact'] = auth('contact')->user();
|
2020-05-27 06:46:19 +02:00
|
|
|
|
2021-09-01 09:01:39 +02:00
|
|
|
$data['multiple_contacts'] = session()->get('multiple_contacts') ?: collect();
|
2019-11-04 01:22:59 +01:00
|
|
|
|
2019-07-19 06:32:51 +02:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2019-07-22 05:54:34 +02:00
|
|
|
private function sidebarMenu() :array
|
|
|
|
{
|
2021-06-17 14:06:44 +02:00
|
|
|
$enabled_modules = auth('contact')->user()->company->enabled_modules;
|
2019-07-22 05:54:34 +02:00
|
|
|
$data = [];
|
|
|
|
|
2021-06-17 14:06:44 +02:00
|
|
|
// 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
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$data[] = ['title' => ctrans('texts.payments'), 'url' => 'client.payments.index', 'icon' => 'credit-card'];
|
2021-06-17 14:06:44 +02:00
|
|
|
|
|
|
|
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'];
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$data[] = ['title' => ctrans('texts.payment_methods'), 'url' => 'client.payment_methods.index', 'icon' => 'shield'];
|
2020-09-28 12:04:34 +02:00
|
|
|
$data[] = ['title' => ctrans('texts.documents'), 'url' => 'client.documents.index', 'icon' => 'download'];
|
2021-03-29 14:35:27 +02:00
|
|
|
$data[] = ['title' => ctrans('texts.subscriptions'), 'url' => 'client.subscriptions.index', 'icon' => 'calendar'];
|
2019-07-22 05:54:34 +02:00
|
|
|
|
2021-09-01 06:02:57 +02:00
|
|
|
if (auth('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
|
|
|
}
|
|
|
|
|
2019-07-22 05:54:34 +02:00
|
|
|
return $data;
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|