mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
124 lines
3.9 KiB
PHP
124 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use GuzzleHttp\Client;
|
|
use Livewire\Component;
|
|
use App\Models\Setting;
|
|
|
|
class SlackSettingsForm extends Component
|
|
{
|
|
public $webhook_endpoint;
|
|
public $webhook_channel;
|
|
public $webhook_botname;
|
|
public $isDisabled ='disabled' ;
|
|
public $webhook_link;
|
|
public $webhook_selected;
|
|
public $webhook_options = array(
|
|
array(
|
|
"name" => 'Slack',
|
|
"icon" => 'fab fa-slack',
|
|
"placeholder" => "https://hooks.slack.com/services/XXXXXXXXXXXXXXXXXXXXX",
|
|
"link" => 'https://api.slack.com/messaging/webhooks'
|
|
),
|
|
array(
|
|
"name" => 'Discord',
|
|
"icon" => 'fab fa-discord',
|
|
"placeholder" => "https://discord.com/api/webhooks/XXXXXXXXXXXXXXXXXXXXX",
|
|
"link" => 'https://support.discord.com/hc/en-us/articles/360045093012-Server-Integrations-Page'
|
|
),
|
|
array(
|
|
"name" => 'Rocket Chat',
|
|
"icon" => 'fab fa-rocketchat',
|
|
"placeholder" => "https://discord.com/api/webhooks/XXXXXXXXXXXXXXXXXXXXX",
|
|
"link" => '',
|
|
),
|
|
);
|
|
public $keys;
|
|
public $icon;
|
|
|
|
public Setting $setting;
|
|
|
|
protected $rules = [
|
|
'webhook_endpoint' => 'url|required_with:slack_channel|starts_with:https://hooks.slack.com/|nullable',
|
|
'webhook_channel' => 'required_with:slack_endpoint|starts_with:#|nullable',
|
|
'webhook_botname' => 'string|nullable',
|
|
];
|
|
|
|
public function mount(){
|
|
|
|
$this->setting = Setting::getSettings();
|
|
$this->webhook_endpoint = $this->setting->webhook_endpoint;
|
|
$this->webhook_channel = $this->setting->webhook_channel;
|
|
$this->webhook_botname = $this->setting->webhook_botname;
|
|
// $this->webhook_options = $this->setting->webhook_selected;lma
|
|
$this->keys = array_column($this->webhook_options, 'name');
|
|
|
|
|
|
}
|
|
public function updated($field){
|
|
$this->webhook_selected = $this->webhook_options;
|
|
$this->validateOnly($field ,$this->rules);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
if(empty($this->webhook_channel || $this->webhook_endpoint)){
|
|
$this->isDisabled= 'disabled';
|
|
}
|
|
if(empty($this->webhook_endpoint && $this->webhook_channel)){
|
|
$this->isDisabled= '';
|
|
}
|
|
return view('livewire.slack-settings-form');
|
|
}
|
|
|
|
public function testWebhook(){
|
|
|
|
$slack = new Client([
|
|
'base_url' => e($this->webhook_endpoint),
|
|
'defaults' => [
|
|
'exceptions' => false,
|
|
],
|
|
]);
|
|
|
|
$payload = json_encode(
|
|
[
|
|
'channel' => e($this->webhook_channel),
|
|
'text' => trans('general.slack_test_msg'),
|
|
'username' => e($this->webhook_botname),
|
|
'icon_emoji' => ':heart:',
|
|
]);
|
|
|
|
try {
|
|
$slack->post($this->webhook_endpoint, ['body' => $payload]);
|
|
$this->isDisabled='';
|
|
return session()->flash('success' , 'Your Slack Integration works!');
|
|
|
|
} catch (\Exception $e) {
|
|
$this->isDisabled= 'disabled';
|
|
return session()->flash('error' , trans('admin/settings/message.slack.error', ['error_message' => $e->getMessage()]));
|
|
}
|
|
|
|
//}
|
|
return session()->flash('message' , trans('admin/settings/message.slack.error_misc'));
|
|
|
|
|
|
|
|
}
|
|
public function submit()
|
|
{
|
|
$this->validate($this->rules);
|
|
|
|
$this->setting->webhook_options = $this->webhook_options;
|
|
$this->setting->webhook_endpoint = $this->webhook_endpoint;
|
|
$this->setting->webhook_channel = $this->webhook_channel;
|
|
$this->setting->webhook_botname = $this->webhook_botname;
|
|
|
|
$this->setting->save();
|
|
|
|
session()->flash('save',trans('admin/settings/message.update.success'));
|
|
|
|
|
|
}
|
|
}
|