mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) remove deprecated /download endpoint in favor of newer /api/docs/NNNN/download
Summary: This endpoint has started to fail when called between a pair of doc workers. The simplest fix is to simply remove it, it serves no purpose. Test Plan: added basic deployment test Reviewers: dsagal Reviewed By: dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3636
This commit is contained in:
@@ -755,8 +755,8 @@ export class DocWorkerAPIImpl extends BaseAPI implements DocWorkerAPI {
|
||||
}
|
||||
|
||||
public async downloadDoc(docId: string, template: boolean = false): Promise<Response> {
|
||||
const extra = template ? '&template=1' : '';
|
||||
const result = await this.request(`${this.url}/download?doc=${docId}${extra}`, {
|
||||
const extra = template ? '?template=1' : '';
|
||||
const result = await this.request(`${this.url}/api/docs/${docId}/download${extra}`, {
|
||||
method: 'GET',
|
||||
});
|
||||
if (!result.ok) { throw new Error(await result.text()); }
|
||||
|
||||
@@ -46,7 +46,7 @@ import {IPermitStore} from 'app/server/lib/Permit';
|
||||
import {getAppPathTo, getAppRoot, getUnpackedAppRoot} from 'app/server/lib/places';
|
||||
import {addPluginEndpoints, limitToPlugins} from 'app/server/lib/PluginEndpoint';
|
||||
import {PluginManager} from 'app/server/lib/PluginManager';
|
||||
import {adaptServerUrl, addOrgToPath, getOrgUrl, getOriginUrl, getScope, optStringParam,
|
||||
import {adaptServerUrl, getOrgUrl, getOriginUrl, getScope, optStringParam,
|
||||
RequestWithGristInfo, stringParam, TEST_HTTPS_OFFSET, trustOrigin} from 'app/server/lib/requestUtils';
|
||||
import {ISendAppPageOptions, makeGristConfig, makeMessagePage, makeSendAppPage} from 'app/server/lib/sendAppPage';
|
||||
import {getDatabaseUrl, listenPromise} from 'app/server/lib/serverUtils';
|
||||
@@ -1361,14 +1361,6 @@ export class FlexServer implements GristServer {
|
||||
private _addSupportPaths(docAccessMiddleware: express.RequestHandler[]) {
|
||||
if (!this._docWorker) { throw new Error("need DocWorker"); }
|
||||
|
||||
this.app.get('/download', ...docAccessMiddleware, expressWrap(async (req, res) => {
|
||||
// Forward this endpoint to regular API. This endpoint is now deprecated.
|
||||
const docId = String(req.query.doc);
|
||||
let url = await this.getHomeUrlByDocId(docId, addOrgToPath(req, `/api/docs/${docId}/download`));
|
||||
if (req.query.template === '1') { url += '?template=1'; }
|
||||
return res.redirect(url);
|
||||
}));
|
||||
|
||||
const basicMiddleware = [this._userIdMiddleware, this.tagChecker.requireTag];
|
||||
|
||||
// Add the handling for the /upload route. Most uploads are meant for a DocWorker: they are put
|
||||
|
||||
@@ -417,7 +417,7 @@ async function fetchDoc(server: GristServer, docId: string, req: Request, access
|
||||
await _checkForError(response);
|
||||
const docWorkerUrl = getDocWorkerUrl(server.getOwnUrl(), await response.json());
|
||||
// Download the document, in full or as a template.
|
||||
const url = new URL(`download?doc=${docId}&template=${Number(template)}`,
|
||||
const url = new URL(`api/docs/${docId}/download?template=${Number(template)}`,
|
||||
docWorkerUrl.replace(/\/*$/, '/'));
|
||||
return _fetchURL(url.href, accessId, {headers});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user