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