summaryrefslogtreecommitdiff
path: root/templates/account.html.ep
blob: 5e30c7799cffcc17d48b0bef1fc70ba18c199ea8 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
% if (my $invalid = stash('invalid')) {
	%= include '_invalid_input', invalid => $invalid
% }

% if (my $success = flash('success')) {
	<div class="row">
		<div class="col s12">
			<div class="card success-color">
				<div class="card-content white-text">
					% if ($success eq 'name') {
						<span class="card-title">Name geändert</span>
					% }
					% elsif ($success eq 'mail') {
						<span class="card-title">Mail-Adresse geändert</span>
					% }
					% elsif ($success eq 'password') {
						<span class="card-title">Passwort geändert</span>
					% }
					% elsif ($success eq 'privacy') {
						<span class="card-title">Einstellungen zu öffentlichen Account-Daten geändert</span>
					% }
					% elsif ($success eq 'traewelling') {
						<span class="card-title">Träwelling-Verknüpfung aktualisiert</span>
					% }
					% elsif ($success eq 'use_history') {
						<span class="card-title">Einstellungen zu vorgeschlagenen Verbindungen geändert</span>
					% }
					% elsif ($success eq 'webhook') {
						<span class="card-title">Web Hook aktualisiert</span>
					% }
				</div>
			</div>
		</div>
	</div>
% }

% my $acc = current_user();
% my $hook = get_webhook();
% my $traewelling = traewelling->get($acc->{id});
% my $use_history = users->use_history(uid => $acc->{id});
<div class="row">
	<div class="col s12">
		<h2>Account</h2>
		<table class="striped">
			<tr>
				<th scope="row">Name</th>
				<td><a href="/account/name"><i class="material-icons">edit</i></a><%= $acc->{name} %></td>
			</tr>
			<tr>
				<th scope="row">Mail</th>
				<td><a href="/account/mail"><i class="material-icons">edit</i></a><%= $acc->{email} %></td>
			</tr>
			<tr>
				<th scope="row">Passwort</th>
				<td><a href="/account/password"><i class="material-icons">edit</i></a></td>
			</tr>
			<tr>
				<th scope="row">Verbindungen</th>
				<td>
					<a href="/account/insight"><i class="material-icons">edit</i></a>
					% if ($use_history & 0x03) {
						Vorschläge aktiv
					% }
					% else {
						<span style="color: #999999;">Vorschläge deaktiviert</span>
					% }
				</td>
			</tr>
			<tr>
				<th scope="row">Öffentliche Daten</th>
				<td>
					<a href="/account/privacy"><i class="material-icons">edit</i></a>
					% if ($acc->{is_public} == 0) {
						<span style="color: #999999;">Keine</span>
					% }
					% if ($acc->{is_public} & 0x01) {
						Aktueller Status (nur mit Anmeldung)
					% }
					% elsif ($acc->{is_public} & 0x02) {
						Aktueller Status
					% }
					% if ($acc->{is_public} & 0x0f and $acc->{is_public} & 0xf0) {
						<br/>
					% }
					% if ($acc->{is_public} & 0x30) {
						% if ($acc->{is_public} & 0x40) {
							Vergangene Fahrten
						% }
						% else {
							Fahrten der letzten vier Wochen
						% }
						% if ($acc->{is_public} & 0x10) {
							(nur mit Anmeldung)
						% }
					% }
					% if ($acc->{is_public} & 0x04) {
						<br/>
						Kommentare
					% }
				</td>
			</tr>
			<tr>
				<th scope="row">Web Hook</th>
				<td>
					<a href="/account/hooks"><i class="material-icons">edit</i></a>
					% if (not $hook->{enabled}) {
						<span style="color: #999999;">Nicht eingerichtet</span>
					% }
					% elsif ($hook->{latest_run}->epoch == 0) {
						Aktiv, noch nicht ausgeführt
					% }
					% elsif ($hook->{errored}) {
						Aktiv, fehlerhaft <i class="material-icons" aria-hidden="true">error</i>
					% }
					% else {
						Aktiv
					% }
				</td>
			</tr>
			<tr>
				<th scope="row">Träwelling</th>
				<td>
					<a href="/account/traewelling"><i class="material-icons">edit</i></a>
					% if (not ($traewelling->{token})) {
						<span style="color: #999999;">Nicht verknüpft</span>
					% }
					% elsif ($traewelling->{errored}) {
						Fehlerhaft <i class="material-icons" aria-hidden="true">error</i>
					% }
					% else {
						Verknüpft mit <%= $traewelling->{data}{user_name} // $traewelling->{email} %>
						% if ($traewelling->{expired}) {
							– Login-Token abgelaufen <i class="material-icons" aria-hidden="true">error</i>
						% }
						% elsif ($traewelling->{expiring}) {
							– Login-Token läuft bald ab <i class="material-icons" aria-hidden="true">warning</i>
						% }
						% elsif ($traewelling->{pull_sync}) {
							– Checkins in Träwelling werden von travelynx übernommen
						% }
						% elsif ($traewelling->{push_sync}) {
							– Checkins in travelynx werden zu Träwelling weitergereicht
						% }
					% }
				</td>
			</tr>
			<tr>
				<th scope="row">Registriert am</th>
				<td><%= $acc->{registered_at}->strftime('%d.%m.%Y %H:%M') %></td>
			</tr>
		</table>
	</div>
</div>
<div class="row">
	<div class="col s12 m12 l12 center-align">
		%= form_for 'logout' => begin
			%= csrf_field
			<button class="btn waves-effect waves-light" type="submit" name="action" value="logout">
				Abmelden
			</button>
		%= end
	</div>
</div>

% my $token = get_api_token();
<div class="row">
	<div class="col s12">
		<h2>API</h2>
		<p>
			Die folgenden API-Token erlauben den passwortlosen automatisierten Zugriff auf
			API-Endpunkte.  Bitte umsichtig behandeln – sobald ein Token gesetzt
			ist, können damit ohne Logindaten alle zugehörigen API-Aktionen
			ausgeführt werden.
		</p>
		<table class="striped">
			<tr>
				<th scope="row">Status</th>
				<td>
					% if ($token->{status}) {
						%= $acc->{id} . '-' . $token->{status}
					% }
					% else {
						—
					% }
				</td>
				<td>
					%= form_for 'set_token' => begin
						%= csrf_field
						%= hidden_field 'token' => 'status'
						<button class="btn waves-effect waves-light" type="submit" name="action" value="generate">
							Generieren
						</button>
						<button class="btn waves-effect waves-light caution-color" type="submit" name="action" value="delete">
							Löschen
						</button>
					%= end
				</td>
			</tr><!--
			<tr>
				<th scope="row">History</th>
				<td>
					% if ($token->{history}) {
						%= $acc->{id} . '-' . $token->{history}
					% }
					% else {
						—
					% }
				</td>
				<td>
					%= form_for 'set_token' => begin
						%= csrf_field
						%= hidden_field 'token' => 'history'
						<button class="btn waves-effect waves-light" type="submit" name="action" value="generate">
							Generieren
						</button>
						<button class="btn waves-effect waves-light red" type="submit" name="action" value="delete">
							Löschen
						</button>
					%= end
				</td>
			</tr>-->
			<tr>
				<th scope="row">Travel</th>
				<td>
					% if ($token->{travel}) {
						%= $acc->{id} . '-' . $token->{travel}
					% }
					% else {
						—
					% }
				</td>
				<td>
					%= form_for 'set_token' => begin
						%= csrf_field
						%= hidden_field 'token' => 'travel'
						<button class="btn waves-effect waves-light" type="submit" name="action" value="generate">
							Generieren
						</button>
						<button class="btn waves-effect waves-light red" type="submit" name="action" value="delete">
							Löschen
						</button>
					%= end
				</td>
			</tr>
			<tr>
				<th scope="row">Import</th>
				<td>
					% if ($token->{import}) {
						%= $acc->{id} . '-' . $token->{import}
					% }
					% else {
						—
					% }
				</td>
				<td>
					%= form_for 'set_token' => begin
						%= csrf_field
						%= hidden_field 'token' => 'import'
						<button class="btn waves-effect waves-light" type="submit" name="action" value="generate">
							Generieren
						</button>
						<button class="btn waves-effect waves-light red" type="submit" name="action" value="delete">
							Löschen
						</button>
					%= end
				</td>
			</tr>
		</table>
	</div>
</div>

<div class="row">
	<div class="col s12">
		<a href="/api">Dokumentation</a>
	</div>
</div>



<div class="row">
	<div class="col s12">
		<h2>Export</h2>
		<ul>
			<li><a href="/export.json">Rohdaten</a> (Kein API-Ersatz, das Format kann sich jederzeit ändern)</li>
		</ul>
	</div>
</div>

% if (not $acc->{deletion_requested}) {
	<div class="row">
		<div class="col s12">
			<h2>Löschen</h2>
			<p>
				Der Löschauftrag wird vorgemerkt und erst nach drei Tagen
				umgesetzt, bis dahin kann er jederzeit zurückgenommen werden.  Nach
				Ablauf der drei Tage wird der Account mit allen zugehörigen
				Reisedaten ohne weitere Rückfragen entfernt.
			</p>
		</div>
	</div>
	<div class="row">
		%= form_for 'delete' => begin
			<div class="input-field col s12 m12 l8">
				<i class="material-icons prefix">lock</i>
				%= password_field 'password', id => 'password', class => 'validate', required => undef, autocomplete => 'current-password'
				<label for="password">Passwort</label>
			</div>
			<div class="input-field col s12 m12 l4 center-align">
				%= csrf_field
				<button class="btn waves-effect waves-light caution-color" type="submit" name="action" value="delete">
					Account löschen
				</button>
			</div>
		%= end
	</div>
% }