view src/lib/Shared.luan @ 14:80105b716a62

start bot
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 31 Oct 2023 23:56:48 -0600
parents af2b95854072
children 552d6f944acb
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Time = require "luan:Time.luan"
local Parsers = require "luan:Parsers.luan"
local json_string = Parsers.json_string or error()
local Http = require "luan:http/Http.luan"
local Utils = require "site:/lib/Utils.luan"
local get_user = Utils.get_user or error()


local Shared = {}

local started = Time.now()

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

function Shared.header()
%>
		<div header>
			<h1><a href="/">Disearch</a></h1>
<%	if get_user() == nil then %>
			<a href="login1.red">login</a>
<%	else %>
			<span right pulldown>
				<script>document.write(`<img src="https://cdn.discordapp.com/avatars/${localStorage.user_id}/${localStorage.user_avatar}.png" onclick="clickMenu(this)">`)</script>
				<div pulldown_menu>
					<span username><script>document.write(localStorage.user_name)</script></span>
					<a href="/servers.html">Your Servers</a>
					<a href="javascript:logout()">Log out</a>
				</div>
			</span>
<%	end %>
		</div>
		<hr>
<%
end

function Shared.footer()
%>
		<hr>
		<div footer>
			something or other in the footer
		</div>
<%
end

local function base_url()
	local request = Http.request
	return request.scheme.."://"..request.headers["Host"]
end
Shared.base_url = base_url

function Shared.discord_redirect_uri()
	return base_url().."/login2.html"
end

function Shared.js_error(field,message)
%>
	showError( context.form, '<%=field%>', <%=json_string(message)%> );
<%
end

return Shared