Mercurial Hosting > chat
view src/active.js.luan @ 105:62d6725b4db0 default tip
logging
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 25 Jul 2025 14:39:13 -0600 |
parents | 3053a4fc10be |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Http = require "luan:http/Http.luan" local User = require "site:/lib/User.luan" local current_user = User.current or error() local Notify = require "site:/lib/Notify.luan" local remove_notify = Notify.remove or error() local Chat = require "site:/lib/Chat.luan" local get_chat_by_id = Chat.get_by_id or error() local Logging = require "luan:logging/Logging.luan" local logger = Logging.logger "active.js" return function() local spy = Http.request.cookies.spy ~= nil if spy then return end local user = current_user() if user == nil then logger.warn("no user") return end remove_notify(user) local chat = Http.request.parameters.chat if chat ~= nil then chat = get_chat_by_id(chat) or error() chat.read(user) end end