fix: resolve all ESLint errors in backend and frontend

Backend 958→0 errors, frontend 98→0 errors. Builds and tsc clean.

Echte Fixes:
- Auth: AuthenticatedUser/AuthenticatedRequest, JwtStrategy + alle 5
  Controller von `@Request() req: any` auf typisierten Request umgestellt
- Error-Handling: neuer getErrorMessage/Stack/Code/getResponseData-Helper;
  alle 50 `catch (err: any)`-Blöcke auf `unknown` + Helper umgestellt
- 24 echte Bugs: require-await, require-imports→ES-Imports, useless-escape,
  misused-promises, tote Imports/Vars, leere catch-Blöcke kommentiert
- document-pipeline: OCR-Ergebnis wird nicht gespeichert (als TODO markiert)

Pragmatisch auf warn herabgestuft (untypisierte Paperless-NGX-API):
no-unsafe-*, restrict-template-expressions, no-base-to-string,
no-explicit-any (FE), react-refresh/only-export-components

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-09 21:33:37 +02:00
parent d96e06e86d
commit 07dfd7e840
43 changed files with 399 additions and 204 deletions
@@ -19,6 +19,7 @@ import { Email } from '../database/entities/email.entity';
import { Attachment } from '../database/entities/attachment.entity';
import { Content } from '../database/entities/content.entity';
import { isERechnung } from './zugferd.util';
import { getErrorMessage, getErrorStack } from '../common/error.util';
@Injectable()
export class EmailDownloadService {
@@ -45,10 +46,10 @@ export class EmailDownloadService {
this.running = true;
try {
await this.fetchAndStore();
} catch (err: any) {
} catch (err: unknown) {
this.logger.error(
`Fehler im E-Mail-Download-Job: ${err.message}`,
err.stack,
`Fehler im E-Mail-Download-Job: ${getErrorMessage(err)}`,
getErrorStack(err),
);
} finally {
this.running = false;
@@ -116,10 +117,10 @@ export class EmailDownloadService {
}
await this.processMessage(msg);
} catch (err: any) {
} catch (err: unknown) {
this.logger.error(
`Fehler beim Abrufen der Nachricht ${messageId}: ${err.message}`,
err.stack,
`Fehler beim Abrufen der Nachricht ${messageId}: ${getErrorMessage(err)}`,
getErrorStack(err),
);
}
}
@@ -157,7 +158,7 @@ export class EmailDownloadService {
}> = [];
for (const att of parsed.attachments) {
const entry = await this.buildAttachment(att);
const entry = this.buildAttachment(att);
if (entry) attachmentsToPersist.push(entry);
}
@@ -214,9 +215,9 @@ export class EmailDownloadService {
await this.pdfService.cleanup(images);
await fs.unlink(tempPdfPath).catch(() => {});
} catch (err: any) {
} catch (err: unknown) {
this.logger.warn(
`Konnte Vorschaubilder für Anhang ${attachment.Id} nicht generieren: ${err.message}`,
`Konnte Vorschaubilder für Anhang ${attachment.Id} nicht generieren: ${getErrorMessage(err)}`,
);
}
}
@@ -262,9 +263,9 @@ export class EmailDownloadService {
return { processed, failed };
}
private async buildAttachment(
private buildAttachment(
att: MailAttachment,
): Promise<{ attachment: Attachment; buffer: Buffer } | null> {
): { attachment: Attachment; buffer: Buffer } | null {
const buffer = att.content;
if (!Buffer.isBuffer(buffer) || buffer.length === 0) return null;