70 lines
4.0 KiB
Python
70 lines
4.0 KiB
Python
HELP_MESSAGE = f"""<b><u>t.me/{BOT_USERNAME}</u></b>
|
|
|
|
<b>--- ADMINISTRATION CMDS ---</b>
|
|
<code>/add_admin</code> ID or reply to msg - adds an administrator which provides them with the ability of interacting with the bot in administrative ways
|
|
<code>/rm_admin</code> ID or reply to msg - removes an administrator which restricts them from interacting with the bot in any administrative way
|
|
<code>/add_coown</code> ID or reply to msg - adds a co-owner which have nearly full permissions over the bot and also the ability to edit configurations
|
|
<code>/rm_coown</code> ID or reply to msg - removes a co-owner which have nearly full permissions over the bot and also the ability to edit configurations
|
|
|
|
(An Owner/Co-Owner can add other Administrators.)
|
|
|
|
<b>--- LINK/USE CMDS ---</b>
|
|
<code>/create_link</code> reply to msg with vids/pics /submit in dms and approve by yourself - generates a simple link users can click one to view your uploaded media.
|
|
<code>/create_full_link</code> - takes all attachments of this channel and generates link to it, use carefully, high overload potential + pulls all media, even if not gore.
|
|
<code>/adv_group</code> TG_INV_LINK - sends a telegram group link provided to all users who previously interacted with the bot
|
|
<code>/help</code> - shows this msg
|
|
|
|
<b>--- LINK MISC CMDS ---</b>
|
|
<code>/show_links</code> - shows all links
|
|
<code>/del_link</code> LINK_ID - deletes a link by link id from /show_links
|
|
<code>/push_web</code> WEB_URL ID or reply to msg - adds content replied to/referenced to the already existing web accessor provided
|
|
|
|
<b>--- CONFIG CMDS ---</b>
|
|
<code>/config show</code> - shows the current configuration alongside keys & all values except for the bot token, which is hidden for security reasons
|
|
<code>/config reload</code> - reloads the configuration file, i.e. after changes useful
|
|
<code>/config set</code> KEY VALUE - sets a value for a certain key
|
|
|
|
<b>--- EXPLAINATION ---</b>
|
|
Any user can submit/upload gore or any other type of content via dms (<tg-spoiler><i>t.me/{BOT_USERNAME}?start=submit</i></tg-spoiler>), it gets sent here. if you click Approve & send group, the link to the media gets generated and automatically sent to your public channel.
|
|
|
|
If you click approve, the link to the media gets generated and you can share it.
|
|
|
|
If you click deny, the submission gets deleted and no link is generated.
|
|
|
|
If you click deny & ban, the submission gets deleted, the user gets banned from using the bot again & also banned from all channels.
|
|
|
|
<tg-spoiler><u>Bot programmed by @{DEVELOPER_TELEGRAM_USERNAME}.</u></tg-spoiler>"""
|
|
|
|
|
|
WARNING_MESSAGE = f"""The topic of this Bot is <code><b>{MEDIA_TOPIC_FOR_BOT.upper()}</b></code>. <b>Only submit media regarding that topic.</b>
|
|
|
|
<blockquote>
|
|
{FORBIDDEN_CONTENT_TYPES_STRING} is <b>strictly forbidden</b> and leads to <b>permanent deletion of links</b> as well as <b>exclusion from bot</b>.
|
|
</blockquote>
|
|
|
|
<code>Enter content ID</code> -> enter your content ID/link and the bot will upload all the videos/photos/texts to you in this chat, exposing the redirected hidden content
|
|
|
|
&
|
|
|
|
<code>Create Link To Media</code> -> upload your own content and generate link to it
|
|
|
|
&
|
|
|
|
<code>Submit Media to Admins</code> -> upload your own content and have admins review it, they will take action depending on what and how you submitted.
|
|
|
|
&
|
|
|
|
<code>Create Link To Text</code> -> Asks you to share contents (max. <code>{MAXIMUM_CHAR_LIMIT_FOR_TEXT_MSGS}</code> chars), then asks after how many views/usages your link shall get burned/data deleted.
|
|
|
|
&
|
|
|
|
<code>My links</code> -> shows all links you have created & their management options
|
|
|
|
|
|
<b><u>Do you understand that by clicking proceed, you will see multiple follow up options, and possibly engage with extreme content?</u></b>"""
|
|
|
|
START_MESSAGE = f"""Hey, this bot is used to upload, store and create links to all sorts of cruel media. Please choose from options below.
|
|
|
|
<b><u>The prior message explains what the below options do pretty well.</u></b>
|
|
|
|
For contacting administrators, please use t.me/{CONTACT_TELEGERAM_LINK}.""" |