10
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local ipairs = Luan.ipairs or error()
|
|
4 local Number = require "luan:Number.luan"
|
|
5 local long = Number.long or error()
|
|
6 local Db = require "site:/lib/Db.luan"
|
23
|
7 local run_in_transaction = Db.run_in_transaction or error()
|
10
|
8
|
|
9
|
|
10 local Post = {}
|
|
11
|
|
12 local function from_doc(doc)
|
|
13 doc.type == "post" or error "wrong type"
|
|
14 return Post.new {
|
|
15 id = doc.id
|
|
16 chat_id = doc.post_chat_id
|
|
17 author_id = doc.author_id
|
|
18 date = doc.date
|
|
19 content = doc.content
|
|
20 }
|
|
21 end
|
|
22
|
|
23 local function to_doc(post)
|
|
24 return {
|
|
25 type = "post"
|
|
26 id = post.id
|
|
27 post_chat_id = long(post.chat_id)
|
|
28 author_id = long(post.author_id)
|
|
29 date = long(post.date)
|
|
30 content = post.content or error()
|
|
31 }
|
|
32 end
|
|
33
|
|
34 function Post.new(post)
|
|
35 function post.save()
|
|
36 local doc = to_doc(post)
|
|
37 Db.save(doc)
|
|
38 post.id = doc.id
|
|
39 end
|
|
40
|
23
|
41 function post.delete()
|
|
42 run_in_transaction( function()
|
|
43 local id = post.id
|
|
44 Db.delete("id:"..id)
|
|
45 end )
|
|
46 end
|
|
47
|
10
|
48 return post
|
|
49 end
|
|
50
|
|
51 function Post.search(query,sort,rows)
|
|
52 rows = rows or 1000000
|
|
53 local posts = {}
|
|
54 local docs = Db.search(query,1,rows,{sort=sort})
|
|
55 for _, doc in ipairs(docs) do
|
|
56 posts[#posts+1] = from_doc(doc)
|
|
57 end
|
|
58 return posts
|
|
59 end
|
|
60
|
23
|
61 function Post.get_by_id(id)
|
|
62 local doc = Db.get_document("id:"..id)
|
|
63 return doc and doc.type=="post" and from_doc(doc) or nil
|
|
64 end
|
|
65
|
10
|
66 return Post
|