2020-02-13 23:38:05 +01:00
|
|
|
import { logger } from "@coder/logger"
|
|
|
|
import * as http from "http"
|
|
|
|
import * as querystring from "querystring"
|
|
|
|
import { Application } from "../../common/api"
|
|
|
|
import { HttpCode, HttpError } from "../../common/http"
|
|
|
|
import { Options } from "../../common/util"
|
|
|
|
import { HttpProvider, HttpProviderOptions, HttpResponse, Route } from "../http"
|
|
|
|
import { ApiHttpProvider } from "./api"
|
2020-02-14 22:57:51 +01:00
|
|
|
import { UpdateHttpProvider } from "./update"
|
2020-02-13 23:38:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Top-level and fallback HTTP provider.
|
|
|
|
*/
|
|
|
|
export class MainHttpProvider extends HttpProvider {
|
2020-02-14 22:57:51 +01:00
|
|
|
public constructor(
|
|
|
|
options: HttpProviderOptions,
|
|
|
|
private readonly api: ApiHttpProvider,
|
2020-02-18 18:52:29 +01:00
|
|
|
private readonly update: UpdateHttpProvider,
|
2020-02-14 22:57:51 +01:00
|
|
|
) {
|
2020-02-13 23:38:05 +01:00
|
|
|
super(options)
|
|
|
|
}
|
|
|
|
|
|
|
|
public async handleRequest(route: Route, request: http.IncomingMessage): Promise<HttpResponse | undefined> {
|
|
|
|
switch (route.base) {
|
|
|
|
case "/static": {
|
|
|
|
this.ensureMethod(request)
|
2020-02-18 19:57:45 +01:00
|
|
|
const response = await this.getReplacedResource(route)
|
2020-02-13 23:38:05 +01:00
|
|
|
if (!this.isDev) {
|
|
|
|
response.cache = true
|
|
|
|
}
|
|
|
|
return response
|
|
|
|
}
|
|
|
|
|
|
|
|
case "/delete": {
|
|
|
|
this.ensureMethod(request, "POST")
|
|
|
|
const data = await this.getData(request)
|
|
|
|
const p = data ? querystring.parse(data) : {}
|
|
|
|
this.api.deleteSession(p.sessionId as string)
|
|
|
|
return { redirect: "/" }
|
|
|
|
}
|
|
|
|
|
|
|
|
case "/": {
|
|
|
|
this.ensureMethod(request)
|
|
|
|
if (route.requestPath !== "/index.html") {
|
|
|
|
throw new HttpError("Not found", HttpCode.NotFound)
|
|
|
|
} else if (!this.authenticated(request)) {
|
|
|
|
return { redirect: "/login" }
|
|
|
|
}
|
|
|
|
return this.getRoot(route)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run an existing app, but if it doesn't exist go ahead and start it.
|
|
|
|
let app = this.api.getRunningApplication(route.base)
|
|
|
|
let sessionId = app && app.sessionId
|
|
|
|
if (!app) {
|
|
|
|
app = (await this.api.installedApplications()).find((a) => a.path === route.base)
|
|
|
|
if (app) {
|
|
|
|
sessionId = await this.api.createSession(app)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sessionId) {
|
|
|
|
return this.getAppRoot(
|
|
|
|
route,
|
|
|
|
{
|
|
|
|
sessionId,
|
|
|
|
base: this.base(route),
|
|
|
|
logLevel: logger.level,
|
|
|
|
},
|
2020-02-15 01:46:00 +01:00
|
|
|
(app && app.name) || "",
|
2020-02-13 23:38:05 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.getErrorRoot(route, "404", "404", "Application not found")
|
|
|
|
}
|
|
|
|
|
2020-02-18 19:57:45 +01:00
|
|
|
/**
|
|
|
|
* Return a resource with variables replaced where necessary.
|
|
|
|
*/
|
|
|
|
protected async getReplacedResource(route: Route): Promise<HttpResponse> {
|
|
|
|
if (route.requestPath.endsWith("/manifest.json")) {
|
|
|
|
const response = await this.getUtf8Resource(this.rootPath, route.requestPath)
|
|
|
|
response.content = response.content
|
|
|
|
.replace(/{{BASE}}/g, this.base(route))
|
|
|
|
.replace(/{{COMMIT}}/g, this.options.commit)
|
|
|
|
return response
|
|
|
|
}
|
|
|
|
return this.getResource(this.rootPath, route.requestPath)
|
|
|
|
}
|
|
|
|
|
2020-02-13 23:38:05 +01:00
|
|
|
public async getRoot(route: Route): Promise<HttpResponse> {
|
|
|
|
const recent = await this.api.recent()
|
|
|
|
const apps = await this.api.installedApplications()
|
|
|
|
const response = await this.getUtf8Resource(this.rootPath, "src/browser/pages/home.html")
|
|
|
|
response.content = response.content
|
|
|
|
.replace(/{{COMMIT}}/g, this.options.commit)
|
|
|
|
.replace(/{{BASE}}/g, this.base(route))
|
2020-02-14 22:57:51 +01:00
|
|
|
.replace(/{{UPDATE:NAME}}/, await this.getUpdate())
|
|
|
|
.replace(/{{APP_LIST:RUNNING}}/, this.getAppRows(recent.running))
|
2020-02-13 23:38:05 +01:00
|
|
|
.replace(
|
2020-02-14 22:57:51 +01:00
|
|
|
/{{APP_LIST:EDITORS}}/,
|
2020-02-15 01:46:00 +01:00
|
|
|
this.getAppRows(apps.filter((app) => app.categories && app.categories.includes("Editor"))),
|
2020-02-13 23:38:05 +01:00
|
|
|
)
|
|
|
|
.replace(
|
2020-02-14 22:57:51 +01:00
|
|
|
/{{APP_LIST:OTHER}}/,
|
2020-02-15 01:46:00 +01:00
|
|
|
this.getAppRows(apps.filter((app) => !app.categories || !app.categories.includes("Editor"))),
|
2020-02-13 23:38:05 +01:00
|
|
|
)
|
|
|
|
return response
|
|
|
|
}
|
|
|
|
|
|
|
|
public async getAppRoot(route: Route, options: Options, name: string): Promise<HttpResponse> {
|
|
|
|
const response = await this.getUtf8Resource(this.rootPath, "src/browser/pages/app.html")
|
|
|
|
response.content = response.content
|
|
|
|
.replace(/{{COMMIT}}/g, this.options.commit)
|
|
|
|
.replace(/{{BASE}}/g, this.base(route))
|
2020-02-14 22:57:51 +01:00
|
|
|
.replace(/{{APP_NAME}}/, name)
|
|
|
|
.replace(/"{{OPTIONS}}"/, `'${JSON.stringify(options)}'`)
|
2020-02-13 23:38:05 +01:00
|
|
|
return response
|
|
|
|
}
|
|
|
|
|
|
|
|
public async handleWebSocket(): Promise<undefined> {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
private getAppRows(apps: ReadonlyArray<Application>): string {
|
|
|
|
return apps.length > 0 ? apps.map((app) => this.getAppRow(app)).join("\n") : `<div class="none">None</div>`
|
|
|
|
}
|
|
|
|
|
|
|
|
private getAppRow(app: Application): string {
|
2020-02-14 22:57:51 +01:00
|
|
|
return `<div class="block-row">
|
2020-02-14 23:41:42 +01:00
|
|
|
<a class="item -row -link" href=".${app.path}">
|
2020-02-13 23:38:05 +01:00
|
|
|
${
|
|
|
|
app.icon
|
|
|
|
? `<img class="icon" src="data:image/png;base64,${app.icon}"></img>`
|
|
|
|
: `<div class="icon -missing"></div>`
|
|
|
|
}
|
|
|
|
<div class="name">${app.name}</div>
|
|
|
|
</a>
|
|
|
|
${
|
|
|
|
app.sessionId
|
|
|
|
? `<form class="kill-form" action="./delete" method="POST">
|
|
|
|
<input type="hidden" name="sessionId" value="${app.sessionId}">
|
|
|
|
<button class="kill" type="submit">Kill</button>
|
|
|
|
</form>`
|
|
|
|
: ""
|
|
|
|
}
|
|
|
|
</div>`
|
|
|
|
}
|
2020-02-14 22:57:51 +01:00
|
|
|
|
|
|
|
private async getUpdate(): Promise<string> {
|
|
|
|
if (!this.update.enabled) {
|
2020-02-18 19:24:12 +01:00
|
|
|
return `<div class="block-row"><div class="item"><div class="sub">Updates are disabled</div></div></div>`
|
2020-02-14 22:57:51 +01:00
|
|
|
}
|
|
|
|
|
2020-02-14 23:41:42 +01:00
|
|
|
const humanize = (time: number): string => {
|
|
|
|
const d = new Date(time)
|
|
|
|
const pad = (t: number): string => (t < 10 ? "0" : "") + t
|
|
|
|
return (
|
|
|
|
`${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())}` +
|
|
|
|
` ${pad(d.getHours())}:${pad(d.getMinutes())}`
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-02-14 22:57:51 +01:00
|
|
|
const update = await this.update.getUpdate()
|
2020-02-14 23:41:42 +01:00
|
|
|
if (this.update.isLatestVersion(update)) {
|
2020-02-14 22:57:51 +01:00
|
|
|
return `<div class="block-row">
|
2020-02-14 23:41:42 +01:00
|
|
|
<div class="item">
|
|
|
|
${update.version}
|
|
|
|
<div class="sub">Up to date</div>
|
|
|
|
</div>
|
|
|
|
<div class="item">
|
|
|
|
${humanize(update.checked)}
|
|
|
|
<a class="sub -link" href="./update/check">Check now</a>
|
|
|
|
</div>
|
|
|
|
<div class="item" >Current: ${this.update.currentVersion}</div>
|
2020-02-14 22:57:51 +01:00
|
|
|
</div>`
|
|
|
|
}
|
|
|
|
|
|
|
|
return `<div class="block-row">
|
2020-02-14 23:41:42 +01:00
|
|
|
<a class="item -link" href="./update">
|
|
|
|
${update.version}
|
|
|
|
<div class="sub">Out of date</div>
|
|
|
|
</a>
|
|
|
|
<div class="item">
|
|
|
|
${humanize(update.checked)}
|
|
|
|
<a class="sub -link" href="./update/check">Check now</a>
|
|
|
|
</div>
|
|
|
|
<div class="item" >Current: ${this.update.currentVersion}</div>
|
2020-02-14 22:57:51 +01:00
|
|
|
</div>`
|
|
|
|
}
|
2020-02-13 23:38:05 +01:00
|
|
|
}
|