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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
<script setup>
import {
DashboardLayout,
FloatingLabelInput,
PasswordInput,
PasswordValidator,
} from '@/components'
import { ref } from 'vue';
import { store } from '@/store.js'
import useGPodder from '@/api/gpodder.js'
import {
changePassword,
deleteAccount,
getEpisodeActions,
getTitles,
postEpisodeActions,
putSubscriptions,
} from '@/api/pse-squared.js'
import JSZip from 'jszip';
import router from '@/router.js'
import { useLogger } from '@/logger.js'
import { saveAs } from 'file-saver';
/******************************************************************************/
/* change password */
/******************************************************************************/
const changePasswordOld = ref(null);
const changePasswordNew = ref(null);
const logger = useLogger();
async function formChangePassword() {
if(!changePasswordNew.value.valid) {
logger.passwordRequirements();
return;
}
try {
await changePassword({
password: changePasswordOld.value,
new_password: changePasswordNew.value.password
});
await store.login({
username: store.username,
password: changePasswordNew.value.password
}, false);
changePasswordOld.value = "";
changePasswordNew.value = {password: "", valid: false};
logger.passwordChanged();
} catch (err) {}
}
/******************************************************************************/
/* delete account */
/******************************************************************************/
const deletePassword = ref("");
async function formDelete() {
// FIXME: backend
if (store.password != deletePassword.value) {
logger.badRequestError();
return;
}
try {
await deleteAccount({
password: deletePassword.value
});
logger.accountDeleted();
store.logout();
router.push("/login");
} catch (err) {}
}
/******************************************************************************/
/* import from another GPodder instance */
/******************************************************************************/
const gPodderInstance = ref("");
const gPodderUsername = ref("");
const gPodderPassword = ref("");
async function formImportGPodder() {
const instance = useGPodder({
baseURL: gPodderInstance.value
});
await instance.login({
username: gPodderUsername.value,
password: gPodderPassword.value
});
// download titles from instance and upload to pse-squared
try {
const response = await instance.getTitles();
const subscriptions = response.data.map(sub => sub.url);
await putSubscriptions(subscriptions);
} catch (err) {
console.error(err);
return;
}
// download episodes from instance and upload to pse-squared
try {
const response = await instance.getEpisodeActions();
const episodes = response.data.actions;
await postEpisodeActions(episodes);
} catch (err) {
console.error(err);
return;
}
logger.gpodderImport();
}
/******************************************************************************/
/* import and export data */
/******************************************************************************/
async function importData(e) {
const file = e.target.files[0];
const zip = await JSZip.loadAsync(file);
// read and upload subscriptions
try {
const subscriptionsText = await zip.files["subscriptions.json"].async("string");
const subscriptions = JSON.parse(subscriptionsText).map(sub => sub.url);
console.log({subscriptions});
await putSubscriptions(subscriptions);
} catch(err) {
console.error(err);
}
// read and upload episodeActions
try {
const episodeActionsText = await zip.files["episodeActions.json"].async("string");
const episodeActions = JSON.parse(episodeActionsText).actions;
await postEpisodeActions(episodeActions);
} catch(err) {
console.error(err);
}
}
async function exportData() {
const zip = new JSZip();
// load subscriptions
try {
const subscriptionResponse = await getTitles();
zip.file("subscriptions.json", JSON.stringify(subscriptionResponse.data));
} catch(err) {
console.error(err);
}
// load episodeActions
try {
const episodeActionsResponse = await getEpisodeActions();
zip.file("episode-actions.json", JSON.stringify(episodeActionsResponse.data));
} catch(err) {
console.error(err);
}
// generate and save zip
zip.generateAsync({type:"blob"}).then(function(content) {
saveAs(content, "pse-export.zip");
});
}
</script>
<template>
<DashboardLayout>
<!-- Überschrift -->
<h1 class="h1 mb-4">
{{ $t("message.settings") }}
</h1>
<!-- Passwort ändern Sektion -->
<form
class="mb-4"
@submit.prevent="formChangePassword"
>
<h2>{{ $t("message.changePassword") }}</h2>
<!-- Altes Passwort -->
<PasswordInput
v-model="changePasswordOld"
:label="$t('message.oldPassword')"
/>
<!-- Neues Passwort -->
<PasswordValidator v-model="changePasswordNew" />
<button
type="submit"
class="btn btn-primary"
>
{{ $t("message.changePassword") }}
</button>
</form>
<!-- Gpodder-Import Sektion -->
<form
class="mb-4"
@submit.prevent="formImportGPodder"
>
<h2>Gpodder-{{ $t("message.import") }}</h2>
<!-- Gpodder Instanz -->
<FloatingLabelInput
v-model="gPodderInstance"
:label="$t('message.instance')"
/>
<!-- Nutzername -->
<FloatingLabelInput
v-model="gPodderUsername"
:label="$t('form.username')"
/>
<!-- Passwort -->
<PasswordInput
v-model="gPodderPassword"
:label="$t('form.password')"
/>
<button
type="submit"
class="btn btn-primary"
>
{{ $t("message.importData") }}
</button>
</form>
<!-- Personenbezogene Daten im-/exportieren -->
<div class="mb-4">
<h2>{{ $t("message.personalData") }}</h2>
<label
for="file"
class="btn btn-success"
>
{{ $t("message.importData") }}
</label>
<input
id="file"
type="file"
accept=".zip,application/zip"
hidden
@change="importData"
>
<button
class="btn btn-warning mx-2"
@click="exportData"
>
{{ $t("message.exportData") }}
</button>
</div>
<!-- Account löschen -->
<div class="mb-4">
<h2>{{ $t("message.deleteAccount") }}</h2>
<button
class="btn btn-danger"
data-bs-toggle="modal"
data-bs-target="#delete-user"
>
{{ $t("message.deleteAccount") }}
</button>
</div>
</DashboardLayout>
<!-- Modal for confirming deletion of user -->
<div
id="delete-user"
class="modal"
tabindex="-1"
>
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<!-- Title of Modal -->
<div class="modal-header">
<h5 class="modal-title">
{{ $t('message.deleteAccount') }}
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
/>
</div>
<!-- list podcasts to unsubscribe from -->
<div class="modal-body">
<div
class="alert alert-warning d-flex align-items-center"
role="alert"
>
<i class="fs-2 me-3 fa fa-warning" />
<div>
{{ $t('message.deleteAccountWarning', {username: store.username}) }}
</div>
</div>
<PasswordInput
v-model="deletePassword"
:label="$t('form.password')"
/>
</div>
<!-- buttons to dismiss or finaly unsubscribe -->
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
{{ $t('message.close') }}
</button>
<button
type="button"
data-bs-dismiss="modal"
class="btn btn-danger"
@click="formDelete"
>
{{ $t('message.deleteAccount') }}
</button>
</div>
</div>
</div>
</div>
</template>
<style scoped>
</style>
|