107 lines
3.3 KiB
TypeScript
Raw Normal View History

2024-10-29 10:29:14 +01:00
import immich from './immich'
import { Response } from 'express-serve-static-core'
2024-11-10 21:00:41 +01:00
import { Asset, AssetType, ImageSize, IncomingShareRequest, SharedLink } from './types'
2024-11-04 20:23:34 +01:00
import { getConfigOption } from './functions'
2024-10-29 10:29:14 +01:00
class Render {
2024-11-04 20:23:34 +01:00
lgConfig
2024-11-01 15:36:53 +01:00
constructor () {
2024-11-04 20:23:34 +01:00
this.lgConfig = getConfigOption('lightGallery', {})
2024-11-01 15:36:53 +01:00
}
2024-11-10 21:00:41 +01:00
/**
* Stream data from Immich back to the client
*/
async assetBuffer (req: IncomingShareRequest, res: Response, asset: Asset, size?: ImageSize) {
// Prepare the request
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]
const startByte = parseInt(start, 10) || 0
const endByte = startByte + 2499999
headers.range = `bytes=${startByte}-${endByte}`
}
const url = immich.buildUrl(immich.apiUrl() + '/assets/' + encodeURIComponent(asset.id) + subpath, {
key: asset.key,
password: asset.password
})
const data = await fetch(url, { headers })
// 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
// Return the body
await data.body?.pipeTo(
new WritableStream({
write (chunk) {
res.write(chunk)
}
})
)
res.end()
2024-10-29 10:29:14 +01:00
} else {
res.status(404).send()
}
}
2024-10-30 12:45:23 +01:00
/**
* Render a gallery page for a given SharedLink, using EJS and lightGallery.
*
* @param res - ExpressJS Response
* @param share - Immich `shared-link` containing the assets to show in the gallery
* @param [openItem] - Immediately open a lightbox to the Nth item when the gallery loads
*/
2024-10-29 15:07:54 +01:00
async gallery (res: Response, share: SharedLink, openItem?: number) {
2024-10-29 10:29:14 +01:00
const items = []
2024-10-29 15:07:54 +01:00
for (const asset of share.assets) {
2024-10-29 10:29:14 +01:00
let video
if (asset.type === AssetType.video) {
// Populate the data-video property
video = JSON.stringify({
source: [
{
2024-11-01 11:58:27 +01:00
src: immich.videoUrl(share.key, asset.id, asset.password),
2024-10-29 10:29:14 +01:00
type: await immich.getContentType(asset)
}
],
attributes: {
preload: false,
controls: true
}
})
}
items.push({
2024-11-01 11:58:27 +01:00
originalUrl: immich.photoUrl(share.key, asset.id, undefined, asset.password),
thumbnailUrl: immich.photoUrl(share.key, asset.id, ImageSize.thumbnail, asset.password),
2024-10-29 10:29:14 +01:00
video
})
}
res.render('gallery', {
items,
2024-11-01 14:19:15 +01:00
openItem,
2024-11-01 15:36:53 +01:00
title: this.title(share),
2024-11-04 20:23:34 +01:00
lgConfig: getConfigOption('lightGallery', {})
2024-10-29 10:29:14 +01:00
})
}
2024-11-01 14:19:15 +01:00
/**
* Attempt to get a title from the link description or the album title
*/
title (share: SharedLink) {
return share.description || share?.album?.albumName || ''
}
2024-10-29 10:29:14 +01:00
}
const render = new Render()
export default render