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