-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsession.tsx
206 lines (178 loc) · 5.78 KB
/
session.tsx
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
"use client";
import {
CreateController,
CreateSession,
RegisterSession,
} from "@/components/connect";
import { useConnection } from "@/hooks/connection";
import { useCallback, useEffect, useMemo, useState } from "react";
import { LoginMode } from "@/components/connect/types";
import { PageLoading } from "@/components/Loading";
import { useNavigate, useSearchParams } from "react-router-dom";
type SessionResponse = {
username: string;
address: string;
expiresAt: string;
ownerGuid: string;
transactionHash?: string;
alreadyRegistered?: boolean;
};
type SessionQueryParams = {
public_key: string;
callback_uri: string | null;
redirect_uri: string | null;
redirect_query_name: string | null;
};
/**
This page is for registering session
*/
export function Session() {
const navigate = useNavigate();
const [searchParams] = useSearchParams();
const queries: SessionQueryParams = useMemo(
() => ({
public_key: searchParams.get("public_key")!,
callback_uri: searchParams.get("callback_uri"),
redirect_uri: searchParams.get("redirect_uri"),
redirect_query_name: searchParams.get("redirect_query_name"),
}),
[searchParams],
);
const { controller, policies, origin } = useConnection();
const [isLoading, setIsLoading] = useState<boolean>(true);
// Handler for calling the callback uri.
// Send the session details to the callback uri in the body of the
// POST request. If the request is successful, then redirect to the
// success page. Else, redirect to the failure page.
const onCallback = useCallback(
async (response: SessionResponse) => {
if (!queries.callback_uri && !queries.redirect_uri) {
navigate("/failure", { replace: true });
return;
}
const headers = new Headers();
headers.append("Content-Type", "application/json");
// Remove any trailing '=' characters from the encoded response
// Telegram doesnt seem to be able to decode the response if there are any
const encodedResponse = btoa(JSON.stringify(response)).replace(/=+$/, "");
if (queries.callback_uri) {
try {
const url = sanitizeCallbackUrl(
decodeURIComponent(queries.callback_uri),
);
if (!url) {
return;
}
const res = await fetch(url, {
body: encodedResponse,
headers,
method: "POST",
});
if (res.ok) {
navigate(
`/success?${{
title: "Session Registered!",
description: "Return to your terminal to continue",
}.toString()}`,
{ replace: true },
);
return;
}
} catch (e) {
console.error("failed to call the callback url", e);
navigate("/failure", { replace: true });
}
return;
}
if (queries.redirect_uri) {
const url = decodeURIComponent(queries.redirect_uri);
const query_name = queries.redirect_query_name ?? "session";
window.location.href = `${url}?${query_name}=${encodedResponse}`;
}
},
[navigate, queries],
);
// Handler when user clicks the Create button
const onConnect = useCallback(
async (transaction_hash?: string, expiresAt?: bigint) => {
if (!queries.callback_uri && !queries.redirect_uri) {
throw new Error("Expected either callback_uri or redirect_uri");
}
if (!controller) return;
onCallback({
username: controller.username(),
address: controller.address,
ownerGuid: controller.ownerGuid(),
transactionHash: transaction_hash,
expiresAt: String(expiresAt),
});
},
[queries.callback_uri, queries.redirect_uri, controller, onCallback],
);
// Once we have a connected controller initialized, check if a session already exists.
// If yes, check if the policies of the session are the same as the ones that are
// currently being requested. Return existing session to the callback uri if policies match.
useEffect(() => {
if (!controller || !origin || !policies) {
return;
}
// If the requested policies has no mismatch with existing policies and public key already
// registered then return the exising session
controller
.getAuthorizedSessionMetadata(policies, queries.public_key)
.then((session) => {
if (session) {
onCallback({
username: controller.username(),
address: controller.address,
ownerGuid: controller.ownerGuid(),
alreadyRegistered: true,
expiresAt: String(session.session.expiresAt),
});
return;
}
setIsLoading(false);
});
}, [controller, origin, policies, queries.public_key, onCallback]);
if (!controller) {
return <CreateController loginMode={LoginMode.Controller} />;
}
if (isLoading) {
return <PageLoading />;
}
if (!policies) {
return <>No Session Policies</>;
}
return (
<>
{queries.public_key ? (
<RegisterSession
policies={policies}
onConnect={onConnect}
publicKey={queries.public_key}
/>
) : (
<CreateSession policies={policies} onConnect={onConnect} />
)}
</>
);
}
/**
* Sanitize the callback url to ensure that it is a valid URL. Returns back the URL.
*/
function sanitizeCallbackUrl(url: string): URL | undefined {
try {
const parsed = new URL(url);
const allowedHostnames = ["localhost", "127.0.0.1"];
const allowedPaths = ["/", "/callback"];
if (
!allowedHostnames.includes(parsed.hostname) ||
!allowedPaths.includes(parsed.pathname)
) {
throw new Error(`Invalid callback url: ${url}`);
}
return parsed;
} catch (e) {
console.error(e);
}
}