mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:27:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			154 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			154 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Utils\Traits;
 | 
						|
 | 
						|
use App\Utils\Ninja;
 | 
						|
use BaconQrCode\Renderer\Image\SvgImageBackEnd;
 | 
						|
use BaconQrCode\Renderer\ImageRenderer;
 | 
						|
use BaconQrCode\Renderer\RendererStyle\RendererStyle;
 | 
						|
use BaconQrCode\Writer;
 | 
						|
use Illuminate\Support\Str;
 | 
						|
 | 
						|
/**
 | 
						|
 * 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 "<div>$qr</div>";
 | 
						|
 | 
						|
        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;
 | 
						|
                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/';
 | 
						|
                break;
 | 
						|
            case 'domain':
 | 
						|
                return $domain.'/client/';
 | 
						|
                break;
 | 
						|
 | 
						|
            default:
 | 
						|
                return '';
 | 
						|
                break;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function getAdminLink($use_react_link = false) :string
 | 
						|
    {
 | 
						|
        return $use_react_link ? $this->getReactLink() : $this->getLink().'?silent=true';
 | 
						|
    }
 | 
						|
 | 
						|
    private function getReactLink(): string
 | 
						|
    {
 | 
						|
        $entity_type = Str::snake(class_basename($this->entityType()));
 | 
						|
 | 
						|
        return config('ninja.react_url')."/#/{$entity_type}s/{$this->{$entity_type}->hashed_id}/edit";
 | 
						|
    }
 | 
						|
}
 |