0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
40
|
3 local Parsers = require "luan:Parsers.luan"
|
|
4 local json_string = Parsers.json_string or error()
|
46
|
5 local Html = require "luan:Html.luan"
|
|
6 local html_encode = Html.encode or error()
|
88
|
7 local url_encode = Html.url_encode or error()
|
0
|
8 local Io = require "luan:Io.luan"
|
|
9 local Http = require "luan:http/Http.luan"
|
|
10 local Shared = require "site:/lib/Shared.luan"
|
|
11 local head = Shared.head or error()
|
|
12 local header = Shared.header or error()
|
5
|
13 local Utils = require "site:/lib/Utils.luan"
|
|
14 local base_url = Utils.base_url or error()
|
|
15 local User = require "site:/lib/User.luan"
|
|
16 local current_user = User.current_required or error()
|
0
|
17
|
|
18
|
|
19 return function()
|
5
|
20 local user = current_user()
|
|
21 if user == nil then return end
|
0
|
22 Io.stdout = Http.response.text_writer()
|
|
23 %>
|
|
24 <!doctype html>
|
|
25 <html>
|
|
26 <head>
|
|
27 <% head() %>
|
20
|
28 <script>
|
|
29 'use strict';
|
|
30
|
46
|
31 let email = <%= json_string(user.email) %>;
|
|
32 let username = <%= json_string(user.name) or "" %>;
|
41
|
33 let notifyEmail = <%= json_string(user.notify_email or "") %>;
|
40
|
34 let multiNotify = <%= user.multi_notify %>;
|
41
|
35 let voice = <%= json_string(user.voice_url or "") %>;
|
40
|
36
|
46
|
37 function showUsername() {
|
|
38 let span = document.querySelector('span[username]');
|
|
39 span.textContent = username || email;
|
|
40 }
|
|
41
|
|
42 function editUsername() {
|
|
43 let dialog = document.querySelector('dialog[edit_username]');
|
|
44 let input = dialog.querySelector('input[name=username]');
|
|
45 input.value = username;
|
|
46 openModal(dialog);
|
|
47 }
|
|
48
|
|
49 function saveUsername() {
|
|
50 let dialog = document.querySelector('dialog[edit_username]');
|
83
|
51 closeModal(dialog);
|
|
52 username = dialog.querySelector('input[name=username]').value;
|
46
|
53 showUsername();
|
|
54 ajax(`save_username.js?username=${encodeURIComponent(username)}`);
|
|
55 }
|
|
56
|
40
|
57 function showNotify() {
|
|
58 let span = document.querySelector('span[notify]');
|
41
|
59 span.textContent = notifyEmail ? `Send notifications to ${notifyEmail}` : 'No notifications';
|
40
|
60 }
|
|
61
|
|
62 function editNotify() {
|
|
63 let dialog = document.querySelector('dialog[edit_notify]');
|
|
64 let input = dialog.querySelector('input[name=notify_email]');
|
|
65 input.value = notifyEmail;
|
|
66 let radio = dialog.querySelector(`input[type=radio][value=${multiNotify}]`);
|
|
67 radio.checked = true;
|
|
68 openModal(dialog);
|
|
69 }
|
|
70
|
|
71 function saveNotify() {
|
|
72 let dialog = document.querySelector('dialog[edit_notify]');
|
83
|
73 closeModal(dialog);
|
|
74 notifyEmail = dialog.querySelector('input[name=notify_email]').value;
|
40
|
75 let radio = dialog.querySelector('input[type=radio]:checked');
|
|
76 multiNotify = radio.value === 'true';
|
|
77 showNotify();
|
|
78 ajax(`save_notify.js?email=${encodeURIComponent(notifyEmail)}&multi=${multiNotify}`);
|
|
79 }
|
|
80
|
41
|
81 function showVoice() {
|
|
82 let span = document.querySelector('span[voice]');
|
61
|
83 span.textContent = voice ? `Your voice URL is ${voice}` : 'No voice URL';
|
41
|
84 }
|
|
85
|
|
86 function editVoice() {
|
|
87 let dialog = document.querySelector('dialog[edit_voice]');
|
|
88 let input = dialog.querySelector('input[name=voice]');
|
|
89 input.value = voice;
|
|
90 openModal(dialog);
|
|
91 }
|
|
92
|
|
93 function saveVoice() {
|
|
94 let dialog = document.querySelector('dialog[edit_voice]');
|
83
|
95 closeModal(dialog);
|
|
96 voice = dialog.querySelector('input[name=voice]').value;
|
41
|
97 showVoice();
|
|
98 ajax(`save_voice.js?url=${encodeURIComponent(voice)}`);
|
|
99 }
|
|
100
|
20
|
101 function deleteUser() {
|
|
102 let dialog = document.querySelector('dialog[delete_user]');
|
|
103 openModal(dialog);
|
|
104 }
|
|
105
|
|
106 function doDeleteUser(el) {
|
|
107 closeModal(el);
|
|
108 ajax('delete_user.js');
|
|
109 }
|
40
|
110
|
67
|
111 function openUrl() {
|
|
112 let dialog = document.querySelector('dialog[url]');
|
|
113 openModal(dialog);
|
|
114 }
|
|
115
|
40
|
116 function init() {
|
46
|
117 showUsername();
|
40
|
118 showNotify();
|
41
|
119 showVoice();
|
40
|
120 }
|
20
|
121 </script>
|
34
|
122 <style>
|
|
123 h1 {
|
|
124 text-align: center;
|
|
125 }
|
52
|
126 input[name] {
|
|
127 max-width: 100%;
|
|
128 }
|
|
129 input[name=username] {
|
|
130 width: 300px;
|
|
131 }
|
40
|
132 input[name=notify_email] {
|
52
|
133 width: 500px;
|
41
|
134 }
|
|
135 input[name=voice] {
|
|
136 width: 500px;
|
40
|
137 }
|
67
|
138 dialog[url] {
|
|
139 width: 600px;
|
|
140 }
|
40
|
141 span[note] {
|
|
142 font-size: small;
|
|
143 }
|
34
|
144 </style>
|
0
|
145 </head>
|
|
146 <body>
|
|
147 <% header() %>
|
|
148 <div content>
|
3
|
149 <h1>Your Account</h1>
|
61
|
150 <p>Your username is <span username></span> <a href="javascript:editUsername()">Edit</a></p>
|
40
|
151 <p><span notify></span> <a href="javascript:editNotify()">Edit</a></p>
|
41
|
152 <p><span voice></span> <a href="javascript:editVoice()">Edit</a></p>
|
67
|
153 <p><a href="javascript:openUrl()">Your chat URL</a></p>
|
34
|
154 <p><a href="javascript:logout()">Logout</a></p>
|
20
|
155 <p><a href="javascript:deleteUser()">Delete account</a></p>
|
66
|
156 <p> </p>
|
|
157 <p><a href="about.html">About Luan Chat</a></p>
|
0
|
158 </div>
|
46
|
159 <dialog edit_username>
|
|
160 <h2>Edit Username</h2>
|
|
161 <form action="javascript:saveUsername()">
|
|
162 <p>
|
|
163 <label>Username</label><br>
|
|
164 <input type=text name=username placeholder="<%=html_encode(user.email)%>"><br>
|
|
165 </p>
|
|
166 <div buttons>
|
60
|
167 <button type=button onclick="closeModal(this)">Cancel</button>
|
|
168 <button type=submit>Save</button>
|
46
|
169 </div>
|
|
170 </form>
|
|
171 </dialog>
|
40
|
172 <dialog edit_notify>
|
|
173 <h2>Edit Notification</h2>
|
|
174 <form action="javascript:saveNotify()">
|
|
175 <p>
|
86
|
176 <label>Email addresses to send notifications to</label><br>
|
52
|
177 <input type=email multiple name=notify_email><br>
|
|
178 <span note>Leave blank for no notifications. Use <a href="https://pushover.net/">Pushover</a> for app notification.</span>
|
40
|
179 </p>
|
|
180 <p>
|
|
181 <label clickable>
|
|
182 <input type=radio name=multi_notify value=false>
|
|
183 Notify only for first message
|
|
184 </label><br>
|
|
185 <label clickable>
|
|
186 <input type=radio name=multi_notify value=true>
|
|
187 Notify for all messages
|
|
188 </label>
|
|
189 </p>
|
|
190 <div buttons>
|
60
|
191 <button type=button onclick="closeModal(this)">Cancel</button>
|
|
192 <button type=submit>Save</button>
|
40
|
193 </div>
|
|
194 </form>
|
|
195 </dialog>
|
41
|
196 <dialog edit_voice>
|
|
197 <h2>Edit Voice URL</h2>
|
|
198 <form action="javascript:saveVoice()">
|
|
199 <p>
|
|
200 <label>URL for receiving voice calls</label><br>
|
|
201 <input type=url name=voice><br>
|
67
|
202 <span note>Leave blank for no voice URL. We recommend <a href="https://whereby.com/">Whereby</a>.</span>
|
41
|
203 </p>
|
|
204 <div buttons>
|
60
|
205 <button type=button onclick="closeModal(this)">Cancel</button>
|
|
206 <button type=submit>Save</button>
|
41
|
207 </div>
|
|
208 </form>
|
|
209 </dialog>
|
20
|
210 <dialog delete_user>
|
|
211 <h2>Delete Account</h2>
|
|
212 <p>Are you sure that you want to delete your account?</p>
|
|
213 <div buttons>
|
60
|
214 <button onclick="closeModal(this)">Cancel</button>
|
|
215 <button onclick="doDeleteUser(this)">Delete</button>
|
20
|
216 </div>
|
|
217 </dialog>
|
67
|
218 <dialog url>
|
|
219 <h2>Your chat URL</h2>
|
88
|
220 <p><%= base_url() %>/chat?with=<%=url_encode(user.email)%></p>
|
67
|
221 <p>Use this URL to link to your chat so that other people can chat with you by clicking on the link.</p>
|
|
222 <div buttons>
|
|
223 <button onclick="closeModal(this)">Close</button>
|
|
224 </div>
|
|
225 </dialog>
|
40
|
226 <script> init(); </script>
|
45
|
227 <!-- ID = <%=user.id%> -->
|
0
|
228 </body>
|
|
229 </html>
|
|
230 <%
|
|
231 end
|