10
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Time = require "luan:Time.luan"
|
|
4 local time_now = Time.now or error()
|
12
|
5 local Parsers = require "luan:Parsers.luan"
|
|
6 local json_string = Parsers.json_string or error()
|
10
|
7 local Io = require "luan:Io.luan"
|
|
8 local Http = require "luan:http/Http.luan"
|
|
9 local User = require "site:/lib/User.luan"
|
|
10 local current_user = User.current or error()
|
|
11 local Db = require "site:/lib/Db.luan"
|
|
12 local run_in_transaction = Db.run_in_transaction or error()
|
|
13 local Chat = require "site:/lib/Chat.luan"
|
|
14 local get_chat_by_id = Chat.get_by_id or error()
|
|
15 local Post = require "site:/lib/Post.luan"
|
|
16 local new_post = Post.new or error()
|
12
|
17 local Shared = require "site:/lib/Shared.luan"
|
|
18 local post_html = Shared.post_html or error()
|
10
|
19
|
|
20
|
|
21 return function()
|
|
22 local user = current_user() or error()
|
|
23 local chat = Http.request.parameters.chat or error()
|
|
24 local content = Http.request.parameters.content or error()
|
12
|
25 local post
|
10
|
26 run_in_transaction( function()
|
|
27 chat = get_chat_by_id(chat) or error()
|
|
28 local now = time_now()
|
12
|
29 post = new_post{
|
10
|
30 chat_id = chat.id
|
|
31 author_id = user.id
|
|
32 date = now
|
|
33 content = content
|
|
34 }
|
|
35 post.save()
|
|
36 chat.updated = now
|
|
37 chat.save()
|
|
38 end )
|
12
|
39 local html = `post_html(post)`
|
|
40 local js = "added("..json_string(html)..")"
|
|
41 chat.http_push(js)
|
10
|
42 end
|