summaryrefslogtreecommitdiffstats
path: root/templates/repo/tag/verification_line.tmpl
blob: 5f8335abcc12fb8f75030a73bdf927695cca8e07 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
{{$v := call .ctxData.VerifyTag .release}}
{{if call .ctxData.HasSignature $v}}
	{{$class := "isSigned"}}
	{{$href := ""}}
	{{if $v.Verified}}
		{{$href = $v.SigningUser.HomeLink}}
		{{$class = (print $class " isVerified")}}
	{{else}}
		{{$class = (print $class " isWarning")}}
	{{end}}

	<div class="ui attached message tw-text-left tw-flex tw-content-center tw-justify-between tag-signature-row tw-flex-wrap {{$class}}">
		<div class="tw-flex tw-content-center">
			{{if $v.Verified}}
				{{if ne $v.SigningUser.ID 0}}
					{{svg "gitea-lock" 16 "tw-mr-2"}}
					<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.signed_by"}}</span>
					{{ctx.AvatarUtils.Avatar $v.SigningUser 28 "tw-mr-2"}}
					<a href="{{$v.SigningUser.HomeLink}}"><strong>{{$v.SigningUser.GetDisplayName}}</strong></a>
				{{else}}
					<span title="{{ctx.Locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog" 16 "tw-mr-2"}}</span>
					<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.signed_by"}}:</span>
					{{ctx.AvatarUtils.AvatarByEmail $v.SigningEmail "" 28 "tw-mr-2"}}
					<strong>{{$v.SigningUser.GetDisplayName}}</strong>
				{{end}}
			{{else}}
				{{svg "gitea-unlock" 16 "tw-mr-2"}}
				<span class="ui text">{{ctx.Locale.Tr $v.Reason}}</span>
			{{end}}
		</div>

		<div class="tw-flex tw-content-center">
			{{if $v.Verified}}
				{{if ne $v.SigningUser.ID 0}}
					{{svg "octicon-verified" 16 "tw-mr-2"}}
					{{if $v.SigningSSHKey}}
						<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
						{{$v.SigningSSHKey.Fingerprint}}
					{{else}}
						<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.gpg_key_id"}}:</span>
						{{$v.SigningKey.PaddedKeyID}}
					{{end}}
				{{else}}
					{{svg "octicon-unverified" 16 "tw-mr-2"}}
					{{if $v.SigningSSHKey}}
						<span class="ui text tw-mr-2" data-tooltip-content="{{ctx.Locale.Tr "gpg.default_key"}}">{{ctx.Locale.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
						{{$v.SigningSSHKey.Fingerprint}}
					{{else}}
						<span class="ui text tw-mr-2" data-tooltip-content="{{ctx.Locale.Tr "gpg.default_key"}}">{{ctx.Locale.Tr "repo.commits.gpg_key_id"}}:</span>
						{{$v.SigningKey.PaddedKeyID}}
					{{end}}
				{{end}}
			{{else if $v.Warning}}
				{{svg "octicon-unverified" 16 "tw-mr-2"}}
				{{if $v.SigningSSHKey}}
					<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
					{{$v.SigningSSHKey.Fingerprint}}
				{{else}}
					<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.gpg_key_id"}}:</span>
					{{$v.SigningKey.PaddedKeyID}}
				{{end}}
			{{else}}
				{{if $v.SigningKey}}
					{{if ne $v.SigningKey.KeyID ""}}
						{{svg "octicon-verified" 16 "tw-mr-2"}}
						<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.gpg_key_id"}}:</span>
						{{$v.SigningKey.PaddedKeyID}}
					{{end}}
				{{end}}
				{{if $v.SigningSSHKey}}
					{{if ne $v.SigningSSHKey.Fingerprint ""}}
						{{svg "octicon-verified" 16 "tw-mr-2"}}
						<span class="ui text tw-mr-2">{{ctx.Locale.Tr "repo.commits.ssh_key_fingerprint"}}:</span>
						{{$v.SigningSSHKey.Fingerprint}}
					{{end}}
				{{end}}
			{{end}}
		</div>
	</div>
{{end}}