@theia/remote 1.45.1 → 1.46.0-next.72

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.
Files changed (87) hide show
  1. package/README.md +61 -61
  2. package/lib/electron-browser/remote-electron-file-dialog-service.d.ts +13 -13
  3. package/lib/electron-browser/remote-electron-file-dialog-service.js +57 -57
  4. package/lib/electron-browser/remote-frontend-contribution.d.ts +25 -25
  5. package/lib/electron-browser/remote-frontend-contribution.js +164 -164
  6. package/lib/electron-browser/remote-frontend-module.d.ts +3 -3
  7. package/lib/electron-browser/remote-frontend-module.js +42 -42
  8. package/lib/electron-browser/remote-preferences.d.ts +10 -10
  9. package/lib/electron-browser/remote-preferences.js +48 -48
  10. package/lib/electron-browser/remote-registry-contribution.d.ts +18 -18
  11. package/lib/electron-browser/remote-registry-contribution.js +74 -74
  12. package/lib/electron-browser/remote-service.d.ts +5 -5
  13. package/lib/electron-browser/remote-service.js +37 -37
  14. package/lib/electron-browser/remote-ssh-contribution.d.ts +17 -17
  15. package/lib/electron-browser/remote-ssh-contribution.js +117 -117
  16. package/lib/electron-common/remote-ssh-connection-provider.d.ts +10 -10
  17. package/lib/electron-common/remote-ssh-connection-provider.js +20 -20
  18. package/lib/electron-common/remote-status-service.d.ts +14 -14
  19. package/lib/electron-common/remote-status-service.js +20 -20
  20. package/lib/electron-node/backend-remote-service-impl.d.ts +11 -11
  21. package/lib/electron-node/backend-remote-service-impl.js +50 -50
  22. package/lib/electron-node/remote-backend-module.d.ts +4 -4
  23. package/lib/electron-node/remote-backend-module.js +74 -74
  24. package/lib/electron-node/remote-connection-service.d.ts +14 -14
  25. package/lib/electron-node/remote-connection-service.js +65 -65
  26. package/lib/electron-node/remote-connection-socket-provider.d.ts +8 -8
  27. package/lib/electron-node/remote-connection-socket-provider.js +37 -37
  28. package/lib/electron-node/remote-proxy-server-provider.d.ts +5 -5
  29. package/lib/electron-node/remote-proxy-server-provider.js +43 -43
  30. package/lib/electron-node/remote-status-service.d.ts +6 -6
  31. package/lib/electron-node/remote-status-service.js +54 -54
  32. package/lib/electron-node/remote-types.d.ts +34 -34
  33. package/lib/electron-node/remote-types.js +17 -17
  34. package/lib/electron-node/setup/app-native-dependency-contribution.d.ts +7 -7
  35. package/lib/electron-node/setup/app-native-dependency-contribution.js +57 -57
  36. package/lib/electron-node/setup/main-copy-contribution.d.ts +4 -4
  37. package/lib/electron-node/setup/main-copy-contribution.js +37 -37
  38. package/lib/electron-node/setup/remote-copy-contribution.d.ts +28 -28
  39. package/lib/electron-node/setup/remote-copy-contribution.js +78 -78
  40. package/lib/electron-node/setup/remote-copy-service.d.ts +18 -18
  41. package/lib/electron-node/setup/remote-copy-service.js +126 -126
  42. package/lib/electron-node/setup/remote-native-dependency-contribution.d.ts +34 -34
  43. package/lib/electron-node/setup/remote-native-dependency-contribution.js +34 -34
  44. package/lib/electron-node/setup/remote-native-dependency-service.d.ts +23 -23
  45. package/lib/electron-node/setup/remote-native-dependency-service.js +118 -118
  46. package/lib/electron-node/setup/remote-node-setup-service.d.ts +22 -22
  47. package/lib/electron-node/setup/remote-node-setup-service.js +132 -132
  48. package/lib/electron-node/setup/remote-setup-script-service.d.ts +40 -40
  49. package/lib/electron-node/setup/remote-setup-script-service.js +132 -132
  50. package/lib/electron-node/setup/remote-setup-service.d.ts +28 -28
  51. package/lib/electron-node/setup/remote-setup-service.js +198 -198
  52. package/lib/electron-node/ssh/remote-ssh-connection-provider.d.ts +55 -55
  53. package/lib/electron-node/ssh/remote-ssh-connection-provider.d.ts.map +1 -1
  54. package/lib/electron-node/ssh/remote-ssh-connection-provider.js +344 -342
  55. package/lib/electron-node/ssh/remote-ssh-connection-provider.js.map +1 -1
  56. package/lib/electron-node/ssh/ssh-identity-file-collector.d.ts +12 -12
  57. package/lib/electron-node/ssh/ssh-identity-file-collector.js +131 -131
  58. package/lib/package.spec.js +25 -25
  59. package/package.json +6 -7
  60. package/src/electron-browser/remote-electron-file-dialog-service.ts +47 -47
  61. package/src/electron-browser/remote-frontend-contribution.ts +145 -145
  62. package/src/electron-browser/remote-frontend-module.ts +49 -49
  63. package/src/electron-browser/remote-preferences.ts +62 -62
  64. package/src/electron-browser/remote-registry-contribution.ts +70 -70
  65. package/src/electron-browser/remote-service.ts +31 -31
  66. package/src/electron-browser/remote-ssh-contribution.ts +102 -102
  67. package/src/electron-common/remote-ssh-connection-provider.ts +29 -29
  68. package/src/electron-common/remote-status-service.ts +35 -35
  69. package/src/electron-node/backend-remote-service-impl.ts +45 -45
  70. package/src/electron-node/remote-backend-module.ts +80 -80
  71. package/src/electron-node/remote-connection-service.ts +55 -55
  72. package/src/electron-node/remote-connection-socket-provider.ts +34 -34
  73. package/src/electron-node/remote-proxy-server-provider.ts +37 -37
  74. package/src/electron-node/remote-status-service.ts +41 -41
  75. package/src/electron-node/remote-types.ts +56 -56
  76. package/src/electron-node/setup/app-native-dependency-contribution.ts +48 -48
  77. package/src/electron-node/setup/main-copy-contribution.ts +28 -28
  78. package/src/electron-node/setup/remote-copy-contribution.ts +90 -90
  79. package/src/electron-node/setup/remote-copy-service.ts +114 -114
  80. package/src/electron-node/setup/remote-native-dependency-contribution.ts +63 -63
  81. package/src/electron-node/setup/remote-native-dependency-service.ts +111 -111
  82. package/src/electron-node/setup/remote-node-setup-service.ts +123 -123
  83. package/src/electron-node/setup/remote-setup-script-service.ts +146 -146
  84. package/src/electron-node/setup/remote-setup-service.ts +197 -197
  85. package/src/electron-node/ssh/remote-ssh-connection-provider.ts +358 -356
  86. package/src/electron-node/ssh/ssh-identity-file-collector.ts +137 -137
  87. package/src/package.spec.ts +29 -29
@@ -1,146 +1,146 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2023 TypeFox and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import { OS } from '@theia/core';
18
- import { inject, injectable } from '@theia/core/shared/inversify';
19
- import { RemotePlatform } from '../remote-types';
20
-
21
- export interface RemoteScriptStrategy {
22
- exec(): string;
23
- downloadFile(url: string, output: string): string;
24
- unzip(file: string, directory: string): string;
25
- mkdir(path: string): string;
26
- home(): string;
27
- joinPath(...segments: string[]): string;
28
- joinScript(...segments: string[]): string;
29
- }
30
-
31
- @injectable()
32
- export class RemoteWindowsScriptStrategy implements RemoteScriptStrategy {
33
-
34
- home(): string {
35
- return 'PowerShell -Command $HOME';
36
- }
37
-
38
- exec(): string {
39
- return 'PowerShell -Command';
40
- }
41
-
42
- downloadFile(url: string, output: string): string {
43
- return `PowerShell -Command Invoke-WebRequest -Uri "${url}" -OutFile ${output}`;
44
- }
45
-
46
- unzip(file: string, directory: string): string {
47
- return `tar -xf "${file}" -C "${directory}"`;
48
- }
49
-
50
- mkdir(path: string): string {
51
- return `PowerShell -Command New-Item -Force -itemType Directory -Path "${path}"`;
52
- }
53
-
54
- joinPath(...segments: string[]): string {
55
- return segments.join('\\');
56
- }
57
-
58
- joinScript(...segments: string[]): string {
59
- return segments.join('\r\n');
60
- }
61
- }
62
-
63
- @injectable()
64
- export class RemotePosixScriptStrategy implements RemoteScriptStrategy {
65
-
66
- home(): string {
67
- return 'eval echo ~';
68
- }
69
-
70
- exec(): string {
71
- return 'sh -c';
72
- }
73
-
74
- downloadFile(url: string, output: string): string {
75
- return `
76
- if [ "$(command -v wget)" ]; then
77
- echo "Downloading using wget"
78
- wget -O "${output}" "${url}"
79
- elif [ "$(command -v curl)" ]; then
80
- echo "Downloading using curl"
81
- curl "${url}" --output "${output}"
82
- else
83
- echo "Failed to find wget or curl."
84
- exit 1
85
- fi
86
- `.trim();
87
- }
88
-
89
- unzip(file: string, directory: string): string {
90
- return `tar -xf "${file}" -C "${directory}"`;
91
- }
92
-
93
- mkdir(path: string): string {
94
- return `mkdir -p "${path}"`;
95
- }
96
-
97
- joinPath(...segments: string[]): string {
98
- return segments.join('/');
99
- }
100
-
101
- joinScript(...segments: string[]): string {
102
- return segments.join('\n');
103
- }
104
- }
105
-
106
- @injectable()
107
- export class RemoteSetupScriptService {
108
-
109
- @inject(RemoteWindowsScriptStrategy)
110
- protected windowsStrategy: RemoteWindowsScriptStrategy;
111
-
112
- @inject(RemotePosixScriptStrategy)
113
- protected posixStrategy: RemotePosixScriptStrategy;
114
-
115
- protected getStrategy(platform: RemotePlatform): RemoteScriptStrategy {
116
- return platform.os === OS.Type.Windows ? this.windowsStrategy : this.posixStrategy;
117
- }
118
-
119
- home(platform: RemotePlatform): string {
120
- return this.getStrategy(platform).home();
121
- }
122
-
123
- exec(platform: RemotePlatform): string {
124
- return this.getStrategy(platform).exec();
125
- }
126
-
127
- downloadFile(platform: RemotePlatform, url: string, output: string): string {
128
- return this.getStrategy(platform).downloadFile(url, output);
129
- }
130
-
131
- unzip(platform: RemotePlatform, file: string, directory: string): string {
132
- return this.getStrategy(platform).unzip(file, directory);
133
- }
134
-
135
- mkdir(platform: RemotePlatform, path: string): string {
136
- return this.getStrategy(platform).mkdir(path);
137
- }
138
-
139
- joinPath(platform: RemotePlatform, ...segments: string[]): string {
140
- return this.getStrategy(platform).joinPath(...segments);
141
- }
142
-
143
- joinScript(platform: RemotePlatform, ...segments: string[]): string {
144
- return this.getStrategy(platform).joinScript(...segments);
145
- }
146
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2023 TypeFox and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import { OS } from '@theia/core';
18
+ import { inject, injectable } from '@theia/core/shared/inversify';
19
+ import { RemotePlatform } from '../remote-types';
20
+
21
+ export interface RemoteScriptStrategy {
22
+ exec(): string;
23
+ downloadFile(url: string, output: string): string;
24
+ unzip(file: string, directory: string): string;
25
+ mkdir(path: string): string;
26
+ home(): string;
27
+ joinPath(...segments: string[]): string;
28
+ joinScript(...segments: string[]): string;
29
+ }
30
+
31
+ @injectable()
32
+ export class RemoteWindowsScriptStrategy implements RemoteScriptStrategy {
33
+
34
+ home(): string {
35
+ return 'PowerShell -Command $HOME';
36
+ }
37
+
38
+ exec(): string {
39
+ return 'PowerShell -Command';
40
+ }
41
+
42
+ downloadFile(url: string, output: string): string {
43
+ return `PowerShell -Command Invoke-WebRequest -Uri "${url}" -OutFile ${output}`;
44
+ }
45
+
46
+ unzip(file: string, directory: string): string {
47
+ return `tar -xf "${file}" -C "${directory}"`;
48
+ }
49
+
50
+ mkdir(path: string): string {
51
+ return `PowerShell -Command New-Item -Force -itemType Directory -Path "${path}"`;
52
+ }
53
+
54
+ joinPath(...segments: string[]): string {
55
+ return segments.join('\\');
56
+ }
57
+
58
+ joinScript(...segments: string[]): string {
59
+ return segments.join('\r\n');
60
+ }
61
+ }
62
+
63
+ @injectable()
64
+ export class RemotePosixScriptStrategy implements RemoteScriptStrategy {
65
+
66
+ home(): string {
67
+ return 'eval echo ~';
68
+ }
69
+
70
+ exec(): string {
71
+ return 'sh -c';
72
+ }
73
+
74
+ downloadFile(url: string, output: string): string {
75
+ return `
76
+ if [ "$(command -v wget)" ]; then
77
+ echo "Downloading using wget"
78
+ wget -O "${output}" "${url}"
79
+ elif [ "$(command -v curl)" ]; then
80
+ echo "Downloading using curl"
81
+ curl "${url}" --output "${output}"
82
+ else
83
+ echo "Failed to find wget or curl."
84
+ exit 1
85
+ fi
86
+ `.trim();
87
+ }
88
+
89
+ unzip(file: string, directory: string): string {
90
+ return `tar -xf "${file}" -C "${directory}"`;
91
+ }
92
+
93
+ mkdir(path: string): string {
94
+ return `mkdir -p "${path}"`;
95
+ }
96
+
97
+ joinPath(...segments: string[]): string {
98
+ return segments.join('/');
99
+ }
100
+
101
+ joinScript(...segments: string[]): string {
102
+ return segments.join('\n');
103
+ }
104
+ }
105
+
106
+ @injectable()
107
+ export class RemoteSetupScriptService {
108
+
109
+ @inject(RemoteWindowsScriptStrategy)
110
+ protected windowsStrategy: RemoteWindowsScriptStrategy;
111
+
112
+ @inject(RemotePosixScriptStrategy)
113
+ protected posixStrategy: RemotePosixScriptStrategy;
114
+
115
+ protected getStrategy(platform: RemotePlatform): RemoteScriptStrategy {
116
+ return platform.os === OS.Type.Windows ? this.windowsStrategy : this.posixStrategy;
117
+ }
118
+
119
+ home(platform: RemotePlatform): string {
120
+ return this.getStrategy(platform).home();
121
+ }
122
+
123
+ exec(platform: RemotePlatform): string {
124
+ return this.getStrategy(platform).exec();
125
+ }
126
+
127
+ downloadFile(platform: RemotePlatform, url: string, output: string): string {
128
+ return this.getStrategy(platform).downloadFile(url, output);
129
+ }
130
+
131
+ unzip(platform: RemotePlatform, file: string, directory: string): string {
132
+ return this.getStrategy(platform).unzip(file, directory);
133
+ }
134
+
135
+ mkdir(platform: RemotePlatform, path: string): string {
136
+ return this.getStrategy(platform).mkdir(path);
137
+ }
138
+
139
+ joinPath(platform: RemotePlatform, ...segments: string[]): string {
140
+ return this.getStrategy(platform).joinPath(...segments);
141
+ }
142
+
143
+ joinScript(platform: RemotePlatform, ...segments: string[]): string {
144
+ return this.getStrategy(platform).joinScript(...segments);
145
+ }
146
+ }