When a client disconnects mid-stream, headers are already sent so the catch block now calls response.end() before returning, preventing the socket from being left open and crashing the server. Fixes #445.
191 lines
5.6 KiB
TypeScript
191 lines
5.6 KiB
TypeScript
import { pipeline } from 'node:stream/promises';
|
|
import { Readable } from 'node:stream';
|
|
import { Response } from 'express';
|
|
import { canAccessTrip, db } from "../../db/database";
|
|
import { safeFetch, SsrfBlockedError } from '../../utils/ssrfGuard';
|
|
|
|
// helpers for handling return types
|
|
|
|
type ServiceError = { success: false; error: { message: string; status: number } };
|
|
export type ServiceResult<T> = { success: true; data: T } | ServiceError;
|
|
|
|
|
|
export function fail(error: string, status: number): ServiceError {
|
|
return { success: false, error: { message: error, status } };
|
|
}
|
|
|
|
|
|
export function success<T>(data: T): ServiceResult<T> {
|
|
return { success: true, data: data };
|
|
}
|
|
|
|
|
|
export function mapDbError(error: Error, fallbackMessage: string): ServiceError {
|
|
if (error && /unique|constraint/i.test(error.message)) {
|
|
return fail('Resource already exists', 409);
|
|
}
|
|
return fail(error.message, 500);
|
|
}
|
|
|
|
|
|
export function handleServiceResult<T>(res: Response, result: ServiceResult<T>): void {
|
|
if ('error' in result) {
|
|
res.status(result.error.status).json({ error: result.error.message });
|
|
}
|
|
else {
|
|
res.json(result.data);
|
|
}
|
|
}
|
|
|
|
// ----------------------------------------------
|
|
// types used across memories services
|
|
export type Selection = {
|
|
provider: string;
|
|
asset_ids: string[];
|
|
};
|
|
|
|
export type StatusResult = {
|
|
connected: true;
|
|
user: { name: string }
|
|
} | {
|
|
connected: false;
|
|
error: string
|
|
};
|
|
|
|
export type SyncAlbumResult = {
|
|
added: number;
|
|
total: number
|
|
};
|
|
|
|
|
|
export type AlbumsList = {
|
|
albums: Array<{ id: string; albumName: string; assetCount: number }>
|
|
};
|
|
|
|
export type Asset = {
|
|
id: string;
|
|
takenAt: string;
|
|
};
|
|
|
|
export type AssetsList = {
|
|
assets: Asset[],
|
|
total: number,
|
|
hasMore: boolean
|
|
};
|
|
|
|
|
|
export type AssetInfo = {
|
|
id: string;
|
|
takenAt: string | null;
|
|
city: string | null;
|
|
country: string | null;
|
|
state?: string | null;
|
|
camera?: string | null;
|
|
lens?: string | null;
|
|
focalLength?: string | number | null;
|
|
aperture?: string | number | null;
|
|
shutter?: string | number | null;
|
|
iso?: string | number | null;
|
|
lat?: number | null;
|
|
lng?: number | null;
|
|
orientation?: number | null;
|
|
description?: string | null;
|
|
width?: number | null;
|
|
height?: number | null;
|
|
fileSize?: number | null;
|
|
fileName?: string | null;
|
|
}
|
|
|
|
|
|
//for loading routes to settings page, and validating which services user has connected
|
|
type PhotoProviderConfig = {
|
|
settings_get: string;
|
|
settings_put: string;
|
|
status_get: string;
|
|
test_post: string;
|
|
};
|
|
|
|
|
|
export function getPhotoProviderConfig(providerId: string): PhotoProviderConfig {
|
|
const prefix = `/integrations/memories/${providerId}`;
|
|
return {
|
|
settings_get: `${prefix}/settings`,
|
|
settings_put: `${prefix}/settings`,
|
|
status_get: `${prefix}/status`,
|
|
test_post: `${prefix}/test`,
|
|
};
|
|
}
|
|
|
|
//-----------------------------------------------
|
|
//access check helper
|
|
|
|
export function canAccessUserPhoto(requestingUserId: number, ownerUserId: number, tripId: string, assetId: string, provider: string): boolean {
|
|
if (requestingUserId === ownerUserId) {
|
|
return true;
|
|
}
|
|
const sharedAsset = db.prepare(`
|
|
SELECT 1
|
|
FROM trip_photos
|
|
WHERE user_id = ?
|
|
AND asset_id = ?
|
|
AND provider = ?
|
|
AND trip_id = ?
|
|
AND shared = 1
|
|
LIMIT 1
|
|
`).get(ownerUserId, assetId, provider, tripId);
|
|
|
|
if (!sharedAsset) {
|
|
return false;
|
|
}
|
|
return !!canAccessTrip(tripId, requestingUserId);
|
|
}
|
|
|
|
|
|
// ----------------------------------------------
|
|
//helpers for album link syncing
|
|
|
|
export function getAlbumIdFromLink(tripId: string, linkId: string, userId: number): ServiceResult<string> {
|
|
const access = canAccessTrip(tripId, userId);
|
|
if (!access) return fail('Trip not found or access denied', 404);
|
|
|
|
try {
|
|
const row = db.prepare('SELECT album_id FROM trip_album_links WHERE id = ? AND trip_id = ? AND user_id = ?')
|
|
.get(linkId, tripId, userId) as { album_id: string } | null;
|
|
|
|
return row ? success(row.album_id) : fail('Album link not found', 404);
|
|
} catch {
|
|
return fail('Failed to retrieve album link', 500);
|
|
}
|
|
}
|
|
|
|
export function updateSyncTimeForAlbumLink(linkId: string): void {
|
|
db.prepare('UPDATE trip_album_links SET last_synced_at = CURRENT_TIMESTAMP WHERE id = ?').run(linkId);
|
|
}
|
|
|
|
export async function pipeAsset(url: string, response: Response, headers?: Record<string, string>, signal?: AbortSignal): Promise<void> {
|
|
try {
|
|
const resp = await safeFetch(url, { headers, signal: signal as any });
|
|
|
|
response.status(resp.status);
|
|
if (resp.headers.get('content-type')) response.set('Content-Type', resp.headers.get('content-type') as string);
|
|
if (resp.headers.get('cache-control')) response.set('Cache-Control', resp.headers.get('cache-control') as string);
|
|
if (resp.headers.get('content-length')) response.set('Content-Length', resp.headers.get('content-length') as string);
|
|
if (resp.headers.get('content-disposition')) response.set('Content-Disposition', resp.headers.get('content-disposition') as string);
|
|
|
|
if (!resp.body) {
|
|
response.end();
|
|
} else {
|
|
await pipeline(Readable.fromWeb(resp.body as any), response);
|
|
}
|
|
} catch (error) {
|
|
if (response.headersSent) {
|
|
response.end();
|
|
return;
|
|
}
|
|
if (error instanceof SsrfBlockedError) {
|
|
response.status(400).json({ error: error.message });
|
|
} else {
|
|
response.status(500).json({ error: 'Failed to fetch asset' });
|
|
}
|
|
}
|
|
} |