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