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