2017-10-02 12:09:44 +03:30
|
|
|
|
'use strict';
|
|
|
|
|
|
2017-10-31 22:20:49 +01:00
|
|
|
|
// Utils
|
|
|
|
|
const { scheduleDeletion } = require('../../utils/tg');
|
2017-10-02 12:35:40 +03:30
|
|
|
|
|
2017-10-02 12:09:44 +03:30
|
|
|
|
// DB
|
|
|
|
|
const { managesGroup } = require('../../stores/group');
|
|
|
|
|
|
|
|
|
|
const linkHandler = async ({ chat, replyWithHTML }) => {
|
2017-10-08 13:19:11 +03:30
|
|
|
|
const group = await managesGroup({ id: chat.id });
|
2017-10-02 12:09:44 +03:30
|
|
|
|
|
2017-10-31 23:08:22 +01:00
|
|
|
|
return replyWithHTML('ℹ️ <b>Group\'s link:</b>\n\n' +
|
|
|
|
|
`<a href="${group.link}">${group.title}</a>`).then(scheduleDeletion);
|
2017-10-02 12:09:44 +03:30
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = linkHandler;
|