-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathprotocol.ts
1241 lines (1072 loc) · 36.1 KB
/
protocol.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
* Licensed under the GNU Affero General Public License (AGPL).
* See License-AGPL.txt in the project root for license information.
*/
import { WorkspaceInstance, PortVisibility } from "./workspace-instance";
import { RoleOrPermission } from "./permission";
import { Project } from "./teams-projects-protocol";
import { createHash } from "crypto";
export interface UserInfo {
name?: string;
}
export interface User {
/** The user id */
id: string;
/** The timestamp when the user entry was created */
creationDate: string;
avatarUrl?: string;
name?: string;
/** Optional for backwards compatibility */
fullName?: string;
identities: Identity[];
/**
* Whether the user has been blocked to use our service, because of TOS violation for example.
* Optional for backwards compatibility.
*/
blocked?: boolean;
/** A map of random settings that alter the behaviour of Gitpod on a per-user basis */
featureFlags?: UserFeatureSettings;
/** The permissions and/or roles the user has */
rolesOrPermissions?: RoleOrPermission[];
/** Whether the user is logical deleted. This flag is respected by all queries in UserDB */
markedDeleted?: boolean;
additionalData?: AdditionalUserData;
}
export namespace User {
export function is(data: any): data is User {
return data && data.hasOwnProperty("id") && data.hasOwnProperty("identities");
}
export function getIdentity(user: User, authProviderId: string): Identity | undefined {
return user.identities.find((id) => id.authProviderId === authProviderId);
}
export function censor(user: User): User {
const res = { ...user };
delete res.additionalData;
res.identities = res.identities.map((i) => {
delete i.tokens;
// The user field is not in the Identity shape, but actually exists on DBIdentity.
// Trying to push this object out via JSON RPC will fail because of the cyclic nature
// of this field.
delete (i as any).user;
return i;
});
return res;
}
export function getPrimaryEmail(user: User): string {
const identities = user.identities.filter((i) => !!i.primaryEmail);
if (identities.length <= 0) {
throw new Error(`No identity with primary email for user: ${user.id}!`);
}
return identities[0].primaryEmail!;
}
export function getName(user: User): string | undefined {
const name = user.fullName || user.name;
if (name) {
return name;
}
for (const id of user.identities) {
if (id.authName !== "") {
return id.authName;
}
}
return undefined;
}
}
export interface AdditionalUserData {
platforms?: UserPlatform[];
emailNotificationSettings?: EmailNotificationSettings;
featurePreview?: boolean;
ideSettings?: IDESettings;
// key is the name of the news, string the iso date when it was seen
whatsNewSeen?: { [key: string]: string };
// key is the name of the OAuth client i.e. local app, string the iso date when it was approved
// TODO(rl): provide a management UX to allow rescinding of approval
oauthClientsApproved?: { [key: string]: string };
// to remember GH Orgs the user installed/updated the GH App for
knownGitHubOrgs?: string[];
// Git clone URL pointing to the user's dotfile repo
dotfileRepo?: string;
}
export interface EmailNotificationSettings {
allowsChangelogMail?: boolean;
allowsDevXMail?: boolean;
allowsOnboardingMail?: boolean;
}
export type IDESettings = {
defaultIde?: string;
useDesktopIde?: boolean;
defaultDesktopIde?: string;
useLatestVersion?: boolean;
};
export interface UserPlatform {
uid: string;
userAgent: string;
browser: string;
os: string;
lastUsed: string;
firstUsed: string;
/**
* Since when does the user have the browser extension installe don this device.
*/
browserExtensionInstalledSince?: string;
/**
* Since when does the user not have the browser extension installed anymore (but previously had).
*/
browserExtensionUninstalledSince?: string;
}
export interface UserFeatureSettings {
/**
* Permanent feature flags are added to each and every workspace instance
* this user starts.
*/
permanentWSFeatureFlags?: NamedWorkspaceFeatureFlag[];
}
/**
* The values of this type MUST MATCH enum values in WorkspaceFeatureFlag from ws-manager/client/core_pb.d.ts
* If they don't we'll break things during workspace startup.
*/
export const WorkspaceFeatureFlags = { full_workspace_backup: undefined, fixed_resources: undefined };
export type NamedWorkspaceFeatureFlag = keyof typeof WorkspaceFeatureFlags;
export interface EnvVarWithValue {
name: string;
value: string;
}
export interface ProjectEnvVarWithValue extends EnvVarWithValue {
id: string;
projectId: string;
censored: boolean;
}
export type ProjectEnvVar = Omit<ProjectEnvVarWithValue, "value">;
export interface UserEnvVarValue extends EnvVarWithValue {
id?: string;
repositoryPattern: string; // DEPRECATED: Use ProjectEnvVar instead of repositoryPattern - https://github.com/gitpod-com/gitpod/issues/5322
}
export interface UserEnvVar extends UserEnvVarValue {
id: string;
userId: string;
deleted?: boolean;
}
export namespace UserEnvVar {
// DEPRECATED: Use ProjectEnvVar instead of repositoryPattern - https://github.com/gitpod-com/gitpod/issues/5322
export function normalizeRepoPattern(pattern: string) {
return pattern.toLocaleLowerCase();
}
// DEPRECATED: Use ProjectEnvVar instead of repositoryPattern - https://github.com/gitpod-com/gitpod/issues/5322
export function score(value: UserEnvVarValue): number {
// We use a score to enforce precedence:
// value/value = 0
// value/* = 1
// */value = 2
// */* = 3
// #/# = 4 (used for env vars passed through the URL)
// the lower the score, the higher the precedence.
const [ownerPattern, repoPattern] = splitRepositoryPattern(value.repositoryPattern);
let score = 0;
if (repoPattern == "*") {
score += 1;
}
if (ownerPattern == "*") {
score += 2;
}
if (ownerPattern == "#" || repoPattern == "#") {
score = 4;
}
return score;
}
// DEPRECATED: Use ProjectEnvVar instead of repositoryPattern - https://github.com/gitpod-com/gitpod/issues/5322
export function filter<T extends UserEnvVarValue>(vars: T[], owner: string, repo: string): T[] {
let result = vars.filter((e) => {
const [ownerPattern, repoPattern] = splitRepositoryPattern(e.repositoryPattern);
if (ownerPattern !== "*" && ownerPattern !== "#" && !!owner && ownerPattern !== owner.toLocaleLowerCase()) {
return false;
}
if (repoPattern !== "*" && repoPattern !== "#" && !!repo && repoPattern !== repo.toLocaleLowerCase()) {
return false;
}
return true;
});
const resmap = new Map<string, T[]>();
result.forEach((e) => {
const l = resmap.get(e.name) || [];
l.push(e);
resmap.set(e.name, l);
});
result = [];
for (const name of resmap.keys()) {
const candidates = resmap.get(name);
if (!candidates) {
// not sure how this can happen, but so be it
continue;
}
if (candidates.length == 1) {
result.push(candidates[0]);
continue;
}
let minscore = 10;
let bestCandidate: T | undefined;
for (const e of candidates) {
const score = UserEnvVar.score(e);
if (!bestCandidate || score < minscore) {
minscore = score;
bestCandidate = e;
}
}
result.push(bestCandidate!);
}
return result;
}
// DEPRECATED: Use ProjectEnvVar instead of repositoryPattern - https://github.com/gitpod-com/gitpod/issues/5322
export function splitRepositoryPattern(repositoryPattern: string): string[] {
const patterns = repositoryPattern.split("/");
const repoPattern = patterns.slice(1).join("/");
const ownerPattern = patterns[0];
return [ownerPattern, repoPattern];
}
}
export interface GitpodToken {
/** Hash value (SHA256) of the token (primary key). */
tokenHash: string;
/** Human readable name of the token */
name?: string;
/** Token kind */
type: GitpodTokenType;
/** The user the token belongs to. */
user: User;
/** Scopes (e.g. limition to read-only) */
scopes: string[];
/** Created timestamp */
created: string;
// token is deleted on the database and about to be collected by db-sync
deleted?: boolean;
}
export enum GitpodTokenType {
API_AUTH_TOKEN = 0,
MACHINE_AUTH_TOKEN = 1,
}
export interface OneTimeSecret {
id: string;
value: string;
expirationTime: string;
deleted: boolean;
}
export interface WorkspaceInstanceUser {
name?: string;
avatarUrl?: string;
instanceId: string;
userId: string;
lastSeen: string;
}
export interface Identity {
authProviderId: string;
authId: string;
authName: string;
primaryEmail?: string;
/** @deprecated */
tokens?: Token[];
/** This is a flag that triggers the HARD DELETION of this entity */
deleted?: boolean;
// readonly identities cannot be modified by the user
readonly?: boolean;
}
export type IdentityLookup = Pick<Identity, "authProviderId" | "authId">;
export namespace Identity {
export function is(data: any): data is Identity {
return (
data.hasOwnProperty("authProviderId") && data.hasOwnProperty("authId") && data.hasOwnProperty("authName")
);
}
export function equals(id1: IdentityLookup, id2: IdentityLookup) {
return id1.authProviderId === id2.authProviderId && id1.authId === id2.authId;
}
}
export interface Token {
value: string;
scopes: string[];
updateDate?: string;
expiryDate?: string;
idToken?: string;
refreshToken?: string;
username?: string;
}
export interface TokenEntry {
uid: string;
authProviderId: string;
authId: string;
token: Token;
expiryDate?: string;
refreshable?: boolean;
/** This is a flag that triggers the HARD DELETION of this entity */
deleted?: boolean;
}
export interface EmailDomainFilterEntry {
domain: string;
negative: boolean;
}
export interface EduEmailDomain {
domain: string;
}
export type AppInstallationPlatform = "github";
export type AppInstallationState = "claimed.user" | "claimed.platform" | "installed" | "uninstalled";
export interface AppInstallation {
platform: AppInstallationPlatform;
installationID: string;
ownerUserID?: string;
platformUserID?: string;
state: AppInstallationState;
creationTime: string;
lastUpdateTime: string;
}
export interface PendingGithubEvent {
id: string;
githubUserId: string;
creationDate: Date;
type: string;
event: string;
}
export interface Snapshot {
id: string;
creationTime: string;
availableTime?: string;
originalWorkspaceId: string;
bucketId: string;
layoutData?: string;
state: SnapshotState;
message?: string;
}
export type SnapshotState = "pending" | "available" | "error";
export interface LayoutData {
workspaceId: string;
lastUpdatedTime: string;
layoutData: string;
}
export interface Workspace {
id: string;
creationTime: string;
contextURL: string;
description: string;
ownerId: string;
projectId?: string;
context: WorkspaceContext;
config: WorkspaceConfig;
/**
* The source where to get the workspace base image from. This source is resolved
* during workspace creation. Once a base image has been built the information in here
* is superseded by baseImageNameResolved.
*/
imageSource?: WorkspaceImageSource;
/**
* The resolved, fix name of the workspace image. We only use this
* to access the logs during an image build.
*/
imageNameResolved?: string;
/**
* The resolved/built fixed named of the base image. This field is only set if the workspace
* already has its base image built.
*/
baseImageNameResolved?: string;
shareable?: boolean;
pinned?: boolean;
// workspace is hard-deleted on the database and about to be collected by db-sync
readonly deleted?: boolean;
/**
* Mark as deleted (user-facing). The actual deletion of the workspace content is executed
* with a (configurable) delay
*/
softDeleted?: WorkspaceSoftDeletion;
/**
* Marks the time when the workspace was marked as softDeleted. The actual deletion of the
* workspace content happens after a configurable period
*/
softDeletedTime?: string;
/**
* Marks the time when the workspace content has been deleted.
*/
contentDeletedTime?: string;
type: WorkspaceType;
basedOnPrebuildId?: string;
basedOnSnapshotId?: string;
}
export type WorkspaceSoftDeletion = "user" | "gc";
export type WorkspaceType = "regular" | "prebuild" | "probe";
export namespace Workspace {
export function getFullRepositoryName(ws: Workspace): string | undefined {
if (CommitContext.is(ws.context)) {
return ws.context.repository.owner + "/" + ws.context.repository.name;
}
return undefined;
}
export function getFullRepositoryUrl(ws: Workspace): string | undefined {
if (CommitContext.is(ws.context)) {
return `https://${ws.context.repository.host}/${getFullRepositoryName(ws)}`;
}
return undefined;
}
export function getPullRequestNumber(ws: Workspace): number | undefined {
if (PullRequestContext.is(ws.context)) {
return ws.context.nr;
}
return undefined;
}
export function getIssueNumber(ws: Workspace): number | undefined {
if (IssueContext.is(ws.context)) {
return ws.context.nr;
}
return undefined;
}
export function getBranchName(ws: Workspace): string | undefined {
if (CommitContext.is(ws.context)) {
return ws.context.ref;
}
return undefined;
}
export function getCommit(ws: Workspace): string | undefined {
if (CommitContext.is(ws.context)) {
return ws.context.revision && ws.context.revision.substr(0, 8);
}
return undefined;
}
}
export interface GuessGitTokenScopesParams {
host: string;
repoUrl: string;
gitCommand: string;
currentToken: GitToken;
}
export interface GitToken {
token: string;
user: string;
scopes: string[];
}
export interface GuessedGitTokenScopes {
message?: string;
scopes?: string[];
}
export interface VSCodeConfig {
extensions?: string[];
}
export interface RepositoryCloneInformation {
url: string;
checkoutLocation?: string;
}
export interface WorkspaceConfig {
mainConfiguration?: string;
additionalRepositories?: RepositoryCloneInformation[];
image?: ImageConfig;
ports?: PortConfig[];
tasks?: TaskConfig[];
checkoutLocation?: string;
workspaceLocation?: string;
gitConfig?: { [config: string]: string };
github?: GithubAppConfig;
vscode?: VSCodeConfig;
/** deprecated. Enabled by default **/
experimentalNetwork?: boolean;
/**
* Where the config object originates from.
*
* repo - from the repository
* project-db - from the "Project" stored in the database
* definitly-gp - from github.com/gitpod-io/definitely-gp
* derived - computed based on analyzing the repository
* additional-content - config comes from additional content, usually provided through the project's configuration
* default - our static catch-all default config
*/
_origin?: "repo" | "project-db" | "definitely-gp" | "derived" | "additional-content" | "default";
/**
* Set of automatically infered feature flags. That's not something the user can set, but
* that is set by gitpod at workspace creation time.
*/
_featureFlags?: NamedWorkspaceFeatureFlag[];
}
export interface GithubAppConfig {
prebuilds?: GithubAppPrebuildConfig;
}
export interface GithubAppPrebuildConfig {
master?: boolean;
branches?: boolean;
pullRequests?: boolean;
pullRequestsFromForks?: boolean;
addCheck?: boolean | "prevent-merge-on-error";
addBadge?: boolean;
addLabel?: boolean | string;
addComment?: boolean;
}
export namespace GithubAppPrebuildConfig {
export function is(obj: boolean | GithubAppPrebuildConfig): obj is GithubAppPrebuildConfig {
return !(typeof obj === "boolean");
}
}
export type WorkspaceImageSource = WorkspaceImageSourceDocker | WorkspaceImageSourceReference;
export interface WorkspaceImageSourceDocker {
dockerFilePath: string;
dockerFileHash: string;
dockerFileSource?: Commit;
}
export namespace WorkspaceImageSourceDocker {
export function is(obj: object): obj is WorkspaceImageSourceDocker {
return "dockerFileHash" in obj && "dockerFilePath" in obj;
}
}
export interface WorkspaceImageSourceReference {
/** The resolved, fix base image reference */
baseImageResolved: string;
}
export namespace WorkspaceImageSourceReference {
export function is(obj: object): obj is WorkspaceImageSourceReference {
return "baseImageResolved" in obj;
}
}
export type PrebuiltWorkspaceState =
// the prebuild is queued and may start at anytime
| "queued"
// the workspace prebuild is currently running (i.e. there's a workspace pod deployed)
| "building"
// the prebuild was aborted
| "aborted"
// the prebuild timed out
| "timeout"
// the prebuild has finished (even if a headless task failed) and a snapshot is available
| "available"
// the prebuild (headless workspace) failed due to some system error
| "failed";
export interface PrebuiltWorkspace {
id: string;
cloneURL: string;
branch?: string;
projectId?: string;
commit: string;
buildWorkspaceId: string;
creationTime: string;
state: PrebuiltWorkspaceState;
statusVersion: number;
error?: string;
snapshot?: string;
}
export namespace PrebuiltWorkspace {
export function isDone(pws: PrebuiltWorkspace) {
return pws.state === "available" || pws.state === "timeout" || pws.state === "aborted";
}
export function isAvailable(pws: PrebuiltWorkspace) {
return pws.state === "available" && !!pws.snapshot;
}
export function buildDidSucceed(pws: PrebuiltWorkspace) {
return pws.state === "available" && !pws.error;
}
}
export interface PrebuiltWorkspaceUpdatable {
id: string;
prebuiltWorkspaceId: string;
owner: string;
repo: string;
isResolved: boolean;
installationId: string;
/**
* the commitSHA of the commit that triggered the prebuild
*/
commitSHA?: string;
issue?: string;
contextUrl?: string;
}
export interface WhitelistedRepository {
url: string;
name: string;
description?: string;
avatar?: string;
}
export type PortOnOpen = "open-browser" | "open-preview" | "notify" | "ignore";
export interface PortConfig {
port: number;
onOpen?: PortOnOpen;
visibility?: PortVisibility;
description?: string;
name?: string;
}
export namespace PortConfig {
export function is(config: any): config is PortConfig {
return config && "port" in config && typeof config.port === "number";
}
}
export interface PortRangeConfig {
port: string;
onOpen?: PortOnOpen;
}
export namespace PortRangeConfig {
export function is(config: any): config is PortRangeConfig {
return config && "port" in config && (typeof config.port === "string" || config.port instanceof String);
}
}
export interface TaskConfig {
name?: string;
before?: string;
init?: string;
prebuild?: string;
command?: string;
env?: { [env: string]: any };
openIn?: "bottom" | "main" | "left" | "right";
openMode?: "split-top" | "split-left" | "split-right" | "split-bottom" | "tab-before" | "tab-after";
}
export namespace TaskConfig {
export function is(config: any): config is TaskConfig {
return config && ("command" in config || "init" in config || "before" in config);
}
}
export namespace WorkspaceImageBuild {
export type Phase = "BaseImage" | "GitpodLayer" | "Error" | "Done";
export interface StateInfo {
phase: Phase;
currentStep?: number;
maxSteps?: number;
}
export interface LogContent {
text: string;
upToLine?: number;
isDiff?: boolean;
}
export type LogCallback = (info: StateInfo, content: LogContent | undefined) => void;
export namespace LogLine {
export const DELIMITER = "\r\n";
export const DELIMITER_REGEX = /\r?\n/;
}
}
export type ImageConfig = ImageConfigString | ImageConfigFile;
export type ImageConfigString = string;
export namespace ImageConfigString {
export function is(config: ImageConfig | undefined): config is ImageConfigString {
return typeof config === "string";
}
}
export interface ImageConfigFile {
// Path to the Dockerfile relative to repository root
file: string;
// Path to the docker build context relative to repository root
context?: string;
}
export namespace ImageConfigFile {
export function is(config: ImageConfig | undefined): config is ImageConfigFile {
return typeof config === "object" && "file" in config;
}
}
export interface ExternalImageConfigFile extends ImageConfigFile {
externalSource: Commit;
}
export namespace ExternalImageConfigFile {
export function is(config: any | undefined): config is ExternalImageConfigFile {
return typeof config === "object" && "file" in config && "externalSource" in config;
}
}
export interface WorkspaceContext {
title: string;
/** This contains the URL portion of the contextURL (which might contain other modifiers as well). It's optional because it's not set for older workspaces. */
normalizedContextURL?: string;
forceCreateNewWorkspace?: boolean;
forceImageBuild?: boolean;
}
export namespace WorkspaceContext {
export function is(context: any): context is WorkspaceContext {
return context && "title" in context;
}
}
export interface WithSnapshot {
snapshotBucketId: string;
}
export namespace WithSnapshot {
export function is(context: any): context is WithSnapshot {
return context && "snapshotBucketId" in context;
}
}
export interface WithPrebuild extends WithSnapshot {
prebuildWorkspaceId: string;
wasPrebuilt: true;
}
export namespace WithPrebuild {
export function is(context: any): context is WithPrebuild {
return context && WithSnapshot.is(context) && "prebuildWorkspaceId" in context && "wasPrebuilt" in context;
}
}
/**
* WithDefaultConfig contexts disable the download of the gitpod.yml from the repository
* and fall back to the built-in configuration.
*/
export interface WithDefaultConfig {
withDefaultConfig: true;
}
export namespace WithDefaultConfig {
export function is(context: any): context is WithDefaultConfig {
return context && "withDefaultConfig" in context && context.withDefaultConfig;
}
export function mark(ctx: WorkspaceContext): WorkspaceContext & WithDefaultConfig {
return {
...ctx,
withDefaultConfig: true,
};
}
}
export interface SnapshotContext extends WorkspaceContext, WithSnapshot {
snapshotId: string;
}
export namespace SnapshotContext {
export function is(context: any): context is SnapshotContext {
return context && WithSnapshot.is(context) && "snapshotId" in context;
}
}
export interface StartPrebuildContext extends WorkspaceContext {
actual: WorkspaceContext;
commitHistory?: string[];
additionalRepositoryCommitHistories?: {
cloneUrl: string;
commitHistory: string[];
}[];
project?: Project;
branch?: string;
}
export namespace StartPrebuildContext {
export function is(context: any): context is StartPrebuildContext {
return context && "actual" in context;
}
}
export interface PrebuiltWorkspaceContext extends WorkspaceContext {
originalContext: WorkspaceContext;
prebuiltWorkspace: PrebuiltWorkspace;
snapshotBucketId?: string;
}
export namespace PrebuiltWorkspaceContext {
export function is(context: any): context is PrebuiltWorkspaceContext {
return context && "originalContext" in context && "prebuiltWorkspace" in context;
}
}
export interface WithReferrerContext extends WorkspaceContext {
referrer: string;
referrerIde?: string;
}
export namespace WithReferrerContext {
export function is(context: any): context is WithReferrerContext {
return context && "referrer" in context;
}
}
export interface WithEnvvarsContext extends WorkspaceContext {
envvars: EnvVarWithValue[];
}
export namespace WithEnvvarsContext {
export function is(context: any): context is WithEnvvarsContext {
return context && "envvars" in context;
}
}
export interface WorkspaceProbeContext extends WorkspaceContext {
responseURL: string;
responseToken: string;
}
export namespace WorkspaceProbeContext {
export function is(context: any): context is WorkspaceProbeContext {
return context && "responseURL" in context && "responseToken" in context;
}
}
export type RefType = "branch" | "tag" | "revision";
export namespace RefType {
export const getRefType = (commit: Commit): RefType => {
if (!commit.ref) {
return "revision";
}
// This fallback is meant to handle the cases where (for historic reasons) ref is present but refType is missing
return commit.refType || "branch";
};
}
export interface Commit {
repository: Repository;
revision: string;
// Might contain either a branch or a tag (determined by refType)
ref?: string;
// refType is only set if ref is present (and not for old workspaces, before this feature was added)
refType?: RefType;
}
export interface AdditionalContentContext extends WorkspaceContext {
/**
* utf-8 encoded contents that will be copied on top of the workspace's filesystem
*/
additionalFiles: { [filePath: string]: string };
}
export namespace AdditionalContentContext {
export function is(ctx: any): ctx is AdditionalContentContext {
return "additionalFiles" in ctx;
}
export function hasDockerConfig(ctx: any, config: WorkspaceConfig): boolean {
return is(ctx) && ImageConfigFile.is(config.image) && !!ctx.additionalFiles[config.image.file];
}
}
export interface CommitContext extends WorkspaceContext, GitCheckoutInfo {
/** @deprecated Moved to .repository.cloneUrl, left here for backwards-compatibility for old workspace contextes in the DB */
cloneUrl?: string;
/**
* The clone and checkout information for additional repositories in case of multi-repo projects.
*/
additionalRepositoryCheckoutInfo?: GitCheckoutInfo[];
}
export namespace CommitContext {
/**
* Creates a hash for all the commits of the CommitContext and all sub-repo commit infos.
* The hash is max 255 chars long.
* @param commitContext
* @returns hash for commitcontext
*/
export function computeHash(commitContext: CommitContext): string {
// for single commits we use the revision to be backward compatible.
if (
!commitContext.additionalRepositoryCheckoutInfo ||
commitContext.additionalRepositoryCheckoutInfo.length === 0
) {
return commitContext.revision;
}
const hasher = createHash("sha256");
hasher.update(commitContext.revision);
for (const info of commitContext.additionalRepositoryCheckoutInfo) {
hasher.update(info.revision);
}
return hasher.digest("hex");
}
}
export interface GitCheckoutInfo extends Commit {
checkoutLocation?: string;
upstreamRemoteURI?: string;
localBranch?: string;
}
export namespace CommitContext {
export function is(commit: any): commit is CommitContext {
return WorkspaceContext.is(commit) && "repository" in commit && "revision" in commit;
}
}
export interface PullRequestContext extends CommitContext {
nr: number;
ref: string;
base: {
repository: Repository;
ref: string;
};
}
export namespace PullRequestContext {
export function is(ctx: any): ctx is PullRequestContext {
return CommitContext.is(ctx) && "nr" in ctx && "ref" in ctx && "base" in ctx;
}
}
export interface IssueContext extends CommitContext {
nr: number;
ref: string;
localBranch: string;
}
export namespace IssueContext {
export function is(ctx: any): ctx is IssueContext {
return CommitContext.is(ctx) && "nr" in ctx && "ref" in ctx && "localBranch" in ctx;
}