util.ts 8.0 KB
Newer Older
A
Asher 已提交
1 2
import * as cp from "child_process"
import * as crypto from "crypto"
A
Asher 已提交
3
import envPaths from "env-paths"
A
Asher 已提交
4
import * as fs from "fs-extra"
A
Asher 已提交
5
import * as net from "net"
A
Asher 已提交
6 7 8
import * as os from "os"
import * as path from "path"
import * as util from "util"
9
import xdgBasedir from "xdg-basedir"
A
Asher 已提交
10 11 12

export const tmpdir = path.join(os.tmpdir(), "code-server")

13 14 15 16 17 18 19
interface Paths {
  data: string
  config: string
}

export const paths = getEnvPaths()

20 21 22 23 24
/**
 * Gets the config and data paths for the current platform/configuration.
 * On MacOS this function gets the standard XDG directories instead of using the native macOS
 * ones. Most CLIs do this as in practice only GUI apps use the standard macOS directories.
 */
25 26 27 28 29 30 31
function getEnvPaths(): Paths {
  let paths: Paths
  if (process.platform === "win32") {
    paths = envPaths("code-server", {
      suffix: "",
    })
  } else {
32 33
    if (xdgBasedir.data === undefined || xdgBasedir.config === undefined) {
      throw new Error("No home folder?")
34 35 36 37 38
    }
    paths = {
      data: path.join(xdgBasedir.data, "code-server"),
      config: path.join(xdgBasedir.config, "code-server"),
    }
A
Asher 已提交
39
  }
40 41

  return paths
A
Asher 已提交
42
}
A
Asher 已提交
43

44 45 46 47 48 49 50 51 52 53
/**
 * humanPath replaces the home directory in p with ~.
 * Makes it more readable.
 *
 * @param p
 */
export function humanPath(p?: string): string {
  if (!p) {
    return ""
  }
54 55
  return p.replace(os.homedir(), "~")
}
A
Asher 已提交
56

57 58 59
export const generateCertificate = async (hostname: string): Promise<{ cert: string; certKey: string }> => {
  const certPath = path.join(paths.data, `${hostname.replace(/\./g, "_")}.crt`)
  const certKeyPath = path.join(paths.data, `${hostname.replace(/\./g, "_")}.key`)
60 61

  const checks = await Promise.all([fs.pathExists(certPath), fs.pathExists(certKeyPath)])
A
Asher 已提交
62 63 64 65 66
  if (!checks[0] || !checks[1]) {
    // Require on demand so openssl isn't required if you aren't going to
    // generate certificates.
    const pem = require("pem") as typeof import("pem")
    const certs = await new Promise<import("pem").CertificateCreationResult>((resolve, reject): void => {
67 68 69
      pem.createCertificate(
        {
          selfSigned: true,
70
          commonName: hostname,
71 72 73 74 75 76 77 78 79
          config: `
[req]
req_extensions = v3_req

[ v3_req ]
extendedKeyUsage = serverAuth
subjectAltName = @alt_names

[alt_names]
80
DNS.1 = ${hostname}
81 82 83 84 85 86
`,
        },
        (error, result) => {
          return error ? reject(error) : resolve(result)
        },
      )
A
Asher 已提交
87
    })
88 89 90 91 92 93
    await fs.mkdirp(paths.data)
    await Promise.all([fs.writeFile(certPath, certs.certificate), fs.writeFile(certKeyPath, certs.serviceKey)])
  }
  return {
    cert: certPath,
    certKey: certKeyPath,
A
Asher 已提交
94
  }
A
Asher 已提交
95 96
}

A
Asher 已提交
97 98 99 100 101
export const generatePassword = async (length = 24): Promise<string> => {
  const buffer = Buffer.alloc(Math.ceil(length / 2))
  await util.promisify(crypto.randomFill)(buffer)
  return buffer.toString("hex").substring(0, length)
}
A
Asher 已提交
102

A
Asher 已提交
103
export const hash = (str: string): string => {
A
Anmol Sethi 已提交
104
  return crypto.createHash("sha256").update(str).digest("hex")
A
Asher 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
}

const mimeTypes: { [key: string]: string } = {
  ".aac": "audio/x-aac",
  ".avi": "video/x-msvideo",
  ".bmp": "image/bmp",
  ".css": "text/css",
  ".flv": "video/x-flv",
  ".gif": "image/gif",
  ".html": "text/html",
  ".ico": "image/x-icon",
  ".jpe": "image/jpg",
  ".jpeg": "image/jpg",
  ".jpg": "image/jpg",
  ".js": "application/javascript",
  ".json": "application/json",
  ".m1v": "video/mpeg",
  ".m2a": "audio/mpeg",
  ".m2v": "video/mpeg",
  ".m3a": "audio/mpeg",
  ".mid": "audio/midi",
  ".midi": "audio/midi",
  ".mk3d": "video/x-matroska",
  ".mks": "video/x-matroska",
  ".mkv": "video/x-matroska",
  ".mov": "video/quicktime",
  ".movie": "video/x-sgi-movie",
  ".mp2": "audio/mpeg",
  ".mp2a": "audio/mpeg",
  ".mp3": "audio/mpeg",
  ".mp4": "video/mp4",
  ".mp4a": "audio/mp4",
  ".mp4v": "video/mp4",
  ".mpe": "video/mpeg",
  ".mpeg": "video/mpeg",
  ".mpg": "video/mpeg",
  ".mpg4": "video/mp4",
  ".mpga": "audio/mpeg",
  ".oga": "audio/ogg",
  ".ogg": "audio/ogg",
  ".ogv": "video/ogg",
  ".png": "image/png",
  ".psd": "image/vnd.adobe.photoshop",
  ".qt": "video/quicktime",
  ".spx": "audio/ogg",
  ".svg": "image/svg+xml",
  ".tga": "image/x-tga",
  ".tif": "image/tiff",
  ".tiff": "image/tiff",
  ".txt": "text/plain",
  ".wav": "audio/x-wav",
  ".wasm": "application/wasm",
  ".webm": "video/webm",
  ".webp": "image/webp",
  ".wma": "audio/x-ms-wma",
  ".wmv": "video/x-ms-wmv",
  ".woff": "application/font-woff",
}
A
Asher 已提交
163

A
Asher 已提交
164
export const getMediaMime = (filePath?: string): string => {
A
Asher 已提交
165 166
  return (filePath && mimeTypes[path.extname(filePath)]) || "text/plain"
}
A
Asher 已提交
167 168

export const isWsl = async (): Promise<boolean> => {
A
Asher 已提交
169
  return (
A
Anmol Sethi 已提交
170
    (process.platform === "linux" && os.release().toLowerCase().indexOf("microsoft") !== -1) ||
A
Asher 已提交
171 172 173
    (await fs.readFile("/proc/version", "utf8")).toLowerCase().indexOf("microsoft") !== -1
  )
}
A
Asher 已提交
174

A
Asher 已提交
175 176 177
/**
 * Try opening a URL using whatever the system has set for opening URLs.
 */
A
Asher 已提交
178
export const open = async (url: string): Promise<void> => {
A
Asher 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
  const args = [] as string[]
  const options = {} as cp.SpawnOptions
  const platform = (await isWsl()) ? "wsl" : process.platform
  let command = platform === "darwin" ? "open" : "xdg-open"
  if (platform === "win32" || platform === "wsl") {
    command = platform === "wsl" ? "cmd.exe" : "cmd"
    args.push("/c", "start", '""', "/b")
    url = url.replace(/&/g, "^&")
  }
  const proc = cp.spawn(command, [...args, url], options)
  await new Promise((resolve, reject) => {
    proc.on("error", reject)
    proc.on("close", (code) => {
      return code !== 0 ? reject(new Error(`Failed to open with code ${code}`)) : resolve()
    })
  })
}
A
Asher 已提交
196

A
Asher 已提交
197 198 199 200
/**
 * For iterating over an enum's values.
 */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
A
Asher 已提交
201
export const enumToArray = (t: any): string[] => {
A
Asher 已提交
202 203 204 205 206 207
  const values = [] as string[]
  for (const k in t) {
    values.push(t[k])
  }
  return values
}
A
Asher 已提交
208

A
Asher 已提交
209 210 211 212
/**
 * For displaying all allowed options in an enum.
 */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
A
Asher 已提交
213
export const buildAllowedMessage = (t: any): string => {
A
Asher 已提交
214 215 216 217 218 219 220
  const values = enumToArray(t)
  return `Allowed value${values.length === 1 ? " is" : "s are"} ${values.map((t) => `'${t}'`).join(", ")}`
}

export const isObject = <T extends object>(obj: T): obj is T => {
  return !Array.isArray(obj) && typeof obj === "object" && obj !== null
}
221

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
/**
 * Taken from vs/base/common/charCode.ts. Copied for now instead of importing so
 * we don't have to set up a `vs` alias to be able to import with types (since
 * the alternative is to directly import from `out`).
 */
const enum CharCode {
  Slash = 47,
  A = 65,
  Z = 90,
  a = 97,
  z = 122,
  Colon = 58,
}

/**
 * Compute `fsPath` for the given uri.
 * Taken from vs/base/common/uri.ts. It's not imported to avoid also importing
 * everything that file imports.
 */
export function pathToFsPath(path: string, keepDriveLetterCasing = false): string {
  const isWindows = process.platform === "win32"
  const uri = { authority: undefined, path, scheme: "file" }
  let value: string
  if (uri.authority && uri.path.length > 1 && uri.scheme === "file") {
    // unc path: file://shares/c$/far/boo
    value = `//${uri.authority}${uri.path}`
  } else if (
    uri.path.charCodeAt(0) === CharCode.Slash &&
    ((uri.path.charCodeAt(1) >= CharCode.A && uri.path.charCodeAt(1) <= CharCode.Z) ||
      (uri.path.charCodeAt(1) >= CharCode.a && uri.path.charCodeAt(1) <= CharCode.z)) &&
    uri.path.charCodeAt(2) === CharCode.Colon
  ) {
    if (!keepDriveLetterCasing) {
      // windows drive letter: file:///c:/far/boo
      value = uri.path[1].toLowerCase() + uri.path.substr(2)
    } else {
      value = uri.path.substr(1)
    }
  } else {
    // other path
    value = uri.path
  }
  if (isWindows) {
    value = value.replace(/\//g, "\\")
  }
  return value
}
A
Asher 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282

/**
 * Return a promise that resolves with whether the socket path is active.
 */
export function canConnect(path: string): Promise<boolean> {
  return new Promise((resolve) => {
    const socket = net.connect(path)
    socket.once("error", () => resolve(false))
    socket.once("connect", () => {
      socket.destroy()
      resolve(true)
    })
  })
}