4
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local ipairs = Luan.ipairs or error()
|
|
4 local Time = require "luan:Time.luan"
|
|
5 local time_now = Time.now or error()
|
12
|
6 local Http = require "luan:http/Http.luan"
|
4
|
7 local Db = require "site:/lib/Db.luan"
|
|
8 local run_in_transaction = Db.run_in_transaction or error()
|
12
|
9 local Utils = require "site:/lib/Utils.luan"
|
|
10 local base_url = Utils.base_url or error()
|
4
|
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)
|
55
|
46 Db.delete("chatuser_chat_id:"..id)
|
4
|
47 Db.delete("id:"..id)
|
|
48 end )
|
|
49 end
|
|
50
|
12
|
51 function chat.http_push(message)
|
|
52 local url = base_url().."/chat/"..chat.id
|
|
53 Http.push(url,message)
|
|
54 end
|
|
55
|
46
|
56 function chat.other_user_id(my_id)
|
|
57 for _, user_id in ipairs(chat.user_ids) do
|
|
58 if user_id ~= my_id then
|
|
59 return user_id
|
|
60 end
|
|
61 end
|
|
62 error()
|
|
63 end
|
|
64
|
53
|
65 local function get_chatuser_id(user)
|
|
66 return chat.id.."~"..user.id
|
|
67 end
|
|
68
|
|
69 function chat.unread(user)
|
|
70 local doc = Db.get_document("chatuser_id:"..get_chatuser_id(user))
|
|
71 local read_date = doc and doc.read_date or 0
|
|
72 return Db.count("+post_chat_id:"..chat.id.." +post_date:["..read_date.." TO *]")
|
|
73 end
|
|
74
|
|
75 function chat.read(user)
|
|
76 run_in_transaction( function()
|
|
77 local chatuser_id = get_chatuser_id(user)
|
|
78 local doc = Db.get_document("chatuser_id:"..chatuser_id) or {
|
|
79 type = "chatuser"
|
|
80 chatuser_id = chatuser_id
|
55
|
81 chatuser_chat_id = chat.id or error()
|
53
|
82 }
|
|
83 doc.read_date = time_now()
|
|
84 Db.save(doc)
|
|
85 end )
|
|
86 end
|
|
87
|
4
|
88 return chat
|
|
89 end
|
|
90
|
|
91 function Chat.search(query,sort,rows)
|
|
92 rows = rows or 1000000
|
|
93 local chats = {}
|
|
94 local docs = Db.search(query,1,rows,{sort=sort})
|
|
95 for _, doc in ipairs(docs) do
|
|
96 chats[#chats+1] = from_doc(doc)
|
|
97 end
|
|
98 return chats
|
|
99 end
|
|
100
|
7
|
101 function Chat.get_by_id(id)
|
|
102 local doc = Db.get_document("id:"..id)
|
|
103 return doc and doc.type=="chat" and from_doc(doc) or nil
|
|
104 end
|
|
105
|
4
|
106 return Chat
|