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

Little beautification of image cache mgmt code #2063

Merged
merged 6 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
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
36 changes: 18 additions & 18 deletions src/Downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,57 +541,57 @@ class Downloader {
private async downloadImage(url: string, handler: any) {
try {
this.s3

// Check first if we have an entry in the (object storage) cache for this URL
.downloadBlob(stripHttpFromUrl(url), this.webp ? 'webp' : '1')

// Handle the cache response and act accordingly
.then(async (s3Resp) => {
// 'Versioning' of image is made via HTTP ETag. We should
// check if we have the proper version by requesting proper
// ETag from upstream MediaWiki.
if (s3Resp?.Metadata?.etag) {
this.arrayBufferRequestOptions.headers['If-None-Match'] = this.removeEtagWeakPrefix(s3Resp.Metadata.etag)
}
// The 'Referer' header is set to get around WMF domain origin restrictions.
// See: https://github.com/openzim/mwoffliner/issues/2061
const mwResp = await axios(url, { ...this.arrayBufferRequestOptions, headers: { Referer: 'https://localhost/' } })

/* TODO: Code to remove in a few months (February 2023). For
some reason, it seems a few pictures have 'image/webp'
mime-type in S3 although they are png, ... This leads to
having the following code not assuming they should be
converted to wepb. To avoid this, as a temporary solution,
such scneario are ignored and mime-type definition relies
only on url and Mediawiki header. */
if (s3Resp?.Metadata?.contenttype === 'image/webp') {
s3Resp.Metadata.contenttype = undefined
}

// sanitize Content-Type
// HTTP response content-type can not really be trusted (at least if 304)
mwResp.headers['content-type'] = getMimeType(url, s3Resp?.Metadata?.contenttype || mwResp.headers['content-type'])

// Most of the images after uploading once will always have
// 304 status, until modified.
// 304 does not have to answer with content-type, we have to get it
// via S3 metadata or extension
// Most of the images, after having been uploaded once to the
// cache, will always have 304 status, until modified. If cache
// is up to date, return cached image.
if (mwResp.status === 304) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const headers = (({ Body, ...o }) => o)(s3Resp)

// If image is a webp conversion candidate
if (isWebpCandidateImageMimeType(this.webp, mwResp.headers['content-type']) && !this.cssDependenceUrls.hasOwnProperty(mwResp.config.url)) {
headers.path_postfix = '.webp'
headers['content-type'] = 'image/webp'
}

// Proceed with image
handler(null, {
responseHeaders: headers,
content: (await this.streamToBuffer(s3Resp.Body as Readable)) as any,
})

return
}

// Compress content
// Compress content because image blob comes from upstream MediaWiki
await this.getCompressedBody(mwResp)

// Check for the etag and upload
// Check for the ETag and upload to cache
const etag = this.removeEtagWeakPrefix(mwResp.headers.etag)
if (etag) {
this.s3.uploadBlob(stripHttpFromUrl(url), mwResp.data, etag, mwResp.headers['content-type'], this.webp ? 'webp' : '1')
}

// Proceed with image
handler(null, {
responseHeaders: mwResp.headers,
content: mwResp.data,
Expand Down
8 changes: 4 additions & 4 deletions src/S3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class S3 {
resolve(response)
})
.catch((err: any) => {
logger.log('S3 error while uploading file', err)
logger.error('Cache error while uploading object:', err)
reject(err)
})
})
Expand All @@ -105,10 +105,10 @@ class S3 {
.catch((err: any) => {
// For 404 error handle AWS service-specific exception
if (err && err.name === 'NoSuchKey') {
logger.log(`Error: The specified key ${key} does not exist.`)
logger.log(`The specified key '${key}' does not exist in the cache.`)
resolve(null)
} else {
logger.log(`Error while downloading the file ${err}`)
logger.error(`Error (${err}) while downloading the object '${key}' from the cache.`)
reject(err)
}
})
Expand All @@ -123,7 +123,7 @@ class S3 {
.send(command)
.then((val: any) => resolve(val))
.catch((err: any) => {
logger.log('S3 error while uploading file', err)
logger.error('Error while deleting object in the cache', err)
reject(err)
})
})
Expand Down
Loading