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