|
| 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 | +} |
0 commit comments