(core) Grace period and delete-only mode when exceeding row limit
Summary:
Builds upon https://phab.getgrist.com/D3328
- Add HomeDB column `Document.gracePeriodStart`
- When the row count moves above the limit, set it to the current date. When it moves below, set it to null.
- Add DataLimitStatus type indicating if the document is approaching the limit, is in a grace period, or is in delete only mode if the grace period started at least 14 days ago. Compute it in ActiveDoc and send it to client when opening.
- Only allow certain user actions when in delete-only mode.
Follow-up tasks related to this diff:
- When DataLimitStatus in the client is non-empty, show a banner to the appropriate users.
- Only send DataLimitStatus to users with the appropriate access. There's no risk landing this now since real users will only see null until free team sites are released.
- Update DataLimitStatus immediately in the client when it changes, e.g. when user actions are applied or the product is changed. Right now it's only sent when the document loads.
- Update row limit, grace period start, and data limit status in ActiveDoc when the product changes, i.e. the user upgrades/downgrades.
- Account for data size when computing data limit status, not just row counts.
See also the tasks mentioned in https://phab.getgrist.com/D3331
Test Plan: Extended FreeTeam nbrowser test, testing the 4 statuses.
Reviewers: georgegevoian
Reviewed By: georgegevoian
Differential Revision: https://phab.getgrist.com/D3331
2022-03-24 12:05:51 +00:00
|
|
|
import {Document} from 'app/gen-server/entity/Document';
|
2021-07-01 15:15:43 +00:00
|
|
|
import {HomeDBManager} from 'app/gen-server/lib/HomeDBManager';
|
|
|
|
import {ActiveDoc} from 'app/server/lib/ActiveDoc';
|
|
|
|
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 {INotifier} from 'app/server/lib/INotifier';
|
|
|
|
import {ISandbox, ISandboxCreationOptions} from 'app/server/lib/ISandbox';
|
|
|
|
import {IShell} from 'app/server/lib/IShell';
|
2020-07-21 13:20:51 +00:00
|
|
|
|
|
|
|
export interface ICreate {
|
2021-07-12 16:10:04 +00:00
|
|
|
|
2021-06-17 20:48:46 +00:00
|
|
|
Billing(dbManager: HomeDBManager, gristConfig: GristServer): IBilling;
|
2021-03-18 22:40:02 +00:00
|
|
|
Notifier(dbManager: HomeDBManager, gristConfig: GristServer): INotifier;
|
2020-07-21 13:20:51 +00:00
|
|
|
Shell(): IShell|undefined;
|
2020-10-30 16:53:23 +00:00
|
|
|
|
|
|
|
// Create a space to store files externally, for storing either:
|
|
|
|
// - documents. This store should be versioned, and can be eventually consistent.
|
|
|
|
// - meta. This store need not be versioned, and can be eventually consistent.
|
|
|
|
// For test purposes an extra prefix may be supplied. Stores with different prefixes
|
|
|
|
// should not interfere with each other.
|
|
|
|
ExternalStorage(purpose: 'doc' | 'meta', testExtraPrefix: string): ExternalStorage|undefined;
|
|
|
|
|
2021-03-18 22:40:02 +00:00
|
|
|
ActiveDoc(docManager: DocManager, docName: string, options: ICreateActiveDocOptions): ActiveDoc;
|
2020-07-21 13:20:51 +00:00
|
|
|
NSandbox(options: ISandboxCreationOptions): ISandbox;
|
|
|
|
|
|
|
|
sessionSecret(): string;
|
2020-10-30 16:53:23 +00:00
|
|
|
// Get configuration information to show at start-up.
|
|
|
|
configurationOptions(): {[key: string]: any};
|
2020-07-21 13:20:51 +00:00
|
|
|
}
|
2021-03-18 22:40:02 +00:00
|
|
|
|
|
|
|
export interface ICreateActiveDocOptions {
|
|
|
|
safeMode?: boolean;
|
|
|
|
docUrl?: string;
|
(core) Grace period and delete-only mode when exceeding row limit
Summary:
Builds upon https://phab.getgrist.com/D3328
- Add HomeDB column `Document.gracePeriodStart`
- When the row count moves above the limit, set it to the current date. When it moves below, set it to null.
- Add DataLimitStatus type indicating if the document is approaching the limit, is in a grace period, or is in delete only mode if the grace period started at least 14 days ago. Compute it in ActiveDoc and send it to client when opening.
- Only allow certain user actions when in delete-only mode.
Follow-up tasks related to this diff:
- When DataLimitStatus in the client is non-empty, show a banner to the appropriate users.
- Only send DataLimitStatus to users with the appropriate access. There's no risk landing this now since real users will only see null until free team sites are released.
- Update DataLimitStatus immediately in the client when it changes, e.g. when user actions are applied or the product is changed. Right now it's only sent when the document loads.
- Update row limit, grace period start, and data limit status in ActiveDoc when the product changes, i.e. the user upgrades/downgrades.
- Account for data size when computing data limit status, not just row counts.
See also the tasks mentioned in https://phab.getgrist.com/D3331
Test Plan: Extended FreeTeam nbrowser test, testing the 4 statuses.
Reviewers: georgegevoian
Reviewed By: georgegevoian
Differential Revision: https://phab.getgrist.com/D3331
2022-03-24 12:05:51 +00:00
|
|
|
doc?: Document;
|
2021-03-18 22:40:02 +00:00
|
|
|
}
|