130 lines
4.0 KiB
PHP
130 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Settings;
|
|
|
|
use App\Abstracts\Http\Controller;
|
|
use App\Http\Requests\Setting\Setting as Request;
|
|
use App\Models\Common\EmailTemplate;
|
|
use App\Models\Setting\Setting;
|
|
use Illuminate\Support\Str;
|
|
|
|
class Email extends Controller
|
|
{
|
|
public $skip_keys = ['company_id', '_method', '_token', '_prefix'];
|
|
|
|
/**
|
|
* Instantiate a new controller instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// No need to check for permission in console
|
|
if (app()->runningInConsole()) {
|
|
return;
|
|
}
|
|
|
|
// Add CRUD permission check
|
|
$this->middleware('permission:create-settings-settings')->only(['create', 'store', 'duplicate', 'import']);
|
|
$this->middleware('permission:read-settings-email')->only(['index', 'show', 'edit', 'export']);
|
|
$this->middleware('permission:update-settings-settings')->only(['update', 'enable', 'disable']);
|
|
$this->middleware('permission:delete-settings-settings')->only('destroy');
|
|
}
|
|
|
|
public function edit()
|
|
{
|
|
$setting = Setting::all('email')->map(function ($s) {
|
|
$s->key = str_replace('email.', '', $s->key);
|
|
|
|
return $s;
|
|
})->pluck('value', 'key');
|
|
|
|
EmailTemplate::all()->each(function ($template) use ($setting) {
|
|
$setting->put('template_' . $template->alias . '_subject', $template->subject);
|
|
$setting->put('template_' . $template->alias . '_body', $template->body);
|
|
$setting->put('template_' . $template->alias . '_params', $template->params);
|
|
});
|
|
|
|
$email_protocols = [
|
|
'mail' => trans('settings.email.php'),
|
|
'smtp' => trans('settings.email.smtp.name'),
|
|
'sendmail' => trans('settings.email.sendmail'),
|
|
'log' => trans('settings.email.log'),
|
|
];
|
|
|
|
$invoice_tags = implode(', ', app('App\Notifications\Sale\Invoice')->getTags());
|
|
$payment_tags = implode(', ', app('App\Notifications\Portal\PaymentReceived')->getTags());
|
|
$bill_tags = implode(', ', app('App\Notifications\Purchase\Bill')->getTags());
|
|
|
|
return view('settings.email.edit', compact(
|
|
'setting',
|
|
'email_protocols',
|
|
'invoice_tags',
|
|
'payment_tags',
|
|
'bill_tags'
|
|
));
|
|
}
|
|
|
|
public function update(Request $request)
|
|
{
|
|
$fields = $request->all();
|
|
$prefix = $request->get('_prefix', 'email');
|
|
|
|
foreach ($fields as $key => $value) {
|
|
$real_key = $prefix . '.' . $key;
|
|
|
|
// Don't process unwanted keys
|
|
if (in_array($key, $this->skip_keys)) {
|
|
continue;
|
|
}
|
|
|
|
if (Str::startsWith($key, 'template_')) {
|
|
$this->updateEmailTemplate($key, $fields);
|
|
|
|
continue;
|
|
}
|
|
|
|
setting()->set($real_key, $value);
|
|
}
|
|
|
|
// Save all settings
|
|
setting()->save();
|
|
|
|
$message = trans('messages.success.updated', ['type' => trans_choice('general.settings', 2)]);
|
|
|
|
$response = [
|
|
'status' => null,
|
|
'success' => true,
|
|
'error' => false,
|
|
'message' => $message,
|
|
'data' => null,
|
|
'redirect' => route('settings.index'),
|
|
];
|
|
|
|
flash($message)->success();
|
|
|
|
return response()->json($response);
|
|
}
|
|
|
|
public function updateEmailTemplate($key, &$fields)
|
|
{
|
|
$alias = str_replace(['template_', '_subject', '_body'], '', $key);
|
|
$subject_key = 'template_' . $alias . '_subject';
|
|
$body_key = 'template_' . $alias . '_body';
|
|
|
|
if (empty($fields[$subject_key]) || empty($fields[$body_key])) {
|
|
return;
|
|
}
|
|
|
|
$template = EmailTemplate::alias($alias)->first();
|
|
|
|
$template->update([
|
|
'company_id' => $template->company_id,
|
|
'alias' => $template->alias,
|
|
'subject' => $fields[$subject_key],
|
|
'body' => $fields[$body_key],
|
|
]);
|
|
|
|
unset($fields[$subject_key]);
|
|
unset($fields[$body_key]);
|
|
}
|
|
}
|