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