@@ -7,12 +7,13 @@ import * as net from "net"
7
7
import * as path from "path"
8
8
import { WebsocketRequest } from "../../../typings/pluginapi"
9
9
import { logError } from "../../common/util"
10
- import { CodeArgs , toCodeArgs } from "../cli"
10
+ import { AuthType , CodeArgs , toCodeArgs } from "../cli"
11
11
import { isDevMode , vsRootPath } from "../constants"
12
12
import { authenticated , ensureAuthenticated , ensureOrigin , redirect , replaceTemplates , self } from "../http"
13
13
import { SocketProxyProvider } from "../socket"
14
14
import { isFile } from "../util"
15
15
import { Router as WsRouter } from "../wsRouter"
16
+ import { HttpCode , HttpError } from "../../common/http"
16
17
17
18
export const router = express . Router ( )
18
19
@@ -118,6 +119,11 @@ router.get("/", ensureVSCodeLoaded, async (req, res, next) => {
118
119
const FOLDER_OR_WORKSPACE_WAS_CLOSED = req . query . ew
119
120
120
121
if ( ! isAuthenticated ) {
122
+ // If auth is HttpBasic, return a 401.
123
+ if ( req . args . auth === AuthType . HttpBasic ) {
124
+ res . setHeader ( 'WWW-Authenticate' , 'Basic realm="Access to the site"' )
125
+ throw new HttpError ( "Unauthorized" , HttpCode . Unauthorized )
126
+ } ;
121
127
const to = self ( req )
122
128
return redirect ( req , res , "login" , {
123
129
to : to !== "/" ? to : undefined ,
0 commit comments