1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2025-01-15 12:36:44 +01:00

Fix issue when streaming through Cloudflare

This commit is contained in:
Alan Grainger 2024-11-10 21:38:40 +01:00
parent 8a75d7d677
commit ec11bda449
2 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{
"name": "immich-public-proxy",
"version": "1.3.8",
"version": "1.3.9",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "npx tsc",

View file

@ -15,14 +15,17 @@ class Render {
*/
async assetBuffer (req: IncomingShareRequest, res: Response, asset: Asset, size?: ImageSize) {
// Prepare the request
const headerList = ['content-type', 'content-length', 'last-modified', 'etag']
size = size === ImageSize.thumbnail ? ImageSize.thumbnail : ImageSize.original
const subpath = asset.type === AssetType.video ? '/video/playback' : '/' + size
const headers = { range: '' }
if (asset.type === AssetType.video && req.range) {
const start = req.range.replace(/bytes=/, '').split('-')[0]
if (asset.type === AssetType.video) {
const start = (req.range || '').replace(/bytes=/, '').split('-')[0]
const startByte = parseInt(start, 10) || 0
const endByte = startByte + 2499999
headers.range = `bytes=${startByte}-${endByte}`
headerList.push('accept-ranges', 'cache-control', 'content-range')
res.status(206) // Partial Content
}
const url = immich.buildUrl(immich.apiUrl() + '/assets/' + encodeURIComponent(asset.id) + subpath, {
key: asset.key,
@ -33,12 +36,10 @@ class Render {
// Return the response to the client
if (data.status >= 200 && data.status < 300) {
// Populate the response headers
['content-type', 'content-length', 'last-modified', 'etag', 'content-range']
.forEach(header => {
const value = data.headers.get(header)
if (value) res.setHeader(header, value)
})
if (headers.range) res.status(206) // Partial Content
headerList.forEach(header => {
const value = data.headers.get(header)
if (value) res.setHeader(header, value)
})
// Return the body
await data.body?.pipeTo(
new WritableStream({