2023-02-27 09:19:59 -08:00
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
{{ trans('admin/settings/general.slack_title', ['app' => $integration_app ]) }}
|
|
|
|
@parent
|
|
|
|
@stop
|
2023-01-25 16:22:34 -08:00
|
|
|
|
2023-02-27 09:19:59 -08:00
|
|
|
@section('header_right')
|
|
|
|
<a href="{{ route('settings.index') }}" class="btn btn-primary"> {{ trans('general.back') }}</a>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
|
|
|
|
<div class="panel box box-default">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h2 class="box-title">
|
|
|
|
<i class="{{$icon}}"></i> {{ trans('admin/settings/general.slack',['app' => $integration_app ]) }}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<p>
|
|
|
|
{!! trans('admin/settings/general.slack_integration_help',array('slack_link' => $webhook_link, 'app' => $integration_app )) !!}
|
|
|
|
</p>
|
|
|
|
<br>
|
|
|
|
</div>
|
2023-01-25 16:22:34 -08:00
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
<div class="col-md-12" style="border-top: 0px;">
|
2023-02-01 16:51:05 -08:00
|
|
|
@if (session()->has('save'))
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="alert alert-success fade in">
|
2023-02-01 16:51:05 -08:00
|
|
|
{{session('save')}}
|
2023-01-31 11:32:05 -08:00
|
|
|
</div>
|
|
|
|
@endif
|
2023-02-15 14:45:18 -08:00
|
|
|
|
|
|
|
@if(session()->has('success'))
|
|
|
|
<div class="alert alert-success fade in">
|
|
|
|
{{session('success')}}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if(session()->has('error'))
|
|
|
|
<div class="alert alert-danger fade in">
|
|
|
|
{{session('error')}}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if(session()->has('message'))
|
|
|
|
<div class="alert alert-danger fade in">
|
|
|
|
{{session('message')}}
|
|
|
|
</div>
|
|
|
|
@endif
|
2023-02-27 09:19:59 -08:00
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<div class="col-md-3">
|
|
|
|
<label>Integration Option</label>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6" >
|
|
|
|
<select wire:model="webhook_selected"
|
|
|
|
aria-label="webhook_selected"
|
|
|
|
class="form-control "
|
|
|
|
>
|
|
|
|
<option value="">{{ trans('admin/settings/general.no_default_group') }}</option>
|
|
|
|
@foreach ($webhook_options as $key => $webhook_option)
|
|
|
|
<option value="{{$webhook_option}}" {{ $key ? 'selected' : '' }}>
|
|
|
|
{{ $key }}
|
|
|
|
</option>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
{{var_dump($webhook_selected)}}
|
|
|
|
</div><br><br><br>
|
|
|
|
</div>
|
2023-02-15 14:45:18 -08:00
|
|
|
<form class="form-horizontal" role="form" wire:submit.prevent="submit">
|
2023-01-31 11:32:05 -08:00
|
|
|
{{csrf_field()}}
|
2023-02-01 12:08:13 -08:00
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
<!--slack endpoint-->
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="form-group{{ $errors->has('slack_endpoint') ? ' error' : '' }}">
|
2023-01-31 11:32:05 -08:00
|
|
|
<div class="col-md-2">
|
2023-02-27 09:19:59 -08:00
|
|
|
{{ Form::label('slack_endpoint', trans('admin/settings/general.slack_endpoint',['app' => $integration_app ])) }}
|
2023-01-25 16:22:34 -08:00
|
|
|
</div>
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="col-md-8 required">
|
2023-01-31 11:32:05 -08:00
|
|
|
@if (config('app.lock_passwords')===true)
|
|
|
|
<p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p>
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_endpoint" class= 'form-control' placeholder="https://hooks.slack.com/services/XXXXXXXXXXXXXXXXXXXXX" {{old('slack_endpoint', $slack_endpoint)}}>
|
2023-01-31 11:32:05 -08:00
|
|
|
@else
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_endpoint" class= 'form-control' placeholder="https://hooks.slack.com/services/XXXXXXXXXXXXXXXXXXXXX" {{old('slack_endpoint', $slack_endpoint)}}>
|
2023-01-31 11:32:05 -08:00
|
|
|
@endif
|
|
|
|
{!! $errors->first('slack_endpoint', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- slack channel -->
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="form-group{{ $errors->has('slack_channel') ? ' error' : '' }}">
|
2023-01-31 11:32:05 -08:00
|
|
|
<div class="col-md-2">
|
2023-02-27 09:19:59 -08:00
|
|
|
{{ Form::label('slack_channel', trans('admin/settings/general.slack_channel',['app' => $integration_app ])) }}
|
2023-01-31 11:32:05 -08:00
|
|
|
</div>
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="col-md-8 required">
|
2023-01-31 11:32:05 -08:00
|
|
|
@if (config('app.lock_passwords')===true)
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_channel" class='form-control' placeholder="#IT-Ops" value="{{old('slack_channel', $slack_channel)}}">
|
2023-01-31 11:32:05 -08:00
|
|
|
<p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p>
|
2023-01-25 16:22:34 -08:00
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
@else
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_channel" class= 'form-control' placeholder="#IT-Ops" value="{{old('slack_channel', $slack_channel)}}">
|
2023-01-31 11:32:05 -08:00
|
|
|
@endif
|
|
|
|
{!! $errors->first('slack_channel', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-30 16:10:02 -08:00
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
<!-- slack botname -->
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="form-group{{ $errors->has('slack_botname') ? ' error' : '' }}">
|
2023-01-31 11:32:05 -08:00
|
|
|
<div class="col-md-2">
|
2023-02-27 09:19:59 -08:00
|
|
|
{{ Form::label('slack_botname', trans('admin/settings/general.slack_botname',['app' => $integration_app ])) }}
|
2023-01-25 16:22:34 -08:00
|
|
|
</div>
|
2023-02-15 15:46:05 -08:00
|
|
|
<div class="col-md-8">
|
2023-01-31 11:32:05 -08:00
|
|
|
@if (config('app.lock_passwords')===true)
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_botname" class= 'form-control' placeholder="Snipe-Bot" {{old('slack_botname', $slack_botname)}}>
|
2023-01-31 11:32:05 -08:00
|
|
|
<p class="text-warning"><i class="fas fa-lock"></i> {{ trans('general.feature_disabled') }}</p>
|
2023-01-25 16:22:34 -08:00
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
@else
|
2023-02-15 16:16:14 -08:00
|
|
|
<input type="text" wire:model="slack_botname" class= 'form-control' placeholder="Snipe-Bot" {{old('slack_botname', $slack_botname)}}>
|
2023-01-31 11:32:05 -08:00
|
|
|
@endif
|
|
|
|
{!! $errors->first('slack_botname', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
|
|
|
</div><!--col-md-10-->
|
|
|
|
</div>
|
2023-01-25 16:22:34 -08:00
|
|
|
|
2023-02-01 12:08:13 -08:00
|
|
|
<!--Slack Integration Test-->
|
2023-02-15 16:16:14 -08:00
|
|
|
@if($slack_endpoint != null && $slack_channel != null)
|
2023-02-01 16:51:05 -08:00
|
|
|
<div class="form-group">
|
2023-02-15 14:45:18 -08:00
|
|
|
<div class="col-md-offset-2 col-md-8">
|
2023-02-27 09:19:59 -08:00
|
|
|
<a href="#" wire:click.prevent="testSlack" class="btn btn-default btn-sm pull-left"><span>{!! trans('admin/settings/general.slack_test',['app' => $integration_app ]) !!}</span></a>
|
2023-02-15 14:06:40 -08:00
|
|
|
<div wire:loading><span style="padding-left: 5px; font-size: 20px"><i class="fas fa-spinner fa-spin"></i></span></div>
|
2023-02-01 12:08:13 -08:00
|
|
|
</div>
|
2023-02-01 16:51:05 -08:00
|
|
|
</div>
|
2023-02-01 12:08:13 -08:00
|
|
|
@endif
|
|
|
|
|
2023-02-01 16:51:05 -08:00
|
|
|
<div class="box-footer" style="margin-top: 45px;">
|
|
|
|
<div class="text-right col-md-12">
|
2023-01-31 11:32:05 -08:00
|
|
|
<a class="btn btn-link text-left" href="{{ route('settings.index') }}">{{ trans('button.cancel') }}</a>
|
2023-02-15 15:46:05 -08:00
|
|
|
<button type="submit" {{$isDisabled}} class="btn btn-primary"><i class="fas fa-check icon-white" aria-hidden="true"></i> {{ trans('general.save') }}</button>
|
2023-01-31 11:32:05 -08:00
|
|
|
</div>
|
|
|
|
</div><!--box-footer-->
|
2023-01-30 16:10:02 -08:00
|
|
|
</form>
|
|
|
|
|
2023-01-31 11:32:05 -08:00
|
|
|
</div> <!-- /box -->
|
2023-02-27 09:19:59 -08:00
|
|
|
</div> <!-- /.col-md-8-->
|
|
|
|
</div> <!-- /.row-->
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script>
|
|
|
|
// function formatText (icon) {
|
|
|
|
// return $('<span><i class="fab ' + $(icon.element).data('icon') + '"></i> ' + icon.text + '</span>');
|
|
|
|
// };
|
|
|
|
//
|
|
|
|
// $('.hook_options').select2({
|
|
|
|
// width: "50%",
|
|
|
|
// templateSelection: formatText,
|
|
|
|
// templateResult: formatText
|
|
|
|
// });
|
|
|
|
// $(document).ready(function () {
|
|
|
|
// $('.webhook_options').select2();
|
|
|
|
// $('.webhook_options').on('change', function (e) {
|
|
|
|
// let data = $('#select2').select2("val");
|
|
|
|
// @this.set('webhook_option', data);
|
|
|
|
// });
|
|
|
|
// });
|
2023-01-30 16:10:02 -08:00
|
|
|
|
2023-01-26 15:17:08 -08:00
|
|
|
|
2023-02-27 09:19:59 -08:00
|
|
|
</script>
|
|
|
|
@endpush
|