diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -4,6 +4,7 @@ from telegram.error import BadRequest | |||
4 | from telegram.ext import ContextTypes, ConversationHandler | 4 | from telegram.ext import ContextTypes, ConversationHandler |
5 | 5 | ||
6 | from config import * | 6 | from config import * |
7 | from mastodon import Mastodon | ||
7 | 8 | ||
8 | 9 | ||
9 | async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: | 10 | async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: |
@@ -13,6 +14,18 @@ async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> i | |||
13 | return WAIT_LOCATION | 14 | return WAIT_LOCATION |
14 | 15 | ||
15 | 16 | ||
17 | async def fedi_login_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: | ||
18 | # generate fedi OAuth login url | ||
19 | |||
20 | # mastodon_client = Mastodon(client_id=MASTODON_CLIENT_ID_FILE, api_base_url=TOOT_API_BASE_URL) | ||
21 | # oauth_url = mastodon_client.auth_request_url(redirect_uris="{}/{}".format(BOT_DOMAIN, FEDI_LOGIN_CALLBACK_URL), | ||
22 | # scopes=['write:media', 'write:statuses']) | ||
23 | # | ||
24 | # await update.message.reply_text(PROMPT_FEDI_LOGIN.format(oauth_url), parse_mode=ParseMode.MARKDOWN) | ||
25 | await update.message.reply_text(PROMPT_FEDI_LOGIN_WHERE_IS_INSTANCE, parse_mode=ParseMode.MARKDOWN) | ||
26 | return FEDI_LOGIN | ||
27 | |||
28 | |||
16 | async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: | 29 | async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
17 | await update.message.reply_text(PROMPT_HELP) | 30 | await update.message.reply_text(PROMPT_HELP) |
18 | 31 | ||