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()
|
4
|
17 local User = require "site:/lib/User.luan"
|
5
|
18 local current_user = User.current or error()
|
4
|
19 local get_user_by_email = User.get_by_email or error()
|
|
20 local Utils = require "site:/lib/Utils.luan"
|
|
21 local to_set = Utils.to_set or error()
|
|
22 local Db = require "site:/lib/Db.luan"
|
|
23 local run_in_transaction = Db.run_in_transaction or error()
|
|
24 local Chat = require "site:/lib/Chat.luan"
|
|
25 local chat_search = Chat.search or error()
|
8
|
26 local Logging = require "luan:logging/Logging.luan"
|
|
27 local logger = Logging.logger "chat.html"
|
0
|
28
|
|
29
|
4
|
30 local function get_chat(with)
|
|
31 local t = {}
|
|
32 local ids = {}
|
|
33 for email in pairs(with) do
|
|
34 local with_user = get_user_by_email(email) or error()
|
|
35 local id = with_user.id
|
|
36 t[#t+1] = "+chat_user_ids:"..id
|
|
37 ids[#ids+1] = id
|
|
38 end
|
|
39 local query = concat(t," ")
|
8
|
40 return run_in_transaction( function()
|
4
|
41 local chats = chat_search(query)
|
|
42 local n = #chats
|
|
43 if n == 0 then
|
|
44 local chat = Chat.new{
|
|
45 user_ids = ids
|
|
46 }
|
|
47 chat.save()
|
|
48 return chat
|
|
49 elseif n == 1 then
|
|
50 return chats[1]
|
|
51 else
|
|
52 error("multiple chats for: "..query)
|
|
53 end
|
|
54 end )
|
|
55 end
|
|
56
|
0
|
57 return function()
|
5
|
58 local with = Http.request.parameters.with
|
|
59 with = to_set(with)
|
4
|
60 local user = current_user()
|
|
61 if user == nil then
|
5
|
62 local url = "/login.html"
|
|
63 if not is_empty(with) then
|
|
64 local t = {}
|
|
65 for email in pairs(with) do
|
|
66 t[#t+1] = "with="..email
|
|
67 end
|
|
68 url = url.."?"..concat(t,"&")
|
|
69 end
|
|
70 Http.response.send_redirect(url)
|
4
|
71 return
|
|
72 end
|
8
|
73 local selected = nil
|
5
|
74 if not is_empty(with) then
|
4
|
75 with[user.email] = true
|
5
|
76 if size(with) > 1 then
|
8
|
77 selected = get_chat(with)
|
5
|
78 end
|
4
|
79 end
|
0
|
80 Io.stdout = Http.response.text_writer()
|
|
81 %>
|
|
82 <!doctype html>
|
|
83 <html>
|
|
84 <head>
|
|
85 <% head() %>
|
7
|
86 <style>
|
10
|
87 @import "chat.css?s=<%=started%>";
|
7
|
88 </style>
|
10
|
89 <script src="chat.js?s=<%=started%>"></script>
|
0
|
90 </head>
|
|
91 <body>
|
|
92 <% header() %>
|
|
93 <div content>
|
7
|
94 <div chats>
|
15
|
95 <% chats_html() %>
|
7
|
96 </div>
|
|
97 <div posts></div>
|
0
|
98 </div>
|
15
|
99 <script>
|
8
|
100 <%
|
|
101 if selected ~= nil then
|
|
102 %>
|
|
103 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
|
104 selectChat(div);
|
|
105 <%
|
|
106 end
|
|
107 %>
|
15
|
108 setUserEventSource(<%=user.id%>);
|
|
109 </script>
|
|
110 </body>
|
0
|
111 </html>
|
|
112 <%
|
|
113 end
|