0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local ipairs = Luan.ipairs or error()
|
1
|
4 local parse = Luan.parse or error()
|
83
|
5 local Table = require "luan:Table.luan"
|
|
6 local concat = Table.concat or error()
|
3
|
7 local Time = require "luan:Time.luan"
|
|
8 local Thread = require "luan:Thread.luan"
|
|
9 local thread_run = Thread.run or error()
|
12
|
10 local Html = require "luan:Html.luan"
|
|
11 local html_encode = Html.encode or error()
|
16
|
12 local Http = require "luan:http/Http.luan"
|
3
|
13 local Mail = require "luan:mail/Mail.luan"
|
2
|
14 local User = require "site:/lib/User.luan"
|
|
15 local current_user = User.current or error()
|
12
|
16 local get_user_by_id = User.get_by_id or error()
|
15
|
17 local Chat = require "site:/lib/Chat.luan"
|
|
18 local chat_search = Chat.search or error()
|
16
|
19 local Utils = require "site:/lib/Utils.luan"
|
|
20 local base_url = Utils.base_url or error()
|
69
|
21 local Db = require "site:/lib/Db.luan"
|
79
|
22 local Post = require "site:/lib/Post.luan"
|
|
23 local get_post_by_id = Post.get_by_id or error()
|
45
|
24 local Logging = require "luan:logging/Logging.luan"
|
|
25 local logger = Logging.logger "Shared"
|
0
|
26
|
|
27
|
|
28 local Shared = {}
|
|
29
|
3
|
30 local started = Time.now()
|
10
|
31 Shared.started = started
|
3
|
32
|
45
|
33 local title
|
|
34 local domain = Http.domain
|
|
35 if domain == "chat.luan.software" then
|
51
|
36 title = "Luan Chat"
|
45
|
37 elseif domain == "test.chat.luan.software" then
|
51
|
38 title = "Luan Chat test"
|
45
|
39 elseif domain == nil then
|
51
|
40 title = "Luan Chat local"
|
45
|
41 else
|
|
42 error(domain)
|
|
43 end
|
|
44 Shared.title = title
|
|
45
|
0
|
46 function Shared.head()
|
|
47 %>
|
|
48 <meta name="viewport" content="width=device-width, initial-scale=1">
|
86
|
49 <link rel="manifest" href="/manifest.json" />
|
45
|
50 <title><%=title%></title>
|
0
|
51 <style>
|
3
|
52 @import "/site.css?s=<%=started%>";
|
0
|
53 </style>
|
3
|
54 <script src="/site.js?s=<%=started%>"></script>
|
0
|
55 <%
|
|
56 end
|
|
57
|
|
58 local function header(crumbs)
|
2
|
59 local user = current_user()
|
0
|
60 %>
|
|
61 <div header>
|
2
|
62 <span>
|
51
|
63 <a href="/">Luan Chat</a>
|
0
|
64 <% for _, crumb in ipairs(crumbs or {}) do %>
|
2
|
65 / <%=crumb%>
|
0
|
66 <% end %>
|
2
|
67 </span>
|
41
|
68 <span right>
|
2
|
69 <% if user == nil then %>
|
|
70 <a href="/login.html">Login / Register</a>
|
41
|
71 <% else
|
|
72 local voice_url = user.voice_url
|
|
73 if voice_url ~= nil then
|
|
74 %>
|
|
75 <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a>
|
|
76 <%
|
|
77 end
|
|
78 %>
|
2
|
79 <a href="/account.html"><%= user.email %></a>
|
|
80 <% end %>
|
|
81 </span>
|
0
|
82 </div>
|
|
83 <%
|
|
84 end
|
|
85 Shared.header = header
|
|
86
|
|
87 function Shared.private_header()
|
|
88 header{
|
|
89 [[<a href="/private/">private</a>]]
|
|
90 [[<a href="/private/tools/">tools</a>]]
|
|
91 }
|
|
92 end
|
|
93
|
1
|
94 do
|
69
|
95 local doc = Db.get_document("type:config")
|
|
96 if doc ~= nil then
|
|
97 Shared.config = parse( doc.config )
|
1
|
98 else
|
|
99 Shared.config = {
|
|
100 mail_server = {
|
69
|
101 host = "mail.smtp2go.com"
|
1
|
102 port = 465
|
|
103 username = "xxx"
|
|
104 password = "xxx"
|
|
105 }
|
|
106 }
|
|
107 end
|
|
108 end
|
|
109
|
45
|
110 local default_from = title.." <chat@luan.software>"
|
|
111 local send_mail0 = Mail.sender(Shared.config.mail_server).send
|
|
112 function Shared.send_mail(mail)
|
|
113 mail.From = mail.From or default_from
|
|
114 send_mail0(mail)
|
|
115 end
|
3
|
116
|
|
117 function Shared.send_mail_async(mail)
|
45
|
118 mail.From = mail.From or default_from
|
3
|
119 thread_run( function()
|
45
|
120 send_mail0(mail)
|
3
|
121 end )
|
|
122 end
|
|
123
|
12
|
124 function Shared.post_html(post)
|
22
|
125 local author_id = post.author_id
|
|
126 local user = current_user() or error()
|
|
127 local author = get_user_by_id(author_id)
|
12
|
128 local id = post.id
|
79
|
129 local reply = post.reply
|
|
130 reply = reply and get_post_by_id(reply)
|
12
|
131 %>
|
79
|
132 <div post="<%=id%>" author="<%=author.id%>" id="p<%=id%>" fix>
|
35
|
133 <div who>
|
46
|
134 <span author><%=author.name_html()%></span>
|
34
|
135 <span right>
|
35
|
136 <span when><%=post.date%></span>
|
|
137 <span pulldown></span>
|
34
|
138 </span>
|
12
|
139 </div>
|
79
|
140 <% if reply ~= nil then %>
|
|
141 <div quote>
|
|
142 <blockquote><%= html_encode(reply.content) %></blockquote>
|
|
143 <div><a when href="#p<%=reply.id%>"><%=reply.date%></a></div>
|
|
144 </div>
|
|
145 <% end %>
|
35
|
146 <div text><%= html_encode(post.content) %></div>
|
12
|
147 </div>
|
|
148 <%
|
|
149 end
|
|
150
|
83
|
151 local function group_name(user_ids)
|
|
152 local t = {nil}
|
|
153 for _, user_id in ipairs(user_ids) do
|
|
154 t[#t+1] = get_user_by_id(user_id).name_html()
|
|
155 end
|
|
156 return concat(t,", ")
|
|
157 end
|
|
158 Shared.group_name = group_name
|
|
159
|
15
|
160 function Shared.chats_html()
|
|
161 local user = current_user() or error()
|
|
162 local chats = chat_search( "chat_user_ids:"..user.id, "chat_updated desc" )
|
|
163 for _, chat in ipairs(chats) do
|
59
|
164 local chat_id = chat.id
|
53
|
165 local unread = chat.unread(user)
|
15
|
166 %>
|
59
|
167 <div chat="<%=chat_id%>" onclick="selectChat('<%=chat_id%>')">
|
83
|
168 <%
|
|
169 local user_ids = chat.other_user_ids(user.id)
|
|
170 if #user_ids > 1 then
|
|
171 %>
|
|
172 <%= group_name(user_ids) %>
|
|
173 <%
|
|
174 else
|
|
175 local other_user = get_user_by_id(user_ids[1]) or error()
|
|
176 %>
|
53
|
177 <%= other_user.name_html() %>
|
|
178 <span online="<%= other_user.id %>"></span>
|
83
|
179 <%
|
|
180 end
|
|
181 %>
|
53
|
182 <span unread="<%=unread%>"><%=unread%></span>
|
|
183 </div>
|
15
|
184 <%
|
|
185 end
|
|
186 end
|
|
187
|
16
|
188 function Shared.http_push_to_users(user_ids,message)
|
|
189 local base = base_url().."/user/"
|
|
190 for _, user_id in ipairs(user_ids) do
|
|
191 local url = base..user_id
|
|
192 Http.push(url,message)
|
|
193 end
|
|
194 end
|
|
195
|
73
|
196 Shared.compressed = {compressed=true}
|
|
197
|
0
|
198 return Shared
|