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"
|
|
28 local chat_search = Chat.search 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 t = {}
|
|
35 local ids = {}
|
|
36 for email in pairs(with) do
|
|
37 local with_user = get_user_by_email(email) or error()
|
|
38 local id = with_user.id
|
|
39 t[#t+1] = "+chat_user_ids:"..id
|
|
40 ids[#ids+1] = id
|
|
41 end
|
|
42 local query = concat(t," ")
|
17
|
43 local need_push = false
|
|
44 local chat = run_in_transaction( function()
|
4
|
45 local chats = chat_search(query)
|
|
46 local n = #chats
|
|
47 if n == 0 then
|
|
48 local chat = Chat.new{
|
|
49 user_ids = ids
|
|
50 }
|
|
51 chat.save()
|
17
|
52 need_push = true
|
4
|
53 return chat
|
|
54 elseif n == 1 then
|
|
55 return chats[1]
|
|
56 else
|
|
57 error("multiple chats for: "..query)
|
|
58 end
|
|
59 end )
|
17
|
60 if need_push then
|
|
61 local js = "getChats('"..chat.id.."')"
|
|
62 http_push_to_users( chat.user_ids, js )
|
|
63 end
|
|
64 return chat
|
4
|
65 end
|
|
66
|
0
|
67 return function()
|
46
|
68 local with_email = Http.request.parameters.with
|
|
69 local with = to_set(with_email)
|
4
|
70 local user = current_user()
|
|
71 if user == nil then
|
5
|
72 local url = "/login.html"
|
|
73 if not is_empty(with) then
|
|
74 local t = {}
|
|
75 for email in pairs(with) do
|
|
76 t[#t+1] = "with="..email
|
|
77 end
|
|
78 url = url.."?"..concat(t,"&")
|
|
79 end
|
|
80 Http.response.send_redirect(url)
|
4
|
81 return
|
|
82 end
|
8
|
83 local selected = nil
|
5
|
84 if not is_empty(with) then
|
4
|
85 with[user.email] = true
|
5
|
86 if size(with) > 1 then
|
8
|
87 selected = get_chat(with)
|
5
|
88 end
|
4
|
89 end
|
35
|
90 local user_id = user.id
|
0
|
91 Io.stdout = Http.response.text_writer()
|
|
92 %>
|
|
93 <!doctype html>
|
|
94 <html>
|
|
95 <head>
|
|
96 <% head() %>
|
7
|
97 <style>
|
10
|
98 @import "chat.css?s=<%=started%>";
|
7
|
99 </style>
|
33
|
100 <style online></style>
|
10
|
101 <script src="chat.js?s=<%=started%>"></script>
|
0
|
102 </head>
|
|
103 <body>
|
|
104 <% header() %>
|
27
|
105 <div content show="chats">
|
7
|
106 <div chats>
|
15
|
107 <% chats_html() %>
|
7
|
108 </div>
|
34
|
109 <div posts>
|
|
110 <h3 intro>Choose a chat on the left</h3>
|
|
111 </div>
|
0
|
112 </div>
|
35
|
113 <div hidden>
|
|
114 <span pulldown>
|
|
115 <img onclick="clickMenu(this)" src="/images/more_vert.svg">
|
|
116 <div>
|
38
|
117 <span onclick="editPost(this)">Edit</span>
|
|
118 <span onclick="deletePost(this)">Delete</span>
|
35
|
119 </div>
|
|
120 </span>
|
|
121 </div>
|
20
|
122 <dialog delete_chat>
|
|
123 <h2>Delete Chat</h2>
|
|
124 <p>Are you sure that you want to delete this chat?</p>
|
|
125 <div buttons>
|
|
126 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
127 <button go onclick="doDeleteChat(this)">Delete</button>
|
|
128 </div>
|
|
129 </dialog>
|
23
|
130 <dialog delete_post>
|
|
131 <h2>Delete Message</h2>
|
|
132 <p>Are you sure that you want to delete this message?</p>
|
|
133 <div buttons>
|
|
134 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
135 <button go onclick="doDeletePost(this)">Delete</button>
|
|
136 </div>
|
|
137 </dialog>
|
24
|
138 <dialog edit_post>
|
|
139 <h2>Edit Message</h2>
|
|
140 <p><textarea onfocus="fixTextarea(event)" oninput="fixTextarea(event)"></textarea></p>
|
|
141 <div buttons>
|
|
142 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
143 <button go onclick="savePost(this)">Save</button>
|
|
144 </div>
|
|
145 </dialog>
|
15
|
146 <script>
|
35
|
147 'use strict';
|
|
148
|
8
|
149 <%
|
|
150 if selected ~= nil then
|
|
151 %>
|
|
152 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
46
|
153 selectChat(div,<%=json_string(with_email)%>);
|
8
|
154 <%
|
|
155 end
|
|
156 %>
|
35
|
157 setUserEventSource(<%=user_id%>);
|
30
|
158 lastUpdate = <%=user.last_update()%>;
|
35
|
159 userId = '<%=user_id%>';
|
15
|
160 </script>
|
|
161 </body>
|
0
|
162 </html>
|
|
163 <%
|
|
164 end
|