-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Uploads with the S3 asset storage plugin have mime type of application/octet-stream in S3. #3184
Comments
This is my config for vendure: AssetServerPlugin.init({
route: 'assets',
assetUploadDir: path.join(__dirname, '../static/assets'),
namingStrategy: new DefaultAssetNamingStrategy(),
storageStrategyFactory: configureS3AssetStorage({
bucket: process.env.S3_BUCKET!,
credentials: {
accessKeyId: process.env.S3_ACCESS_KEY!,
secretAccessKey: process.env.S3_SECRET_KEY!,
}, // or any other credential provider
nativeS3Configuration: {
region: process.env.S3_REGION!,
endpoint: process.env.S3_URL!,
forcePathStyle: true,
},
}),
// // For local dev, the correct value for assetUrlPrefix should
// // be guessed correctly, but for production it will usually need
// // to be set manually to match your production url.
// assetUrlPrefix: IS_DEV ? undefined : 'https://www.my-shop.com/assets/',
}), and then for minio in docker: version: '3.4'
services:
minio:
image: minio/minio
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: password
volumes:
- ./minio/data:/data
command: server /data --console-address ":9001" |
In vendure/packages/asset-server-plugin/src/s3-asset-storage-strategy.ts Lines 246 to 254 in 478989e
The issue is that there doesn't appear to be any way to find the mime type for the file being passed to the You could use a package like mime but that package infers the mime type based on file extension. To be more secure you'd need to use a magic-mime based package which would introduce a native dependency (libmagic) as it infers mime type based on the contents of the file. I don't know how big of an issue this actually is. For the time being, for our own app, we are using the mime package:
and using a modified version of the private async writeFile(fileName: string, data: PutObjectRequest['Body'] | string | Uint8Array | Buffer) {
const { Upload } = this.libStorage;
const upload = new Upload({
client: this.s3Client,
params: {
...this.s3Config.nativeS3UploadConfiguration,
Bucket: this.s3Config.bucket,
Key: fileName,
Body: data,
ContentType: mime.getType(fileName) ?? 'application/octet-stream',
},
});
return upload.done().then(result => {
if (!('Key' in result) || !result.Key) {
Logger.error(`Got undefined Key for ${fileName}`, loggerCtx);
throw new Error(`Got undefined Key for ${fileName}`);
}
return result.Key;
});
} We are now seeing the correct mime types show up which is no longer confusing our processing pipelines! Thanks! |
Describe the bug
Using the S3 asset storage plugin all uploads have a mime type of
application/octet-stream
in S3. This happens with minio, supabase storage and aws.The
asset
table in the database has the correct mime type however.I'm guessing whatever is doing the uploading to S3 isn't setting the
Content-Type
of the request correctly.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Expect the files in S3 to have the correct mime-type
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: