Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detect mimeType automatically #285

Merged
merged 3 commits into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions src/services/BlobStore.jl
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@
filepath::AbstractString,
blobId::UUID = uuid4();
chunkSize::Integer = UPLOAD_CHUNK_SIZE_HASH,
mimeType::String = "application/octet-stream",
)
# locate large file on fs, ready to read in chunks
fid = open(filepath,"r")
Expand All @@ -195,7 +196,8 @@

# custom header for pushing the file up
headers_ = [
# "Content-Length" => filesize,
"Content-Length" => filesize(filepath),
"Content-Type" => mimeType,
"Accept" => "application/json, text/plain, */*",
"Accept-Encoding" => "gzip, deflate, br",
"Sec-Fetch-Dest" => "empty",
Expand Down Expand Up @@ -241,14 +243,22 @@
blobId
end

function getMimetype(io::IO)
getFormat(s::DFG.FileIO.Stream{T}) where T = T
stream = DFG.FileIO.query(io)

Check warning on line 248 in src/services/BlobStore.jl

View check run for this annotation

Codecov / codecov/patch

src/services/BlobStore.jl#L246-L248

Added lines #L246 - L248 were not covered by tests
# not sure if we need restrict to only our mimetypes, but better than nothing
mime = findfirst(==(getFormat(stream)), DFG._MIMETypes)
if isnothing(mime)
return MIME("application/octet-stream")

Check warning on line 252 in src/services/BlobStore.jl

View check run for this annotation

Codecov / codecov/patch

src/services/BlobStore.jl#L250-L252

Added lines #L250 - L252 were not covered by tests
else
return mime

Check warning on line 254 in src/services/BlobStore.jl

View check run for this annotation

Codecov / codecov/patch

src/services/BlobStore.jl#L254

Added line #L254 was not covered by tests
end
end

function DFG.addBlob!(
store::NavAbilityBlobStore,
blobId::UUID,
blob::Vector{UInt8},
)
function DFG.addBlob!(store::NavAbilityBlobStore, blobId::UUID, blob::Vector{UInt8})

Check warning on line 258 in src/services/BlobStore.jl

View check run for this annotation

Codecov / codecov/patch

src/services/BlobStore.jl#L258

Added line #L258 was not covered by tests
client = store.client

mimeType = getMimetype(IOBuffer(blob))

Check warning on line 261 in src/services/BlobStore.jl

View check run for this annotation

Codecov / codecov/patch

src/services/BlobStore.jl#L261

Added line #L261 was not covered by tests
filesize = length(blob)
# TODO: Use about a 50M file part here.
np = 1 # TODO: ceil(filesize / 50e6)
Expand All @@ -261,6 +271,7 @@
# custom header for pushing the file up
headers = [
"Content-Length" => filesize,
"Content-Type" => string(mimeType),
"Accept" => "application/json, text/plain, */*",
"Accept-Encoding" => "gzip, deflate, br",
"Sec-Fetch-Dest" => "empty",
Expand Down
Loading