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()
|
4
|
16 local User = require "site:/lib/User.luan"
|
5
|
17 local current_user = User.current or error()
|
4
|
18 local get_user_by_email = User.get_by_email or error()
|
|
19 local Utils = require "site:/lib/Utils.luan"
|
|
20 local to_set = Utils.to_set or error()
|
|
21 local Db = require "site:/lib/Db.luan"
|
|
22 local run_in_transaction = Db.run_in_transaction or error()
|
|
23 local Chat = require "site:/lib/Chat.luan"
|
|
24 local chat_search = Chat.search or error()
|
8
|
25 local Logging = require "luan:logging/Logging.luan"
|
|
26 local logger = Logging.logger "chat.html"
|
0
|
27
|
|
28
|
4
|
29 local function get_chat(with)
|
|
30 local t = {}
|
|
31 local ids = {}
|
|
32 for email in pairs(with) do
|
|
33 local with_user = get_user_by_email(email) or error()
|
|
34 local id = with_user.id
|
|
35 t[#t+1] = "+chat_user_ids:"..id
|
|
36 ids[#ids+1] = id
|
|
37 end
|
|
38 local query = concat(t," ")
|
8
|
39 return run_in_transaction( function()
|
4
|
40 local chats = chat_search(query)
|
|
41 local n = #chats
|
|
42 if n == 0 then
|
|
43 local chat = Chat.new{
|
|
44 user_ids = ids
|
|
45 }
|
|
46 chat.save()
|
|
47 return chat
|
|
48 elseif n == 1 then
|
|
49 return chats[1]
|
|
50 else
|
|
51 error("multiple chats for: "..query)
|
|
52 end
|
|
53 end )
|
|
54 end
|
|
55
|
0
|
56 return function()
|
5
|
57 local with = Http.request.parameters.with
|
|
58 with = to_set(with)
|
4
|
59 local user = current_user()
|
|
60 if user == nil then
|
5
|
61 local url = "/login.html"
|
|
62 if not is_empty(with) then
|
|
63 local t = {}
|
|
64 for email in pairs(with) do
|
|
65 t[#t+1] = "with="..email
|
|
66 end
|
|
67 url = url.."?"..concat(t,"&")
|
|
68 end
|
|
69 Http.response.send_redirect(url)
|
4
|
70 return
|
|
71 end
|
8
|
72 local selected = nil
|
5
|
73 if not is_empty(with) then
|
4
|
74 with[user.email] = true
|
5
|
75 if size(with) > 1 then
|
8
|
76 selected = get_chat(with)
|
5
|
77 end
|
4
|
78 end
|
9
|
79 local chats = Chat.search( "chat_user_ids:"..user.id, "chat_updated desc" )
|
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>
|
|
95 <%
|
|
96 for _, chat in ipairs(chats) do
|
|
97 %>
|
|
98 <div chat="<%=chat.id%>" onclick="selectChat(this)"><%= chat.other_users_email(user) %></div>
|
|
99 <%
|
|
100 end
|
|
101 %>
|
|
102 </div>
|
|
103 <div posts></div>
|
0
|
104 </div>
|
|
105 </body>
|
8
|
106 <%
|
|
107 if selected ~= nil then
|
|
108 %>
|
|
109 <script>
|
|
110 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
|
111 selectChat(div);
|
|
112 </script>
|
|
113 <%
|
|
114 end
|
|
115 %>
|
0
|
116 </html>
|
|
117 <%
|
|
118 end
|