mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) add a deployment test for Import-from-URL, and fix underlying issue
Summary: * Adds a simple deployment test for the "Import from URL" button. * Makes server aware of plugin hostnames in the appropriate places. * Unrelated but convenient: allows following redirection when importing. Test Plan: Added tests. The `local_deployment` test works. A modified version of this works against `staging_deployment` (using a test url that doesn't require redirection; also staging currently has a hot fix that can hopefully be removed once the code fix included here is in). Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2556
This commit is contained in:
@@ -69,6 +69,8 @@ export interface FlexServerOptions {
|
||||
|
||||
// Base domain for org hostnames, starting with ".". Defaults to the base domain of APP_HOME_URL.
|
||||
baseDomain?: string;
|
||||
// Base URL for plugins, if permitted. Defaults to APP_UNTRUSTED_URL.
|
||||
pluginUrl?: string;
|
||||
}
|
||||
|
||||
export interface RequestWithGrist extends express.Request {
|
||||
@@ -97,6 +99,7 @@ export class FlexServer implements GristServer {
|
||||
public electronServerMethods: ElectronServerMethods;
|
||||
public readonly docsRoot: string;
|
||||
private _defaultBaseDomain: string|undefined;
|
||||
private _pluginUrl: string|undefined;
|
||||
private _billing: IBilling;
|
||||
private _instanceRoot: string;
|
||||
private _docManager: DocManager;
|
||||
@@ -146,6 +149,8 @@ export class FlexServer implements GristServer {
|
||||
const homeUrl = process.env.APP_HOME_URL;
|
||||
this._defaultBaseDomain = options.baseDomain || (homeUrl && parseSubdomain(new URL(homeUrl).hostname).base);
|
||||
this.info.push(['defaultBaseDomain', this._defaultBaseDomain]);
|
||||
this._pluginUrl = options.pluginUrl || process.env.APP_UNTRUSTED_URL;
|
||||
this.info.push(['pluginUrl', this._pluginUrl]);
|
||||
|
||||
this.app.use((req, res, next) => {
|
||||
(req as RequestWithGrist).gristServer = this;
|
||||
@@ -365,7 +370,7 @@ export class FlexServer implements GristServer {
|
||||
// Prepare cache for managing org-to-host relationship.
|
||||
public addHosts() {
|
||||
if (this._check('hosts', 'homedb')) { return; }
|
||||
this._hosts = new Hosts(this._defaultBaseDomain, this.dbManager);
|
||||
this._hosts = new Hosts(this._defaultBaseDomain, this.dbManager, this._pluginUrl);
|
||||
}
|
||||
|
||||
public async initHomeDBManager() {
|
||||
@@ -1262,6 +1267,7 @@ export class FlexServer implements GristServer {
|
||||
const {hostname, orgInPath} = getOrgUrlInfo(subdomain, req.hostname, {
|
||||
org: req.org,
|
||||
baseDomain: this._defaultBaseDomain,
|
||||
pluginUrl: this._pluginUrl,
|
||||
singleOrg: process.env.GRIST_SINGLE_ORG,
|
||||
});
|
||||
const redirectUrl = new URL(pathname, `${req.protocol}://${req.get('host')}`);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ApiError } from 'app/common/ApiError';
|
||||
import { mapGetOrSet, MapWithTTL } from 'app/common/AsyncCreate';
|
||||
import { extractOrgParts, getKnownOrg, isCustomHost } from 'app/common/gristUrls';
|
||||
import { extractOrgParts, getHostType, getKnownOrg } from 'app/common/gristUrls';
|
||||
import { Organization } from 'app/gen-server/entity/Organization';
|
||||
import { HomeDBManager } from 'app/gen-server/lib/HomeDBManager';
|
||||
import { NextFunction, Request, RequestHandler, Response } from 'express';
|
||||
@@ -39,7 +39,8 @@ export class Hosts {
|
||||
private _org2host = new MapWithTTL<string, Promise<string|undefined>>(ORG_HOST_CACHE_TTL);
|
||||
|
||||
// baseDomain should start with ".". It may be undefined for localhost or single-org mode.
|
||||
constructor(private _baseDomain: string|undefined, private _dbManager: HomeDBManager) {
|
||||
constructor(private _baseDomain: string|undefined, private _dbManager: HomeDBManager,
|
||||
private _pluginUrl: string|undefined) {
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -86,14 +87,15 @@ export class Hosts {
|
||||
return {org: singleOrg, url: parts.pathRemainder, isCustomHost: false};
|
||||
}
|
||||
|
||||
// Fake the protocol; it doesn't matter for parsing out the hostname.
|
||||
if (this._isNativeDomain(hostname)) {
|
||||
const hostType = this._getHostType(hostname);
|
||||
if (hostType === 'native') {
|
||||
if (parts.mismatch) {
|
||||
throw new ApiError(`Wrong org for this domain: ` +
|
||||
`'${parts.orgFromPath}' does not match '${parts.orgFromHost}'`, 400);
|
||||
}
|
||||
return {org: parts.subdomain || '', url: parts.pathRemainder, isCustomHost: false};
|
||||
|
||||
} else if (hostType === 'plugin') {
|
||||
return {org: '', url: parts.pathRemainder, isCustomHost: false};
|
||||
} else {
|
||||
// Otherwise check for a custom host.
|
||||
const org = await mapGetOrSet(this._host2org, hostname, async () => {
|
||||
@@ -145,7 +147,7 @@ export class Hosts {
|
||||
private async _redirectHost(req: Request, resp: Response, next: NextFunction) {
|
||||
const {org} = req as RequestWithOrg;
|
||||
|
||||
if (org && this._isNativeDomain(req.hostname) && !this._dbManager.isMergedOrg(org)) {
|
||||
if (org && this._getHostType(req.hostname) === 'native' && !this._dbManager.isMergedOrg(org)) {
|
||||
// Check if the org has a preferred host.
|
||||
const orgHost = await mapGetOrSet(this._org2host, org, async () => {
|
||||
const o = await this._dbManager.connection.manager.findOne(Organization, {domain: org});
|
||||
@@ -160,7 +162,7 @@ export class Hosts {
|
||||
return next();
|
||||
}
|
||||
|
||||
private _isNativeDomain(hostname: string) {
|
||||
return !this._baseDomain || !isCustomHost(hostname, this._baseDomain);
|
||||
private _getHostType(hostname: string) {
|
||||
return getHostType(hostname, {baseDomain: this._baseDomain, pluginUrl: this._pluginUrl});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -346,7 +346,11 @@ export async function fetchURL(url: string, accessId: string|null): Promise<Uplo
|
||||
*/
|
||||
async function _fetchURL(url: string, accessId: string|null, fileName: string,
|
||||
headers?: {[key: string]: string}): Promise<UploadResult> {
|
||||
const response: FetchResponse = await Deps.fetch(url, {headers});
|
||||
const response: FetchResponse = await Deps.fetch(url, {
|
||||
redirect: 'follow',
|
||||
follow: 10,
|
||||
headers
|
||||
});
|
||||
await _checkForError(response);
|
||||
if (fileName === '') {
|
||||
const disposition = response.headers.get('content-disposition') || '';
|
||||
|
||||
Reference in New Issue
Block a user