@fluidframework/local-driver 2.0.0-dev.7.4.0.215747 → 2.0.0-dev.7.4.0.216897
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-extractor-lint.json +13 -0
- package/api-extractor.json +0 -4
- package/api-report/local-driver.api.md +9 -9
- package/dist/local-driver-alpha.d.ts +47 -192
- package/dist/local-driver-beta.d.ts +47 -192
- package/dist/local-driver-public.d.ts +47 -192
- package/dist/local-driver-untrimmed.d.ts +13 -0
- package/dist/localDeltaStorageService.cjs +1 -0
- package/dist/localDeltaStorageService.cjs.map +1 -1
- package/dist/localDeltaStorageService.d.ts +1 -0
- package/dist/localDeltaStorageService.d.ts.map +1 -1
- package/dist/localDocumentDeltaConnection.cjs +1 -0
- package/dist/localDocumentDeltaConnection.cjs.map +1 -1
- package/dist/localDocumentDeltaConnection.d.ts +1 -0
- package/dist/localDocumentDeltaConnection.d.ts.map +1 -1
- package/dist/localDocumentService.cjs +2 -0
- package/dist/localDocumentService.cjs.map +1 -1
- package/dist/localDocumentService.d.ts +2 -0
- package/dist/localDocumentService.d.ts.map +1 -1
- package/dist/localDocumentServiceFactory.cjs +1 -0
- package/dist/localDocumentServiceFactory.cjs.map +1 -1
- package/dist/localDocumentServiceFactory.d.ts +1 -0
- package/dist/localDocumentServiceFactory.d.ts.map +1 -1
- package/dist/localDocumentStorageService.cjs +3 -0
- package/dist/localDocumentStorageService.cjs.map +1 -1
- package/dist/localDocumentStorageService.d.ts +3 -0
- package/dist/localDocumentStorageService.d.ts.map +1 -1
- package/dist/localResolver.cjs +4 -0
- package/dist/localResolver.cjs.map +1 -1
- package/dist/localResolver.d.ts +4 -0
- package/dist/localResolver.d.ts.map +1 -1
- package/dist/localSessionStorageDb.cjs +1 -0
- package/dist/localSessionStorageDb.cjs.map +1 -1
- package/dist/localSessionStorageDb.d.ts +1 -0
- package/dist/localSessionStorageDb.d.ts.map +1 -1
- package/lib/local-driver-alpha.d.ts +47 -192
- package/lib/local-driver-beta.d.ts +47 -192
- package/lib/local-driver-public.d.ts +47 -192
- package/lib/local-driver-untrimmed.d.ts +13 -0
- package/lib/localDeltaStorageService.d.ts +1 -0
- package/lib/localDeltaStorageService.d.ts.map +1 -1
- package/lib/localDeltaStorageService.mjs +1 -0
- package/lib/localDeltaStorageService.mjs.map +1 -1
- package/lib/localDocumentDeltaConnection.d.ts +1 -0
- package/lib/localDocumentDeltaConnection.d.ts.map +1 -1
- package/lib/localDocumentDeltaConnection.mjs +1 -0
- package/lib/localDocumentDeltaConnection.mjs.map +1 -1
- package/lib/localDocumentService.d.ts +2 -0
- package/lib/localDocumentService.d.ts.map +1 -1
- package/lib/localDocumentService.mjs +2 -0
- package/lib/localDocumentService.mjs.map +1 -1
- package/lib/localDocumentServiceFactory.d.ts +1 -0
- package/lib/localDocumentServiceFactory.d.ts.map +1 -1
- package/lib/localDocumentServiceFactory.mjs +1 -0
- package/lib/localDocumentServiceFactory.mjs.map +1 -1
- package/lib/localDocumentStorageService.d.ts +3 -0
- package/lib/localDocumentStorageService.d.ts.map +1 -1
- package/lib/localDocumentStorageService.mjs +3 -0
- package/lib/localDocumentStorageService.mjs.map +1 -1
- package/lib/localResolver.d.ts +4 -0
- package/lib/localResolver.d.ts.map +1 -1
- package/lib/localResolver.mjs +4 -0
- package/lib/localResolver.mjs.map +1 -1
- package/lib/localSessionStorageDb.d.ts +1 -0
- package/lib/localSessionStorageDb.d.ts.map +1 -1
- package/lib/localSessionStorageDb.mjs +1 -0
- package/lib/localSessionStorageDb.mjs.map +1 -1
- package/package.json +12 -11
- package/src/localDeltaStorageService.ts +1 -0
- package/src/localDocumentDeltaConnection.ts +1 -0
- package/src/localDocumentService.ts +2 -0
- package/src/localDocumentServiceFactory.ts +1 -0
- package/src/localDocumentStorageService.ts +3 -0
- package/src/localResolver.ts +4 -0
- package/src/localSessionStorageDb.ts +1 -0
|
@@ -1,211 +1,66 @@
|
|
|
1
|
-
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
2
1
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
3
2
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
4
3
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
5
4
|
import { IDatabaseManager } from '@fluidframework/server-services-core';
|
|
6
5
|
import { IDb } from '@fluidframework/server-services-core';
|
|
7
|
-
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
8
|
-
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
9
6
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
-
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
-
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
-
import { IDocumentServicePolicies } from '@fluidframework/driver-definitions';
|
|
13
|
-
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
14
|
-
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
15
7
|
import { ILocalDeltaConnectionServer } from '@fluidframework/server-local-server';
|
|
16
|
-
import { IRequest } from '@fluidframework/core-interfaces';
|
|
17
|
-
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
18
8
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
19
9
|
import { ISnapshotTreeEx } from '@fluidframework/protocol-definitions';
|
|
20
|
-
import { IStream } from '@fluidframework/driver-definitions';
|
|
21
|
-
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
22
10
|
import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
23
11
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
24
|
-
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
25
12
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
-
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
27
|
-
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
28
13
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
29
14
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
30
15
|
import { NackErrorType } from '@fluidframework/protocol-definitions';
|
|
31
16
|
import type { Socket } from 'socket.io-client';
|
|
32
17
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
*/
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
/**
|
|
81
|
-
* Send a "disconnect" message on the socket.
|
|
82
|
-
* @param disconnectReason - The reason of the disconnection.
|
|
83
|
-
*/
|
|
84
|
-
disconnectClient(disconnectReason: string): void;
|
|
85
|
-
/**
|
|
86
|
-
* * Sends a "nack" message on the socket.
|
|
87
|
-
* @param code - An error code number that represents the error. It will be a valid HTTP error code.
|
|
88
|
-
* @param type - Type of the Nack.
|
|
89
|
-
* @param message - A message about the nack for debugging/logging/telemetry purposes.
|
|
90
|
-
*/
|
|
91
|
-
nackClient(code: number | undefined, type: NackErrorType | undefined, message: any): void;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
/**
|
|
95
|
-
* Basic implementation of a document service for local use.
|
|
96
|
-
*/
|
|
97
|
-
export declare class LocalDocumentService implements IDocumentService {
|
|
98
|
-
readonly resolvedUrl: IResolvedUrl;
|
|
99
|
-
private readonly localDeltaConnectionServer;
|
|
100
|
-
private readonly tokenProvider;
|
|
101
|
-
private readonly tenantId;
|
|
102
|
-
private readonly documentId;
|
|
103
|
-
private readonly documentDeltaConnectionsMap;
|
|
104
|
-
readonly policies: IDocumentServicePolicies;
|
|
105
|
-
private readonly innerDocumentService?;
|
|
106
|
-
private readonly logger?;
|
|
107
|
-
/**
|
|
108
|
-
* @param localDeltaConnectionServer - delta connection server for ops
|
|
109
|
-
* @param tokenProvider - token provider
|
|
110
|
-
* @param tenantId - ID of tenant
|
|
111
|
-
* @param documentId - ID of document
|
|
112
|
-
*/
|
|
113
|
-
constructor(resolvedUrl: IResolvedUrl, localDeltaConnectionServer: ILocalDeltaConnectionServer, tokenProvider: ITokenProvider, tenantId: string, documentId: string, documentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection>, policies?: IDocumentServicePolicies, innerDocumentService?: IDocumentService | undefined, logger?: ITelemetryBaseLogger | undefined);
|
|
114
|
-
dispose(): void;
|
|
115
|
-
/**
|
|
116
|
-
* Creates and returns a document storage service for local use.
|
|
117
|
-
*/
|
|
118
|
-
connectToStorage(): Promise<IDocumentStorageService>;
|
|
119
|
-
/**
|
|
120
|
-
* Creates and returns a delta storage service for local use.
|
|
121
|
-
*/
|
|
122
|
-
connectToDeltaStorage(): Promise<IDocumentDeltaStorageService>;
|
|
123
|
-
/**
|
|
124
|
-
* Creates and returns a delta stream for local use.
|
|
125
|
-
* @param client - client data
|
|
126
|
-
*/
|
|
127
|
-
connectToDeltaStream(client: IClient): Promise<IDocumentDeltaConnection>;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/**
|
|
131
|
-
* Implementation of document service factory for local use.
|
|
132
|
-
*/
|
|
133
|
-
export declare class LocalDocumentServiceFactory implements IDocumentServiceFactory {
|
|
134
|
-
private readonly localDeltaConnectionServer;
|
|
135
|
-
private readonly policies?;
|
|
136
|
-
private readonly innerDocumentService?;
|
|
137
|
-
private readonly documentDeltaConnectionsMap;
|
|
138
|
-
/**
|
|
139
|
-
* @param localDeltaConnectionServer - delta connection server for ops
|
|
140
|
-
*/
|
|
141
|
-
constructor(localDeltaConnectionServer: ILocalDeltaConnectionServer, policies?: IDocumentServicePolicies | undefined, innerDocumentService?: IDocumentService | undefined);
|
|
142
|
-
createContainer(createNewSummary: ISummaryTree | undefined, resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
|
|
143
|
-
/**
|
|
144
|
-
* Creates and returns a document service for testing using the given resolved
|
|
145
|
-
* URL for the tenant ID, document ID, and token.
|
|
146
|
-
* @param resolvedUrl - resolved URL of document
|
|
147
|
-
*/
|
|
148
|
-
createDocumentService(resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
|
|
149
|
-
/**
|
|
150
|
-
* Gets the document delta connection for the clientId and asks it to disconnect the client.
|
|
151
|
-
* @param clientId - The ID of the client to be disconnected.
|
|
152
|
-
* @param disconnectReason - The reason of the disconnection.
|
|
153
|
-
*/
|
|
154
|
-
disconnectClient(clientId: string, disconnectReason: string): void;
|
|
155
|
-
/**
|
|
156
|
-
* Gets the document delta connection for the clientId and asks it to nack the client.
|
|
157
|
-
* @param clientId - The ID of the client to be Nack'd.
|
|
158
|
-
* @param code - An error code number that represents the error. It will be a valid HTTP error code.
|
|
159
|
-
* @param type - Type of the Nack.
|
|
160
|
-
* @param message - A message about the nack for debugging/logging/telemetry purposes.
|
|
161
|
-
*/
|
|
162
|
-
nackClient(clientId: string, code?: number, type?: NackErrorType, message?: any): void;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
export declare class LocalDocumentStorageService implements IDocumentStorageService {
|
|
166
|
-
private readonly id;
|
|
167
|
-
private readonly manager;
|
|
168
|
-
readonly policies: IDocumentStorageServicePolicies;
|
|
169
|
-
private readonly localDeltaConnectionServer?;
|
|
170
|
-
private readonly resolvedUrl?;
|
|
171
|
-
protected readonly blobsShaCache: Map<string, string>;
|
|
172
|
-
private readonly summaryTreeUploadManager;
|
|
173
|
-
get repositoryUrl(): string;
|
|
174
|
-
constructor(id: string, manager: GitManager, policies: IDocumentStorageServicePolicies, localDeltaConnectionServer?: ILocalDeltaConnectionServer | undefined, resolvedUrl?: IResolvedUrl | undefined);
|
|
175
|
-
getVersions(versionId: string | null, count: number): Promise<IVersion[]>;
|
|
176
|
-
getSnapshotTree(version?: IVersion): Promise<ISnapshotTreeEx | null>;
|
|
177
|
-
readBlob(blobId: string): Promise<ArrayBufferLike>;
|
|
178
|
-
uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>;
|
|
179
|
-
createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>;
|
|
180
|
-
downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>;
|
|
181
|
-
private getPreviousFullSnapshot;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
/**
|
|
185
|
-
* Resolves URLs by providing fake URLs which succeed with the other
|
|
186
|
-
* related local classes.
|
|
187
|
-
*/
|
|
188
|
-
export declare class LocalResolver implements IUrlResolver {
|
|
189
|
-
private readonly tenantId;
|
|
190
|
-
private readonly tokenKey;
|
|
191
|
-
constructor();
|
|
192
|
-
/**
|
|
193
|
-
* Resolves URL requests by providing fake URLs with an actually generated
|
|
194
|
-
* token from constant test strings. The root of the URL is fake, but the
|
|
195
|
-
* remaining relative URL can still be parsed.
|
|
196
|
-
* @param request - request to handle
|
|
197
|
-
*/
|
|
198
|
-
resolve(request: IRequest): Promise<IResolvedUrl>;
|
|
199
|
-
getAbsoluteUrl(resolvedUrl: IResolvedUrl, relativeUrl: string): Promise<string>;
|
|
200
|
-
createCreateNewRequest(documentId: string): IRequest;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
/**
|
|
204
|
-
* A database factory for testing that stores data in the browsers session storage
|
|
205
|
-
*/
|
|
206
|
-
export declare class LocalSessionStorageDbFactory implements ITestDbFactory {
|
|
207
|
-
readonly testDatabase: IDb;
|
|
208
|
-
connect(): Promise<IDb>;
|
|
209
|
-
}
|
|
18
|
+
/* Excluded from this release type: createLocalDocumentService */
|
|
19
|
+
|
|
20
|
+
/* Excluded from this release type: createLocalResolverCreateNewRequest */
|
|
21
|
+
|
|
22
|
+
/* Excluded from this release type: DocumentDeltaConnection */
|
|
23
|
+
|
|
24
|
+
/* Excluded from this release type: IDocumentDeltaConnection */
|
|
25
|
+
|
|
26
|
+
/* Excluded from this release type: IDocumentDeltaStorageService */
|
|
27
|
+
|
|
28
|
+
/* Excluded from this release type: IDocumentService */
|
|
29
|
+
|
|
30
|
+
/* Excluded from this release type: IDocumentServiceFactory */
|
|
31
|
+
|
|
32
|
+
/* Excluded from this release type: IDocumentServicePolicies */
|
|
33
|
+
|
|
34
|
+
/* Excluded from this release type: IDocumentStorageService */
|
|
35
|
+
|
|
36
|
+
/* Excluded from this release type: IDocumentStorageServicePolicies */
|
|
37
|
+
|
|
38
|
+
/* Excluded from this release type: IRequest */
|
|
39
|
+
|
|
40
|
+
/* Excluded from this release type: IResolvedUrl */
|
|
41
|
+
|
|
42
|
+
/* Excluded from this release type: IStream */
|
|
43
|
+
|
|
44
|
+
/* Excluded from this release type: ISummaryContext */
|
|
45
|
+
|
|
46
|
+
/* Excluded from this release type: ITelemetryBaseLogger */
|
|
47
|
+
|
|
48
|
+
/* Excluded from this release type: ITokenProvider */
|
|
49
|
+
|
|
50
|
+
/* Excluded from this release type: IUrlResolver */
|
|
51
|
+
|
|
52
|
+
/* Excluded from this release type: LocalDeltaStorageService */
|
|
53
|
+
|
|
54
|
+
/* Excluded from this release type: LocalDocumentDeltaConnection */
|
|
55
|
+
|
|
56
|
+
/* Excluded from this release type: LocalDocumentService */
|
|
57
|
+
|
|
58
|
+
/* Excluded from this release type: LocalDocumentServiceFactory */
|
|
59
|
+
|
|
60
|
+
/* Excluded from this release type: LocalDocumentStorageService */
|
|
61
|
+
|
|
62
|
+
/* Excluded from this release type: LocalResolver */
|
|
63
|
+
|
|
64
|
+
/* Excluded from this release type: LocalSessionStorageDbFactory */
|
|
210
65
|
|
|
211
66
|
export { }
|
|
@@ -36,13 +36,18 @@ import type { Socket } from 'socket.io-client';
|
|
|
36
36
|
* @param tokenProvider - token provider with a single token
|
|
37
37
|
* @param tenantId - ID of tenant
|
|
38
38
|
* @param documentId - ID of document
|
|
39
|
+
* @internal
|
|
39
40
|
*/
|
|
40
41
|
export declare function createLocalDocumentService(resolvedUrl: IResolvedUrl, localDeltaConnectionServer: ILocalDeltaConnectionServer, tokenProvider: ITokenProvider, tenantId: string, documentId: string, documentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection>, policies?: IDocumentServicePolicies, innerDocumentService?: IDocumentService, logger?: ITelemetryBaseLogger): IDocumentService;
|
|
41
42
|
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
*/
|
|
42
46
|
export declare function createLocalResolverCreateNewRequest(documentId: string): IRequest;
|
|
43
47
|
|
|
44
48
|
/**
|
|
45
49
|
* Provides access to the underlying delta storage on the server for local driver.
|
|
50
|
+
* @internal
|
|
46
51
|
*/
|
|
47
52
|
export declare class LocalDeltaStorageService implements IDocumentDeltaStorageService {
|
|
48
53
|
private readonly tenantId;
|
|
@@ -55,6 +60,7 @@ export declare class LocalDeltaStorageService implements IDocumentDeltaStorageSe
|
|
|
55
60
|
|
|
56
61
|
/**
|
|
57
62
|
* Represents a connection to a stream of delta updates
|
|
63
|
+
* @internal
|
|
58
64
|
*/
|
|
59
65
|
export declare class LocalDocumentDeltaConnection extends DocumentDeltaConnection {
|
|
60
66
|
/**
|
|
@@ -93,6 +99,7 @@ export declare class LocalDocumentDeltaConnection extends DocumentDeltaConnectio
|
|
|
93
99
|
|
|
94
100
|
/**
|
|
95
101
|
* Basic implementation of a document service for local use.
|
|
102
|
+
* @internal
|
|
96
103
|
*/
|
|
97
104
|
export declare class LocalDocumentService implements IDocumentService {
|
|
98
105
|
readonly resolvedUrl: IResolvedUrl;
|
|
@@ -129,6 +136,7 @@ export declare class LocalDocumentService implements IDocumentService {
|
|
|
129
136
|
|
|
130
137
|
/**
|
|
131
138
|
* Implementation of document service factory for local use.
|
|
139
|
+
* @internal
|
|
132
140
|
*/
|
|
133
141
|
export declare class LocalDocumentServiceFactory implements IDocumentServiceFactory {
|
|
134
142
|
private readonly localDeltaConnectionServer;
|
|
@@ -162,6 +170,9 @@ export declare class LocalDocumentServiceFactory implements IDocumentServiceFact
|
|
|
162
170
|
nackClient(clientId: string, code?: number, type?: NackErrorType, message?: any): void;
|
|
163
171
|
}
|
|
164
172
|
|
|
173
|
+
/**
|
|
174
|
+
* @internal
|
|
175
|
+
*/
|
|
165
176
|
export declare class LocalDocumentStorageService implements IDocumentStorageService {
|
|
166
177
|
private readonly id;
|
|
167
178
|
private readonly manager;
|
|
@@ -184,6 +195,7 @@ export declare class LocalDocumentStorageService implements IDocumentStorageServ
|
|
|
184
195
|
/**
|
|
185
196
|
* Resolves URLs by providing fake URLs which succeed with the other
|
|
186
197
|
* related local classes.
|
|
198
|
+
* @internal
|
|
187
199
|
*/
|
|
188
200
|
export declare class LocalResolver implements IUrlResolver {
|
|
189
201
|
private readonly tenantId;
|
|
@@ -202,6 +214,7 @@ export declare class LocalResolver implements IUrlResolver {
|
|
|
202
214
|
|
|
203
215
|
/**
|
|
204
216
|
* A database factory for testing that stores data in the browsers session storage
|
|
217
|
+
* @internal
|
|
205
218
|
*/
|
|
206
219
|
export declare class LocalSessionStorageDbFactory implements ITestDbFactory {
|
|
207
220
|
readonly testDatabase: IDb;
|
|
@@ -8,6 +8,7 @@ exports.LocalDeltaStorageService = void 0;
|
|
|
8
8
|
const driver_utils_1 = require("@fluidframework/driver-utils");
|
|
9
9
|
/**
|
|
10
10
|
* Provides access to the underlying delta storage on the server for local driver.
|
|
11
|
+
* @internal
|
|
11
12
|
*/
|
|
12
13
|
class LocalDeltaStorageService {
|
|
13
14
|
constructor(tenantId, id, databaseManager) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDeltaStorageService.cjs","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAKH,+DAAkE;AAElE
|
|
1
|
+
{"version":3,"file":"localDeltaStorageService.cjs","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAKH,+DAAkE;AAElE;;;GAGG;AACH,MAAa,wBAAwB;IACpC,YACkB,QAAgB,EAChB,EAAU,EACV,eAAiC;QAFjC,aAAQ,GAAR,QAAQ,CAAQ;QAChB,OAAE,GAAF,EAAE,CAAQ;QACV,oBAAe,GAAf,eAAe,CAAkB;IAChD,CAAC;IAEG,aAAa,CACnB,IAAY,EACZ,EAAsB,EACtB,WAAyB,EACzB,UAAoB;QAEpB,OAAO,IAAA,iCAAkB,EAAC,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC;IACnD,CAAC;IAEO,KAAK,CAAC,OAAO,CAAC,IAAY,EAAE,EAAW;QAC9C,MAAM,KAAK,GAAG,EAAE,UAAU,EAAE,IAAI,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,CAAC;QAC/D,KAAK,CAAC,0BAA0B,CAAC,GAAG,EAAE,CAAC;QACvC,KAAK,CAAC,0BAA0B,CAAC,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,oBAAoB;QAEtE,kFAAkF;QAClF,iBAAiB;QACjB,KAAK,CAAC,0BAA0B,CAAC,CAAC,GAAG,GAAG,EAAE,IAAI,MAAM,CAAC,gBAAgB,CAAC;QAEtE,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,kBAAkB,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC;QACxF,MAAM,QAAQ,GAAG,MAAM,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,0BAA0B,EAAE,CAAC,EAAE,CAAC,CAAC;QAChF,MAAM,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;QAC1D,OAAO,QAAQ,CAAC;IACjB,CAAC;CACD;AA9BD,4DA8BC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { IDocumentDeltaStorageService, IStream } from \"@fluidframework/driver-definitions\";\nimport { ISequencedDocumentMessage } from \"@fluidframework/protocol-definitions\";\nimport { IDatabaseManager } from \"@fluidframework/server-services-core\";\nimport { streamFromMessages } from \"@fluidframework/driver-utils\";\n\n/**\n * Provides access to the underlying delta storage on the server for local driver.\n * @internal\n */\nexport class LocalDeltaStorageService implements IDocumentDeltaStorageService {\n\tconstructor(\n\t\tprivate readonly tenantId: string,\n\t\tprivate readonly id: string,\n\t\tprivate readonly databaseManager: IDatabaseManager,\n\t) {}\n\n\tpublic fetchMessages(\n\t\tfrom: number,\n\t\tto: number | undefined,\n\t\tabortSignal?: AbortSignal,\n\t\tcachedOnly?: boolean,\n\t): IStream<ISequencedDocumentMessage[]> {\n\t\treturn streamFromMessages(this.getCore(from, to));\n\t}\n\n\tprivate async getCore(from: number, to?: number) {\n\t\tconst query = { documentId: this.id, tenantId: this.tenantId };\n\t\tquery[\"operation.sequenceNumber\"] = {};\n\t\tquery[\"operation.sequenceNumber\"].$gt = from - 1; // from is inclusive\n\n\t\t// This looks like a bug. It used to work without setting $lt key. Now it does not\n\t\t// Need follow up\n\t\tquery[\"operation.sequenceNumber\"].$lt = to ?? Number.MAX_SAFE_INTEGER;\n\n\t\tconst allDeltas = await this.databaseManager.getDeltaCollection(this.tenantId, this.id);\n\t\tconst dbDeltas = await allDeltas.find(query, { \"operation.sequenceNumber\": 1 });\n\t\tconst messages = dbDeltas.map((delta) => delta.operation);\n\t\treturn messages;\n\t}\n}\n"]}
|
|
@@ -7,6 +7,7 @@ import { ISequencedDocumentMessage } from "@fluidframework/protocol-definitions"
|
|
|
7
7
|
import { IDatabaseManager } from "@fluidframework/server-services-core";
|
|
8
8
|
/**
|
|
9
9
|
* Provides access to the underlying delta storage on the server for local driver.
|
|
10
|
+
* @internal
|
|
10
11
|
*/
|
|
11
12
|
export declare class LocalDeltaStorageService implements IDocumentDeltaStorageService {
|
|
12
13
|
private readonly tenantId;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDeltaStorageService.d.ts","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,4BAA4B,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAGxE
|
|
1
|
+
{"version":3,"file":"localDeltaStorageService.d.ts","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,4BAA4B,EAAE,OAAO,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAGxE;;;GAGG;AACH,qBAAa,wBAAyB,YAAW,4BAA4B;IAE3E,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;gBAFf,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,EACV,eAAe,EAAE,gBAAgB;IAG5C,aAAa,CACnB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,GAAG,SAAS,EACtB,WAAW,CAAC,EAAE,WAAW,EACzB,UAAU,CAAC,EAAE,OAAO,GAClB,OAAO,CAAC,yBAAyB,EAAE,CAAC;YAIzB,OAAO;CAcrB"}
|
|
@@ -11,6 +11,7 @@ const telemetry_utils_1 = require("@fluidframework/telemetry-utils");
|
|
|
11
11
|
const testProtocolVersions = ["^0.3.0", "^0.2.0", "^0.1.0"];
|
|
12
12
|
/**
|
|
13
13
|
* Represents a connection to a stream of delta updates
|
|
14
|
+
* @internal
|
|
14
15
|
*/
|
|
15
16
|
class LocalDocumentDeltaConnection extends driver_base_1.DocumentDeltaConnection {
|
|
16
17
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentDeltaConnection.cjs","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,6DAAsE;AACtE,+EAK8C;AAC9C,qEAAoE;AAMpE,MAAM,oBAAoB,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAE5D
|
|
1
|
+
{"version":3,"file":"localDocumentDeltaConnection.cjs","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,6DAAsE;AACtE,+EAK8C;AAC9C,qEAAoE;AAMpE,MAAM,oBAAoB,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAE5D;;;GAGG;AACH,MAAa,4BAA6B,SAAQ,qCAAuB;IACxE;;;;;;;;;OASG;IACI,MAAM,CAAC,KAAK,CAAC,MAAM,CACzB,QAAgB,EAChB,EAAU,EACV,KAAa,EACb,MAAe,EACf,eAAiC,EACjC,SAAS,GAAG,KAAK,EACjB,MAA6B;QAE7B,MAAM,MAAM,GAAI,eAAwC,CAAC,gBAAgB,EAAE,CAAC;QAE5E,4GAA4G;QAC5G,0EAA0E;QAC1E,MAAM,kBAAkB,GAAG,MAA2B,CAAC;QAEvD,MAAM,eAAe,GAAG,IAAI,4BAA4B,CAAC,kBAAkB,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;QAEzF,MAAM,cAAc,GAAa;YAChC,MAAM;YACN,EAAE;YACF,IAAI,EAAE,MAAM,CAAC,IAAI;YACjB,QAAQ;YACR,KAAK;YACL,QAAQ,EAAE,oBAAoB;SAC9B,CAAC;QACF,MAAM,eAAe,CAAC,UAAU,CAAC,cAAc,EAAE,SAAS,CAAC,CAAC;QAC5D,OAAO,eAAe,CAAC;IACxB,CAAC;IAED,YAAY,MAAc,EAAE,UAAkB,EAAE,MAA6B;QAC5E,KAAK,CAAC,MAAM,EAAE,UAAU,EAAE,IAAA,mCAAiB,EAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;IAC1D,CAAC;IAED;;OAEG;IACI,MAAM,CAAC,QAA4B;QACzC,kFAAkF;QAClF,mEAAmE;QACnE,OAAO,CAAC,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,EAAE;YAC3B,IAAI,CAAC,YAAY,CAAC,UAAU,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IACJ,CAAC;IAED;;OAEG;IACI,YAAY,CAAC,OAAY;QAC/B,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAChD,CAAC;IAED;;;OAGG;IACI,gBAAgB,CAAC,gBAAwB;QAC/C,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;IAClD,CAAC;IAED;;;;;OAKG;IACI,UAAU,CAChB,OAAe,GAAG,EAClB,OAAsB,oCAAa,CAAC,eAAe,EACnD,OAAY;QAEZ,MAAM,WAAW,GAAG;YACnB,SAAS,EAAE,SAAS;YACpB,cAAc,EAAE,CAAC,CAAC;YAClB,OAAO,EAAE;gBACR,IAAI;gBACJ,IAAI;gBACJ,OAAO;aACP;SACD,CAAC;QACF,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC;IAC7C,CAAC;CACD;AA5FD,oEA4FC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { DocumentDeltaConnection } from \"@fluidframework/driver-base\";\nimport {\n\tIClient,\n\tIConnect,\n\tIDocumentMessage,\n\tNackErrorType,\n} from \"@fluidframework/protocol-definitions\";\nimport { createChildLogger } from \"@fluidframework/telemetry-utils\";\nimport { LocalWebSocketServer } from \"@fluidframework/server-local-server\";\nimport { IWebSocketServer } from \"@fluidframework/server-services-core\";\nimport type { Socket } from \"socket.io-client\";\nimport { ITelemetryBaseLogger } from \"@fluidframework/core-interfaces\";\n\nconst testProtocolVersions = [\"^0.3.0\", \"^0.2.0\", \"^0.1.0\"];\n\n/**\n * Represents a connection to a stream of delta updates\n * @internal\n */\nexport class LocalDocumentDeltaConnection extends DocumentDeltaConnection {\n\t/**\n\t * Create a LocalDocumentDeltaConnection\n\t * Handle initial messages, contents or signals if they were in queue\n\t *\n\t * @param tenantId - the ID of the tenant\n\t * @param id - document ID\n\t * @param token - authorization token for storage service\n\t * @param client - information about the client\n\t * @param webSocketServer - web socket server to create connection\n\t */\n\tpublic static async create(\n\t\ttenantId: string,\n\t\tid: string,\n\t\ttoken: string,\n\t\tclient: IClient,\n\t\twebSocketServer: IWebSocketServer,\n\t\ttimeoutMs = 60000,\n\t\tlogger?: ITelemetryBaseLogger,\n\t): Promise<LocalDocumentDeltaConnection> {\n\t\tconst socket = (webSocketServer as LocalWebSocketServer).createConnection();\n\n\t\t// Cast LocalWebSocket to SocketIOClient.Socket which is the socket that the base class needs. This is hacky\n\t\t// but should be fine because this delta connection is for local use only.\n\t\tconst socketWithListener = socket as unknown as Socket;\n\n\t\tconst deltaConnection = new LocalDocumentDeltaConnection(socketWithListener, id, logger);\n\n\t\tconst connectMessage: IConnect = {\n\t\t\tclient,\n\t\t\tid,\n\t\t\tmode: client.mode,\n\t\t\ttenantId,\n\t\t\ttoken, // Token is going to indicate tenant level information, etc...\n\t\t\tversions: testProtocolVersions,\n\t\t};\n\t\tawait deltaConnection.initialize(connectMessage, timeoutMs);\n\t\treturn deltaConnection;\n\t}\n\n\tconstructor(socket: Socket, documentId: string, logger?: ITelemetryBaseLogger) {\n\t\tsuper(socket, documentId, createChildLogger({ logger }));\n\t}\n\n\t/**\n\t * Submits a new delta operation to the server\n\t */\n\tpublic submit(messages: IDocumentMessage[]): void {\n\t\t// We use a promise resolve to force a turn break given message processing is sync\n\t\t// eslint-disable-next-line @typescript-eslint/no-floating-promises\n\t\tPromise.resolve().then(() => {\n\t\t\tthis.emitMessages(\"submitOp\", [messages]);\n\t\t});\n\t}\n\n\t/**\n\t * Submits a new signal to the server\n\t */\n\tpublic submitSignal(message: any): void {\n\t\tthis.emitMessages(\"submitSignal\", [[message]]);\n\t}\n\n\t/**\n\t * Send a \"disconnect\" message on the socket.\n\t * @param disconnectReason - The reason of the disconnection.\n\t */\n\tpublic disconnectClient(disconnectReason: string) {\n\t\tthis.socket.emit(\"disconnect\", disconnectReason);\n\t}\n\n\t/**\n\t * * Sends a \"nack\" message on the socket.\n\t * @param code - An error code number that represents the error. It will be a valid HTTP error code.\n\t * @param type - Type of the Nack.\n\t * @param message - A message about the nack for debugging/logging/telemetry purposes.\n\t */\n\tpublic nackClient(\n\t\tcode: number = 400,\n\t\ttype: NackErrorType = NackErrorType.ThrottlingError,\n\t\tmessage: any,\n\t) {\n\t\tconst nackMessage = {\n\t\t\toperation: undefined,\n\t\t\tsequenceNumber: -1,\n\t\t\tcontent: {\n\t\t\t\tcode,\n\t\t\t\ttype,\n\t\t\t\tmessage,\n\t\t\t},\n\t\t};\n\t\tthis.socket.emit(\"nack\", \"\", [nackMessage]);\n\t}\n}\n"]}
|
|
@@ -9,6 +9,7 @@ import type { Socket } from "socket.io-client";
|
|
|
9
9
|
import { ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
10
10
|
/**
|
|
11
11
|
* Represents a connection to a stream of delta updates
|
|
12
|
+
* @internal
|
|
12
13
|
*/
|
|
13
14
|
export declare class LocalDocumentDeltaConnection extends DocumentDeltaConnection {
|
|
14
15
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EACN,OAAO,EAEP,gBAAgB,EAChB,aAAa,EACb,MAAM,sCAAsC,CAAC;AAG9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAIvE
|
|
1
|
+
{"version":3,"file":"localDocumentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EACN,OAAO,EAEP,gBAAgB,EAChB,aAAa,EACb,MAAM,sCAAsC,CAAC;AAG9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AACxE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAIvE;;;GAGG;AACH,qBAAa,4BAA6B,SAAQ,uBAAuB;IACxE;;;;;;;;;OASG;WACiB,MAAM,CACzB,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,EACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,OAAO,EACf,eAAe,EAAE,gBAAgB,EACjC,SAAS,SAAQ,EACjB,MAAM,CAAC,EAAE,oBAAoB,GAC3B,OAAO,CAAC,4BAA4B,CAAC;gBAqB5B,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,oBAAoB;IAI7E;;OAEG;IACI,MAAM,CAAC,QAAQ,EAAE,gBAAgB,EAAE,GAAG,IAAI;IAQjD;;OAEG;IACI,YAAY,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI;IAIvC;;;OAGG;IACI,gBAAgB,CAAC,gBAAgB,EAAE,MAAM;IAIhD;;;;;OAKG;IACI,UAAU,CAChB,IAAI,oBAAc,EAClB,IAAI,2BAA+C,EACnD,OAAO,EAAE,GAAG;CAab"}
|
|
@@ -12,6 +12,7 @@ const localDocumentDeltaConnection_1 = require("./localDocumentDeltaConnection.c
|
|
|
12
12
|
const localDeltaStorageService_1 = require("./localDeltaStorageService.cjs");
|
|
13
13
|
/**
|
|
14
14
|
* Basic implementation of a document service for local use.
|
|
15
|
+
* @internal
|
|
15
16
|
*/
|
|
16
17
|
class LocalDocumentService {
|
|
17
18
|
/**
|
|
@@ -79,6 +80,7 @@ exports.LocalDocumentService = LocalDocumentService;
|
|
|
79
80
|
* @param tokenProvider - token provider with a single token
|
|
80
81
|
* @param tenantId - ID of tenant
|
|
81
82
|
* @param documentId - ID of document
|
|
83
|
+
* @internal
|
|
82
84
|
*/
|
|
83
85
|
function createLocalDocumentService(resolvedUrl, localDeltaConnectionServer, tokenProvider, tenantId, documentId, documentDeltaConnectionsMap, policies, innerDocumentService, logger) {
|
|
84
86
|
return new LocalDocumentService(resolvedUrl, localDeltaConnectionServer, tokenProvider, tenantId, documentId, documentDeltaConnectionsMap, policies, innerDocumentService, logger);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentService.cjs","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAYH,mFAAoE;AACpE,yEAAkE;AAGlE,mFAA4E;AAC5E,qFAA8E;AAC9E,6EAAsE;AAEtE
|
|
1
|
+
{"version":3,"file":"localDocumentService.cjs","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAYH,mFAAoE;AACpE,yEAAkE;AAGlE,mFAA4E;AAC5E,qFAA8E;AAC9E,6EAAsE;AAEtE;;;GAGG;AACH,MAAa,oBAAoB;IAChC;;;;;OAKG;IACH,YACiB,WAAyB,EACxB,0BAAuD,EACvD,aAA6B,EAC7B,QAAgB,EAChB,UAAkB,EAClB,2BAAsE,EACvE,WAAqC,EAAE,EACtC,oBAAuC,EACvC,MAA6B;QAR9B,gBAAW,GAAX,WAAW,CAAc;QACxB,+BAA0B,GAA1B,0BAA0B,CAA6B;QACvD,kBAAa,GAAb,aAAa,CAAgB;QAC7B,aAAQ,GAAR,QAAQ,CAAQ;QAChB,eAAU,GAAV,UAAU,CAAQ;QAClB,gCAA2B,GAA3B,2BAA2B,CAA2C;QACvE,aAAQ,GAAR,QAAQ,CAA+B;QACtC,yBAAoB,GAApB,oBAAoB,CAAmB;QACvC,WAAM,GAAN,MAAM,CAAuB;IAC5C,CAAC;IAEG,OAAO,KAAI,CAAC;IAEnB;;OAEG;IACI,KAAK,CAAC,gBAAgB;QAC5B,OAAO,IAAI,yDAA2B,CACrC,IAAI,CAAC,UAAU,EACf,IAAI,mCAAU,CACb,IAAI,iCAAa,CAAC,IAAI,CAAC,0BAA0B,CAAC,aAAa,CAAC,YAAY,CAAC,CAC7E,EACD;YACC,sBAAsB,EAAE,SAAW,EAAE,yFAAyF;SAC9H,EACD,IAAI,CAAC,0BAA0B,EAC/B,IAAI,CAAC,WAAW,CAChB,CAAC;IACH,CAAC;IAED;;OAEG;IACI,KAAK,CAAC,qBAAqB;QACjC,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC9B,OAAO,IAAI,CAAC,oBAAoB,CAAC,qBAAqB,EAAE,CAAC;SACzD;QACD,OAAO,IAAI,mDAAwB,CAClC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,UAAU,EACf,IAAI,CAAC,0BAA0B,CAAC,eAAe,CAC/C,CAAC;IACH,CAAC;IAED;;;OAGG;IACI,KAAK,CAAC,oBAAoB,CAAC,MAAe;QAChD,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,KAAK,IAAI,EAAE;YACvC,MAAM,IAAI,KAAK,CAAC,oDAAoD,CAAC,CAAC;SACtE;QACD,IAAI,IAAI,CAAC,oBAAoB,EAAE;YAC9B,OAAO,IAAI,CAAC,oBAAoB,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;SAC9D;QACD,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,iBAAiB,CAC9D,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,UAAU,CACf,CAAC;QACF,MAAM,uBAAuB,GAAG,MAAM,2DAA4B,CAAC,MAAM,CACxE,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,UAAU,EACf,YAAY,CAAC,GAAG,EAChB,MAAM,EACN,IAAI,CAAC,0BAA0B,CAAC,eAAe,EAC/C,SAAS,EACT,IAAI,CAAC,MAAM,CACX,CAAC;QACF,MAAM,QAAQ,GAAG,uBAAuB,CAAC,QAAQ,CAAC;QAElD,8EAA8E;QAC9E,IAAI,CAAC,2BAA2B,CAAC,GAAG,CAAC,QAAQ,EAAE,uBAAuB,CAAC,CAAC;QAExE,kFAAkF;QAClF,uBAAuB,CAAC,EAAE,CAAC,YAAY,EAAE,GAAG,EAAE;YAC7C,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;QAEH,OAAO,uBAAuB,CAAC;IAChC,CAAC;CACD;AAxFD,oDAwFC;AAED;;;;;;;GAOG;AACH,SAAgB,0BAA0B,CACzC,WAAyB,EACzB,0BAAuD,EACvD,aAA6B,EAC7B,QAAgB,EAChB,UAAkB,EAClB,2BAAsE,EACtE,QAAmC,EACnC,oBAAuC,EACvC,MAA6B;IAE7B,OAAO,IAAI,oBAAoB,CAC9B,WAAW,EACX,0BAA0B,EAC1B,aAAa,EACb,QAAQ,EACR,UAAU,EACV,2BAA2B,EAC3B,QAAQ,EACR,oBAAoB,EACpB,MAAM,CACN,CAAC;AACH,CAAC;AAtBD,gEAsBC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n\tIDocumentDeltaConnection,\n\tIDocumentDeltaStorageService,\n\tIDocumentService,\n\tIDocumentServicePolicies,\n\tIDocumentStorageService,\n\tIResolvedUrl,\n} from \"@fluidframework/driver-definitions\";\nimport { IClient } from \"@fluidframework/protocol-definitions\";\nimport { ITokenProvider } from \"@fluidframework/routerlicious-driver\";\nimport { GitManager } from \"@fluidframework/server-services-client\";\nimport { TestHistorian } from \"@fluidframework/server-test-utils\";\nimport { ILocalDeltaConnectionServer } from \"@fluidframework/server-local-server\";\nimport { ITelemetryBaseLogger } from \"@fluidframework/core-interfaces\";\nimport { LocalDocumentStorageService } from \"./localDocumentStorageService\";\nimport { LocalDocumentDeltaConnection } from \"./localDocumentDeltaConnection\";\nimport { LocalDeltaStorageService } from \"./localDeltaStorageService\";\n\n/**\n * Basic implementation of a document service for local use.\n * @internal\n */\nexport class LocalDocumentService implements IDocumentService {\n\t/**\n\t * @param localDeltaConnectionServer - delta connection server for ops\n\t * @param tokenProvider - token provider\n\t * @param tenantId - ID of tenant\n\t * @param documentId - ID of document\n\t */\n\tconstructor(\n\t\tpublic readonly resolvedUrl: IResolvedUrl,\n\t\tprivate readonly localDeltaConnectionServer: ILocalDeltaConnectionServer,\n\t\tprivate readonly tokenProvider: ITokenProvider,\n\t\tprivate readonly tenantId: string,\n\t\tprivate readonly documentId: string,\n\t\tprivate readonly documentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection>,\n\t\tpublic readonly policies: IDocumentServicePolicies = {},\n\t\tprivate readonly innerDocumentService?: IDocumentService,\n\t\tprivate readonly logger?: ITelemetryBaseLogger,\n\t) {}\n\n\tpublic dispose() {}\n\n\t/**\n\t * Creates and returns a document storage service for local use.\n\t */\n\tpublic async connectToStorage(): Promise<IDocumentStorageService> {\n\t\treturn new LocalDocumentStorageService(\n\t\t\tthis.documentId,\n\t\t\tnew GitManager(\n\t\t\t\tnew TestHistorian(this.localDeltaConnectionServer.testDbFactory.testDatabase),\n\t\t\t),\n\t\t\t{\n\t\t\t\tmaximumCacheDurationMs: 432_000_000, // 5 days in ms. Not actually enforced but shouldn't matter for any local driver scenario\n\t\t\t},\n\t\t\tthis.localDeltaConnectionServer,\n\t\t\tthis.resolvedUrl,\n\t\t);\n\t}\n\n\t/**\n\t * Creates and returns a delta storage service for local use.\n\t */\n\tpublic async connectToDeltaStorage(): Promise<IDocumentDeltaStorageService> {\n\t\tif (this.innerDocumentService) {\n\t\t\treturn this.innerDocumentService.connectToDeltaStorage();\n\t\t}\n\t\treturn new LocalDeltaStorageService(\n\t\t\tthis.tenantId,\n\t\t\tthis.documentId,\n\t\t\tthis.localDeltaConnectionServer.databaseManager,\n\t\t);\n\t}\n\n\t/**\n\t * Creates and returns a delta stream for local use.\n\t * @param client - client data\n\t */\n\tpublic async connectToDeltaStream(client: IClient): Promise<IDocumentDeltaConnection> {\n\t\tif (this.policies.storageOnly === true) {\n\t\t\tthrow new Error(\"can't connect to delta stream in storage-only mode\");\n\t\t}\n\t\tif (this.innerDocumentService) {\n\t\t\treturn this.innerDocumentService.connectToDeltaStream(client);\n\t\t}\n\t\tconst ordererToken = await this.tokenProvider.fetchOrdererToken(\n\t\t\tthis.tenantId,\n\t\t\tthis.documentId,\n\t\t);\n\t\tconst documentDeltaConnection = await LocalDocumentDeltaConnection.create(\n\t\t\tthis.tenantId,\n\t\t\tthis.documentId,\n\t\t\tordererToken.jwt,\n\t\t\tclient,\n\t\t\tthis.localDeltaConnectionServer.webSocketServer,\n\t\t\tundefined,\n\t\t\tthis.logger,\n\t\t);\n\t\tconst clientId = documentDeltaConnection.clientId;\n\n\t\t// Add this document service for the clientId in the document service factory.\n\t\tthis.documentDeltaConnectionsMap.set(clientId, documentDeltaConnection);\n\n\t\t// Add a listener to remove this document service when the client is disconnected.\n\t\tdocumentDeltaConnection.on(\"disconnect\", () => {\n\t\t\tthis.documentDeltaConnectionsMap.delete(clientId);\n\t\t});\n\n\t\treturn documentDeltaConnection;\n\t}\n}\n\n/**\n * Creates and returns a document service for local use.\n * @param localDeltaConnectionServer - delta connection server for ops\n * @param tokenProvider - token provider with a single token\n * @param tenantId - ID of tenant\n * @param documentId - ID of document\n * @internal\n */\nexport function createLocalDocumentService(\n\tresolvedUrl: IResolvedUrl,\n\tlocalDeltaConnectionServer: ILocalDeltaConnectionServer,\n\ttokenProvider: ITokenProvider,\n\ttenantId: string,\n\tdocumentId: string,\n\tdocumentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection>,\n\tpolicies?: IDocumentServicePolicies,\n\tinnerDocumentService?: IDocumentService,\n\tlogger?: ITelemetryBaseLogger,\n): IDocumentService {\n\treturn new LocalDocumentService(\n\t\tresolvedUrl,\n\t\tlocalDeltaConnectionServer,\n\t\ttokenProvider,\n\t\ttenantId,\n\t\tdocumentId,\n\t\tdocumentDeltaConnectionsMap,\n\t\tpolicies,\n\t\tinnerDocumentService,\n\t\tlogger,\n\t);\n}\n"]}
|
|
@@ -10,6 +10,7 @@ import { ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
|
10
10
|
import { LocalDocumentDeltaConnection } from "./localDocumentDeltaConnection";
|
|
11
11
|
/**
|
|
12
12
|
* Basic implementation of a document service for local use.
|
|
13
|
+
* @internal
|
|
13
14
|
*/
|
|
14
15
|
export declare class LocalDocumentService implements IDocumentService {
|
|
15
16
|
readonly resolvedUrl: IResolvedUrl;
|
|
@@ -49,6 +50,7 @@ export declare class LocalDocumentService implements IDocumentService {
|
|
|
49
50
|
* @param tokenProvider - token provider with a single token
|
|
50
51
|
* @param tenantId - ID of tenant
|
|
51
52
|
* @param documentId - ID of document
|
|
53
|
+
* @internal
|
|
52
54
|
*/
|
|
53
55
|
export declare function createLocalDocumentService(resolvedUrl: IResolvedUrl, localDeltaConnectionServer: ILocalDeltaConnectionServer, tokenProvider: ITokenProvider, tenantId: string, documentId: string, documentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection>, policies?: IDocumentServicePolicies, innerDocumentService?: IDocumentService, logger?: ITelemetryBaseLogger): IDocumentService;
|
|
54
56
|
//# sourceMappingURL=localDocumentService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentService.d.ts","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,wBAAwB,EACxB,4BAA4B,EAC5B,gBAAgB,EAChB,wBAAwB,EACxB,uBAAuB,EACvB,YAAY,EACZ,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAGtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAG9E
|
|
1
|
+
{"version":3,"file":"localDocumentService.d.ts","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,wBAAwB,EACxB,4BAA4B,EAC5B,gBAAgB,EAChB,wBAAwB,EACxB,uBAAuB,EACvB,YAAY,EACZ,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAGtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAG9E;;;GAGG;AACH,qBAAa,oBAAqB,YAAW,gBAAgB;aAQ3C,WAAW,EAAE,YAAY;IACzC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,2BAA2B;aAC5B,QAAQ,EAAE,wBAAwB;IAClD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IACtC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC;IAfzB;;;;;OAKG;gBAEc,WAAW,EAAE,YAAY,EACxB,0BAA0B,EAAE,2BAA2B,EACvD,aAAa,EAAE,cAAc,EAC7B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,4BAA4B,CAAC,EACvE,QAAQ,GAAE,wBAA6B,EACtC,oBAAoB,CAAC,8BAAkB,EACvC,MAAM,CAAC,kCAAsB;IAGxC,OAAO;IAEd;;OAEG;IACU,gBAAgB,IAAI,OAAO,CAAC,uBAAuB,CAAC;IAcjE;;OAEG;IACU,qBAAqB,IAAI,OAAO,CAAC,4BAA4B,CAAC;IAW3E;;;OAGG;IACU,oBAAoB,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,wBAAwB,CAAC;CAgCrF;AAED;;;;;;;GAOG;AACH,wBAAgB,0BAA0B,CACzC,WAAW,EAAE,YAAY,EACzB,0BAA0B,EAAE,2BAA2B,EACvD,aAAa,EAAE,cAAc,EAC7B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,4BAA4B,CAAC,EACtE,QAAQ,CAAC,EAAE,wBAAwB,EACnC,oBAAoB,CAAC,EAAE,gBAAgB,EACvC,MAAM,CAAC,EAAE,oBAAoB,GAC3B,gBAAgB,CAYlB"}
|
|
@@ -11,6 +11,7 @@ const localDocumentService_1 = require("./localDocumentService.cjs");
|
|
|
11
11
|
const localCreateDocument_1 = require("./localCreateDocument.cjs");
|
|
12
12
|
/**
|
|
13
13
|
* Implementation of document service factory for local use.
|
|
14
|
+
* @internal
|
|
14
15
|
*/
|
|
15
16
|
class LocalDocumentServiceFactory {
|
|
16
17
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentServiceFactory.cjs","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,6BAA4B;AAQ5B,+EAA4E;AAI5E,qEAAoE;AACpE,mEAAuD;AAEvD
|
|
1
|
+
{"version":3,"file":"localDocumentServiceFactory.cjs","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport { parse } from \"url\";\nimport {\n\tIDocumentService,\n\tIDocumentServiceFactory,\n\tIDocumentServicePolicies,\n\tIResolvedUrl,\n} from \"@fluidframework/driver-definitions\";\nimport { ITelemetryBaseLogger } from \"@fluidframework/core-interfaces\";\nimport { DefaultTokenProvider } from \"@fluidframework/routerlicious-driver\";\nimport { ILocalDeltaConnectionServer } from \"@fluidframework/server-local-server\";\nimport { ISummaryTree, NackErrorType } from \"@fluidframework/protocol-definitions\";\nimport { LocalDocumentDeltaConnection } from \"./localDocumentDeltaConnection\";\nimport { createLocalDocumentService } from \"./localDocumentService\";\nimport { createDocument } from \"./localCreateDocument\";\n\n/**\n * Implementation of document service factory for local use.\n * @internal\n */\nexport class LocalDocumentServiceFactory implements IDocumentServiceFactory {\n\t// A map of clientId to LocalDocumentService.\n\tprivate readonly documentDeltaConnectionsMap: Map<string, LocalDocumentDeltaConnection> =\n\t\tnew Map();\n\n\t/**\n\t * @param localDeltaConnectionServer - delta connection server for ops\n\t */\n\tconstructor(\n\t\tprivate readonly localDeltaConnectionServer: ILocalDeltaConnectionServer,\n\t\tprivate readonly policies?: IDocumentServicePolicies,\n\t\tprivate readonly innerDocumentService?: IDocumentService,\n\t) {}\n\n\tpublic async createContainer(\n\t\tcreateNewSummary: ISummaryTree | undefined,\n\t\tresolvedUrl: IResolvedUrl,\n\t\tlogger?: ITelemetryBaseLogger,\n\t\tclientIsSummarizer?: boolean,\n\t): Promise<IDocumentService> {\n\t\tif (!this.localDeltaConnectionServer) {\n\t\t\tthrow new Error(\"Provide the localDeltaConnectionServer!!\");\n\t\t}\n\t\tif (createNewSummary !== undefined) {\n\t\t\tawait createDocument(this.localDeltaConnectionServer, resolvedUrl, createNewSummary);\n\t\t}\n\t\treturn this.createDocumentService(resolvedUrl, logger, clientIsSummarizer);\n\t}\n\n\t/**\n\t * Creates and returns a document service for testing using the given resolved\n\t * URL for the tenant ID, document ID, and token.\n\t * @param resolvedUrl - resolved URL of document\n\t */\n\tpublic async createDocumentService(\n\t\tresolvedUrl: IResolvedUrl,\n\t\tlogger?: ITelemetryBaseLogger,\n\t\tclientIsSummarizer?: boolean,\n\t): Promise<IDocumentService> {\n\t\tconst parsedUrl = parse(resolvedUrl.url);\n\t\tconst [, tenantId, documentId] = parsedUrl.path ? parsedUrl.path.split(\"/\") : [];\n\t\tif (!documentId || !tenantId) {\n\t\t\tthrow new Error(\n\t\t\t\t`Couldn't parse resolved url. [documentId:${documentId}][tenantId:${tenantId}]`,\n\t\t\t);\n\t\t}\n\n\t\tconst fluidResolvedUrl = resolvedUrl;\n\t\tconst jwtToken = fluidResolvedUrl.tokens.jwt;\n\t\tif (!jwtToken) {\n\t\t\tthrow new Error(`Token was not provided.`);\n\t\t}\n\n\t\tconst tokenProvider = new DefaultTokenProvider(jwtToken);\n\n\t\treturn createLocalDocumentService(\n\t\t\tresolvedUrl,\n\t\t\tthis.localDeltaConnectionServer,\n\t\t\ttokenProvider,\n\t\t\ttenantId,\n\t\t\tdocumentId,\n\t\t\tthis.documentDeltaConnectionsMap,\n\t\t\tthis.policies,\n\t\t\tthis.innerDocumentService,\n\t\t\tlogger,\n\t\t);\n\t}\n\n\t/**\n\t * Gets the document delta connection for the clientId and asks it to disconnect the client.\n\t * @param clientId - The ID of the client to be disconnected.\n\t * @param disconnectReason - The reason of the disconnection.\n\t */\n\tpublic disconnectClient(clientId: string, disconnectReason: string) {\n\t\tconst documentDeltaConnection = this.documentDeltaConnectionsMap.get(clientId);\n\t\tif (documentDeltaConnection === undefined) {\n\t\t\tthrow new Error(`No client with the id: ${clientId}`);\n\t\t}\n\t\tdocumentDeltaConnection.disconnectClient(disconnectReason);\n\t}\n\n\t/**\n\t * Gets the document delta connection for the clientId and asks it to nack the client.\n\t * @param clientId - The ID of the client to be Nack'd.\n\t * @param code - An error code number that represents the error. It will be a valid HTTP error code.\n\t * @param type - Type of the Nack.\n\t * @param message - A message about the nack for debugging/logging/telemetry purposes.\n\t */\n\tpublic nackClient(clientId: string, code?: number, type?: NackErrorType, message?: any) {\n\t\tconst documentDeltaConnection = this.documentDeltaConnectionsMap.get(clientId);\n\t\tif (documentDeltaConnection === undefined) {\n\t\t\tthrow new Error(`No client with the id: ${clientId}`);\n\t\t}\n\t\tdocumentDeltaConnection.nackClient(code, type, message);\n\t}\n}\n"]}
|
|
@@ -8,6 +8,7 @@ import { ILocalDeltaConnectionServer } from "@fluidframework/server-local-server
|
|
|
8
8
|
import { ISummaryTree, NackErrorType } from "@fluidframework/protocol-definitions";
|
|
9
9
|
/**
|
|
10
10
|
* Implementation of document service factory for local use.
|
|
11
|
+
* @internal
|
|
11
12
|
*/
|
|
12
13
|
export declare class LocalDocumentServiceFactory implements IDocumentServiceFactory {
|
|
13
14
|
private readonly localDeltaConnectionServer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentServiceFactory.d.ts","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EACN,gBAAgB,EAChB,uBAAuB,EACvB,wBAAwB,EACxB,YAAY,EACZ,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAKnF
|
|
1
|
+
{"version":3,"file":"localDocumentServiceFactory.d.ts","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EACN,gBAAgB,EAChB,uBAAuB,EACvB,wBAAwB,EACxB,YAAY,EACZ,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAKnF;;;GAGG;AACH,qBAAa,2BAA4B,YAAW,uBAAuB;IASzE,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IAC1B,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IATvC,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CACjC;IAEX;;OAEG;gBAEe,0BAA0B,EAAE,2BAA2B,EACvD,QAAQ,CAAC,sCAA0B,EACnC,oBAAoB,CAAC,8BAAkB;IAG5C,eAAe,CAC3B,gBAAgB,EAAE,YAAY,GAAG,SAAS,EAC1C,WAAW,EAAE,YAAY,EACzB,MAAM,CAAC,EAAE,oBAAoB,EAC7B,kBAAkB,CAAC,EAAE,OAAO,GAC1B,OAAO,CAAC,gBAAgB,CAAC;IAU5B;;;;OAIG;IACU,qBAAqB,CACjC,WAAW,EAAE,YAAY,EACzB,MAAM,CAAC,EAAE,oBAAoB,EAC7B,kBAAkB,CAAC,EAAE,OAAO,GAC1B,OAAO,CAAC,gBAAgB,CAAC;IA8B5B;;;;OAIG;IACI,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM;IAQlE;;;;;;OAMG;IACI,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,GAAG;CAOtF"}
|
|
@@ -10,6 +10,9 @@ const protocol_base_1 = require("@fluidframework/protocol-base");
|
|
|
10
10
|
const server_services_client_1 = require("@fluidframework/server-services-client");
|
|
11
11
|
const localCreateDocument_1 = require("./localCreateDocument.cjs");
|
|
12
12
|
const minTTLInSeconds = 24 * 60 * 60; // Same TTL as ODSP
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
13
16
|
class LocalDocumentStorageService {
|
|
14
17
|
// eslint-disable-next-line @typescript-eslint/class-literal-property-style
|
|
15
18
|
get repositoryUrl() {
|