You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellme-bot/packages/server/parsers/parser.js

38 lines
690 B

/**
* Basic Class for Parsering Body from Webhook,
* extends Class need to write a parse function and add result to message variable
*
* @author Björn Hase
* @license hhttps://www.gnu.org/licenses/gpl-3.0.en.html GPL-3
* @link https://gitea.node001.net/HerrHase/tellme-bot.git
*
*/
class Parser
{
/**
*
*
*/
constructor(body)
{
// body from webhook
this.body = body
// message
this.message = undefined
}
/**
* run parser, call parse-function and return message
*
* @return string
*
*/
run()
{
this.parse()
return this.message
}
}
export default Parser