view src/invite.js.luan @ 93:d0566cc4a2ac default tip

uploa fix
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Apr 2025 19:47:48 -0600
parents 7b339b1ccd11
children
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Parsers = require "luan:Parsers.luan"
local json_string = Parsers.json_string or error()
local Html = require "luan:Html.luan"
local url_encode = Html.url_encode or error()
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"
local User = require "site:/lib/User.luan"
local get_user_by_email = User.get_by_email or error()
local get_or_create_user_by_email = User.get_or_create_by_email or error()
local current_user = User.current or error()
local Shared = require "site:/lib/Shared.luan"
local send_mail = Shared.send_mail or error()


return function()
	local user = current_user() or error()
	local email = Http.request.parameters.email or error()
	Io.stdout = Http.response.text_writer()
	if get_user_by_email(email) ~= nil then
%>
		location = 'chat?with=<%=url_encode(email)%>';
<%
		return
	end
	local invitee = get_or_create_user_by_email(email)
	local url = invitee.login_url().."&with="..url_encode(user.email)
	local who = user.name or user.email
	send_mail {
		To = email
		Subject = "Chat with "..who
		body = `%>
<%=who%> has invited you to chat on Luan Chat.

Here is the link to login:

<%= url %>

Or login with your email and the password: <%=invitee.password%>
<%		`
	}
%>
	openInvite(<%=json_string(email)%>);
<%
end