-
Notifications
You must be signed in to change notification settings - Fork 365
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
8158 bug UI not using presign for uploading objects #8365
Changes from 8 commits
c9cd2f9
5a10afc
1c7a5f3
635d4df
4f7f211
825d817
4bc6cdb
5934a42
c2d9149
1429bb8
1bb78a7
f5a2762
2e739ac
2b3ec1f
2917355
e767f86
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -671,9 +671,8 @@ export const uploadWithProgress = (url, file, method = 'POST', onProgress = null | |
status: xhr.status, | ||
body: xhr.responseText, | ||
contentType: xhr.getResponseHeader('Content-Type'), | ||
Jonathan-Rosenberg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
etag: xhr.getResponseHeader('ETag'), | ||
contentMD5: xhr.getResponseHeader('Content-MD5'), | ||
Jonathan-Rosenberg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}) | ||
rawHeaders: xhr.getAllResponseHeaders(), // add raw headers | ||
}); | ||
}); | ||
xhr.addEventListener('error', () => reject(new Error('Upload Failed'))); | ||
xhr.addEventListener('abort', () => reject(new Error('Upload Aborted'))); | ||
|
@@ -1125,7 +1124,7 @@ class Statistics { | |
|
||
class Staging { | ||
async get(repoId, branchId, path, presign = false) { | ||
const query = qs({path, presign}); | ||
const query = qs({path, presign}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. indentation looks off |
||
const response = await apiRequest(`/repositories/${encodeURIComponent(repoId)}/branches/${encodeURIComponent(branchId)}/staging/backing?` + query, { | ||
method: 'GET' | ||
}); | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -226,42 +226,47 @@ const ImportModal = ({config, repoId, referenceId, referenceType, path = '', onD | |||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
function extractChecksumFromResponse(response) { | ||||||||||||||||||||||||||||||
if (response.contentMD5) { | ||||||||||||||||||||||||||||||
// convert base64 to hex | ||||||||||||||||||||||||||||||
const raw = atob(response.contentMD5) | ||||||||||||||||||||||||||||||
let result = ''; | ||||||||||||||||||||||||||||||
for (let i = 0; i < raw.length; i++) { | ||||||||||||||||||||||||||||||
const hex = raw.charCodeAt(i).toString(16); | ||||||||||||||||||||||||||||||
result += (hex.length === 2 ? hex : '0' + hex); | ||||||||||||||||||||||||||||||
function extractChecksumFromResponse(rawHeaders) { | ||||||||||||||||||||||||||||||
const headersString = typeof rawHeaders === 'string' ? rawHeaders : rawHeaders.toString(); | ||||||||||||||||||||||||||||||
const cleanedHeadersString = headersString.trim(); | ||||||||||||||||||||||||||||||
const headerLines = cleanedHeadersString.split('\n'); | ||||||||||||||||||||||||||||||
const parsedHeaders = {}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
headerLines.forEach((line) => { | ||||||||||||||||||||||||||||||
const [key, value] = line.split(':', 2).map((part) => part.trim()); | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Splitting this way means that if there's a
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In addition, it would be great if you could extract the headers map creation out (it could be used on its own), and call it from this function, or even better, call it from the |
||||||||||||||||||||||||||||||
if (key && value) { | ||||||||||||||||||||||||||||||
parsedHeaders[key.toLowerCase()] = value; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More of a styling suggestion to initialize the parsedHeaders variable with data in a more functional way:
Suggested change
|
||||||||||||||||||||||||||||||
return result; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (response.etag) { | ||||||||||||||||||||||||||||||
// drop any quote and space | ||||||||||||||||||||||||||||||
return response.etag.replace(/[" ]+/g, ""); | ||||||||||||||||||||||||||||||
if (parsedHeaders['content-md5']) { | ||||||||||||||||||||||||||||||
return parsedHeaders['content-md5']; | ||||||||||||||||||||||||||||||
Jonathan-Rosenberg marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
// fallback to ETag | ||||||||||||||||||||||||||||||
if (parsedHeaders['etag']) { | ||||||||||||||||||||||||||||||
const cleanedEtag = parsedHeaders['etag'].replace(/"/g, ''); | ||||||||||||||||||||||||||||||
return cleanedEtag; | ||||||||||||||||||||||||||||||
Jonathan-Rosenberg marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
return "" | ||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const uploadFile = async (config, repo, reference, path, file, onProgress) => { | ||||||||||||||||||||||||||||||
const fpath = destinationPath(path, file); | ||||||||||||||||||||||||||||||
if (config.pre_sign_support_ui) { | ||||||||||||||||||||||||||||||
let additionalHeaders; | ||||||||||||||||||||||||||||||
if (config.blockstore_type === "azure") { | ||||||||||||||||||||||||||||||
additionalHeaders = { "x-ms-blob-type": "BlockBlob" } | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const getResp = await staging.get(repo.id, reference.id, fpath, config.pre_sign_support_ui); | ||||||||||||||||||||||||||||||
const uploadResponse = await uploadWithProgress(getResp.presigned_url, file, 'PUT', onProgress, additionalHeaders) | ||||||||||||||||||||||||||||||
if (uploadResponse.status >= 400) { | ||||||||||||||||||||||||||||||
throw new Error(`Error uploading file: HTTP ${status}`) | ||||||||||||||||||||||||||||||
const uploadFile = async (config, repo, reference, path, file, onProgress) => { | ||||||||||||||||||||||||||||||
const fpath = destinationPath(path, file); | ||||||||||||||||||||||||||||||
if (config.pre_sign_support_ui) { | ||||||||||||||||||||||||||||||
let additionalHeaders; | ||||||||||||||||||||||||||||||
if (config.blockstore_type === "azure") { | ||||||||||||||||||||||||||||||
additionalHeaders = { "x-ms-blob-type": "BlockBlob" } | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const getResp = await staging.get(repo.id, reference.id, fpath, config.pre_sign_support_ui); | ||||||||||||||||||||||||||||||
const uploadResponse = await uploadWithProgress(getResp.presigned_url, file, 'PUT', onProgress, additionalHeaders); | ||||||||||||||||||||||||||||||
const checksum = extractChecksumFromResponse(uploadResponse.rawHeaders); | ||||||||||||||||||||||||||||||
if (uploadResponse.status >= 400) { | ||||||||||||||||||||||||||||||
throw new Error(`Error uploading file: HTTP ${uploadResponse.status}`); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
await staging.link(repo.id, reference.id, fpath, getResp, checksum, file.size, file.type); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
await objects.upload(repo.id, reference.id, fpath, file, onProgress); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const checksum = extractChecksumFromResponse(uploadResponse) | ||||||||||||||||||||||||||||||
await staging.link(repo.id, reference.id, fpath, getResp, checksum, file.size, file.type); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
await objects.upload(repo.id, reference.id, fpath, file, onProgress); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const destinationPath = (path, file) => { | ||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this left?
Doesn't
rawHeaders
include this one as well?