mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-04 13:07:34 +00:00
5cb7ec9304
Backport #38425 * fix #38309 * fix #26238 * fix #37886 Co-authored-by: Harsh Satyajit Thakur <f20240223@goa.bits-pilani.ac.in> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
88 lines
3.7 KiB
Handlebars
88 lines
3.7 KiB
Handlebars
{{if .PageIsSettingsHooksEdit}}
|
|
<h4 class="ui top attached header flex-left-right">
|
|
<span>{{ctx.Locale.Tr "repo.settings.recent_deliveries"}}</span>
|
|
{{if .Permission.IsAdmin}}
|
|
<button class="ui tiny button" id="test-delivery" data-link="{{.Link}}/test"
|
|
data-tooltip-content="{{ctx.Locale.Tr "repo.settings.webhook.test_delivery_desc"}}"
|
|
>
|
|
{{ctx.Locale.Tr "repo.settings.webhook.test_delivery"}}
|
|
</button>
|
|
{{end}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<div class="flex-divided-list">
|
|
{{range .History}}
|
|
<div class="item">
|
|
<div class="flex-left-right">
|
|
<div class="flex-text-inline">
|
|
{{if .IsSucceed}}
|
|
<span class="tw-text-green">{{svg "octicon-check"}}</span>
|
|
{{else if not .IsDelivered}}
|
|
<span class="tw-text-orange">{{svg "octicon-stopwatch"}}</span>
|
|
{{else}}
|
|
<span class="tw-text-red">{{svg "octicon-alert"}}</span>
|
|
{{end}}
|
|
<button class="btn interact-bg tw-p-2 toggle show-panel" data-panel="#info-{{.ID}}">{{.UUID}}</button>
|
|
</div>
|
|
<span class="tw-text-text-light">
|
|
{{DateUtils.TimeSince .Delivered}}
|
|
</span>
|
|
</div>
|
|
<div class="info tw-hidden tw-mt-2" id="info-{{.ID}}">
|
|
<div class="ui top attached tabular menu" data-global-init="initTabSwitcher">
|
|
<a class="item active" data-tab="request-{{.ID}}">
|
|
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.settings.webhook.request")}}
|
|
</a>
|
|
<a class="item" data-tab="response-{{.ID}}">
|
|
{{template "shared/misc/tabtitle" (ctx.Locale.Tr "repo.settings.webhook.response")}}
|
|
{{if .ResponseInfo}}
|
|
{{if .IsSucceed}}
|
|
<span class="ui green label">{{.ResponseInfo.Status}}</span>
|
|
{{else}}
|
|
<span class="ui red label">{{.ResponseInfo.Status}}</span>
|
|
{{end}}
|
|
{{else}}
|
|
<span class="ui label">-</span>
|
|
{{end}}
|
|
</a>
|
|
{{if or $.Permission.IsAdmin $.IsOrganizationOwner $.PageIsAdmin $.PageIsUserSettings}}
|
|
<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>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
</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}}
|
|
{{end}}</pre>
|
|
<h5>{{ctx.Locale.Tr "repo.settings.webhook.payload"}}</h5>
|
|
<pre class="webhook-info">{{or .RequestInfo.Body .PayloadContent}}</pre>
|
|
{{else}}
|
|
-
|
|
{{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}}
|
|
{{end}}</pre>
|
|
<h5>{{ctx.Locale.Tr "repo.settings.webhook.body"}}</h5>
|
|
<pre class="webhook-info">{{.ResponseInfo.Body}}</pre>
|
|
{{else}}
|
|
-
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|