mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) move home server into core
Summary: This moves enough server material into core to run a home server. The data engine is not yet incorporated (though in manual testing it works when ported). Test Plan: existing tests pass Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2552
This commit is contained in:
30
app/server/lib/ICreate.ts
Normal file
30
app/server/lib/ICreate.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { HomeDBManager } from 'app/gen-server/lib/HomeDBManager';
|
||||
import { ActiveDoc } from 'app/server/lib/ActiveDoc';
|
||||
import { ScopedSession } from 'app/server/lib/BrowserSession';
|
||||
import * as Comm from 'app/server/lib/Comm';
|
||||
import { DocManager } from 'app/server/lib/DocManager';
|
||||
import { ExternalStorage } from 'app/server/lib/ExternalStorage';
|
||||
import { GristServer } from 'app/server/lib/GristServer';
|
||||
import { IBilling } from 'app/server/lib/IBilling';
|
||||
import { IDocStorageManager } from 'app/server/lib/IDocStorageManager';
|
||||
import { IInstanceManager } from 'app/server/lib/IInstanceManager';
|
||||
import { ILoginSession } from 'app/server/lib/ILoginSession';
|
||||
import { INotifier } from 'app/server/lib/INotifier';
|
||||
import { ISandbox, ISandboxCreationOptions } from 'app/server/lib/ISandbox';
|
||||
import { IShell } from 'app/server/lib/IShell';
|
||||
import { PluginManager } from 'app/server/lib/PluginManager';
|
||||
|
||||
export interface ICreate {
|
||||
LoginSession(comm: Comm, sid: string, domain: string, scopeSession: ScopedSession,
|
||||
instanceManager: IInstanceManager|null): ILoginSession;
|
||||
Billing(dbManager: HomeDBManager): IBilling;
|
||||
Notifier(dbManager: HomeDBManager, homeUrl: string): INotifier;
|
||||
Shell(): IShell|undefined;
|
||||
ExternalStorage(bucket: string, prefix: string): ExternalStorage|undefined;
|
||||
ActiveDoc(docManager: DocManager, docName: string): ActiveDoc;
|
||||
DocManager(storageManager: IDocStorageManager, pluginManager: PluginManager,
|
||||
homeDbManager: HomeDBManager|null, gristServer: GristServer): DocManager;
|
||||
NSandbox(options: ISandboxCreationOptions): ISandbox;
|
||||
|
||||
sessionSecret(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user