summaryrefslogtreecommitdiffstats
path: root/templates/user/settings/keys_ssh.tmpl
blob: 058dc9ceb7c3b1eabd35503fd93f1d935137cecf (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<h4 class="ui top attached header">
	{{ctx.Locale.Tr "settings.manage_ssh_keys"}}
	<div class="ui right">
		<button id="add-ssh-button" class="ui primary tiny show-panel toggle button" data-panel="#add-ssh-key-panel">
			{{ctx.Locale.Tr "settings.add_key"}}
		</button>
	</div>
</h4>
<div class="ui attached segment">
	<div class="{{if not .HasSSHError}}tw-hidden{{end}} tw-mb-4" id="add-ssh-key-panel">
		<form class="ui form" action="{{.Link}}" method="post">
			{{.CsrfTokenHtml}}
			<div class="field {{if .Err_Title}}error{{end}}">
				<label for="ssh-key-title">{{ctx.Locale.Tr "settings.key_name"}}</label>
				<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required maxlength="50">
			</div>
			<div class="field {{if .Err_Content}}error{{end}}">
				<label for="ssh-key-content">{{ctx.Locale.Tr "settings.key_content"}}</label>
				<textarea id="ssh-key-content" name="content" class="js-quick-submit" placeholder="{{ctx.Locale.Tr "settings.key_content_ssh_placeholder"}}" required>{{.content}}</textarea>
			</div>
			<input name="type" type="hidden" value="ssh">
			<button class="ui primary button">
				{{ctx.Locale.Tr "settings.add_key"}}
			</button>
			<button id="cancel-ssh-button" class="ui hide-panel button" data-panel="#add-ssh-key-panel">
				{{ctx.Locale.Tr "cancel"}}
			</button>
		</form>
	</div>
	<div id="keys-ssh" class="flex-list">
		<div class="flex-item">
			<p>
				{{ctx.Locale.Tr "settings.ssh_desc"}}<br>
				{{ctx.Locale.Tr "settings.ssh_helper" "https://docs.codeberg.org/security/ssh-key/" "https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/troubleshooting-ssh"}}
			</p>
		</div>
		{{if .DisableSSH}}
			<div class="flex-item">
				{{ctx.Locale.Tr "settings.ssh_signonly"}}
			</div>
		{{end}}
		{{range $index, $key := .Keys}}
			<div class="flex-item">
				<div class="flex-item-leading">
					<span class="text {{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-tooltip-content="{{ctx.Locale.Tr "settings.key_state_desc"}}"{{end}}>{{svg "octicon-key" 32}}</span>
				</div>
				<div class="flex-item-main">
						{{if .Verified}}
							<div class="flex-item-title flex-text-block" data-tooltip-content="{{ctx.Locale.Tr "settings.ssh_key_verified_long"}}">{{svg "octicon-verified"}}{{ctx.Locale.Tr "settings.ssh_key_verified"}}</div>
						{{end}}
						<div class="flex-item-title">{{.Name}}</div>
						<div class="flex-item-body">
								{{.Fingerprint}}
						</div>
						<div class="flex-item-body">
								<p>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}} — {{svg "octicon-info"}} {{if .HasUsed}}{{ctx.Locale.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="text green"{{end}}>{{DateTime "short" .UpdatedUnix}}</span>{{else}}{{ctx.Locale.Tr "settings.no_activity"}}{{end}}</p>
						</div>
				</div>
				<div class="flex-item-trailing">
					<button class="ui red tiny button delete-button{{if index $.ExternalKeys $index}} disabled{{end}}" data-modal-id="delete-ssh" data-url="{{$.Link}}/delete?type=ssh" data-id="{{.ID}}"{{if index $.ExternalKeys $index}} title="{{ctx.Locale.Tr "settings.ssh_externally_managed"}}"{{end}}>
						{{ctx.Locale.Tr "settings.delete_key"}}
					</button>
					{{if and (not .Verified) (ne $.VerifyingFingerprint .Fingerprint)}}
						<a class="ui primary tiny button" href="?verify_ssh={{.Fingerprint}}">{{ctx.Locale.Tr "settings.ssh_key_verify"}}</a>
					{{end}}
				</div>
			</div>
			{{if and (not .Verified) (eq $.VerifyingFingerprint .Fingerprint)}}
				<div class="ui segment">
					<h4>{{ctx.Locale.Tr "settings.ssh_token_required"}}</h4>
					<form class="ui form{{if $.HasSSHVerifyError}} error{{end}}" action="{{$.Link}}" method="post">
						{{$.CsrfTokenHtml}}
						<input type="hidden" name="title" value="none">
						<input type="hidden" name="content" value="{{.Content}}">
						<input type="hidden" name="fingerprint" value="{{.Fingerprint}}">
						<div class="field">
							<label for="token">{{ctx.Locale.Tr "settings.ssh_token"}}</label>
							<input readonly="" value="{{$.TokenToSign}}">
							<div class="help">
								<p>{{ctx.Locale.Tr "settings.ssh_token_help"}}</p>
								<p><code>{{printf "echo -n '%s' | ssh-keygen -Y sign -n gitea -f /path_to_PrivateKey_or_RelatedPublicKey" $.TokenToSign}}</code></p>
							</div>
							<br>
						</div>
						<div class="field">
							<label for="signature">{{ctx.Locale.Tr "settings.ssh_token_signature"}}</label>
							<textarea id="ssh-key-signature" name="signature" class="js-quick-submit" placeholder="{{ctx.Locale.Tr "settings.key_signature_ssh_placeholder"}}" required>{{$.signature}}</textarea>
						</div>
						<input name="type" type="hidden" value="verify_ssh">
						<button class="ui primary button">
							{{ctx.Locale.Tr "settings.ssh_key_verify"}}
						</button>
						<a class="ui red button" href="{{$.Link}}">
							{{ctx.Locale.Tr "settings.cancel"}}
						</a>
					</form>
				</div>
			{{end}}
		{{end}}
	</div>
	<div class="ui g-modal-confirm delete modal" id="delete-ssh">
		<div class="header">
			{{svg "octicon-trash"}}
			{{ctx.Locale.Tr "settings.ssh_key_deletion"}}
		</div>
		<div class="content">
			<p>{{ctx.Locale.Tr "settings.ssh_key_deletion_desc"}}</p>
		</div>
		{{template "base/modal_actions_confirm" .}}
	</div>
</div>