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