0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
4
|
3 local ipairs = Luan.ipairs or error()
|
|
4 local pairs = Luan.pairs or error()
|
10
|
5 local range = Luan.range or error()
|
4
|
6 local Table = require "luan:Table.luan"
|
|
7 local concat = Table.concat or error()
|
5
|
8 local is_empty = Table.is_empty or error()
|
|
9 local size = Table.size or error()
|
46
|
10 local Parsers = require "luan:Parsers.luan"
|
|
11 local json_string = Parsers.json_string or error()
|
0
|
12 local Io = require "luan:Io.luan"
|
|
13 local Http = require "luan:http/Http.luan"
|
|
14 local Shared = require "site:/lib/Shared.luan"
|
|
15 local head = Shared.head or error()
|
|
16 local header = Shared.header or error()
|
10
|
17 local started = Shared.started or error()
|
15
|
18 local chats_html = Shared.chats_html or error()
|
17
|
19 local http_push_to_users = Shared.http_push_to_users or error()
|
4
|
20 local User = require "site:/lib/User.luan"
|
5
|
21 local current_user = User.current or error()
|
4
|
22 local get_user_by_email = User.get_by_email or error()
|
|
23 local Utils = require "site:/lib/Utils.luan"
|
|
24 local to_set = Utils.to_set or error()
|
|
25 local Db = require "site:/lib/Db.luan"
|
|
26 local run_in_transaction = Db.run_in_transaction or error()
|
|
27 local Chat = require "site:/lib/Chat.luan"
|
58
|
28 local get_chat_by_user_ids = Chat.get_by_user_ids or error()
|
8
|
29 local Logging = require "luan:logging/Logging.luan"
|
21
|
30 local logger = Logging.logger "index.html"
|
0
|
31
|
|
32
|
4
|
33 local function get_chat(with)
|
|
34 local ids = {}
|
|
35 for email in pairs(with) do
|
|
36 local with_user = get_user_by_email(email) or error()
|
|
37 local id = with_user.id
|
|
38 ids[#ids+1] = id
|
|
39 end
|
17
|
40 local need_push = false
|
|
41 local chat = run_in_transaction( function()
|
58
|
42 local chat = get_chat_by_user_ids(ids)
|
|
43 if chat == nil then
|
|
44 chat = Chat.new{
|
4
|
45 user_ids = ids
|
|
46 }
|
|
47 chat.save()
|
17
|
48 need_push = true
|
4
|
49 end
|
58
|
50 return chat
|
4
|
51 end )
|
17
|
52 if need_push then
|
|
53 local js = "getChats('"..chat.id.."')"
|
|
54 http_push_to_users( chat.user_ids, js )
|
|
55 end
|
|
56 return chat
|
4
|
57 end
|
|
58
|
0
|
59 return function()
|
46
|
60 local with_email = Http.request.parameters.with
|
|
61 local with = to_set(with_email)
|
4
|
62 local user = current_user()
|
|
63 if user == nil then
|
5
|
64 local url = "/login.html"
|
|
65 if not is_empty(with) then
|
|
66 local t = {}
|
|
67 for email in pairs(with) do
|
|
68 t[#t+1] = "with="..email
|
|
69 end
|
|
70 url = url.."?"..concat(t,"&")
|
|
71 end
|
|
72 Http.response.send_redirect(url)
|
4
|
73 return
|
|
74 end
|
8
|
75 local selected = nil
|
5
|
76 if not is_empty(with) then
|
4
|
77 with[user.email] = true
|
5
|
78 if size(with) > 1 then
|
8
|
79 selected = get_chat(with)
|
5
|
80 end
|
4
|
81 end
|
35
|
82 local user_id = user.id
|
0
|
83 Io.stdout = Http.response.text_writer()
|
|
84 %>
|
|
85 <!doctype html>
|
|
86 <html>
|
|
87 <head>
|
|
88 <% head() %>
|
7
|
89 <style>
|
10
|
90 @import "chat.css?s=<%=started%>";
|
7
|
91 </style>
|
33
|
92 <style online></style>
|
10
|
93 <script src="chat.js?s=<%=started%>"></script>
|
0
|
94 </head>
|
|
95 <body>
|
|
96 <% header() %>
|
48
|
97 <div chat_content show="chats">
|
7
|
98 <div chats>
|
15
|
99 <% chats_html() %>
|
7
|
100 </div>
|
34
|
101 <div posts>
|
56
|
102 <div intro>
|
|
103 <h3>Choose a chat on the left</h3>
|
|
104 <p>or</p>
|
|
105 <h3>Chat with another person</h3>
|
|
106 <form action="javascript:invite()">
|
|
107 <p>
|
|
108 <label>Person's email</label><br>
|
|
109 <input type=email name=email required><br>
|
|
110 </p>
|
|
111 <p>
|
|
112 <input type=submit>
|
|
113 </p>
|
|
114 </form>
|
|
115 </div>
|
34
|
116 </div>
|
0
|
117 </div>
|
35
|
118 <div hidden>
|
|
119 <span pulldown>
|
|
120 <img onclick="clickMenu(this)" src="/images/more_vert.svg">
|
|
121 <div>
|
38
|
122 <span onclick="editPost(this)">Edit</span>
|
|
123 <span onclick="deletePost(this)">Delete</span>
|
35
|
124 </div>
|
|
125 </span>
|
|
126 </div>
|
20
|
127 <dialog delete_chat>
|
|
128 <h2>Delete Chat</h2>
|
|
129 <p>Are you sure that you want to delete this chat?</p>
|
|
130 <div buttons>
|
|
131 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
132 <button go onclick="doDeleteChat(this)">Delete</button>
|
|
133 </div>
|
|
134 </dialog>
|
23
|
135 <dialog delete_post>
|
|
136 <h2>Delete Message</h2>
|
|
137 <p>Are you sure that you want to delete this message?</p>
|
|
138 <div buttons>
|
|
139 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
140 <button go onclick="doDeletePost(this)">Delete</button>
|
|
141 </div>
|
|
142 </dialog>
|
24
|
143 <dialog edit_post>
|
|
144 <h2>Edit Message</h2>
|
|
145 <p><textarea onfocus="fixTextarea(event)" oninput="fixTextarea(event)"></textarea></p>
|
|
146 <div buttons>
|
|
147 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
148 <button go onclick="savePost(this)">Save</button>
|
|
149 </div>
|
|
150 </dialog>
|
56
|
151 <dialog invite>
|
|
152 <h2>Chat with another person</h2>
|
|
153 <p>We have sent an invite to <span email></span></p>
|
|
154 <div buttons>
|
|
155 <button cancel onclick="closeModal(this)">Close</button>
|
|
156 </div>
|
|
157 </dialog>
|
15
|
158 <script>
|
35
|
159 'use strict';
|
|
160
|
8
|
161 <%
|
|
162 if selected ~= nil then
|
|
163 %>
|
|
164 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
46
|
165 selectChat(div,<%=json_string(with_email)%>);
|
8
|
166 <%
|
|
167 end
|
|
168 %>
|
35
|
169 setUserEventSource(<%=user_id%>);
|
30
|
170 lastUpdate = <%=user.last_update()%>;
|
35
|
171 userId = '<%=user_id%>';
|
15
|
172 </script>
|
|
173 </body>
|
0
|
174 </html>
|
|
175 <%
|
|
176 end
|