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
|
46
|
68 function chat.other_user_id(my_id)
|
|
69 for _, user_id in ipairs(chat.user_ids) do
|
|
70 if user_id ~= my_id then
|
|
71 return user_id
|
|
72 end
|
|
73 end
|
|
74 error()
|
|
75 end
|
|
76
|
57
|
77 local function get_chatuser_key(user)
|
53
|
78 return chat.id.."~"..user.id
|
|
79 end
|
|
80
|
|
81 function chat.unread(user)
|
57
|
82 local doc = Db.get_document("chatuser_key:"..get_chatuser_key(user))
|
53
|
83 local read_date = doc and doc.read_date or 0
|
|
84 return Db.count("+post_chat_id:"..chat.id.." +post_date:["..read_date.." TO *]")
|
|
85 end
|
|
86
|
|
87 function chat.read(user)
|
|
88 run_in_transaction( function()
|
57
|
89 local chatuser_key = get_chatuser_key(user)
|
|
90 local doc = Db.get_document("chatuser_key:"..chatuser_key) or {
|
53
|
91 type = "chatuser"
|
57
|
92 chatuser_key = chatuser_key
|
55
|
93 chatuser_chat_id = chat.id or error()
|
53
|
94 }
|
|
95 doc.read_date = time_now()
|
|
96 Db.save(doc)
|
|
97 end )
|
|
98 end
|
|
99
|
4
|
100 return chat
|
|
101 end
|
|
102
|
|
103 function Chat.search(query,sort,rows)
|
|
104 rows = rows or 1000000
|
|
105 local chats = {}
|
|
106 local docs = Db.search(query,1,rows,{sort=sort})
|
|
107 for _, doc in ipairs(docs) do
|
|
108 chats[#chats+1] = from_doc(doc)
|
|
109 end
|
|
110 return chats
|
|
111 end
|
|
112
|
7
|
113 function Chat.get_by_id(id)
|
|
114 local doc = Db.get_document("id:"..id)
|
|
115 return doc and doc.type=="chat" and from_doc(doc) or nil
|
|
116 end
|
|
117
|
58
|
118 function Chat.get_by_user_ids(user_ids)
|
|
119 local key = get_chat_key(user_ids)
|
|
120 local doc = Db.get_document("chat_key:"..key)
|
|
121 return doc and from_doc(doc)
|
|
122 end
|
|
123
|
4
|
124 return Chat
|