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()
|
|
5 local Io = require "luan:Io.luan"
|
|
6 local uri = Io.uri 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()
|
3
|
12 local Mail = require "luan:mail/Mail.luan"
|
2
|
13 local User = require "site:/lib/User.luan"
|
|
14 local current_user = User.current or error()
|
12
|
15 local get_user_by_id = User.get_by_id or error()
|
15
|
16 local Chat = require "site:/lib/Chat.luan"
|
|
17 local chat_search = Chat.search or error()
|
0
|
18
|
|
19
|
|
20 local Shared = {}
|
|
21
|
3
|
22 local started = Time.now()
|
10
|
23 Shared.started = started
|
3
|
24
|
0
|
25 function Shared.head()
|
|
26 %>
|
|
27 <meta name="viewport" content="width=device-width, initial-scale=1">
|
3
|
28 <title>Web Chat</title>
|
0
|
29 <style>
|
3
|
30 @import "/site.css?s=<%=started%>";
|
0
|
31 </style>
|
3
|
32 <script src="/site.js?s=<%=started%>"></script>
|
0
|
33 <%
|
|
34 end
|
|
35
|
|
36 local function header(crumbs)
|
2
|
37 local user = current_user()
|
0
|
38 %>
|
|
39 <div header>
|
2
|
40 <span>
|
|
41 <a href="/">Web Chat</a>
|
0
|
42 <% for _, crumb in ipairs(crumbs or {}) do %>
|
2
|
43 / <%=crumb%>
|
0
|
44 <% end %>
|
2
|
45 </span>
|
|
46 <span>
|
|
47 <% if user == nil then %>
|
|
48 <a href="/login.html">Login / Register</a>
|
|
49 <% else %>
|
|
50 <a href="/account.html"><%= user.email %></a>
|
|
51 <% end %>
|
|
52 </span>
|
0
|
53 </div>
|
|
54 <%
|
|
55 end
|
|
56 Shared.header = header
|
|
57
|
|
58 function Shared.private_header()
|
|
59 header{
|
|
60 [[<a href="/private/">private</a>]]
|
|
61 [[<a href="/private/tools/">tools</a>]]
|
|
62 }
|
|
63 end
|
|
64
|
1
|
65 local config_file = uri("site:/private/local/config.luano")
|
|
66 Shared.config_file = config_file
|
|
67
|
|
68 do
|
|
69 if config_file.exists() then
|
|
70 Shared.config = parse( config_file.read_text() )
|
|
71 else
|
|
72 Shared.config = {
|
|
73 mail_server = {
|
|
74 host = "smtpcorp.com"
|
|
75 port = 465
|
|
76 username = "xxx"
|
|
77 password = "xxx"
|
|
78 }
|
|
79 }
|
|
80 end
|
|
81 end
|
|
82
|
3
|
83 local send_mail = Mail.sender(Shared.config.mail_server).send
|
|
84
|
|
85 function Shared.send_mail_async(mail)
|
|
86 thread_run( function()
|
|
87 send_mail(mail)
|
|
88 end )
|
|
89 end
|
|
90
|
12
|
91 function Shared.post_html(post)
|
|
92 local author = get_user_by_id(post.author_id)
|
|
93 local id = post.id
|
|
94 %>
|
|
95 <div post="<%=id%>">
|
|
96 <div who>
|
|
97 <span author><%=author.email%></span>
|
|
98 <span when fix><%=post.date%></span>
|
|
99 </div>
|
|
100 <div text><%= html_encode(post.content) %></div>
|
|
101 </div>
|
|
102 <%
|
|
103 end
|
|
104
|
15
|
105 function Shared.chats_html()
|
|
106 local user = current_user() or error()
|
|
107 local chats = chat_search( "chat_user_ids:"..user.id, "chat_updated desc" )
|
|
108 for _, chat in ipairs(chats) do
|
|
109 %>
|
|
110 <div chat="<%=chat.id%>" onclick="selectChat(this)"><%= chat.other_users_email(user) %></div>
|
|
111 <%
|
|
112 end
|
|
113 end
|
|
114
|
0
|
115 return Shared
|