7
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
10
|
3 local ipairs = Luan.ipairs or error()
|
63
|
4 local String = require "luan:String.luan"
|
|
5 local digest_message = String.digest_message or error()
|
7
|
6 local Parsers = require "luan:Parsers.luan"
|
|
7 local json_string = Parsers.json_string or error()
|
|
8 local Io = require "luan:Io.luan"
|
|
9 local Http = require "luan:http/Http.luan"
|
|
10 local User = require "site:/lib/User.luan"
|
|
11 local current_user = User.current or error()
|
46
|
12 local get_user_by_id = User.get_by_id or error()
|
7
|
13 local Chat = require "site:/lib/Chat.luan"
|
|
14 local get_chat_by_id = Chat.get_by_id or error()
|
10
|
15 local Post = require "site:/lib/Post.luan"
|
|
16 local post_search = Post.search or error()
|
12
|
17 local Shared = require "site:/lib/Shared.luan"
|
|
18 local post_html = Shared.post_html or error()
|
27
|
19 local Logging = require "luan:logging/Logging.luan"
|
|
20 local logger = Logging.logger "get_chat.js"
|
7
|
21
|
10
|
22
|
63
|
23 local function get_html(user,chat)
|
53
|
24 chat.read(user)
|
10
|
25 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
26 %>
|
10
|
27 <div top>
|
27
|
28 <h3>
|
|
29 <img back onclick="back()" src="/images/arrow_back.svg">
|
46
|
30 <span><%
|
|
31 local user_id = chat.other_user_id(user.id)
|
|
32 local other_user = get_user_by_id(user_id) or error(user_id)
|
|
33 %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><%
|
|
34 local voice_url = other_user.voice_url
|
|
35 if voice_url ~= nil then
|
|
36 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%
|
|
37 end
|
|
38 %></span>
|
27
|
39 </h3>
|
34
|
40 <button onclick='deleteChat()'>Delete</button>
|
10
|
41 </div>
|
|
42 <div main>
|
|
43 <%
|
|
44 for _, post in ipairs(posts) do
|
|
45 post_html(post)
|
|
46 end
|
|
47 %>
|
|
48 <div input>
|
|
49 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
63
|
50 <button onclick="uploadFile()" title="Add file"><img src="/images/upload_file.svg"></button>
|
10
|
51 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
52 </div>
|
|
53 </div>
|
7
|
54 <%
|
|
55 end
|
|
56
|
|
57 return function()
|
63
|
58 local user = current_user() or error()
|
|
59 local chat = Http.request.parameters.chat or error()
|
|
60 chat = get_chat_by_id(chat) or error()
|
|
61 local html = `get_html(user,chat)`
|
|
62 local digest = digest_message("MD5",user.password..chat.id)
|
7
|
63 Io.stdout = Http.response.text_writer()
|
|
64 %>
|
63
|
65 gotChat(<%=json_string(html)%>);
|
|
66 filebinUrl = 'https://filebin.net/<%=digest%>/';
|
7
|
67 <%
|
|
68 end
|