-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathAuthTokenModal.tsx
More file actions
349 lines (301 loc) · 10.8 KB
/
AuthTokenModal.tsx
File metadata and controls
349 lines (301 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
import { useCallback, useEffect, useRef, useState } from "react";
import { Loader2 } from "lucide-react";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
DialogFooter,
} from "@/browser/components/Dialog/Dialog";
import { Button } from "@/browser/components/Button/Button";
import { getBrowserBackendBaseUrl } from "@/browser/utils/backendBaseUrl";
import { getErrorMessage } from "@/common/utils/errors";
import { isAbortError } from "@/browser/utils/isAbortError";
interface AuthTokenModalProps {
isOpen: boolean;
onSubmit: (token: string) => void;
onSessionAuthenticated?: () => void;
error?: string | null;
}
interface ServerLoginOptionsResponse {
githubDeviceFlowEnabled?: boolean;
}
interface GithubLoginStartResponse {
flowId?: string;
verificationUri?: string;
userCode?: string;
error?: string;
}
const AUTH_TOKEN_STORAGE_KEY = "mux:auth-token";
export function getStoredAuthToken(): string | null {
try {
return localStorage.getItem(AUTH_TOKEN_STORAGE_KEY);
} catch {
return null;
}
}
export function setStoredAuthToken(token: string): void {
try {
localStorage.setItem(AUTH_TOKEN_STORAGE_KEY, token);
} catch {
// Ignore storage errors
}
}
export function clearStoredAuthToken(): void {
try {
localStorage.removeItem(AUTH_TOKEN_STORAGE_KEY);
} catch {
// Ignore storage errors
}
}
async function parseJsonResponse<T>(response: Response): Promise<T | null> {
try {
return (await response.json()) as T;
} catch {
return null;
}
}
export function AuthTokenModal(props: AuthTokenModalProps) {
const [token, setToken] = useState("");
const [githubDeviceFlowEnabled, setGithubDeviceFlowEnabled] = useState(false);
const [githubOptionsLoading, setGithubOptionsLoading] = useState(true);
const [githubLoginStatus, setGithubLoginStatus] = useState<
"idle" | "starting" | "waiting" | "error"
>("idle");
const [githubLoginError, setGithubLoginError] = useState<string | null>(null);
const [githubUserCode, setGithubUserCode] = useState<string | null>(null);
const [githubVerificationUri, setGithubVerificationUri] = useState<string | null>(null);
const waitAbortControllerRef = useRef<AbortController | null>(null);
const { onSubmit } = props;
const clearGithubLoginUi = useCallback(() => {
setGithubLoginStatus("idle");
setGithubLoginError(null);
setGithubUserCode(null);
setGithubVerificationUri(null);
waitAbortControllerRef.current?.abort();
waitAbortControllerRef.current = null;
}, []);
const handleSubmit = useCallback(
(e: React.FormEvent) => {
e.preventDefault();
if (token.trim()) {
setStoredAuthToken(token.trim());
onSubmit(token.trim());
}
},
[token, onSubmit]
);
useEffect(() => {
if (!props.isOpen) {
return;
}
let cancelled = false;
const controller = new AbortController();
setGithubOptionsLoading(true);
void fetch(`${getBrowserBackendBaseUrl()}/auth/server-login/options`, {
method: "GET",
credentials: "include",
signal: controller.signal,
})
.then(async (response) => {
if (cancelled) {
return;
}
if (!response.ok) {
setGithubDeviceFlowEnabled(false);
setGithubOptionsLoading(false);
return;
}
const payload = await parseJsonResponse<ServerLoginOptionsResponse>(response);
setGithubDeviceFlowEnabled(payload?.githubDeviceFlowEnabled === true);
setGithubOptionsLoading(false);
})
.catch((error: unknown) => {
if (cancelled) {
return;
}
if (!isAbortError(error)) {
setGithubDeviceFlowEnabled(false);
setGithubOptionsLoading(false);
}
});
return () => {
cancelled = true;
controller.abort();
};
}, [props.isOpen]);
useEffect(() => {
return () => {
waitAbortControllerRef.current?.abort();
};
}, []);
const startGithubLogin = useCallback(async () => {
clearGithubLoginUi();
setGithubLoginStatus("starting");
try {
const startResponse = await fetch(
`${getBrowserBackendBaseUrl()}/auth/server-login/github/start`,
{
method: "POST",
credentials: "include",
}
);
const startPayload = await parseJsonResponse<GithubLoginStartResponse>(startResponse);
if (!startResponse.ok) {
setGithubLoginStatus("error");
setGithubLoginError(startPayload?.error ?? "Failed to start GitHub login");
return;
}
const flowId = startPayload?.flowId?.trim();
const verificationUri = startPayload?.verificationUri?.trim();
const userCode = startPayload?.userCode?.trim();
if (!flowId || !verificationUri || !userCode) {
setGithubLoginStatus("error");
setGithubLoginError("Server returned an invalid GitHub login response");
return;
}
setGithubLoginStatus("waiting");
setGithubVerificationUri(verificationUri);
setGithubUserCode(userCode);
const waitController = new AbortController();
waitAbortControllerRef.current = waitController;
try {
const waitResponse = await fetch(
`${getBrowserBackendBaseUrl()}/auth/server-login/github/wait`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
credentials: "include",
body: JSON.stringify({ flowId }),
signal: waitController.signal,
}
);
const waitPayload = await parseJsonResponse<{ ok?: boolean; error?: string }>(waitResponse);
if (!waitResponse.ok || waitPayload?.ok !== true) {
setGithubLoginStatus("error");
setGithubLoginError(waitPayload?.error ?? "GitHub login failed");
return;
}
clearStoredAuthToken();
props.onSessionAuthenticated?.();
} catch (error) {
if (isAbortError(error)) {
return;
}
const message = getErrorMessage(error);
setGithubLoginStatus("error");
setGithubLoginError(message);
} finally {
if (waitAbortControllerRef.current === waitController) {
waitAbortControllerRef.current = null;
}
}
} catch (error) {
const message = getErrorMessage(error);
setGithubLoginStatus("error");
setGithubLoginError(message);
}
}, [clearGithubLoginUi, props]);
// This modal cannot be dismissed without providing a token/session.
const handleOpenChange = useCallback(() => {
// Do nothing - modal cannot be closed without submitting
}, []);
return (
<Dialog open={props.isOpen} onOpenChange={handleOpenChange}>
<DialogContent showCloseButton={false}>
<DialogHeader>
<DialogTitle>Authentication Required</DialogTitle>
<DialogDescription>
This server requires authentication. Enter the token provided at startup, or sign in
with GitHub when enabled.
</DialogDescription>
</DialogHeader>
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
{props.error && (
<div className="bg-error-bg text-error rounded p-2 px-3 text-[13px]">{props.error}</div>
)}
<input
type="password"
value={token}
onChange={(e) => setToken(e.target.value)}
placeholder="Enter auth token"
autoFocus
className="bg-modal-bg border-border-medium focus:border-accent placeholder:text-muted text-foreground rounded border px-3 py-2.5 text-sm focus:outline-none"
/>
<DialogFooter className="pt-0">
<Button type="submit" disabled={!token.trim()} className="w-full">
Connect with token
</Button>
</DialogFooter>
</form>
{githubOptionsLoading ? null : githubDeviceFlowEnabled ? (
<div className="border-border-medium space-y-3 border-t pt-3">
<div className="text-foreground text-sm font-medium">Or login with GitHub</div>
<div className="flex items-center gap-2">
<Button
variant="secondary"
onClick={() => {
void startGithubLogin();
}}
disabled={githubLoginStatus === "starting" || githubLoginStatus === "waiting"}
className="w-full"
>
{githubLoginStatus === "waiting"
? "Waiting for GitHub authorization..."
: githubLoginStatus === "starting"
? "Starting GitHub login..."
: githubLoginStatus === "error"
? "Retry GitHub login"
: "Login with GitHub"}
</Button>
</div>
{githubLoginStatus === "waiting" && githubUserCode ? (
<div className="bg-background-tertiary space-y-2 rounded-md p-3">
<p className="text-muted text-xs">Enter this code on GitHub:</p>
<div className="flex items-center gap-2">
<code className="text-foreground text-lg font-bold tracking-widest">
{githubUserCode}
</code>
<Button
size="sm"
aria-label="Copy and open GitHub verification page"
onClick={() => {
if (!githubVerificationUri) {
return;
}
const clipboard = navigator.clipboard;
if (clipboard?.writeText) {
try {
void clipboard.writeText(githubUserCode).catch(() => {
// Ignore clipboard write failures so login can continue.
});
} catch {
// Ignore clipboard access failures so login can continue.
}
}
window.open(githubVerificationUri, "_blank", "noopener");
}}
className="h-8 px-3 text-xs"
disabled={!githubVerificationUri}
>
Copy & Open GitHub
</Button>
</div>
<p className="text-muted inline-flex items-center gap-2 text-xs">
<Loader2 aria-hidden className="h-3.5 w-3.5 animate-spin" />
Waiting for authorization...
</p>
</div>
) : null}
{githubLoginError ? (
<p className="text-destructive text-xs">GitHub login failed: {githubLoginError}</p>
) : null}
</div>
) : null}
</DialogContent>
</Dialog>
);
}