62b3a6fd9f
* Fix issue where HTTP error status codes are not read. * Fix issues surrounding sessions when accessed from a proxy. - Updated vscode args to match latest upstream. - Fixed issues surrounding trailing slashes affecting base paths. - Updated cookie names to better match upstream's usage, debuggability. * Bump vendor. * Update tests. * Fix issue where tests lack cookie key. Co-authored-by: Asher <ash@coder.com>
25 lines
555 B
TypeScript
25 lines
555 B
TypeScript
export enum HttpCode {
|
|
Ok = 200,
|
|
Redirect = 302,
|
|
NotFound = 404,
|
|
BadRequest = 400,
|
|
Unauthorized = 401,
|
|
LargePayload = 413,
|
|
ServerError = 500,
|
|
}
|
|
|
|
/**
|
|
* Represents an error with a message and an HTTP status code. This code will be
|
|
* used in the HTTP response.
|
|
*/
|
|
export class HttpError extends Error {
|
|
public constructor(message: string, public readonly statusCode: HttpCode, public readonly details?: object) {
|
|
super(message)
|
|
this.name = this.constructor.name
|
|
}
|
|
}
|
|
|
|
export enum CookieKeys {
|
|
Session = "code-server-session",
|
|
}
|