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()
|
|
5 local Table = require "luan:Table.luan"
|
|
6 local concat = Table.concat or error()
|
5
|
7 local is_empty = Table.is_empty or error()
|
|
8 local size = Table.size or error()
|
0
|
9 local Io = require "luan:Io.luan"
|
|
10 local Http = require "luan:http/Http.luan"
|
|
11 local Shared = require "site:/lib/Shared.luan"
|
|
12 local head = Shared.head or error()
|
|
13 local header = Shared.header or error()
|
4
|
14 local User = require "site:/lib/User.luan"
|
5
|
15 local current_user = User.current or error()
|
4
|
16 local get_user_by_id = User.get_by_id or error()
|
|
17 local get_user_by_email = User.get_by_email or error()
|
|
18 local Utils = require "site:/lib/Utils.luan"
|
|
19 local to_set = Utils.to_set or error()
|
|
20 local Db = require "site:/lib/Db.luan"
|
|
21 local run_in_transaction = Db.run_in_transaction or error()
|
|
22 local Chat = require "site:/lib/Chat.luan"
|
|
23 local chat_search = Chat.search or error()
|
0
|
24
|
|
25
|
4
|
26 local function other_users(user,chat)
|
|
27 local my_id = user.id
|
|
28 local t = {}
|
|
29 for _, user_id in ipairs(chat.user_ids) do
|
|
30 if user_id ~= my_id then
|
|
31 local other_user = get_user_by_id(user_id) or error()
|
|
32 t[#t+1] = other_user.email
|
|
33 end
|
|
34 end
|
|
35 return concat( t, ", " )
|
|
36 end
|
|
37
|
|
38 local function get_chat(with)
|
|
39 local t = {}
|
|
40 local ids = {}
|
|
41 for email in pairs(with) do
|
|
42 local with_user = get_user_by_email(email) or error()
|
|
43 local id = with_user.id
|
|
44 t[#t+1] = "+chat_user_ids:"..id
|
|
45 ids[#ids+1] = id
|
|
46 end
|
|
47 local query = concat(t," ")
|
|
48 run_in_transaction( function()
|
|
49 local chats = chat_search(query)
|
|
50 local n = #chats
|
|
51 if n == 0 then
|
|
52 local chat = Chat.new{
|
|
53 user_ids = ids
|
|
54 }
|
|
55 chat.save()
|
|
56 return chat
|
|
57 elseif n == 1 then
|
|
58 return chats[1]
|
|
59 else
|
|
60 error("multiple chats for: "..query)
|
|
61 end
|
|
62 end )
|
|
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
|
5
|
81 if not is_empty(with) then
|
4
|
82 with[user.email] = true
|
5
|
83 if size(with) > 1 then
|
|
84 get_chat(with)
|
|
85 end
|
4
|
86 end
|
|
87 local chats = user.get_chats()
|
0
|
88 Io.stdout = Http.response.text_writer()
|
|
89 %>
|
|
90 <!doctype html>
|
|
91 <html>
|
|
92 <head>
|
|
93 <% head() %>
|
|
94 </head>
|
|
95 <body>
|
|
96 <% header() %>
|
|
97 <div content>
|
4
|
98 <h1>Chat</h1>
|
|
99 <% for _, chat in ipairs(chats) do %>
|
|
100 <p><%= other_users(user,chat) %></p>
|
|
101 <% end %>
|
0
|
102 </div>
|
|
103 </body>
|
|
104 </html>
|
|
105 <%
|
|
106 end
|