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()
|
65
|
8 local Html = require "luan:Html.luan"
|
|
9 local html_encode = Html.encode or error()
|
7
|
10 local Io = require "luan:Io.luan"
|
|
11 local Http = require "luan:http/Http.luan"
|
|
12 local User = require "site:/lib/User.luan"
|
|
13 local current_user = User.current or error()
|
46
|
14 local get_user_by_id = User.get_by_id or error()
|
7
|
15 local Chat = require "site:/lib/Chat.luan"
|
|
16 local get_chat_by_id = Chat.get_by_id or error()
|
10
|
17 local Post = require "site:/lib/Post.luan"
|
|
18 local post_search = Post.search or error()
|
12
|
19 local Shared = require "site:/lib/Shared.luan"
|
|
20 local post_html = Shared.post_html or error()
|
27
|
21 local Logging = require "luan:logging/Logging.luan"
|
|
22 local logger = Logging.logger "get_chat.js"
|
7
|
23
|
10
|
24
|
63
|
25 local function get_html(user,chat)
|
53
|
26 chat.read(user)
|
10
|
27 local posts = post_search( "post_chat_id:"..chat.id, "id" )
|
7
|
28 %>
|
10
|
29 <div top>
|
27
|
30 <h3>
|
|
31 <img back onclick="back()" src="/images/arrow_back.svg">
|
46
|
32 <span><%
|
|
33 local user_id = chat.other_user_id(user.id)
|
|
34 local other_user = get_user_by_id(user_id) or error(user_id)
|
68
|
35 %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><%
|
46
|
36 local voice_url = other_user.voice_url
|
|
37 if voice_url ~= nil then
|
|
38 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%
|
|
39 end
|
|
40 %></span>
|
27
|
41 </h3>
|
68
|
42 <span pulldown>
|
|
43 <img onclick="clickMenu(this)" src="/images/menu.svg">
|
|
44 <div>
|
|
45 <span onclick="openPeople()">People in Chat</span>
|
|
46 <span onclick="deleteChat()">Delete Chat</span>
|
|
47 </div>
|
|
48 </span>
|
10
|
49 </div>
|
|
50 <div main>
|
|
51 <%
|
|
52 for _, post in ipairs(posts) do
|
|
53 post_html(post)
|
|
54 end
|
|
55 %>
|
|
56 <div input>
|
79
|
57 <span textarea>
|
|
58 <div reply hidden>
|
|
59 <div reply_top>
|
|
60 <span>Reply to</span>
|
|
61 <img src="/images/close.svg" onclick="closeReply()">
|
|
62 </div>
|
|
63 <div text></div>
|
|
64 <div><a when></a></div>
|
|
65 </div>
|
|
66 <textarea oninput="fixTextarea(event)" onkeydown="textareaKey(event)"></textarea>
|
|
67 </span>
|
63
|
68 <button onclick="uploadFile()" title="Add file"><img src="/images/upload_file.svg"></button>
|
10
|
69 <button onclick="addPost()" title="Send"><img src="/images/send.svg"></button>
|
|
70 </div>
|
|
71 </div>
|
7
|
72 <%
|
|
73 end
|
|
74
|
65
|
75 local function people(chat)
|
|
76 for _, user_id in ipairs(chat.user_ids) do
|
|
77 local user = get_user_by_id(user_id)
|
|
78 local name = user.name
|
|
79 local email = user.email
|
|
80 local voice_url = user.voice_url
|
73
|
81 local voice = voice_url and `%> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><%` or ""
|
65
|
82 %>
|
|
83 <p>
|
|
84 <%
|
|
85 if name == nil then
|
|
86 %>
|
73
|
87 <b><%=html_encode(email)%></b><%=voice%><br>
|
65
|
88 <%
|
|
89 else
|
|
90 %>
|
|
91 <b><%=html_encode(name)%></b><%=voice%><br>
|
73
|
92 <%=html_encode(email)%><br>
|
65
|
93 <%
|
|
94 end
|
|
95 %>
|
73
|
96 <span last_seen="<%=user_id%>"></span>
|
65
|
97 </p>
|
|
98 <%
|
|
99 end
|
|
100 end
|
|
101
|
7
|
102 return function()
|
63
|
103 local user = current_user() or error()
|
|
104 local chat = Http.request.parameters.chat or error()
|
|
105 chat = get_chat_by_id(chat) or error()
|
|
106 local html = `get_html(user,chat)`
|
|
107 local digest = digest_message("MD5",user.password..chat.id)
|
7
|
108 Io.stdout = Http.response.text_writer()
|
|
109 %>
|
63
|
110 gotChat(<%=json_string(html)%>);
|
|
111 filebinUrl = 'https://filebin.net/<%=digest%>/';
|
65
|
112 document.querySelector('dialog[people] div[people]').innerHTML = <%=json_string(`people(chat)`)%>;
|
7
|
113 <%
|
|
114 end
|