2021-05-05 18:51:09 +02:00
import { field , logger } from "@coder/logger"
import http from "http"
2021-09-30 05:14:56 +02:00
import path from "path"
2021-05-05 18:51:09 +02:00
import { plural } from "../common/util"
import { createApp , ensureAddress } from "./app"
import { AuthType , DefaultedArgs , Feature } from "./cli"
import { coderCloudBind } from "./coder_cloud"
import { commit , version } from "./constants"
2021-09-15 21:17:39 +02:00
import { startLink } from "./link"
2021-05-05 18:51:09 +02:00
import { register } from "./routes"
2021-09-30 05:14:56 +02:00
import { humanPath , isFile , loadAMDModule , open } from "./util"
2021-05-05 18:51:09 +02:00
2021-09-30 05:14:56 +02:00
/ * *
* This is useful when an CLI arg should be passed to VS Code directly ,
* such as when managing extensions .
* @deprecated This should be removed when code - server merges with lib / vscode .
* /
export const runVsCodeCli = async ( args : DefaultedArgs ) : Promise < void > = > {
logger . debug ( "Running VS Code CLI" )
const cliProcessMain = await loadAMDModule < CodeServerLib.IMainCli [ " main " ] > ( "vs/code/node/cliProcessMain" , "main" )
try {
await cliProcessMain ( args )
2021-10-04 00:42:27 +02:00
} catch ( error : any ) {
logger . error ( "Got error from VS Code" , error )
2021-09-30 05:14:56 +02:00
}
process . exit ( 0 )
2021-05-05 18:51:09 +02:00
}
export const openInExistingInstance = async ( args : DefaultedArgs , socketPath : string ) : Promise < void > = > {
2021-09-30 05:14:56 +02:00
const pipeArgs : CodeServerLib.OpenCommandPipeArgs & { fileURIs : string [ ] } = {
2021-05-05 18:51:09 +02:00
type : "open" ,
folderURIs : [ ] ,
fileURIs : [ ] ,
forceReuseWindow : args [ "reuse-window" ] ,
forceNewWindow : args [ "new-window" ] ,
}
for ( let i = 0 ; i < args . _ . length ; i ++ ) {
const fp = path . resolve ( args . _ [ i ] )
if ( await isFile ( fp ) ) {
pipeArgs . fileURIs . push ( fp )
} else {
pipeArgs . folderURIs . push ( fp )
}
}
if ( pipeArgs . forceNewWindow && pipeArgs . fileURIs . length > 0 ) {
logger . error ( "--new-window can only be used with folder paths" )
process . exit ( 1 )
}
if ( pipeArgs . folderURIs . length === 0 && pipeArgs . fileURIs . length === 0 ) {
logger . error ( "Please specify at least one file or folder" )
process . exit ( 1 )
}
const vscode = http . request (
{
path : "/" ,
method : "POST" ,
socketPath ,
} ,
( response ) = > {
response . on ( "data" , ( message ) = > {
logger . debug ( "got message from VS Code" , field ( "message" , message . toString ( ) ) )
} )
} ,
)
vscode . on ( "error" , ( error : unknown ) = > {
logger . error ( "got error from VS Code" , field ( "error" , error ) )
} )
vscode . write ( JSON . stringify ( pipeArgs ) )
vscode . end ( )
}
2021-05-05 19:20:38 +02:00
export const runCodeServer = async ( args : DefaultedArgs ) : Promise < http.Server > = > {
2021-05-05 18:51:09 +02:00
logger . info ( ` code-server ${ version } ${ commit } ` )
logger . info ( ` Using user-data-dir ${ humanPath ( args [ "user-data-dir" ] ) } ` )
logger . trace ( ` Using extensions-dir ${ humanPath ( args [ "extensions-dir" ] ) } ` )
if ( args . auth === AuthType . Password && ! args . password && ! args [ "hashed-password" ] ) {
throw new Error (
"Please pass in a password via the config file or environment variable ($PASSWORD or $HASHED_PASSWORD)" ,
)
}
const [ app , wsApp , server ] = await createApp ( args )
const serverAddress = ensureAddress ( server )
await register ( app , wsApp , server , args )
logger . info ( ` Using config file ${ humanPath ( args . config ) } ` )
logger . info ( ` HTTP server listening on ${ serverAddress } ${ args . link ? "(randomized by --link)" : "" } ` )
if ( args . auth === AuthType . Password ) {
logger . info ( " - Authentication is enabled" )
if ( args . usingEnvPassword ) {
logger . info ( " - Using password from $PASSWORD" )
} else if ( args . usingEnvHashedPassword ) {
logger . info ( " - Using password from $HASHED_PASSWORD" )
} else {
logger . info ( ` - Using password from ${ humanPath ( args . config ) } ` )
}
} else {
logger . info ( ` - Authentication is disabled ${ args . link ? "(disabled by --link)" : "" } ` )
}
if ( args . cert ) {
logger . info ( ` - Using certificate for HTTPS: ${ humanPath ( args . cert . value ) } ` )
} else {
logger . info ( ` - Not serving HTTPS ${ args . link ? "(disabled by --link)" : "" } ` )
}
if ( args [ "proxy-domain" ] . length > 0 ) {
logger . info ( ` - ${ plural ( args [ "proxy-domain" ] . length , "Proxying the following domain" ) } : ` )
args [ "proxy-domain" ] . forEach ( ( domain ) = > logger . info ( ` - *. ${ domain } ` ) )
}
if ( args . link ) {
2021-05-05 18:56:19 +02:00
await coderCloudBind ( serverAddress . replace ( /^https?:\/\// , "" ) , args . link . value )
logger . info ( " - Connected to cloud agent" )
2021-05-05 18:51:09 +02:00
}
2021-09-15 21:17:39 +02:00
try {
const port = parseInt ( serverAddress . split ( ":" ) . pop ( ) as string , 10 )
startLink ( port ) . catch ( ( ex ) = > {
logger . debug ( "Link daemon exited!" , field ( "error" , ex ) )
} )
2021-09-30 05:14:56 +02:00
} catch ( error ) {
logger . debug ( "Failed to start link daemon!" , error as any )
2021-09-15 21:17:39 +02:00
}
2021-05-05 18:51:09 +02:00
if ( args . enable && args . enable . length > 0 ) {
logger . info ( "Enabling the following experimental features:" )
args . enable . forEach ( ( feature ) = > {
if ( Object . values ( Feature ) . includes ( feature as Feature ) ) {
logger . info ( ` - " ${ feature } " ` )
} else {
logger . error ( ` X " ${ feature } " (unknown feature) ` )
}
} )
// TODO: Could be nice to add wrapping to the logger?
logger . info (
" The code-server project does not provide stability guarantees or commit to fixing bugs relating to these experimental features. When filing bug reports, please ensure that you can reproduce the bug with all experimental features turned off." ,
)
}
if ( ! args . socket && args . open ) {
// The web socket doesn't seem to work if browsing with 0.0.0.0.
const openAddress = serverAddress . replace ( "://0.0.0.0" , "://localhost" )
try {
await open ( openAddress )
logger . info ( ` Opened ${ openAddress } ` )
} catch ( error ) {
logger . error ( "Failed to open" , field ( "address" , openAddress ) , field ( "error" , error ) )
}
}
2021-05-05 19:20:38 +02:00
return server
2021-05-05 18:51:09 +02:00
}