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)
|
|
39 sort(user_ids)
|
|
40 return concat(user_ids,"~")
|
|
41 end
|
|
42
|
4
|
43 function Chat.new(chat)
|
|
44 chat.updated = chat.updated or time_now()
|
58
|
45 chat.key = chat.key or get_chat_key(chat.user_ids)
|
4
|
46
|
|
47 function chat.save()
|
|
48 local doc = to_doc(chat)
|
|
49 Db.save(doc)
|
|
50 chat.id = doc.id
|
|
51 end
|
|
52
|
|
53 function chat.delete()
|
|
54 run_in_transaction( function()
|
|
55 local id = chat.id
|
11
|
56 Db.delete("post_chat_id:"..id)
|
55
|
57 Db.delete("chatuser_chat_id:"..id)
|
4
|
58 Db.delete("id:"..id)
|
|
59 end )
|
|
60 end
|
|
61
|
12
|
62 function chat.http_push(message)
|
|
63 local url = base_url().."/chat/"..chat.id
|
|
64 Http.push(url,message)
|
|
65 end
|
|
66
|
46
|
67 function chat.other_user_id(my_id)
|
|
68 for _, user_id in ipairs(chat.user_ids) do
|
|
69 if user_id ~= my_id then
|
|
70 return user_id
|
|
71 end
|
|
72 end
|
|
73 error()
|
|
74 end
|
|
75
|
57
|
76 local function get_chatuser_key(user)
|
53
|
77 return chat.id.."~"..user.id
|
|
78 end
|
|
79
|
|
80 function chat.unread(user)
|
57
|
81 local doc = Db.get_document("chatuser_key:"..get_chatuser_key(user))
|
53
|
82 local read_date = doc and doc.read_date or 0
|
|
83 return Db.count("+post_chat_id:"..chat.id.." +post_date:["..read_date.." TO *]")
|
|
84 end
|
|
85
|
|
86 function chat.read(user)
|
|
87 run_in_transaction( function()
|
57
|
88 local chatuser_key = get_chatuser_key(user)
|
|
89 local doc = Db.get_document("chatuser_key:"..chatuser_key) or {
|
53
|
90 type = "chatuser"
|
57
|
91 chatuser_key = chatuser_key
|
55
|
92 chatuser_chat_id = chat.id or error()
|
53
|
93 }
|
|
94 doc.read_date = time_now()
|
|
95 Db.save(doc)
|
|
96 end )
|
|
97 end
|
|
98
|
4
|
99 return chat
|
|
100 end
|
|
101
|
|
102 function Chat.search(query,sort,rows)
|
|
103 rows = rows or 1000000
|
|
104 local chats = {}
|
|
105 local docs = Db.search(query,1,rows,{sort=sort})
|
|
106 for _, doc in ipairs(docs) do
|
|
107 chats[#chats+1] = from_doc(doc)
|
|
108 end
|
|
109 return chats
|
|
110 end
|
|
111
|
7
|
112 function Chat.get_by_id(id)
|
|
113 local doc = Db.get_document("id:"..id)
|
|
114 return doc and doc.type=="chat" and from_doc(doc) or nil
|
|
115 end
|
|
116
|
58
|
117 function Chat.get_by_user_ids(user_ids)
|
|
118 local key = get_chat_key(user_ids)
|
|
119 local doc = Db.get_document("chat_key:"..key)
|
|
120 return doc and from_doc(doc)
|
|
121 end
|
|
122
|
4
|
123 return Chat
|