4
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local ipairs = Luan.ipairs or error()
|
7
|
4 local Table = require "luan:Table.luan"
|
|
5 local concat = Table.concat or error()
|
|
6 local is_empty = Table.is_empty or error()
|
4
|
7 local Time = require "luan:Time.luan"
|
|
8 local time_now = Time.now or error()
|
|
9 local Db = require "site:/lib/Db.luan"
|
|
10 local run_in_transaction = Db.run_in_transaction or error()
|
|
11
|
|
12
|
|
13 local Chat = {}
|
|
14
|
|
15 local function from_doc(doc)
|
|
16 doc.type == "chat" or error "wrong type"
|
|
17 return Chat.new {
|
|
18 id = doc.id
|
|
19 user_ids = doc.chat_user_ids
|
|
20 updated = doc.chat_updated
|
|
21 }
|
|
22 end
|
|
23
|
|
24 local function to_doc(chat)
|
|
25 return {
|
|
26 type = "chat"
|
|
27 id = chat.id
|
|
28 chat_user_ids = chat.user_ids or error()
|
|
29 chat_updated = chat.updated or error()
|
|
30 }
|
|
31 end
|
|
32
|
|
33 function Chat.new(chat)
|
|
34 chat.updated = chat.updated or time_now()
|
|
35
|
|
36 function chat.save()
|
|
37 local doc = to_doc(chat)
|
|
38 Db.save(doc)
|
|
39 chat.id = doc.id
|
|
40 end
|
|
41
|
|
42 function chat.delete()
|
|
43 run_in_transaction( function()
|
|
44 local id = chat.id
|
11
|
45 Db.delete("post_chat_id:"..id)
|
4
|
46 Db.delete("id:"..id)
|
|
47 end )
|
|
48 end
|
|
49
|
7
|
50 function chat.other_users_email(user)
|
|
51 local User = require "site:/lib/User.luan"
|
|
52 local get_user_by_id = User.get_by_id or error()
|
|
53
|
|
54 local my_id = user.id
|
|
55 local t = {}
|
|
56 for _, user_id in ipairs(chat.user_ids) do
|
|
57 if user_id ~= my_id then
|
|
58 local other_user = get_user_by_id(user_id) or error()
|
|
59 t[#t+1] = other_user.email
|
|
60 end
|
|
61 end
|
|
62 return concat( t, ", " )
|
|
63 end
|
|
64
|
4
|
65 return chat
|
|
66 end
|
|
67
|
|
68 function Chat.search(query,sort,rows)
|
|
69 rows = rows or 1000000
|
|
70 local chats = {}
|
|
71 local docs = Db.search(query,1,rows,{sort=sort})
|
|
72 for _, doc in ipairs(docs) do
|
|
73 chats[#chats+1] = from_doc(doc)
|
|
74 end
|
|
75 return chats
|
|
76 end
|
|
77
|
7
|
78 function Chat.get_by_id(id)
|
|
79 local doc = Db.get_document("id:"..id)
|
|
80 return doc and doc.type=="chat" and from_doc(doc) or nil
|
|
81 end
|
|
82
|
4
|
83 return Chat
|