Files

92 lines
4.1 KiB
Handlebars
Raw Permalink Normal View History

{{$isNew:=or .PageIsSettingsHooksNew .PageIsAdminDefaultHooksNew .PageIsAdminSystemHooksNew}}
2015-08-27 00:30:06 +08:00
{{if .PageIsSettingsHooksEdit}}
2015-12-07 23:30:52 +01:00
<h4 class="ui top attached header">
{{ctx.Locale.Tr "repo.settings.recent_deliveries"}}
{{if .Permission.IsAdmin}}
2015-12-07 23:30:52 +01:00
<div class="ui right">
<!-- the button is wrapped with a span because the tooltip doesn't show on hover if we put data-tooltip-content directly on the button -->
<span data-tooltip-content="{{if or $isNew .Webhook.IsActive}}{{ctx.Locale.Tr "repo.settings.webhook.test_delivery_desc"}}{{else}}{{ctx.Locale.Tr "repo.settings.webhook.test_delivery_desc_disabled"}}{{end}}">
2024-04-14 19:53:52 +02:00
<button class="ui tiny button{{if not (or $isNew .Webhook.IsActive)}} disabled{{end}}" id="test-delivery" data-link="{{.Link}}/test" data-redirect="{{.Link}}">
<span class="text">{{ctx.Locale.Tr "repo.settings.webhook.test_delivery"}}</span>
</button>
</span>
2015-08-27 23:06:14 +08:00
</div>
2015-12-07 23:30:52 +01:00
{{end}}
</h4>
2017-04-07 16:50:40 +02:00
<div class="ui attached segment">
<div class="ui list">
2015-12-07 23:30:52 +01:00
{{range .History}}
<div class="item">
<div class="flex-text-block tw-justify-between">
2023-08-31 10:29:59 +08:00
<div class="flex-text-inline">
{{if .IsSucceed}}
<span class="tw-text-green">{{svg "octicon-check"}}</span>
2024-03-07 23:18:38 +01:00
{{else if not .IsDelivered}}
<span class="tw-text-orange">{{svg "octicon-stopwatch"}}</span>
2023-08-31 10:29:59 +08:00
{{else}}
<span class="tw-text-red">{{svg "octicon-alert"}}</span>
2023-08-31 10:29:59 +08:00
{{end}}
2025-07-05 23:19:33 +08:00
<button class="btn interact-bg tw-p-2 toggle show-panel" data-panel="#info-{{.ID}}">{{.UUID}}</button>
2015-12-07 23:30:52 +01:00
</div>
<span class="tw-text-text-light">
{{DateUtils.TimeSince .Delivered}}
2023-08-31 10:29:59 +08:00
</span>
2015-12-07 23:30:52 +01:00
</div>
2024-03-24 19:23:38 +01:00
<div class="info tw-hidden" id="info-{{.ID}}">
2015-12-07 23:30:52 +01:00
<div class="ui top attached tabular menu">
<a class="item active" data-tab="request-{{.ID}}">
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.settings.webhook.request")}}
</a>
2015-12-07 23:30:52 +01:00
<a class="item" data-tab="response-{{.ID}}">
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.settings.webhook.response")}}
2015-12-07 23:30:52 +01:00
{{if .ResponseInfo}}
{{if .IsSucceed}}
<span class="ui green label">{{.ResponseInfo.Status}}</span>
{{else}}
<span class="ui red label">{{.ResponseInfo.Status}}</span>
{{end}}
{{else}}
2023-05-02 11:54:29 +02:00
<span class="ui label">-</span>
2015-12-07 23:30:52 +01:00
{{end}}
</a>
2023-03-10 15:28:32 +01:00
{{if or $.Permission.IsAdmin $.IsOrganizationOwner $.PageIsAdmin $.PageIsUserSettings}}
2022-01-05 22:00:20 +01:00
<div class="right menu">
<form class="tw-py-2" action="{{$.Link}}/replay/{{.UUID}}" method="post">
<span data-tooltip-content="{{if $.Webhook.IsActive}}{{ctx.Locale.Tr "repo.settings.webhook.replay.description"}}{{else}}{{ctx.Locale.Tr "repo.settings.webhook.replay.description_disabled"}}{{end}}">
<button class="ui tiny button tw-mr-0{{if not $.Webhook.IsActive}} disabled{{end}}">{{svg "octicon-sync"}}</button>
</span>
2022-01-05 22:00:20 +01:00
</form>
</div>
{{end}}
2015-12-07 23:30:52 +01:00
</div>
<div class="ui bottom attached tab segment active" data-tab="request-{{.ID}}">
{{if .RequestInfo}}
<h5>{{ctx.Locale.Tr "repo.settings.webhook.headers"}}</h5>
<pre class="webhook-info"><strong>Request URL:</strong> {{.RequestInfo.URL}}
<strong>Request method:</strong> {{if .RequestInfo.HTTPMethod}}{{.RequestInfo.HTTPMethod}}{{else}}POST{{end}}
{{range $key, $val := .RequestInfo.Headers}}<strong>{{$key}}:</strong> {{$val}}
2015-08-27 23:06:14 +08:00
{{end}}</pre>
<h5>{{ctx.Locale.Tr "repo.settings.webhook.payload"}}</h5>
<pre class="webhook-info">{{or .RequestInfo.Body .PayloadContent}}</pre>
2015-12-07 23:30:52 +01:00
{{else}}
2023-05-02 11:54:29 +02:00
-
2015-12-07 23:30:52 +01:00
{{end}}
</div>
<div class="ui bottom attached tab segment" data-tab="response-{{.ID}}">
{{if .ResponseInfo}}
<h5>{{ctx.Locale.Tr "repo.settings.webhook.headers"}}</h5>
<pre class="webhook-info">{{range $key, $val := .ResponseInfo.Headers}}<strong>{{$key}}:</strong> {{$val}}
2015-08-27 23:06:14 +08:00
{{end}}</pre>
<h5>{{ctx.Locale.Tr "repo.settings.webhook.body"}}</h5>
<pre class="webhook-info">{{.ResponseInfo.Body}}</pre>
2015-12-07 23:30:52 +01:00
{{else}}
2023-05-02 11:54:29 +02:00
-
2015-12-07 23:30:52 +01:00
{{end}}
</div>
</div>
2015-08-27 23:06:14 +08:00
</div>
2015-12-07 23:30:52 +01:00
{{end}}
2015-08-27 23:06:14 +08:00
</div>
</div>
2015-12-07 23:30:52 +01:00
{{end}}