Mercurial Hosting > chat
comparison src/get_chat.js.luan @ 65:6cfef9850520
people popup
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 05 Mar 2025 22:30:35 -0700 |
parents | afd5ab5b02a2 |
children | 329c3f70fd78 |
comparison
equal
deleted
inserted
replaced
64:bc9f452ee168 | 65:6cfef9850520 |
---|---|
3 local ipairs = Luan.ipairs or error() | 3 local ipairs = Luan.ipairs or error() |
4 local String = require "luan:String.luan" | 4 local String = require "luan:String.luan" |
5 local digest_message = String.digest_message or error() | 5 local digest_message = String.digest_message or error() |
6 local Parsers = require "luan:Parsers.luan" | 6 local Parsers = require "luan:Parsers.luan" |
7 local json_string = Parsers.json_string or error() | 7 local json_string = Parsers.json_string or error() |
8 local Html = require "luan:Html.luan" | |
9 local html_encode = Html.encode or error() | |
8 local Io = require "luan:Io.luan" | 10 local Io = require "luan:Io.luan" |
9 local Http = require "luan:http/Http.luan" | 11 local Http = require "luan:http/Http.luan" |
10 local User = require "site:/lib/User.luan" | 12 local User = require "site:/lib/User.luan" |
11 local current_user = User.current or error() | 13 local current_user = User.current or error() |
12 local get_user_by_id = User.get_by_id or error() | 14 local get_user_by_id = User.get_by_id or error() |
28 <h3> | 30 <h3> |
29 <img back onclick="back()" src="/images/arrow_back.svg"> | 31 <img back onclick="back()" src="/images/arrow_back.svg"> |
30 <span><% | 32 <span><% |
31 local user_id = chat.other_user_id(user.id) | 33 local user_id = chat.other_user_id(user.id) |
32 local other_user = get_user_by_id(user_id) or error(user_id) | 34 local other_user = get_user_by_id(user_id) or error(user_id) |
33 %><%= other_user.name_html() %><span online="<%= other_user.id %>"></span><% | 35 %><a people href="javascript:openPeople()"><%= other_user.name_html() %></a><span online="<%= other_user.id %>"></span><% |
34 local voice_url = other_user.voice_url | 36 local voice_url = other_user.voice_url |
35 if voice_url ~= nil then | 37 if voice_url ~= nil then |
36 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><% | 38 %> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"></a><% |
37 end | 39 end |
38 %></span> | 40 %></span> |
52 </div> | 54 </div> |
53 </div> | 55 </div> |
54 <% | 56 <% |
55 end | 57 end |
56 | 58 |
59 local function people(chat) | |
60 for _, user_id in ipairs(chat.user_ids) do | |
61 local user = get_user_by_id(user_id) | |
62 local name = user.name | |
63 local email = user.email | |
64 local voice_url = user.voice_url | |
65 local voice = voice_url and `%> <a href="<%=voice_url%>" title="Call" target="voice"><img phone src="/images/call.svg"><%` or "" | |
66 %> | |
67 <p> | |
68 <% | |
69 if name == nil then | |
70 %> | |
71 <b><%=html_encode(email)%></b><%=voice%> | |
72 <% | |
73 else | |
74 %> | |
75 <b><%=html_encode(name)%></b><%=voice%><br> | |
76 <%=html_encode(email)%> | |
77 <% | |
78 end | |
79 %> | |
80 </p> | |
81 <% | |
82 end | |
83 end | |
84 | |
57 return function() | 85 return function() |
58 local user = current_user() or error() | 86 local user = current_user() or error() |
59 local chat = Http.request.parameters.chat or error() | 87 local chat = Http.request.parameters.chat or error() |
60 chat = get_chat_by_id(chat) or error() | 88 chat = get_chat_by_id(chat) or error() |
61 local html = `get_html(user,chat)` | 89 local html = `get_html(user,chat)` |
62 local digest = digest_message("MD5",user.password..chat.id) | 90 local digest = digest_message("MD5",user.password..chat.id) |
63 Io.stdout = Http.response.text_writer() | 91 Io.stdout = Http.response.text_writer() |
64 %> | 92 %> |
65 gotChat(<%=json_string(html)%>); | 93 gotChat(<%=json_string(html)%>); |
66 filebinUrl = 'https://filebin.net/<%=digest%>/'; | 94 filebinUrl = 'https://filebin.net/<%=digest%>/'; |
95 document.querySelector('dialog[people] div[people]').innerHTML = <%=json_string(`people(chat)`)%>; | |
67 <% | 96 <% |
68 end | 97 end |