changeset 6:e22a1ba4b2ed

misc
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 29 Oct 2024 16:47:11 -0600
parents a49866b52cc2
children 41d35b72c774
files src/account.html.luan src/delete_user.js.luan src/index.html.luan src/login.js.luan src/private/tools/index.html.luan src/tools/cookies.html.luan src/tools/dimensions.html src/tools/request.txt.luan
diffstat 8 files changed, 123 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/account.html.luan	Tue Oct 29 13:10:47 2024 -0600
+++ b/src/account.html.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -27,6 +27,7 @@
 			<h1>Your Account</h1>
 			<p><a href="chat.html">Your Chats</a></p>
 			<p>Your URL: <%= base_url() %>/chat.html?with=<%=user.email%></p>
+			<p><a href="javascript:ajax('delete_user.js')">Delete account</a></p>
 			<p><a href="javascript:logout()">Logout</a></p>
 		</div>
 	</body>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/delete_user.js.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -0,0 +1,18 @@
+local Luan = require "luan:Luan.luan"
+local error = Luan.error
+local Io = require "luan:Io.luan"
+local Http = require "luan:http/Http.luan"
+local User = require "site:/lib/User.luan"
+local current_user = User.current or error()
+
+
+return function()
+	local user = current_user()
+	if user ~= nil then
+		user.delete()
+	end
+	Io.stdout = Http.response.text_writer()
+%>
+	logout();
+<%
+end
--- a/src/index.html.luan	Tue Oct 29 13:10:47 2024 -0600
+++ b/src/index.html.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -27,7 +27,8 @@
 <%		header() %>
 		<div content>
 			<h1>Web Chat</h1>
-			<h3>A free web-based instant messaging service by <a href="https://www.reactionary.software/">Reactionary Software</a></h3>
+			<h3>A free web-based instant messaging service</h3>
+			<p><a href="https://hg.reactionary.software/repo/chat/">source code</a></p>
 		</div>
 	</body>
 </html>
--- a/src/login.js.luan	Tue Oct 29 13:10:47 2024 -0600
+++ b/src/login.js.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -22,7 +22,7 @@
 		url = url.."&with="..email
 	end
 	send_mail_async {
-		From = "Web Chat <chat@reactionary.software>"
+		From = "Web Chat <chat@luan.software>"
 		To = email
 		Subject = "Login"
 		body = `%>
--- a/src/private/tools/index.html.luan	Tue Oct 29 13:10:47 2024 -0600
+++ b/src/private/tools/index.html.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -20,6 +20,12 @@
 		<div content>
 			<h1>Private Tools</h1>
 			<p><a href="config.html">configure</a></p>
+			<p>
+				public tools:
+				<a href="/tools/dimensions.html">dimensions</a>
+				- <a href="/tools/cookies.html">cookies</a>
+				- <a href="/tools/request.txt">HTTP request</a>
+			</p>
 			<p><a href="lucene.html">lucene</a></p>
 			<p><a href="shell.html">luan shell</a></p>
 			<p><a href="run">luan batch</a></p>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/cookies.html.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -0,0 +1,62 @@
+local Luan = require "luan:Luan.luan"
+local error = Luan.error
+local pairs = Luan.pairs or error()
+local Html = require "luan:Html.luan"
+local html_encode = Html.encode or error()
+local Io = require "luan:Io.luan"
+local Http = require "luan:http/Http.luan"
+local Logging = require "luan:logging/Logging.luan"
+local logger = Logging.logger "cookies.html"
+
+
+return function()
+	local name = Http.request.parameters.name
+	if name ~= nil then
+		local value = Http.request.parameters.value
+		local persistent = Http.request.parameters.persistent
+		if #value == 0 then
+			Http.response.remove_cookie(name)
+		elseif persistent ~= nil then
+			Http.response.set_persistent_cookie(name,value)
+		else
+			Http.response.set_cookie(name,value)
+		end
+		Http.response.send_redirect "cookies.html"
+		return
+	end
+
+	Io.stdout = Http.response.text_writer()
+%>
+<!doctype html>
+<html>
+	<head>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<style>
+			form {
+				margin-bottom: 16px;
+			}
+		</style>
+	</head>
+	<body>
+		<h2>Cookies Tool</h2>
+<%
+	for name, value in pairs(Http.request.cookies) do
+		name = html_encode(name)
+		value = html_encode(value)
+%>
+		<form>
+			<input name=name value="<%=name%>" type=hidden>
+			<%=name%> = <input name=value value="<%=value%>" size=100>
+			<label><input type=checkbox name=persistent>persistent</label>
+		</form>
+<%	end %>
+		<form>
+			<input name=name>
+			= <input name=value size=100>
+			<label><input type=checkbox name=persistent>persistent</label>
+			<input type=submit>
+		</form>
+	</body>
+</html>
+<%
+end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/dimensions.html	Tue Oct 29 16:47:11 2024 -0600
@@ -0,0 +1,21 @@
+<!doctype html>
+<html>
+	<head>
+		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<script>
+			'use strict';
+
+			function p() {
+				document.body.innerText = ''
+					+ window.innerWidth + 'px innerWidth\n' 
+					+ window.innerHeight + 'px innerHeight\n'
+					+ '\n'
+					+ window.outerWidth + 'px outerWidth\n' 
+					+ window.outerHeight + 'px outerHeight\n'
+				;
+			}
+		</script>
+	</head>
+	<body onload="p()" onresize="p()">
+	</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tools/request.txt.luan	Tue Oct 29 16:47:11 2024 -0600
@@ -0,0 +1,12 @@
+local Binary = require "luan:Binary.luan"
+local Io = require "luan:Io.luan"
+local Http = require "luan:http/Http.luan"
+
+
+return function()
+	Io.stdout = Http.response.text_writer()
+	%><%= Http.request.raw_head %><%
+	if Http.request.body ~= nil then
+		%><%=Binary.to_string(Http.request.body,"utf-8")%><%
+	end
+end