1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Mail/SupportMessageSent.php

86 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace App\Mail;
use App\Utils\Ninja;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
2020-10-28 11:10:49 +01:00
use LimitIterator;
use SplFileObject;
class SupportMessageSent extends Mailable
{
// use Queueable, SerializesModels;
2021-09-30 00:13:48 +02:00
public $data;
public $send_logs;
2021-09-30 00:13:48 +02:00
public function __construct(array $data, $send_logs)
{
2021-09-30 00:13:48 +02:00
$this->data = $data;
$this->send_logs = $send_logs;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
$system_info = null;
$log_lines = [];
/*
* With self-hosted version of Ninja,
* we are going to bundle system-level info
* and last 10 lines of laravel.log file.
*/
if (Ninja::isSelfHost() && $this->send_logs !== false) {
$system_info = Ninja::getDebugInfo();
2020-10-28 11:10:49 +01:00
$log_file = new SplFileObject(sprintf('%s/laravel.log', base_path('storage/logs')));
$log_file->seek(PHP_INT_MAX);
$last_line = $log_file->key();
2021-03-22 11:55:09 +01:00
$lines = new LimitIterator($log_file, $last_line - 100, $last_line);
$log_lines = iterator_to_array($lines);
}
$account = auth()->user()->account;
2021-07-13 13:25:17 +02:00
$priority = '';
2021-08-16 06:34:51 +02:00
$plan = $account->plan ?: 'customer support';
2021-08-15 23:15:03 +02:00
$plan = ucfirst($plan);
2021-07-13 13:25:17 +02:00
2021-08-20 11:04:16 +02:00
if(strlen($account->plan) > 1)
2021-07-13 13:25:17 +02:00
$priority = '[PRIORITY] ';
$company = auth()->user()->company();
$user = auth()->user();
2021-07-23 03:25:33 +02:00
$db = str_replace("db-ninja-", "", $company->db);
2021-09-14 14:01:28 +02:00
$is_large = $company->is_large ? "L" : "S";
2021-09-30 00:13:48 +02:00
$platform = array_key_exists('platform', $this->data) ? $this->data['platform'] : "U";
2021-10-10 11:25:14 +02:00
$migrated = strlen($company->company_key) == 32 ? "M" : "";
2021-09-30 00:13:48 +02:00
2021-06-20 23:52:45 +02:00
if(Ninja::isHosted())
2021-09-30 00:13:48 +02:00
$subject = "{$priority}Hosted-{$db}-{$is_large}{$platform}{$migrated} :: {$plan} :: ".date('M jS, g:ia');
2021-06-20 23:52:45 +02:00
else
2021-10-18 12:46:26 +02:00
$subject = "{$priority}Self Hosted :: {$plan} :: {$is_large}{$platform}{$migrated} :: ".date('M jS, g:ia');
2021-07-13 00:07:09 +02:00
return $this->from(config('mail.from.address'), $user->present()->name())
2021-05-25 01:31:12 +02:00
->replyTo($user->email, $user->present()->name())
2021-05-24 13:31:52 +02:00
->subject($subject)
2021-06-12 23:19:56 +02:00
->view('email.support.message', [
2021-10-03 09:31:08 +02:00
'support_message' => $this->data['message'],
2021-05-24 13:31:52 +02:00
'system_info' => $system_info,
'laravel_log' => $log_lines,
2021-06-12 23:19:56 +02:00
'logo' => $company->present()->logo(),
'settings' => $company->settings
2021-05-24 13:31:52 +02:00
]);
}
}