@@ -257,7 +257,6 @@ class CoderCLIManager(
257
257
val host = deploymentURL.safeHost()
258
258
val startBlock = " # --- START CODER JETBRAINS $host "
259
259
val endBlock = " # --- END CODER JETBRAINS $host "
260
- val isRemoving = workspaceNames.isEmpty()
261
260
val baseArgs =
262
261
listOfNotNull(
263
262
escape(localBinaryPath.toString()),
@@ -308,35 +307,36 @@ class CoderCLIManager(
308
307
Host ${getHostPrefix()} -bg--*
309
308
ProxyCommand ${backgroundProxyArgs.joinToString(" " )} --ssh-host-prefix ${getHostPrefix()} -bg-- %h
310
309
""" .trimIndent()
311
- .plus(" \n " + sshOpts.prependIndent(" " ))
312
- .plus(extraConfig),
310
+ .plus(" \n " + sshOpts.prependIndent(" " ))
311
+ .plus(extraConfig),
313
312
).replace(" \n " , System .lineSeparator()) +
314
313
System .lineSeparator() + endBlock
315
-
316
- } else {
317
- workspaceNames.joinToString(
318
- System .lineSeparator(),
319
- startBlock + System .lineSeparator(),
320
- System .lineSeparator() + endBlock,
321
- transform = {
322
- """
314
+ } else if (workspaceNames.isEmpty()) {
315
+ " "
316
+ } else {
317
+ workspaceNames.joinToString(
318
+ System .lineSeparator(),
319
+ startBlock + System .lineSeparator(),
320
+ System .lineSeparator() + endBlock,
321
+ transform = {
322
+ """
323
323
Host ${getHostName(it.first, currentUser, it.second)}
324
324
ProxyCommand ${proxyArgs.joinToString(" " )} ${getWorkspaceParts(it.first, it.second)}
325
- """ .trimIndent()
326
- .plus(" \n " + sshOpts.prependIndent(" " ))
327
- .plus(extraConfig)
328
- .plus(" \n " )
329
- .plus(
330
- """
325
+ """ .trimIndent()
326
+ .plus(" \n " + sshOpts.prependIndent(" " ))
327
+ .plus(extraConfig)
328
+ .plus(" \n " )
329
+ .plus(
330
+ """
331
331
Host ${getBackgroundHostName(it.first, currentUser, it.second)}
332
332
ProxyCommand ${backgroundProxyArgs.joinToString(" " )} ${getWorkspaceParts(it.first, it.second)}
333
- """ .trimIndent()
334
- .plus(" \n " + sshOpts.prependIndent(" " ))
335
- .plus(extraConfig),
336
- ).replace(" \n " , System .lineSeparator())
337
- },
338
- )
339
- }
333
+ """ .trimIndent()
334
+ .plus(" \n " + sshOpts.prependIndent(" " ))
335
+ .plus(extraConfig),
336
+ ).replace(" \n " , System .lineSeparator())
337
+ },
338
+ )
339
+ }
340
340
341
341
if (contents == null ) {
342
342
logger.info(" No existing SSH config to modify" )
@@ -346,6 +346,8 @@ class CoderCLIManager(
346
346
val start = " (\\ s*)$startBlock " .toRegex().find(contents)
347
347
val end = " $endBlock (\\ s*)" .toRegex().find(contents)
348
348
349
+ val isRemoving = blockContent.isEmpty()
350
+
349
351
if (start == null && end == null && isRemoving) {
350
352
logger.info(" No workspaces and no existing config blocks to remove" )
351
353
return null
@@ -477,15 +479,13 @@ class CoderCLIManager(
477
479
*
478
480
* Throws if the command execution fails.
479
481
*/
480
- fun startWorkspace (workspaceOwner : String , workspaceName : String ): String {
481
- return exec(
482
- " --global-config" ,
483
- coderConfigPath.toString(),
484
- " start" ,
485
- " --yes" ,
486
- workspaceOwner+ " /" + workspaceName,
487
- )
488
- }
482
+ fun startWorkspace (workspaceOwner : String , workspaceName : String ): String = exec(
483
+ " --global-config" ,
484
+ coderConfigPath.toString(),
485
+ " start" ,
486
+ " --yes" ,
487
+ workspaceOwner + " /" + workspaceName,
488
+ )
489
489
490
490
private fun exec (vararg args : String ): String {
491
491
val stdout =
@@ -518,8 +518,7 @@ class CoderCLIManager(
518
518
/*
519
519
* This function returns the ssh-host-prefix used for Host entries.
520
520
*/
521
- fun getHostPrefix (): String =
522
- " coder-jetbrains-${deploymentURL.safeHost()} "
521
+ fun getHostPrefix (): String = " coder-jetbrains-${deploymentURL.safeHost()} "
523
522
524
523
/* *
525
524
* This function returns the ssh host name generated for connecting to the workspace.
@@ -528,29 +527,27 @@ class CoderCLIManager(
528
527
workspace : Workspace ,
529
528
currentUser : User ,
530
529
agent : WorkspaceAgent ,
531
- ): String =
532
- if (features.wildcardSSH) {
533
- " ${getHostPrefix()} --${workspace.ownerName} --${workspace.name} .${agent.name} "
530
+ ): String = if (features.wildcardSSH) {
531
+ " ${getHostPrefix()} --${workspace.ownerName} --${workspace.name} .${agent.name} "
532
+ } else {
533
+ // For a user's own workspace, we use the old syntax without a username for backwards compatibility,
534
+ // since the user might have recent connections that still use the old syntax.
535
+ if (currentUser.username == workspace.ownerName) {
536
+ " coder-jetbrains--${workspace.name} .${agent.name} --${deploymentURL.safeHost()} "
534
537
} else {
535
- // For a user's own workspace, we use the old syntax without a username for backwards compatibility,
536
- // since the user might have recent connections that still use the old syntax.
537
- if (currentUser.username == workspace.ownerName) {
538
- " coder-jetbrains--${workspace.name} .${agent.name} --${deploymentURL.safeHost()} "
539
- } else {
540
- " coder-jetbrains--${workspace.ownerName} --${workspace.name} .${agent.name} --${deploymentURL.safeHost()} "
538
+ " coder-jetbrains--${workspace.ownerName} --${workspace.name} .${agent.name} --${deploymentURL.safeHost()} "
541
539
}
542
540
}
543
541
544
542
fun getBackgroundHostName (
545
543
workspace : Workspace ,
546
544
currentUser : User ,
547
545
agent : WorkspaceAgent ,
548
- ): String =
549
- if (features.wildcardSSH) {
550
- " ${getHostPrefix()} -bg--${workspace.ownerName} --${workspace.name} .${agent.name} "
551
- } else {
552
- getHostName(workspace, currentUser, agent) + " --bg"
553
- }
546
+ ): String = if (features.wildcardSSH) {
547
+ " ${getHostPrefix()} -bg--${workspace.ownerName} --${workspace.name} .${agent.name} "
548
+ } else {
549
+ getHostName(workspace, currentUser, agent) + " --bg"
550
+ }
554
551
555
552
companion object {
556
553
val logger = Logger .getInstance(CoderCLIManager ::class .java.simpleName)
0 commit comments