Skip to content

Commit

Permalink
fix(server): renderer path
Browse files Browse the repository at this point in the history
  • Loading branch information
forehalo committed Sep 19, 2024
1 parent 6921c30 commit 8772733
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 34 deletions.
9 changes: 1 addition & 8 deletions .github/helm/affine/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,7 @@ spec:
name: affine-graphql
port:
number: {{ .Values.graphql.service.port }}
- path: /workspace/([^/]+)/(home|all|search|collection|tag|trash)
pathType: ImplementationSpecific
backend:
service:
name: affine-web
port:
number: {{ .Values.web.service.port }}
- path: /workspace/([^/]+)/.+
- path: /workspace/([^/]+)/([^/]+)$
pathType: ImplementationSpecific
backend:
service:
Expand Down
83 changes: 57 additions & 26 deletions packages/backend/server/src/core/doc-renderer/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface RenderOptions {
}

interface HtmlAssets {
html: string;
css: string[];
js: string[];
publicPath: string;
Expand All @@ -26,13 +27,24 @@ interface HtmlAssets {
}

const defaultAssets: HtmlAssets = {
html: '',
css: [],
js: [],
publicPath: '/',
gitHash: '',
description: '',
};

// TODO(@forehalo): reuse routes with frontend
const staticPaths = new Set([
'all',
'home',
'search',
'collection',
'tag',
'trash',
]);

@Controller('/workspace')
export class DocRendererController {
private readonly logger = new Logger(DocRendererController.name);
Expand All @@ -45,26 +57,18 @@ export class DocRendererController {
private readonly config: Config,
private readonly url: URLHelper
) {
try {
const webConfigMapsPath = join(
this.webAssets = this.readHtmlAssets(
join(
this.config.projectRoot,
this.config.isSelfhosted ? 'static/selfhost' : 'static',
'assets-manifest.json'
);
const mobileConfigMapsPath = join(
this.config.isSelfhosted ? 'static/selfhost' : 'static'
)
);
this.mobileAssets = this.readHtmlAssets(
join(
this.config.projectRoot,
this.config.isSelfhosted ? 'static/mobile/selfhost' : 'static/mobile',
'assets-manifest.json'
);
this.webAssets = JSON.parse(readFileSync(webConfigMapsPath, 'utf-8'));
this.mobileAssets = JSON.parse(
readFileSync(mobileConfigMapsPath, 'utf-8')
);
} catch (e) {
if (this.config.node.prod) {
throw e;
}
}
this.config.isSelfhosted ? 'static/mobile/selfhost' : 'static/mobile'
)
);
}

@Public()
Expand All @@ -84,14 +88,17 @@ export class DocRendererController {
: this.webAssets;

let opts: RenderOptions | null = null;
try {
opts =
workspaceId === docId
? await this.getWorkspaceContent(workspaceId)
: await this.getPageContent(workspaceId, docId);
metrics.doc.counter('render').add(1);
} catch (e) {
this.logger.error('failed to render page', e);

if (!staticPaths.has(docId)) {
try {
opts =
workspaceId === docId
? await this.getWorkspaceContent(workspaceId)
: await this.getPageContent(workspaceId, docId);
metrics.doc.counter('render').add(1);
} catch (e) {
this.logger.error('failed to render page', e);
}
}

res.setHeader('Content-Type', 'text/html');
Expand Down Expand Up @@ -148,6 +155,10 @@ export class DocRendererController {
}

_render(opts: RenderOptions | null, assets: HtmlAssets): string {
if (!opts && assets.html) {
return assets.html;
}

const title = opts?.title
? htmlSanitize(`${opts.title} | AFFiNE`)
: 'AFFiNE';
Expand Down Expand Up @@ -199,4 +210,24 @@ export class DocRendererController {
</html>
`;
}

/**
* Should only be called at startup time
*/
private readHtmlAssets(path: string): HtmlAssets {
const manifestPath = join(path, 'assets-manifest.json');
const htmlPath = join(path, 'index.html');

try {
const assets = JSON.parse(readFileSync(manifestPath, 'utf-8'));
assets.html = readFileSync(htmlPath, 'utf-8');
return assets;
} catch (e) {
if (this.config.node.prod) {
throw e;
} else {
return defaultAssets;
}
}
}
}

0 comments on commit 8772733

Please sign in to comment.