Skip to content

Commit 726ab09

Browse files
mustard-mhjeanp413
andcommitted
[JetBrains] try it out
Co-authored-by: Jean Pierre <[email protected]>
1 parent 8f643e7 commit 726ab09

39 files changed

+2542
-0
lines changed

components/ide/jetbrains/launcher/main.go

+41
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,13 @@ func main() {
178178
launch(launchCtx)
179179
return
180180
}
181+
182+
err = configureToolboxCliProperties(backendDir)
183+
if err != nil {
184+
log.WithError(err).Error("failed to write toolbox cli config file")
185+
return
186+
}
187+
181188
// we should start serving immediately and postpone launch
182189
// in order to enable a JB Gateway to connect as soon as possible
183190
go launch(launchCtx)
@@ -1183,3 +1190,37 @@ func resolveProjectContextDir(launchCtx *LaunchContext) string {
11831190

11841191
return launchCtx.projectDir
11851192
}
1193+
1194+
func configureToolboxCliProperties(backendDir string) error {
1195+
userHomeDir, err := os.UserHomeDir()
1196+
if err != nil {
1197+
return err
1198+
}
1199+
1200+
toolboxCliPropertiesDir := fmt.Sprintf("%s/.local/share/JetBrains/Toolbox", userHomeDir)
1201+
_, err = os.Stat(toolboxCliPropertiesDir)
1202+
if !os.IsNotExist(err) {
1203+
return err
1204+
}
1205+
err = os.MkdirAll(toolboxCliPropertiesDir, os.ModePerm)
1206+
if err != nil {
1207+
return err
1208+
}
1209+
1210+
toolboxCliPropertiesFilePath := fmt.Sprintf("%s/environment.json", toolboxCliPropertiesDir)
1211+
1212+
content := fmt.Sprintf(`{
1213+
"tools": {
1214+
"allowInstallation": false,
1215+
"allowUpdate": false,
1216+
"allowUninstallation": false,
1217+
"location": [
1218+
{
1219+
"path": "%s"
1220+
}
1221+
]
1222+
}
1223+
}`, backendDir)
1224+
1225+
return os.WriteFile(toolboxCliPropertiesFilePath, []byte(content), 0o644)
1226+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Gradle
2+
.gradle
3+
build
4+
5+
# IntelliJ IDEA
6+
.idea
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Gitpod Toolbox Plugin
2+
3+
To load plugin into the provided Toolbox App, run `./gradlew build copyPlugin`
4+
5+
or put files in the following directory:
6+
7+
* Windows: `%LocalAppData%/JetBrains/Toolbox/cache/plugins/plugin-id`
8+
* macOS: `~/Library/Caches/JetBrains/Toolbox/plugins/plugin-id`
9+
* Linux: `~/.local/share/JetBrains/Toolbox/plugins/plugin-id`
10+
11+
12+
## How to Develop
13+
14+
- Open the Toolbox App in debug mode
15+
```bash
16+
TOOLBOX_DEV_DEBUG_SUSPEND=true && open /Applications/JetBrains\ Toolbox.app
17+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
import com.github.jk1.license.filter.ExcludeTransitiveDependenciesFilter
2+
import com.github.jk1.license.render.JsonReportRenderer
3+
import org.jetbrains.intellij.pluginRepository.PluginRepositoryFactory
4+
import org.jetbrains.kotlin.com.intellij.openapi.util.SystemInfoRt
5+
import java.nio.file.Path
6+
import kotlin.io.path.div
7+
8+
plugins {
9+
alias(libs.plugins.kotlin)
10+
alias(libs.plugins.serialization)
11+
`java-library`
12+
alias(libs.plugins.dependency.license.report)
13+
id("com.github.johnrengelman.shadow") version "8.1.1"
14+
}
15+
16+
buildscript {
17+
dependencies {
18+
classpath(libs.marketplace.client)
19+
}
20+
}
21+
22+
repositories {
23+
mavenCentral()
24+
maven("https://packages.jetbrains.team/maven/p/tbx/gateway")
25+
}
26+
27+
dependencies {
28+
implementation(project(":supervisor-api"))
29+
implementation(project(":gitpod-publicapi"))
30+
31+
// connect rpc dependencies
32+
implementation("com.squareup.okhttp3:okhttp:4.12.0")
33+
implementation("com.connectrpc:connect-kotlin-okhttp:0.6.0")
34+
implementation("com.connectrpc:connect-kotlin:0.6.0")
35+
// Java specific dependencies.
36+
implementation("com.connectrpc:connect-kotlin-google-java-ext:0.6.0")
37+
implementation("com.google.protobuf:protobuf-java:4.26.0")
38+
// WebSocket
39+
compileOnly("javax.websocket:javax.websocket-api:1.1")
40+
compileOnly("org.eclipse.jetty.websocket:websocket-api:9.4.54.v20240208")
41+
implementation("org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.54.v20240208")
42+
// RD-Core
43+
implementation("com.jetbrains.rd:rd-core:2024.1.1")
44+
45+
implementation(libs.gateway.api)
46+
implementation(libs.slf4j)
47+
implementation(libs.bundles.serialization)
48+
implementation(libs.coroutines.core)
49+
implementation(libs.okhttp)
50+
}
51+
52+
53+
val pluginId = "io.gitpod.toolbox.gateway"
54+
val pluginVersion = "0.0.1"
55+
56+
tasks.shadowJar {
57+
archiveBaseName.set(pluginId)
58+
archiveVersion.set(pluginVersion)
59+
60+
val excludedGroups = listOf(
61+
"com.jetbrains.toolbox.gateway",
62+
"com.jetbrains",
63+
"org.jetbrains",
64+
"com.squareup.okhttp3",
65+
"org.slf4j",
66+
"org.jetbrains.intellij",
67+
"com.squareup.okio",
68+
"kotlin."
69+
)
70+
71+
val includeGroups = listOf(
72+
"com.jetbrains.rd"
73+
)
74+
75+
dependencies {
76+
exclude {
77+
excludedGroups.any { group ->
78+
if (includeGroups.any { includeGroup -> it.name.startsWith(includeGroup) }) {
79+
return@any false
80+
}
81+
it.name.startsWith(group)
82+
}
83+
}
84+
}
85+
}
86+
87+
licenseReport {
88+
renderers = arrayOf(JsonReportRenderer("dependencies.json"))
89+
filters = arrayOf(ExcludeTransitiveDependenciesFilter())
90+
// jq script to convert to our format:
91+
// `jq '[.dependencies[] | {name: .moduleName, version: .moduleVersion, url: .moduleUrl, license: .moduleLicense, licenseUrl: .moduleLicenseUrl}]' < build/reports/dependency-license/dependencies.json > src/main/resources/dependencies.json`
92+
}
93+
94+
tasks.compileKotlin {
95+
kotlinOptions.freeCompilerArgs += listOf(
96+
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
97+
)
98+
}
99+
100+
val restartToolbox by tasks.creating {
101+
group = "01.Gitpod"
102+
description = "Restarts the JetBrains Toolbox app."
103+
104+
doLast {
105+
when {
106+
SystemInfoRt.isMac -> {
107+
exec {
108+
commandLine("sh", "-c", "pkill -f 'JetBrains Toolbox' || true")
109+
}
110+
Thread.sleep(3000)
111+
exec {
112+
commandLine("sh", "-c", "echo debugClean > ~/Library/Logs/JetBrains/Toolbox/toolbox.log")
113+
}
114+
exec {
115+
commandLine("open", "/Applications/JetBrains Toolbox.app")
116+
}
117+
}
118+
else -> {
119+
println("restart Toolbox to make plugin works.")
120+
}
121+
}
122+
}
123+
}
124+
125+
val copyPlugin by tasks.creating(Sync::class.java) {
126+
group = "01.Gitpod"
127+
128+
dependsOn(tasks.named("shadowJar"))
129+
from(tasks.named("shadowJar").get().outputs.files)
130+
131+
val userHome = System.getProperty("user.home").let { Path.of(it) }
132+
val toolboxCachesDir = when {
133+
SystemInfoRt.isWindows -> System.getenv("LOCALAPPDATA")?.let { Path.of(it) } ?: (userHome / "AppData" / "Local")
134+
// currently this is the location that TBA uses on Linux
135+
SystemInfoRt.isLinux -> System.getenv("XDG_DATA_HOME")?.let { Path.of(it) } ?: (userHome / ".local" / "share")
136+
SystemInfoRt.isMac -> userHome / "Library" / "Caches"
137+
else -> error("Unknown os")
138+
} / "JetBrains" / "Toolbox"
139+
140+
val pluginsDir = when {
141+
SystemInfoRt.isWindows -> toolboxCachesDir / "cache"
142+
SystemInfoRt.isLinux || SystemInfoRt.isMac -> toolboxCachesDir
143+
else -> error("Unknown os")
144+
} / "plugins"
145+
146+
val targetDir = pluginsDir / pluginId
147+
148+
from("src/main/resources") {
149+
include("extension.json")
150+
include("dependencies.json")
151+
include("icon.svg")
152+
}
153+
154+
into(targetDir)
155+
156+
finalizedBy(restartToolbox)
157+
}
158+
159+
val pluginZip by tasks.creating(Zip::class) {
160+
dependsOn(tasks.named("shadowJar"))
161+
from(tasks.named("shadowJar").get().outputs.files)
162+
163+
from("src/main/resources") {
164+
include("extension.json")
165+
include("dependencies.json")
166+
}
167+
from("src/main/resources") {
168+
include("icon.svg")
169+
rename("icon.svg", "pluginIcon.svg")
170+
}
171+
archiveBaseName.set("$pluginId-$pluginVersion")
172+
}
173+
174+
val uploadPlugin by tasks.creating {
175+
dependsOn(pluginZip)
176+
177+
doLast {
178+
val instance = PluginRepositoryFactory.create(
179+
"https://plugins.jetbrains.com",
180+
project.property("pluginMarketplaceToken").toString()
181+
)
182+
183+
// first upload
184+
// instance.uploader.uploadNewPlugin(pluginZip.outputs.files.singleFile, listOf("toolbox", "gateway"), LicenseUrl.APACHE_2_0, ProductFamily.TOOLBOX)
185+
186+
// subsequent updates
187+
instance.uploader.upload(pluginId, pluginZip.outputs.files.singleFile)
188+
}
189+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pluginVersion=0.0.1
2+
environmentName=latest
3+
supervisorApiProjectPath=../../../supervisor-api/java
4+
gitpodPublicApiProjectPath=../../../public-api/java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[versions]
2+
gateway = "2.4.0.30948"
3+
kotlin = "1.9.0"
4+
coroutines = "1.7.3"
5+
serialization = "1.5.0"
6+
okhttp = "4.10.0"
7+
slf4j = "2.0.3"
8+
dependency-license-report = "2.5"
9+
marketplace-client = "2.0.38"
10+
11+
[libraries]
12+
kotlin-stdlib = { module = "com.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
13+
gateway-api = { module = "com.jetbrains.toolbox.gateway:gateway-api", version.ref = "gateway" }
14+
coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
15+
serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "serialization" }
16+
serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization" }
17+
serialization-json-okio = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json-okio", version.ref = "serialization" }
18+
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
19+
slf4j = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
20+
21+
marketplace-client = { module = "org.jetbrains.intellij:plugin-repository-rest-client", version.ref = "marketplace-client" }
22+
23+
[bundles]
24+
serialization = [ "serialization-core", "serialization-json", "serialization-json-okio" ]
25+
26+
[plugins]
27+
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
28+
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
29+
dependency-license-report = { id = "com.github.jk1.dependency-license-report", version.ref = "dependency-license-report" }
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
4+
networkTimeout=10000
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)