view src/lib/Shared.luan @ 93:d0566cc4a2ac default tip

uploa fix
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Apr 2025 19:47:48 -0600
parents 625ffdf6499d
children
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 Table = require "luan:Table.luan"
local concat = Table.concat 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 Http = require "luan:http/Http.luan"
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 Chat = require "site:/lib/Chat.luan"
local chat_search = Chat.search or error()
local Utils = require "site:/lib/Utils.luan"
local base_url = Utils.base_url or error()
local Db = require "site:/lib/Db.luan"
local Post = require "site:/lib/Post.luan"
local get_post_by_id = Post.get_by_id or error()
local Logging = require "luan:logging/Logging.luan"
local logger = Logging.logger "Shared"


local Shared = {}

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

local title
local domain = Http.domain
if domain == "chat.luan.software" then
	title = "Luan Chat"
elseif domain == "test.chat.luan.software" then
	title = "Luan Chat test"
elseif domain == nil then
	title = "Luan Chat local"
else
	error(domain)
end
Shared.title = title

function Shared.head()
%>
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link rel="manifest" href="/manifest.json" />
		<title><%=title%></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="/">Luan Chat</a>
<%	for _, crumb in ipairs(crumbs or {}) do %>
				/ <%=crumb%>
<%	end %>
			</span>
			<span right>
<%	if user == nil then %>
				<a href="/login.html">Login / Register</a>
<%	else
		local voice_url = user.voice_url
		if voice_url ~= nil then
%>
				<a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a>
<%
		end
%>
				<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

do
	local doc = Db.get_document("type:config")
	if doc ~= nil then
		Shared.config = parse( doc.config )
	else
		Shared.config = {
			mail_server = {
				host = "mail.smtp2go.com"
				port = 465
				username = "xxx"
				password = "xxx"
			}
		}
	end
end

local default_from = title.." <chat@luan.software>"
local send_mail0 = Mail.sender(Shared.config.mail_server).send
function Shared.send_mail(mail)
	mail.From = mail.From or default_from
	send_mail0(mail)
end

function Shared.send_mail_async(mail)
	mail.From = mail.From or default_from
	thread_run( function()
		send_mail0(mail)
	end )
end

function Shared.post_html(post)
	local author_id = post.author_id
	local user = current_user() or error()
	local author = get_user_by_id(author_id)
	local id = post.id
	local reply = post.reply
	reply = reply and get_post_by_id(reply)
%>
		<div post="<%=id%>" author="<%=author.id%>" id="p<%=id%>" fix>
			<div who>
				<span author><%=author.name_html()%></span>
				<span right>
					<span when><%=post.date%></span>
					<span pulldown></span>
				</span>
			</div>
<%	if reply ~= nil then %>
			<div quote>
				<blockquote><%= html_encode(reply.content) %></blockquote>
				<div><a when href="#p<%=reply.id%>"><%=reply.date%></a></div>
			</div>
<%	end %>
			<div text><%= html_encode(post.content) %></div>
		</div>
<%
end

local function group_name(user_ids)
	local t = {nil}
	for _, user_id in ipairs(user_ids) do
		t[#t+1] = get_user_by_id(user_id).name_html()
	end
	return concat(t,", ")
end
Shared.group_name = group_name

function Shared.chats_html()
	local user = current_user() or error()
	local chats = chat_search( "chat_user_ids:"..user.id, "chat_updated desc" )
	for _, chat in ipairs(chats) do
		local chat_id = chat.id
		local unread = chat.unread(user)
%>
		<div chat="<%=chat_id%>" onclick="selectChat('<%=chat_id%>')">
<%
		local user_ids = chat.other_user_ids(user.id)
		if #user_ids > 1 then
%>
			<%= group_name(user_ids) %>
<%
		else
			local other_user = get_user_by_id(user_ids[1]) or error()
%>
			<%= other_user.name_html() %>
			<span online="<%= other_user.id %>"></span>
<%
		end
%>
			<span unread="<%=unread%>"><%=unread%></span>
		</div>
<%
	end
end

function Shared.http_push_to_users(user_ids,message)
	local base = base_url().."/user/"
	for _, user_id in ipairs(user_ids) do
		local url = base..user_id
		Http.push(url,message)
	end
end

Shared.compressed = {compressed=true}

return Shared