mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
150 lines
4.1 KiB
PHP
150 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
use App\Utils\Ninja;
|
|
use Illuminate\Support\Str;
|
|
use BaconQrCode\Renderer\ImageRenderer;
|
|
use BaconQrCode\Renderer\Image\SvgImageBackEnd;
|
|
use BaconQrCode\Renderer\RendererStyle\RendererStyle;
|
|
use BaconQrCode\Writer;
|
|
|
|
|
|
/**
|
|
* Class Inviteable.
|
|
*/
|
|
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 getPaymentLink()
|
|
{
|
|
if (Ninja::isHosted()) {
|
|
$domain = $this->company->domain();
|
|
} else {
|
|
$domain = config('ninja.app_url');
|
|
}
|
|
|
|
return $domain.'/client/pay/'.$this->key;
|
|
}
|
|
|
|
public function getPaymentQrCode()
|
|
{
|
|
|
|
$renderer = new ImageRenderer(
|
|
new RendererStyle(200),
|
|
new SvgImageBackEnd()
|
|
);
|
|
$writer = new Writer($renderer);
|
|
|
|
$qr = $writer->writeString($this->getPaymentLink(), 'utf-8');
|
|
|
|
return "<svg class='pqrcode' viewBox='0 0 200 200' width='200' height='200' x='0' y='0' xmlns='http://www.w3.org/2000/svg'>
|
|
<rect x='0' y='0' width='100%'' height='100%' />{$qr}</svg>";
|
|
|
|
}
|
|
|
|
public function getUnsubscribeLink()
|
|
{
|
|
if (Ninja::isHosted()) {
|
|
$domain = $this->company->domain();
|
|
} else {
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
|
}
|
|
|
|
$entity_type = Str::snake(class_basename($this->entityType()));
|
|
|
|
return $domain.'/client/unsubscribe/'.$entity_type.'/'.$this->key;
|
|
}
|
|
|
|
public function getLink() :string
|
|
{
|
|
$entity_type = Str::snake(class_basename($this->entityType()));
|
|
|
|
if (Ninja::isHosted()) {
|
|
$domain = $this->company->domain();
|
|
} else {
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
|
}
|
|
|
|
switch ($this->company->portal_mode) {
|
|
case 'subdomain':
|
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
|
break;
|
|
case 'iframe':
|
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
|
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
|
|
break;
|
|
case 'domain':
|
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
|
break;
|
|
|
|
default:
|
|
return '';
|
|
break;
|
|
}
|
|
}
|
|
|
|
public function getPortalLink() :string
|
|
{
|
|
if (Ninja::isHosted()) {
|
|
$domain = $this->company->domain();
|
|
} else {
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
|
}
|
|
|
|
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';
|
|
}
|
|
}
|