2021-09-21 22:47:38 +02:00
|
|
|
<script>
|
|
|
|
import { formatDate } from "../util/Formatting.svelte";
|
2022-04-26 15:23:57 +02:00
|
|
|
import LoadingIndicator from "../util/LoadingIndicator.svelte";
|
2021-09-21 22:47:38 +02:00
|
|
|
|
|
|
|
let loading = false
|
|
|
|
let loaded = false
|
|
|
|
let rows = []
|
|
|
|
|
|
|
|
const load_keys = async () => {
|
|
|
|
loading = true
|
|
|
|
try {
|
|
|
|
const resp = await fetch(window.api_endpoint+"/user/session")
|
|
|
|
if(resp.status >= 400) {
|
|
|
|
let json = await resp.json()
|
|
|
|
if (json.value === "authentication_failed") {
|
|
|
|
window.location = "/login"
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
throw new Error(json.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rows = await resp.json()
|
|
|
|
rows.forEach(row => {
|
|
|
|
row.creation_date = new Date(row.creation_time)
|
|
|
|
row.last_used_date = new Date(row.last_used_time)
|
|
|
|
})
|
|
|
|
rows.sort((a, b) => {
|
|
|
|
return b.last_used_date - a.last_used_date
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
alert(err)
|
|
|
|
} finally {
|
|
|
|
loading = false
|
|
|
|
loaded = true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-09-21 22:57:33 +02:00
|
|
|
const create_key = async () => {
|
|
|
|
loading = true
|
|
|
|
try {
|
2021-12-20 20:31:39 +01:00
|
|
|
let form = new FormData()
|
2021-12-20 20:42:02 +01:00
|
|
|
form.append("app_name", "website keys page")
|
2021-12-20 20:31:39 +01:00
|
|
|
|
2021-09-21 22:57:33 +02:00
|
|
|
const resp = await fetch(
|
|
|
|
window.api_endpoint+"/user/session",
|
2021-12-20 20:31:39 +01:00
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
body: form,
|
|
|
|
}
|
2021-09-21 22:57:33 +02:00
|
|
|
);
|
|
|
|
if(resp.status >= 400) {
|
|
|
|
throw new Error(await resp.text());
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
alert("Failed to create new API key! "+err)
|
|
|
|
}
|
|
|
|
|
|
|
|
load_keys();
|
|
|
|
}
|
|
|
|
|
2021-09-21 22:47:38 +02:00
|
|
|
const logout = async (key) => {
|
|
|
|
loading = true
|
|
|
|
|
|
|
|
try {
|
|
|
|
const resp = await fetch(
|
|
|
|
window.api_endpoint+"/user/session",
|
|
|
|
{
|
|
|
|
method: "DELETE",
|
|
|
|
headers: {
|
|
|
|
"Authorization": "Basic "+btoa(":"+key),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if(resp.status >= 400) {
|
|
|
|
throw new Error(await resp.text());
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
alert("Failed to delete key: "+err)
|
|
|
|
}
|
|
|
|
|
|
|
|
load_keys();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-04-26 15:23:57 +02:00
|
|
|
<LoadingIndicator loading={loading}/>
|
2022-01-11 13:28:22 +01:00
|
|
|
|
|
|
|
<section>
|
|
|
|
{#if !loaded}
|
|
|
|
<div class="highlight_yellow">
|
|
|
|
<h2>Warning</h2>
|
|
|
|
<p>
|
|
|
|
API keys are sensitive information. They can be used to gain
|
|
|
|
full control over your account. Do not show your API keys to
|
|
|
|
someone or something you don't trust!
|
|
|
|
</p>
|
|
|
|
<button class="button_red" on:click={load_keys}>
|
|
|
|
<i class="icon">lock_open</i> Show API keys
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<div class="toolbar" style="text-align: left;">
|
|
|
|
<div class="toolbar_spacer"></div>
|
|
|
|
<button on:click={create_key}>
|
|
|
|
<i class="icon">add</i> Create new API key
|
|
|
|
</button>
|
2021-09-21 22:47:38 +02:00
|
|
|
</div>
|
|
|
|
{/if}
|
2021-12-20 20:31:39 +01:00
|
|
|
|
2022-01-11 13:28:22 +01:00
|
|
|
<p>
|
|
|
|
If you delete the API key that you are currently using you will be
|
2023-06-13 14:26:09 +02:00
|
|
|
logged out of your account. Keys are sorted based on how recently they
|
|
|
|
were used, so your session usually the top one. API keys expire 30 days
|
|
|
|
after the last time they're used. If you think someone is using your
|
|
|
|
account without your authorization it's probably a good idea to delete
|
|
|
|
all your keys.
|
2022-01-11 13:28:22 +01:00
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
<div class="table_scroll">
|
|
|
|
<table style="text-align: left;">
|
|
|
|
<tr>
|
|
|
|
<td>Key</td>
|
|
|
|
<td>Created</td>
|
|
|
|
<td>Last used ▼</td>
|
|
|
|
<td>IP address</td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
{#each rows as row (row.auth_key)}
|
|
|
|
<tr style="border-bottom: none;">
|
|
|
|
<td>{row.auth_key}</td>
|
|
|
|
<td>{formatDate(row.creation_time, true, true, false)}</td>
|
|
|
|
<td>{formatDate(row.last_used_time, true, true, false)}</td>
|
|
|
|
<td>{row.creation_ip_address}</td>
|
|
|
|
<td>
|
|
|
|
<button on:click|preventDefault={() => {logout(row.auth_key)}} class="button button_red round">
|
|
|
|
<i class="icon">delete</i>
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2021-09-21 22:47:38 +02:00
|
|
|
<tr>
|
2022-01-11 13:28:22 +01:00
|
|
|
<td colspan="1">
|
|
|
|
{#if row.app_name === "website login"}
|
|
|
|
<img src="/res/img/pixeldrain_32.png" alt="Pixeldrain logo" class="app_icon"/>
|
|
|
|
Pixeldrain website
|
|
|
|
{:else if row.app_name === "website keys page"}
|
|
|
|
<i class="icon">vpn_key</i>
|
|
|
|
Pixeldrain keys page
|
|
|
|
{:else if row.app_name === "sharex"}
|
|
|
|
<img src="/res/img/sharex.png" alt="ShareX logo" class="app_icon"/>
|
|
|
|
ShareX
|
|
|
|
{:else if row.app_name === "jdownloader"}
|
|
|
|
<img src="/res/img/jdownloader.png" alt="JDownloader logo" class="app_icon"/>
|
|
|
|
JDownloader
|
|
|
|
{:else}
|
|
|
|
Unknown app: {row.app_name}
|
|
|
|
{/if}
|
|
|
|
</td>
|
|
|
|
<td colspan="4">User-Agent: {row.user_agent}</td>
|
2021-09-21 22:47:38 +02:00
|
|
|
</tr>
|
2022-01-11 13:28:22 +01:00
|
|
|
{/each}
|
|
|
|
</table>
|
2022-10-11 14:21:06 +02:00
|
|
|
<br/>
|
2021-09-21 22:47:38 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
2021-09-21 22:57:33 +02:00
|
|
|
.toolbar {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.toolbar > * { flex: 0 0 auto; }
|
|
|
|
.toolbar_spacer { flex: 1 1 auto; }
|
2021-12-20 20:31:39 +01:00
|
|
|
|
|
|
|
.app_icon {
|
|
|
|
height: 1.6em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2021-09-21 22:47:38 +02:00
|
|
|
</style>
|