2020-07-23 22:26:34 +09:00
|
|
|
|
@extends('setting.base')
|
|
|
|
|
|
|
|
|
|
@section('title', 'Webhook')
|
|
|
|
|
|
|
|
|
|
@section('tab-content')
|
|
|
|
|
<h3>Incoming Webhook</h3>
|
|
|
|
|
<hr>
|
|
|
|
|
<p>さまざまなシステムと連携してチェックインを行うためのWebhook URLを作成することができます。APIドキュメントは<a href="{{ url('/apidoc.html') }}">こちら</a>から参照いただけます。</p>
|
|
|
|
|
<h4>新規作成</h4>
|
|
|
|
|
<div class="card mt-3">
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<h6 class="font-weight-bold">おことわり</h6>
|
|
|
|
|
<p>Webhook APIは予告なく仕様変更を行う場合がございます。また、サーバに対する過剰なリクエストや、不審な公開チェックインを繰り返している場合には管理者の裁量によって予告なく無効化(削除)する場合があります。</p>
|
|
|
|
|
<p>通常利用と同様、1分以内のチェックインは禁止されていることを考慮してください。また、テスト目的であれば非公開チェックインをご活用ください。</p>
|
|
|
|
|
<hr>
|
2020-07-23 22:36:08 +09:00
|
|
|
|
@if (count($webhooks) >= $webhooksLimit)
|
|
|
|
|
<p class="my-0 text-danger">1ユーザーが作成可能なWebhookは、{{ $webhooksLimit }}件までに制限されています。</p>
|
|
|
|
|
@else
|
|
|
|
|
<form action="{{ route('setting.webhooks.store') }}" method="post">
|
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="name">名前 (メモ)</label>
|
2020-07-23 22:57:21 +09:00
|
|
|
|
<input id="name" class="form-control {{ $errors->has('name') ? ' is-invalid' : '' }}" name="name" type="text" required>
|
2020-07-23 22:36:08 +09:00
|
|
|
|
<small class="form-text text-muted">後で分かるように名前を付けておいてください。</small>
|
2020-07-23 22:57:21 +09:00
|
|
|
|
@if ($errors->has('name'))
|
|
|
|
|
<div class="invalid-feedback">{{ $errors->first('name') }}</div>
|
|
|
|
|
@endif
|
2020-07-23 22:36:08 +09:00
|
|
|
|
</div>
|
|
|
|
|
<button class="btn btn-primary" type="submit">新規作成</button>
|
|
|
|
|
</form>
|
|
|
|
|
@endif
|
2020-07-23 22:26:34 +09:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-07-24 12:00:17 +09:00
|
|
|
|
@if (!$webhooks->isEmpty())
|
2020-07-23 22:26:34 +09:00
|
|
|
|
<h4 class="mt-4">作成済みのWebhook</h4>
|
|
|
|
|
<div class="list-group mt-3">
|
|
|
|
|
@foreach ($webhooks as $webhook)
|
|
|
|
|
<div class="list-group-item d-flex justify-content-between align-items-center">
|
|
|
|
|
<div class="flex-grow-1 mr-2">
|
|
|
|
|
<div>{{ $webhook->name }}</div>
|
2020-07-23 23:22:11 +09:00
|
|
|
|
<input class="webhook-url form-control form-control-sm mt-1" type="text" value="{{ url('/api/webhooks/checkin/' . $webhook->id) }}" readonly>
|
2020-07-23 22:26:34 +09:00
|
|
|
|
</div>
|
|
|
|
|
<div class="ml-2">
|
|
|
|
|
<button class="btn btn-outline-secondary copy-to-clipboard" type="button" data-toggle="popover" data-trigger="manual" data-placement="top" data-content="コピーしました!">コピー</button>
|
|
|
|
|
<button class="btn btn-outline-danger" type="button" data-target="#deleteIncomingWebhookModal" data-id="{{ $webhook->id }}">削除</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
2020-07-24 12:42:11 +09:00
|
|
|
|
@component('components.modal', ['id' => 'deleteIncomingWebhookModal'])
|
|
|
|
|
@slot('title')
|
|
|
|
|
削除確認
|
|
|
|
|
@endslot
|
|
|
|
|
Webhookを削除してもよろしいですか?
|
|
|
|
|
<form action="{{ route('setting.webhooks.destroy', ['webhook' => '@']) }}" method="post">
|
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
{{ method_field('DELETE') }}
|
|
|
|
|
</form>
|
|
|
|
|
@slot('footer')
|
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">キャンセル</button>
|
|
|
|
|
<button type="button" class="btn btn-danger">削除</button>
|
|
|
|
|
@endslot
|
|
|
|
|
@endcomponent
|
|
|
|
|
@endsection
|
2020-07-23 22:26:34 +09:00
|
|
|
|
|
|
|
|
|
@push('script')
|
|
|
|
|
<script src="{{ mix('js/setting/webhooks.js') }}"></script>
|
|
|
|
|
@endpush
|