Skip to content
Snippets Groups Projects

Resolve "Fetch Objects directly from S3 Endpoint instead of S3 proxy"

18 files
+ 503
332
Compare changes
  • Side-by-side
  • Inline
Files
18
<script setup lang="ts">
<script setup lang="ts">
import type { S3Client } from "@aws-sdk/client-s3";
import { CopyObjectCommand } from "@aws-sdk/client-s3";
import BootstrapModal from "@/components/modals/BootstrapModal.vue";
import BootstrapModal from "@/components/modals/BootstrapModal.vue";
import { Modal, Toast } from "bootstrap";
import { Modal, Toast } from "bootstrap";
import { onMounted, reactive, watch } from "vue";
import { onMounted, reactive, watch } from "vue";
import type { S3ObjectMetaInformation } from "@/client/s3proxy";
import type { _Object as S3Object } from "@aws-sdk/client-s3";
import dayjs from "dayjs";
import { useBucketStore } from "@/stores/buckets";
import { useBucketStore } from "@/stores/buckets";
 
import { useS3ObjectStore } from "@/stores/s3objects";
 
 
const objectRepository = useS3ObjectStore();
const props = defineProps<{
const props = defineProps<{
modalID: string;
modalID: string;
sourceObject: S3ObjectMetaInformation;
srcObject: S3Object;
s3Client: S3Client;
srcBucket: string;
}>();
}>();
const formState = reactive<{
const formState = reactive<{
@@ -25,39 +25,32 @@ const formState = reactive<{
@@ -25,39 +25,32 @@ const formState = reactive<{
});
});
const bucketRepository = useBucketStore();
const bucketRepository = useBucketStore();
const emit = defineEmits<{
(e: "object-copied", object: S3ObjectMetaInformation): void;
}>();
const randomIDSuffix = Math.random().toString(16).substring(2, 8);
const randomIDSuffix = Math.random().toString(16).substring(2, 8);
let copyModal: Modal | null = null;
let copyModal: Modal | null = null;
let successToast: Toast | null = null;
let successToast: Toast | null = null;
let errorToast: Toast | null = null;
let errorToast: Toast | null = null;
function getFileName(key: string): string {
function getFileName(key?: string): string {
 
if (key == undefined) {
 
return "";
 
}
const splittedKey = key.split("/");
const splittedKey = key.split("/");
return splittedKey[splittedKey.length - 1];
return splittedKey[splittedKey.length - 1];
}
}
function copyObject() {
function copyObject() {
const command = new CopyObjectCommand({
if (props.srcObject.Key == undefined) {
Bucket: formState.destBucket,
return;
CopySource: encodeURI(
}
`/${props.sourceObject.bucket}/${props.sourceObject.key}`,
),
Key: formState.destKey,
});
formState.uploading = true;
formState.uploading = true;
props.s3Client
objectRepository
.send(command)
.copyObject(
 
props.srcBucket,
 
props.srcObject,
 
formState.destBucket,
 
formState.destKey,
 
)
.then(() => {
.then(() => {
emit("object-copied", {
key: formState.destKey,
bucket: formState.destBucket,
size: props.sourceObject.size,
last_modified: dayjs().toISOString(),
content_type: props.sourceObject.content_type,
});
copyModal?.hide();
copyModal?.hide();
successToast?.show();
successToast?.show();
formState.destBucket = "";
formState.destBucket = "";
@@ -76,9 +69,9 @@ function modalClosed() {
@@ -76,9 +69,9 @@ function modalClosed() {
}
}
watch(
watch(
() => props.sourceObject.key,
() => props.srcObject.Key,
(newKey) => {
(newKey) => {
formState.destKey = newKey;
formState.destKey = newKey ?? "";
},
},
);
);
@@ -140,7 +133,7 @@ onMounted(() => {
@@ -140,7 +133,7 @@ onMounted(() => {
v-on="{ 'hidden.bs.modal': modalClosed }"
v-on="{ 'hidden.bs.modal': modalClosed }"
>
>
<template v-slot:header>
<template v-slot:header>
<h4>Copy file {{ getFileName(props.sourceObject.key) }}</h4>
<h4>Copy file {{ getFileName(props.srcObject.Key) }}</h4>
</template>
</template>
<template v-slot:body>
<template v-slot:body>
<div class="container-fluid">
<div class="container-fluid">
Loading