fix: Opensearch should mirror correct team subdomain

closes #3470
This commit is contained in:
Tom Moor
2022-04-29 22:53:39 -07:00
parent c7e4f491eb
commit 32c1d2e2f8
2 changed files with 5 additions and 5 deletions

View File

@@ -151,7 +151,7 @@ router.get("/robots.txt", (ctx) => {
router.get("/opensearch.xml", (ctx) => { router.get("/opensearch.xml", (ctx) => {
ctx.type = "text/xml"; ctx.type = "text/xml";
ctx.body = opensearchResponse(); ctx.body = opensearchResponse(ctx.request.URL.origin);
}); });
router.get("/share/:shareId", renderShare); router.get("/share/:shareId", renderShare);

View File

@@ -1,12 +1,12 @@
export const opensearchResponse = (): string => { export const opensearchResponse = (baseUrl: string): string => {
return ` return `
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/"> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>Outline</ShortName> <ShortName>Outline</ShortName>
<Description>Search Outline</Description> <Description>Search Outline</Description>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">${process.env.URL}/favicon.ico</Image> <Image width="16" height="16" type="image/x-icon">${baseUrl}/favicon.ico</Image>
<Url type="text/html" method="get" template="${process.env.URL}/search/{searchTerms}?ref=opensearch"/> <Url type="text/html" method="get" template="${baseUrl}/search/{searchTerms}?ref=opensearch"/>
<moz:SearchForm>${process.env.URL}/search</moz:SearchForm> <moz:SearchForm>${baseUrl}/search</moz:SearchForm>
</OpenSearchDescription> </OpenSearchDescription>
`; `;
}; };