snipe-it/app/Http/Livewire/SlackSettingsForm.php

59 lines
1.8 KiB
PHP
Raw Normal View History

2023-01-24 09:25:05 -08:00
<?php
namespace App\Http\Livewire;
use Livewire\Component;
use App\Models\Setting;
class SlackSettingsForm extends Component
{
public $slack_endpoint;
public $slack_channel;
public $slack_botname;
public $successMessage;
2023-01-24 09:25:05 -08:00
public Setting $setting;
2023-01-25 14:29:20 -08:00
protected $rules = [
'slack_endpoint' => 'url|required_with:slack_channel|starts_with:https://hooks.slack.com/|nullable',
'slack_channel' => 'required_with:slack_endpoint|starts_with:#|nullable',
'slack_botname' => 'string|nullable',
2023-01-25 14:29:20 -08:00
];
2023-01-25 16:38:08 -08:00
protected $messages = [
'slack_endpoint.required_with' => 'Slack endpoint is required',
'slack_endpoint.starts_with' => 'Slack endpoint must start with https://hooks.slack.com',
];
2023-01-24 09:25:05 -08:00
public function mount(){
2023-01-25 16:38:08 -08:00
$this->setting = Setting::getSettings();
$this->slack_endpoint = $this->setting->slack_endpoint;
$this->slack_channel = $this->setting->slack_channel;
$this->slack_botname = $this->setting->slack_botname;
}
2023-01-24 09:25:05 -08:00
public function render()
{
return view('livewire.slack-settings-form');
}
public function submit()
{
$this->validate([
'slack_endpoint' => 'url|required_with:slack_channel|starts_with:https://hooks.slack.com/|nullable',
'slack_channel' => 'required_with:slack_endpoint|starts_with:#|nullable',
'slack_botname' => 'string|nullable',
]);
$this->setting->slack_endpoint = $this->slack_endpoint;
$this->setting->slack_channel = $this->slack_channel;
$this->setting->slack_botname = $this->slack_botname;
$this->successMessage= trans('admin/settings/message.update.success');
}
2023-01-24 09:25:05 -08:00
}