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

105 lines
2.7 KiB
PHP
Raw Normal View History

2019-05-29 13:15:42 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-29 13:15:42 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-29 13:15:42 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Utils\Traits;
2021-05-17 12:16:30 +02:00
use App\Utils\Ninja;
use Illuminate\Support\Str;
2019-05-29 13:15:42 +02:00
/**
* Class Inviteable.
2019-05-29 13:15:42 +02:00
*/
trait Inviteable
{
/**
* Gets the status.
*
* @return string The status.
*/
public function getStatus() :string
{
$status = '';
if (isset($this->sent_date)) {
$status = ctrans('texts.invitation_status_sent');
}
if (isset($this->opened_date)) {
$status = ctrans('texts.invitation_status_opened');
}
if (isset($this->viewed_date)) {
$status = ctrans('texts.invitation_status_viewed');
}
return $status;
}
public function getLink() :string
{
$entity_type = Str::snake(class_basename($this->entityType()));
2021-05-17 12:16:30 +02:00
if(Ninja::isHosted())
$domain = isset($this->company->portal_domain) ? $this->company->portal_domain : $this->company->domain();
else
$domain = config('ninja.app_url');
switch ($this->company->portal_mode) {
case 'subdomain':
2020-12-08 10:18:17 +01:00
return $domain.'/client/'.$entity_type.'/'.$this->key;
break;
case 'iframe':
2020-12-08 10:18:17 +01:00
return $domain.'/client/'.$entity_type.'/'.$this->key;
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
break;
case 'domain':
2020-12-08 10:18:17 +01:00
return $domain.'/client/'.$entity_type.'/'.$this->key;
break;
default:
return '';
break;
}
}
2021-04-19 03:19:00 +02:00
public function getPortalLink() :string
{
2021-05-17 12:16:30 +02:00
if(Ninja::isHosted())
$domain = isset($this->company->portal_domain) ? $this->company->portal_domain : $this->company->domain();
else
$domain = config('ninja.app_url');
2021-04-19 03:19:00 +02:00
switch ($this->company->portal_mode) {
case 'subdomain':
return $domain.'/client/';
break;
case 'iframe':
return $domain.'/client/';
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
break;
case 'domain':
return $domain.'/client/';
break;
default:
return '';
break;
}
}
public function getAdminLink() :string
{
return $this->getLink().'?silent=true';
}
}