add reply-to input support to shout.lua

This commit is contained in:
topkecleon 2016-06-01 21:01:45 -04:00
parent b7d2fe7f82
commit 4848c9875b

View File

@ -5,7 +5,7 @@ local utilities = require('utilities')
shout.command = 'shout <text>' shout.command = 'shout <text>'
shout.doc = [[``` shout.doc = [[```
/shout <text> /shout <text>
Shouts something. Shouts something. Input may be the replied-to message.
```]] ```]]
function shout:init() function shout:init()
@ -15,10 +15,13 @@ end
function shout:action(msg) function shout:action(msg)
local input = utilities.input(msg.text) local input = utilities.input(msg.text)
if not input then if not input then
utilities.send_message(self, msg.chat.id, shout.doc, true, msg.message_id, true) if msg.reply_to_message and #msg.reply_to_message.text > 0 then
return input = msg.reply_to_message.text
else
utilities.send_message(self, msg.chat.id, shout.doc, true, msg.message_id, true)
return
end
end end
input = utilities.trim(input) input = utilities.trim(input)