2019-05-29 13:15:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* 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;
|
2020-10-15 22:35:15 +02:00
|
|
|
|
2019-05-29 13:15:42 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class Inviteable.
|
2019-05-29 13:15:42 +02:00
|
|
|
*/
|
|
|
|
trait Inviteable
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
|
|
|
* Gets the status.
|
|
|
|
*
|
|
|
|
* @return string The status.
|
|
|
|
*/
|
2020-03-04 12:09:43 +01:00
|
|
|
public function getStatus() :string
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
|
|
|
$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()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2021-10-06 06:05:16 +02:00
|
|
|
$domain = $this->company->domain();
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2021-10-06 06:05:16 +02:00
|
|
|
$domain = config('ninja.app_url');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
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);
|
|
|
|
|
2022-11-23 23:37:14 +01:00
|
|
|
$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()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2022-02-25 03:55:32 +01:00
|
|
|
$domain = $this->company->domain();
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2022-11-23 23:37:14 +01:00
|
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2020-03-04 12:09:43 +01:00
|
|
|
public function getLink() :string
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
2020-10-15 22:35:15 +02:00
|
|
|
$entity_type = Str::snake(class_basename($this->entityType()));
|
2019-12-30 22:59:12 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2021-09-29 13:06:42 +02:00
|
|
|
$domain = $this->company->domain();
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2022-11-23 23:33:25 +01:00
|
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
|
|
|
|
switch ($this->company->portal_mode) {
|
|
|
|
case 'subdomain':
|
2020-12-08 10:18:17 +01:00
|
|
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
2019-12-30 22:59:12 +01:00
|
|
|
break;
|
|
|
|
case 'iframe':
|
2020-12-08 10:18:17 +01:00
|
|
|
return $domain.'/client/'.$entity_type.'/'.$this->key;
|
2019-12-30 22:59:12 +01:00
|
|
|
//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;
|
2019-12-30 22:59:12 +01:00
|
|
|
break;
|
|
|
|
|
2020-11-01 06:09:09 +01:00
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
break;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
|
|
|
}
|
2020-03-04 12:09:43 +01:00
|
|
|
|
2021-04-19 03:19:00 +02:00
|
|
|
public function getPortalLink() :string
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isHosted()) {
|
2021-09-29 13:06:42 +02:00
|
|
|
$domain = $this->company->domain();
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2022-11-23 23:37:14 +01:00
|
|
|
$domain = strlen($this->company->portal_domain) > 5 ? $this->company->portal_domain : config('ninja.app_url');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
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
|
2020-03-04 12:09:43 +01:00
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return $this->getLink().'?silent=true';
|
2020-03-04 12:09:43 +01:00
|
|
|
}
|
2023-06-06 10:19:47 +02:00
|
|
|
|
|
|
|
private function getReactLink(): string
|
|
|
|
{
|
|
|
|
return config('ninja.app_url')."/#/{$entity}/{$hash}/edit";
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|