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

154 lines
4.3 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
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-29 13:15:42 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-29 13:15:42 +02:00
*/
namespace App\Utils\Traits;
2021-05-17 12:16:30 +02:00
use App\Utils\Ninja;
2022-10-30 23:35:46 +01:00
use BaconQrCode\Renderer\Image\SvgImageBackEnd;
2023-02-16 02:36:09 +01:00
use BaconQrCode\Renderer\ImageRenderer;
2022-10-30 23:35:46 +01:00
use BaconQrCode\Renderer\RendererStyle\RendererStyle;
use BaconQrCode\Writer;
2023-02-16 02:36:09 +01:00
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;
}
2021-10-06 06:05:16 +02:00
public function getPaymentLink()
{
if (Ninja::isHosted()) {
2021-10-06 06:05:16 +02:00
$domain = $this->company->domain();
} else {
2021-10-06 06:05:16 +02:00
$domain = config('ninja.app_url');
}
2021-10-06 06:05:16 +02:00
return $domain.'/client/pay/'.$this->key;
}
2022-10-30 23:35:46 +01:00
public function getPaymentQrCode()
{
$renderer = new ImageRenderer(
2022-10-30 23:54:23 +01:00
new RendererStyle(200),
2022-10-30 23:35:46 +01:00
new SvgImageBackEnd()
);
$writer = new Writer($renderer);
$qr = $writer->writeString($this->getPaymentLink(), 'utf-8');
2022-10-30 23:35:46 +01:00
2022-11-28 10:49:32 +01:00
return "<svg class='pqrcode' viewBox='0 0 200 200' width='200' height='200' x='0' y='0' xmlns='http://www.w3.org/2000/svg'>
2022-10-30 23:54:23 +01:00
<rect x='0' y='0' width='100%'' height='100%' />{$qr}</svg>";
2022-10-30 23:35:46 +01:00
}
2022-02-25 03:55:32 +01:00
public function getUnsubscribeLink()
{
if (Ninja::isHosted()) {
2022-02-25 03:55:32 +01:00
$domain = $this->company->domain();
} else {
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
}
2022-02-25 03:55:32 +01:00
2022-02-27 08:33:29 +01:00
$entity_type = Str::snake(class_basename($this->entityType()));
return $domain.'/client/unsubscribe/'.$entity_type.'/'.$this->key;
2022-02-25 03:55:32 +01:00
}
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':
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
{
if (Ninja::isHosted()) {
$domain = $this->company->domain();
} else {
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_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;
}
}
2023-06-06 10:19:47 +02:00
public function getAdminLink($use_react_link = false) :string
{
2023-06-07 05:53:38 +02:00
return $use_react_link ? $this->getReactLink() : $this->getLink().'?silent=true';
}
2023-06-06 10:19:47 +02:00
private function getReactLink(): string
{
2023-06-07 05:53:38 +02:00
$entity_type = Str::snake(class_basename($this->entityType()));
2023-06-11 08:09:16 +02:00
return config('ninja.react_url')."/#/{$entity_type}s/{$this->{$entity_type}->hashed_id}/edit";
2023-06-06 10:19:47 +02:00
}
}