diff src/lib/User.luan @ 4:2da10ece826f

add Chat
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 27 Oct 2024 20:39:18 -0600
parents 2c63b10781e1
children b8b12fd8be22
line wrap: on
line diff
--- a/src/lib/User.luan	Thu Oct 24 21:43:44 2024 -0600
+++ b/src/lib/User.luan	Sun Oct 27 20:39:18 2024 -0600
@@ -16,6 +16,7 @@
 local Http = require "luan:http/Http.luan"
 local Db = require "site:/lib/Db.luan"
 local run_in_transaction = Db.run_in_transaction or error()
+local Chat = require "site:/lib/Chat.luan"
 local Logging = require "luan:logging/Logging.luan"
 local logger = Logging.logger "User"
 
@@ -48,8 +49,15 @@
 		user.id = doc.id
 	end
 
-	function user.reload()
-		return User.get_by_id(user.id) or error(user.id)
+	function user.delete()
+		run_in_transaction( function()
+			local id = user.id
+			local chats = Chat.search("chat_user_ids:"..id)
+			for _, chat in ipairs(chats) do
+				chat.delete()
+			end
+			Db.delete("id:"..id)
+		end )
 	end
 
 	function user.login()
@@ -60,6 +68,13 @@
 		Http.request.cookies.password = user.password or error()
 	end
 
+	function user.get_chats()
+		return Chat.search("chat_user_ids:"..user.id)
+	end
+
+	function user.get_or_create_chat_with(emails)
+	end
+
 	return user
 end
 
@@ -87,19 +102,23 @@
 	return concat(t)
 end
 
+local function get_by_email(email)
+	local doc = Db.get_document("user_email:"..lucene_quote(email))
+	return doc and from_doc(doc)
+end
+User.get_by_email = get_by_email
+
 function User.get_or_create_by_email(email)
 	return run_in_transaction( function()
-		local doc = Db.get_document("user_email:"..lucene_quote(email))
-		if doc ~= nil then
-			return from_doc(doc)
-		else
-			local user = User.new{
+		local user = get_by_email(email)
+		if user == nil then
+			user = User.new{
 				email = email
 				password = new_password()
 			}
 			user.save()
-			return user
 		end
+		return user
 	end )
 end