This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanage_[domain].page
236 lines (184 loc) · 4.46 KB
/
manage_[domain].page
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
<script context='module'>
export async function load({page, fetch}) {
// Check if the domain exists and 404 if not.
// TODO: use actual hostname during production. (How?)
const domainStatusResponse = await fetch(`https://localhost/domain/available/${page.params.domain}`)
console.log('...', domainStatusResponse)
if (domainStatusResponse.status !== 200) {
const details = await domainStatusResponse.text()
return {
props: {
serverError: {
details
},
domain: ''
}
}
}
const domainStatus = await domainStatusResponse.json()
console.log(domainStatus)
if (domainStatus.available) {
return {
status: 404,
error: 'Domain not found.'
}
}
const response = await fetch('/ssr/config')
if (response.status !== 200) {
const details = await response.text()
return {
props: {
serverError: {
details
},
config: {site: {}, dns: {}, payment: {}},
domain: ''
}
}
}
const config = await (response).json()
return {
props: {
config,
domain: page.params.domain
}
}
}
</script>
<script>
// @hmr:keep-all
import { authenticate } from './library/keys.js'
import { onMount } from 'svelte'
// Implement global Buffer support.
import { Buffer } from 'buffer'
globalThis.Buffer = Buffer
// Props
export let config
export let domain
let shouldShowSavedMessage = false
let errorMessage = null
let password = null
let signingIn = false
let signedIn = false
let baseUrl
let socket
onMount(async () => {
baseUrl = document.location.hostname
})
const duration = (milliseconds) => {
return new Promise(resolve => setTimeout(resolve, milliseconds))
}
function showSavedMessage() {
if (shouldShowSavedMessage) return
shouldShowSavedMessage = true
setTimeout(() => shouldShowSavedMessage = false, 1500)
}
async function signIn () {
// Get the token.
const token = await authenticate (domain, password)
// Open a socket connection using the token.
signingIn = true
try {
socket = new WebSocket(`wss://${baseUrl}/manage/${token}/${domain}`)
} catch (error) {
errorMessage = `WebSocket ${error}.`
signingIn = false
return
}
socket.onopen = () => {
console.log('Socket open.')
}
socket.onerror = event => {
errorMessage = 'WebSocket connection failed (<strong>is Site.js running?</strong>)'
signingIn = false
}
socket.onclose = event => {
signingIn = false
signedIn = false
console.log(`Socket closed.`)
}
socket.onmessage = async event => {
const message = JSON.parse(event.data)
switch (message.type) {
case 'authorisation-success':
signingIn = false
signedIn = true
break
case 'authorisation-failure':
signingIn = false
signedIn = false
errorMessage = 'Authorisation failed.'
break
default:
console.error('Unknown message', message)
break
}
}
}
</script>
<main>
<h1>Manage your place</h1>
<h2>{domain}.{config.dns.domain}</h2>
{#if !signedIn}
<p>Please sign in to access this page.</p>
<form on:submit|preventDefault>
<label for='password'>Password:</label>
<input name='password' type='password' bind:value={password}/>
<button on:click={signIn}>Sign in</button>
</form>
{#if signingIn}
<p style='color: blue;'>Signing in…</p>
{/if}
{#if errorMessage}
<p style='color: red;'>❌️ {@html errorMessage}</p>
{/if}
{:else}
<h3 style='color: green;'>✔️ Signed in. TODO.</h3>
{/if}
</main>
<style>
main {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
input, textarea, select {
display: block;
margin-top: 0.5em;
margin-bottom: 1em;
}
label, .label {
margin-bottom: 0.5em;
}
*:global(.appLogo) {
display: inline-block;
}
*:global(.appLogo svg) {
border: 1px solid black;
padding: 1em;
width: 3em;
height: 3em;
vertical-align: middle;
}
.inline {
display: inline;
}
.block {
display: block;
}
.positive {
color: green;
}
.warning {
color: orange;
}
.negative {
color: red;
}
button {
min-width: 4.5em;
}
fieldset {
max-width: 10em;
}
</style>