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()
|
58
|
6 local Table = require "luan:Table.luan"
|
|
7 local sort = Table.sort or error()
|
|
8 local concat = Table.concat or error()
|
12
|
9 local Http = require "luan:http/Http.luan"
|
4
|
10 local Db = require "site:/lib/Db.luan"
|
|
11 local run_in_transaction = Db.run_in_transaction or error()
|
12
|
12 local Utils = require "site:/lib/Utils.luan"
|
|
13 local base_url = Utils.base_url or error()
|
4
|
14
|
|
15
|
|
16 local Chat = {}
|
|
17
|
|
18 local function from_doc(doc)
|
|
19 doc.type == "chat" or error "wrong type"
|
|
20 return Chat.new {
|
|
21 id = doc.id
|
|
22 user_ids = doc.chat_user_ids
|
|
23 updated = doc.chat_updated
|
58
|
24 key = doc.chat_key
|
4
|
25 }
|
|
26 end
|
|
27
|
|
28 local function to_doc(chat)
|
|
29 return {
|
|
30 type = "chat"
|
|
31 id = chat.id
|
|
32 chat_user_ids = chat.user_ids or error()
|
|
33 chat_updated = chat.updated or error()
|
58
|
34 chat_key = chat.key or error()
|
4
|
35 }
|
|
36 end
|
|
37
|
58
|
38 local function get_chat_key(user_ids)
|
64
|
39 #user_ids > 1 or error "You can't chat with yourself"
|
58
|
40 sort(user_ids)
|
|
41 return concat(user_ids,"~")
|
|
42 end
|
|
43
|
4
|
44 function Chat.new(chat)
|
|
45 chat.updated = chat.updated or time_now()
|
58
|
46 chat.key = chat.key or get_chat_key(chat.user_ids)
|
4
|
47
|
|
48 function chat.save()
|
|
49 local doc = to_doc(chat)
|
|
50 Db.save(doc)
|
|
51 chat.id = doc.id
|
|
52 end
|
|
53
|
|
54 function chat.delete()
|
|
55 run_in_transaction( function()
|
|
56 local id = chat.id
|
11
|
57 Db.delete("post_chat_id:"..id)
|
55
|
58 Db.delete("chatuser_chat_id:"..id)
|
4
|
59 Db.delete("id:"..id)
|
|
60 end )
|
|
61 end
|
|
62
|
12
|
63 function chat.http_push(message)
|
|
64 local url = base_url().."/chat/"..chat.id
|
|
65 Http.push(url,message)
|
|
66 end
|
|
67
|
83
|
68 function chat.other_user_ids(my_id)
|
|
69 local t = {nil}
|
46
|
70 for _, user_id in ipairs(chat.user_ids) do
|
|
71 if user_id ~= my_id then
|
83
|
72 t[#t+1] = user_id
|
46
|
73 end
|
|
74 end
|
83
|
75 return t
|
46
|
76 end
|
|
77
|
57
|
78 local function get_chatuser_key(user)
|
53
|
79 return chat.id.."~"..user.id
|
|
80 end
|
|
81
|
|
82 function chat.unread(user)
|
57
|
83 local doc = Db.get_document("chatuser_key:"..get_chatuser_key(user))
|
53
|
84 local read_date = doc and doc.read_date or 0
|
|
85 return Db.count("+post_chat_id:"..chat.id.." +post_date:["..read_date.." TO *]")
|
|
86 end
|
|
87
|
|
88 function chat.read(user)
|
|
89 run_in_transaction( function()
|
57
|
90 local chatuser_key = get_chatuser_key(user)
|
|
91 local doc = Db.get_document("chatuser_key:"..chatuser_key) or {
|
53
|
92 type = "chatuser"
|
57
|
93 chatuser_key = chatuser_key
|
55
|
94 chatuser_chat_id = chat.id or error()
|
53
|
95 }
|
|
96 doc.read_date = time_now()
|
|
97 Db.save(doc)
|
|
98 end )
|
|
99 end
|
|
100
|
4
|
101 return chat
|
|
102 end
|
|
103
|
|
104 function Chat.search(query,sort,rows)
|
|
105 rows = rows or 1000000
|
|
106 local chats = {}
|
|
107 local docs = Db.search(query,1,rows,{sort=sort})
|
|
108 for _, doc in ipairs(docs) do
|
|
109 chats[#chats+1] = from_doc(doc)
|
|
110 end
|
|
111 return chats
|
|
112 end
|
|
113
|
7
|
114 function Chat.get_by_id(id)
|
|
115 local doc = Db.get_document("id:"..id)
|
|
116 return doc and doc.type=="chat" and from_doc(doc) or nil
|
|
117 end
|
|
118
|
58
|
119 function Chat.get_by_user_ids(user_ids)
|
|
120 local key = get_chat_key(user_ids)
|
|
121 local doc = Db.get_document("chat_key:"..key)
|
|
122 return doc and from_doc(doc)
|
|
123 end
|
|
124
|
4
|
125 return Chat
|