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