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