2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-06-22 07:29:21 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-07-02 06:12:11 +00:00
|
|
|
<MkSpacer v-if="file" :content-max="600" :margin-min="16" :margin-max="32">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div v-if="tab === 'overview'" class="cxqhhsmd _gaps_m">
|
2023-01-05 12:04:56 +00:00
|
|
|
<a class="thumbnail" :href="file.url" target="_blank">
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkDriveFileThumbnail class="thumbnail" :file="file" fit="contain"/>
|
2022-06-21 15:10:34 +00:00
|
|
|
</a>
|
2023-01-05 12:04:56 +00:00
|
|
|
<div>
|
2022-06-21 15:10:34 +00:00
|
|
|
<MkKeyValue :copy="file.type" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>MIME Type</template>
|
|
|
|
<template #value><span class="_monospace">{{ file.type }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
|
|
<template #key>Size</template>
|
|
|
|
<template #value><span class="_monospace">{{ bytes(file.size) }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue :copy="file.id" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>ID</template>
|
|
|
|
<template #value><span class="_monospace">{{ file.id }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue :copy="file.md5" oneline style="margin: 1em 0;">
|
|
|
|
<template #key>MD5</template>
|
|
|
|
<template #value><span class="_monospace">{{ file.md5 }}</span></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
|
|
<template #key>{{ i18n.ts.createdAt }}</template>
|
|
|
|
<template #value><span class="_monospace"><MkTime :time="file.createdAt" mode="detail" style="display: block;"/></span></template>
|
|
|
|
</MkKeyValue>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2022-06-26 05:17:55 +00:00
|
|
|
<MkA v-if="file.user" class="user" :to="`/user-info/${file.user.id}`">
|
2022-06-23 14:45:22 +00:00
|
|
|
<MkUserCardMini :user="file.user"/>
|
|
|
|
</MkA>
|
2023-01-05 12:04:56 +00:00
|
|
|
<div>
|
2022-12-22 07:51:48 +00:00
|
|
|
<MkSwitch v-model="isSensitive" @update:model-value="toggleIsSensitive">NSFW</MkSwitch>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2022-06-20 12:05:18 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<div>
|
2022-12-19 10:01:30 +00:00
|
|
|
<MkButton danger @click="del"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2022-06-21 15:10:34 +00:00
|
|
|
</div>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div v-else-if="tab === 'ip' && info" class="_gaps_m">
|
2022-07-02 06:12:11 +00:00
|
|
|
<MkInfo v-if="!iAmAdmin" warn>{{ i18n.ts.requireAdminForView }}</MkInfo>
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue v-if="info.requestIp" class="_monospace" :copy="info.requestIp" oneline>
|
2022-07-02 06:12:11 +00:00
|
|
|
<template #key>IP</template>
|
|
|
|
<template #value>{{ info.requestIp }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<FormSection v-if="info.requestHeaders">
|
|
|
|
<template #label>Headers</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue v-for="(v, k) in info.requestHeaders" :key="k" class="_monospace">
|
2022-07-02 06:12:11 +00:00
|
|
|
<template #key>{{ k }}</template>
|
|
|
|
<template #value>{{ v }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</FormSection>
|
|
|
|
</div>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div v-else-if="tab === 'raw'" class="_gaps_m">
|
2022-06-21 15:10:34 +00:00
|
|
|
<MkObjectView v-if="info" tall :value="info">
|
|
|
|
</MkObjectView>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-10-17 11:12:00 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
<script lang="ts" setup>
|
2022-06-17 06:03:02 +00:00
|
|
|
import { computed } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkSwitch from '@/components/form/switch.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkObjectView from '@/components/MkObjectView.vue';
|
|
|
|
import MkDriveFileThumbnail from '@/components/MkDriveFileThumbnail.vue';
|
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2022-07-02 06:12:11 +00:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import * as os from '@/os';
|
2022-05-17 16:33:21 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-06-21 15:10:34 +00:00
|
|
|
import { acct } from '@/filters/user';
|
2022-07-02 06:12:11 +00:00
|
|
|
import { iAmAdmin, iAmModerator } from '@/account';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-06-21 15:10:34 +00:00
|
|
|
let tab = $ref('overview');
|
2022-05-17 16:33:21 +00:00
|
|
|
let file: any = $ref(null);
|
|
|
|
let info: any = $ref(null);
|
|
|
|
let isSensitive: boolean = $ref(false);
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
fileId: string,
|
|
|
|
}>();
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
async function fetch() {
|
|
|
|
file = await os.api('drive/files/show', { fileId: props.fileId });
|
|
|
|
info = await os.api('admin/drive/show-file', { fileId: props.fileId });
|
|
|
|
isSensitive = file.isSensitive;
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
fetch();
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
async function del() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('removeAreYouSure', { x: file.name }),
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
os.apiWithDialog('drive/files/delete', {
|
2022-06-17 06:03:02 +00:00
|
|
|
fileId: file.id,
|
2022-05-17 16:33:21 +00:00
|
|
|
});
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-05-17 16:33:21 +00:00
|
|
|
async function toggleIsSensitive(v) {
|
|
|
|
await os.api('drive/files/update', { fileId: props.fileId, isSensitive: v });
|
|
|
|
isSensitive = v;
|
|
|
|
}
|
2022-06-17 06:03:02 +00:00
|
|
|
|
2022-06-21 15:10:34 +00:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
text: i18n.ts.openInNewTab,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-external-link',
|
2022-06-21 15:10:34 +00:00
|
|
|
handler: () => {
|
|
|
|
window.open(file.url, '_blank');
|
|
|
|
},
|
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2022-06-21 15:10:34 +00:00
|
|
|
const headerTabs = $computed(() => [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'overview',
|
2022-06-21 15:10:34 +00:00
|
|
|
title: i18n.ts.overview,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-info-circle',
|
2022-07-02 06:12:11 +00:00
|
|
|
}, iAmModerator ? {
|
|
|
|
key: 'ip',
|
|
|
|
title: 'IP',
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-password',
|
2022-07-02 06:12:11 +00:00
|
|
|
} : null, {
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'raw',
|
2022-06-21 15:10:34 +00:00
|
|
|
title: 'Raw data',
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-code',
|
2022-06-21 15:10:34 +00:00
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: file ? i18n.ts.file + ': ' + file.name : i18n.ts.file,
|
2022-12-19 23:35:49 +00:00
|
|
|
icon: 'ti ti-file',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-10-17 11:12:00 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-10-17 11:12:00 +00:00
|
|
|
.cxqhhsmd {
|
2022-06-21 15:10:34 +00:00
|
|
|
> .thumbnail {
|
|
|
|
display: block;
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> .thumbnail {
|
2022-06-21 15:10:34 +00:00
|
|
|
height: 300px;
|
2020-10-17 11:12:00 +00:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-06-23 14:45:22 +00:00
|
|
|
|
|
|
|
> .user {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
</style>
|