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
|
53
|
18 date = doc.post_date
|
10
|
19 content = doc.content
|
79
|
20 reply = doc.reply
|
10
|
21 }
|
|
22 end
|
|
23
|
|
24 local function to_doc(post)
|
|
25 return {
|
|
26 type = "post"
|
|
27 id = post.id
|
|
28 post_chat_id = long(post.chat_id)
|
|
29 author_id = long(post.author_id)
|
53
|
30 post_date = long(post.date)
|
10
|
31 content = post.content or error()
|
79
|
32 reply = post.reply and long(post.reply)
|
10
|
33 }
|
|
34 end
|
|
35
|
|
36 function Post.new(post)
|
|
37 function post.save()
|
|
38 local doc = to_doc(post)
|
|
39 Db.save(doc)
|
|
40 post.id = doc.id
|
|
41 end
|
|
42
|
24
|
43 function post.reload()
|
|
44 return Post.get_by_id(post.id) or error(post.id)
|
|
45 end
|
|
46
|
23
|
47 function post.delete()
|
|
48 run_in_transaction( function()
|
|
49 local id = post.id
|
|
50 Db.delete("id:"..id)
|
|
51 end )
|
|
52 end
|
|
53
|
10
|
54 return post
|
|
55 end
|
|
56
|
|
57 function Post.search(query,sort,rows)
|
|
58 rows = rows or 1000000
|
|
59 local posts = {}
|
|
60 local docs = Db.search(query,1,rows,{sort=sort})
|
|
61 for _, doc in ipairs(docs) do
|
|
62 posts[#posts+1] = from_doc(doc)
|
|
63 end
|
|
64 return posts
|
|
65 end
|
|
66
|
23
|
67 function Post.get_by_id(id)
|
|
68 local doc = Db.get_document("id:"..id)
|
|
69 return doc and doc.type=="post" and from_doc(doc) or nil
|
|
70 end
|
|
71
|
10
|
72 return Post
|