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
|
0
|
88 Io.stdout = Http.response.text_writer()
|
|
89 %>
|
|
90 <!doctype html>
|
|
91 <html>
|
|
92 <head>
|
|
93 <% head() %>
|
7
|
94 <style>
|
10
|
95 @import "chat.css?s=<%=started%>";
|
7
|
96 </style>
|
10
|
97 <script src="chat.js?s=<%=started%>"></script>
|
0
|
98 </head>
|
|
99 <body>
|
|
100 <% header() %>
|
|
101 <div content>
|
7
|
102 <div chats>
|
15
|
103 <% chats_html() %>
|
7
|
104 </div>
|
|
105 <div posts></div>
|
0
|
106 </div>
|
20
|
107 <dialog delete_chat>
|
|
108 <h2>Delete Chat</h2>
|
|
109 <p>Are you sure that you want to delete this chat?</p>
|
|
110 <div buttons>
|
|
111 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
112 <button go onclick="doDeleteChat(this)">Delete</button>
|
|
113 </div>
|
|
114 </dialog>
|
15
|
115 <script>
|
8
|
116 <%
|
|
117 if selected ~= nil then
|
|
118 %>
|
|
119 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
|
120 selectChat(div);
|
|
121 <%
|
|
122 end
|
|
123 %>
|
15
|
124 setUserEventSource(<%=user.id%>);
|
|
125 </script>
|
|
126 </body>
|
0
|
127 </html>
|
|
128 <%
|
|
129 end
|