├── .conf └── test.txt ├── .env.example ├── .gitignore ├── LICENSE ├── index.md ├── package.json ├── readme.md └── src ├── api ├── models │ ├── schema.js │ └── schemaUpdatedAt.js ├── routes │ ├── botroute.js │ └── format.js └── utils │ ├── bot.js │ ├── db.js │ ├── dom.js │ ├── fixImages.js │ ├── index.js │ ├── is-image-url.js │ ├── ivMaker.js │ ├── links.js │ ├── logger.js │ ├── makeTelegraph.js │ ├── mercury.js │ ├── parseHelper.js │ ├── pdf.js │ ├── puppet.js │ └── sanitize.js ├── config ├── bot.js ├── botTest.js ├── buttons.js ├── consts.js ├── mongoose.js └── vars.js ├── cron.js ├── index.js ├── keyboards └── keyboards.js ├── messages └── format.js └── service ├── commands └── test.js ├── jobMessage.js └── rabbitmq.js /.conf/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/LICENSE -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/readme.md -------------------------------------------------------------------------------- /src/api/models/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/models/schema.js -------------------------------------------------------------------------------- /src/api/models/schemaUpdatedAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/models/schemaUpdatedAt.js -------------------------------------------------------------------------------- /src/api/routes/botroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/routes/botroute.js -------------------------------------------------------------------------------- /src/api/routes/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/routes/format.js -------------------------------------------------------------------------------- /src/api/utils/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/bot.js -------------------------------------------------------------------------------- /src/api/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/db.js -------------------------------------------------------------------------------- /src/api/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/dom.js -------------------------------------------------------------------------------- /src/api/utils/fixImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/fixImages.js -------------------------------------------------------------------------------- /src/api/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/index.js -------------------------------------------------------------------------------- /src/api/utils/is-image-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/is-image-url.js -------------------------------------------------------------------------------- /src/api/utils/ivMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/ivMaker.js -------------------------------------------------------------------------------- /src/api/utils/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/links.js -------------------------------------------------------------------------------- /src/api/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/logger.js -------------------------------------------------------------------------------- /src/api/utils/makeTelegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/makeTelegraph.js -------------------------------------------------------------------------------- /src/api/utils/mercury.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/mercury.js -------------------------------------------------------------------------------- /src/api/utils/parseHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/parseHelper.js -------------------------------------------------------------------------------- /src/api/utils/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/pdf.js -------------------------------------------------------------------------------- /src/api/utils/puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/puppet.js -------------------------------------------------------------------------------- /src/api/utils/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/api/utils/sanitize.js -------------------------------------------------------------------------------- /src/config/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/bot.js -------------------------------------------------------------------------------- /src/config/botTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/botTest.js -------------------------------------------------------------------------------- /src/config/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/buttons.js -------------------------------------------------------------------------------- /src/config/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/consts.js -------------------------------------------------------------------------------- /src/config/mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/mongoose.js -------------------------------------------------------------------------------- /src/config/vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/config/vars.js -------------------------------------------------------------------------------- /src/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/cron.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/index.js -------------------------------------------------------------------------------- /src/keyboards/keyboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/keyboards/keyboards.js -------------------------------------------------------------------------------- /src/messages/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/messages/format.js -------------------------------------------------------------------------------- /src/service/commands/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/service/commands/test.js -------------------------------------------------------------------------------- /src/service/jobMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/service/jobMessage.js -------------------------------------------------------------------------------- /src/service/rabbitmq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertincx/formatbot1/HEAD/src/service/rabbitmq.js --------------------------------------------------------------------------------