view src/lib/Shared.luan @ 12:9f45d32670ae

server push
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 31 Oct 2024 21:40:57 -0600
parents f9e6a4cc4f7d
children 8b8905f63d80
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local ipairs = Luan.ipairs or error()
local parse = Luan.parse or error()
local Io = require "luan:Io.luan"
local uri = Io.uri or error()
local Time = require "luan:Time.luan"
local Thread = require "luan:Thread.luan"
local thread_run = Thread.run or error()
local Html = require "luan:Html.luan"
local html_encode = Html.encode or error()
local Mail = require "luan:mail/Mail.luan"
local User = require "site:/lib/User.luan"
local current_user = User.current or error()
local get_user_by_id = User.get_by_id or error()


local Shared = {}

local started = Time.now()
Shared.started = started

function Shared.head()
%>
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Web Chat</title>
		<style>
			@import "/site.css?s=<%=started%>";
		</style>
		<script src="/site.js?s=<%=started%>"></script>
<%
end

local function header(crumbs)
	local user = current_user()
%>
		<div header>
			<span>
				<a href="/">Web Chat</a>
<%	for _, crumb in ipairs(crumbs or {}) do %>
				/ <%=crumb%>
<%	end %>
			</span>
			<span>
<%	if user == nil then %>
				<a href="/login.html">Login / Register</a>
<%	else %>
				<a href="/account.html"><%= user.email %></a>
<%	end %>
			</span>
		</div>
<%
end
Shared.header = header

function Shared.private_header()
	header{
		[[<a href="/private/">private</a>]]
		[[<a href="/private/tools/">tools</a>]]
	}
end

local config_file = uri("site:/private/local/config.luano")
Shared.config_file = config_file

do
	if config_file.exists() then
		Shared.config = parse( config_file.read_text() )
	else
		Shared.config = {
			mail_server = {
				host = "smtpcorp.com"
				port = 465
				username = "xxx"
				password = "xxx"
			}
		}
	end
end

local send_mail = Mail.sender(Shared.config.mail_server).send

function Shared.send_mail_async(mail)
	thread_run( function()
		send_mail(mail)
	end )
end

function Shared.post_html(post)
	local author = get_user_by_id(post.author_id)
	local id = post.id
%>
		<div post="<%=id%>">
			<div who>
				<span author><%=author.email%></span>
				<span when fix><%=post.date%></span>
			</div>
			<div text><%= html_encode(post.content) %></div>
		</div>
<%
end

return Shared