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