summaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/hook_history.tmpl
blob: d81c317cb52d730af2505cb10a2d434c8e7cf971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{{if .PageIsSettingsHooksEdit}}
<h4 class="ui top attached header">
  {{.i18n.Tr "repo.settings.recent_deliveries"}}
</h4>
<div class="ui attached table segment">
	<div class="ui hook history list">
		{{range .History}}
		<div class="item">
			<div class="meta">
				{{if .IsSucceed}}
				<span class="text green"><i class="octicon octicon-check"></i></span>
				{{else}}
				<span class="text red"><i class="octicon octicon-alert"></i></span>
				{{end}}
				<a class="ui blue sha label toggle button" data-target="#info-{{.ID}}">{{.UUID}}</a>
				<div class="ui right">
					<span class="text grey time">
						{{.DeliveredString}}
					</span>
				</div>
			</div>
			<div class="info hide" id="info-{{.ID}}">
				<div class="ui top attached tabular menu">
				  <a class="item active" data-tab="request-{{.ID}}">{{$.i18n.Tr "repo.settings.webhook.request"}}</a>
				  <a class="item" data-tab="response-{{.ID}}">
				  	{{$.i18n.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">N/A</span>
				  	{{end}}
				  </a>
				</div>
				<div class="ui bottom attached tab segment active" data-tab="request-{{.ID}}">
				  {{if .RequestInfo}}
				  <h5>{{$.i18n.Tr "repo.settings.webhook.headers"}}</h5>
				  <pre class="raw"><strong>Request URL:</strong> {{.URL}}
<strong>Request method:</strong> POST
{{ range $key, $val := .RequestInfo.Headers }}<strong>{{$key}}:</strong> {{$val}}
{{end}}</pre>
					<h5>{{$.i18n.Tr "repo.settings.webhook.payload"}}</h5>
					<pre class="raw"><code class="json">{{.PayloadContent}}</code></pre>
				  {{else}}
				  N/A
				  {{end}}
				</div>
				<div class="ui bottom attached tab segment" data-tab="response-{{.ID}}">
				  {{if .ResponseInfo}}
				  <h5>{{$.i18n.Tr "repo.settings.webhook.headers"}}</h5>
				  <pre class="raw">{{ range $key, $val := .ResponseInfo.Headers }}<strong>{{$key}}:</strong> {{$val}}
{{end}}</pre>
					<h5>{{$.i18n.Tr "repo.settings.webhook.body"}}</h5>
					<pre class="raw"><code>{{.ResponseInfo.Body}}</code></pre>
				  {{else}}
				  N/A
				  {{end}}
				</div>
			</div>
		</div>
		{{end}}
	</div>
</div>
{{end}}