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_email = User.get_by_email or error()
|
|
17 local Utils = require "site:/lib/Utils.luan"
|
|
18 local to_set = Utils.to_set or error()
|
|
19 local Db = require "site:/lib/Db.luan"
|
|
20 local run_in_transaction = Db.run_in_transaction or error()
|
|
21 local Chat = require "site:/lib/Chat.luan"
|
|
22 local chat_search = Chat.search or error()
|
8
|
23 local Logging = require "luan:logging/Logging.luan"
|
|
24 local logger = Logging.logger "chat.html"
|
0
|
25
|
|
26
|
4
|
27 local function get_chat(with)
|
|
28 local t = {}
|
|
29 local ids = {}
|
|
30 for email in pairs(with) do
|
|
31 local with_user = get_user_by_email(email) or error()
|
|
32 local id = with_user.id
|
|
33 t[#t+1] = "+chat_user_ids:"..id
|
|
34 ids[#ids+1] = id
|
|
35 end
|
|
36 local query = concat(t," ")
|
8
|
37 return run_in_transaction( function()
|
4
|
38 local chats = chat_search(query)
|
|
39 local n = #chats
|
|
40 if n == 0 then
|
|
41 local chat = Chat.new{
|
|
42 user_ids = ids
|
|
43 }
|
|
44 chat.save()
|
|
45 return chat
|
|
46 elseif n == 1 then
|
|
47 return chats[1]
|
|
48 else
|
|
49 error("multiple chats for: "..query)
|
|
50 end
|
|
51 end )
|
|
52 end
|
|
53
|
0
|
54 return function()
|
5
|
55 local with = Http.request.parameters.with
|
|
56 with = to_set(with)
|
4
|
57 local user = current_user()
|
|
58 if user == nil then
|
5
|
59 local url = "/login.html"
|
|
60 if not is_empty(with) then
|
|
61 local t = {}
|
|
62 for email in pairs(with) do
|
|
63 t[#t+1] = "with="..email
|
|
64 end
|
|
65 url = url.."?"..concat(t,"&")
|
|
66 end
|
|
67 Http.response.send_redirect(url)
|
4
|
68 return
|
|
69 end
|
8
|
70 local selected = nil
|
5
|
71 if not is_empty(with) then
|
4
|
72 with[user.email] = true
|
5
|
73 if size(with) > 1 then
|
8
|
74 selected = get_chat(with)
|
5
|
75 end
|
4
|
76 end
|
|
77 local chats = user.get_chats()
|
0
|
78 Io.stdout = Http.response.text_writer()
|
|
79 %>
|
|
80 <!doctype html>
|
|
81 <html>
|
|
82 <head>
|
|
83 <% head() %>
|
7
|
84 <style>
|
|
85 body {
|
|
86 height: 100vh;
|
|
87 display: flex;
|
|
88 flex-direction: column;
|
|
89 }
|
|
90 div[content] {
|
|
91 margin-bottom: 0;
|
|
92 display: flex;
|
|
93 height: 100%;
|
|
94 margin-left: calc(3% - 8px);
|
|
95 }
|
|
96 div[chats] {
|
|
97 width: 250px;
|
|
98 padding-right: 8px;
|
|
99 }
|
|
100 div[chats] > div {
|
|
101 margin-top: 2px;
|
|
102 margin-bottom: 2px;
|
|
103 padding-top: 16px;
|
|
104 padding-bottom: 16px;
|
|
105 padding-left: 8px;
|
|
106 padding-right: 8px;
|
|
107 border-radius: 4px;
|
|
108 }
|
|
109 div[chats] > div:hover,
|
|
110 div[chats] > div[selected] {
|
|
111 background-color: LightBlue;
|
|
112 }
|
|
113 div[posts] {
|
|
114 padding-left: 8px;
|
|
115 border-left: 1px solid;
|
|
116 }
|
|
117 </style>
|
|
118 <script>
|
|
119 'use strict';
|
|
120
|
|
121 let currentChatId = null;
|
|
122
|
|
123 function selectChat(div) {
|
|
124 let chatId = div.getAttribute('chat');
|
|
125 if( chatId === currentChatId )
|
|
126 return;
|
|
127 let selected = div.parentNode.querySelector('[selected]');
|
|
128 if( selected ) selected.removeAttribute('selected');
|
|
129 div.setAttribute('selected','');
|
|
130 ajax(`chat.js?chat=${chatId}`);
|
|
131 }
|
|
132 </script>
|
0
|
133 </head>
|
|
134 <body>
|
|
135 <% header() %>
|
|
136 <div content>
|
7
|
137 <div chats>
|
|
138 <%
|
|
139 for _, chat in ipairs(chats) do
|
|
140 %>
|
|
141 <div chat="<%=chat.id%>" onclick="selectChat(this)"><%= chat.other_users_email(user) %></div>
|
|
142 <%
|
|
143 end
|
|
144 %>
|
|
145 </div>
|
|
146 <div posts></div>
|
0
|
147 </div>
|
|
148 </body>
|
8
|
149 <%
|
|
150 if selected ~= nil then
|
|
151 %>
|
|
152 <script>
|
|
153 let div = document.querySelector('div[chat="<%=selected.id%>"]');
|
|
154 selectChat(div);
|
|
155 </script>
|
|
156 <%
|
|
157 end
|
|
158 %>
|
0
|
159 </html>
|
|
160 <%
|
|
161 end
|