Inline implemented
This commit is contained in:
parent
2619ecd408
commit
cfc8167663
@ -64,7 +64,7 @@ After all of that you're good to go! Happy using :)
|
||||
## To-Do
|
||||
|
||||
* [x] Check if link belongs to admin
|
||||
* [ ] Inline query user's application
|
||||
* [x] Inline query user's application
|
||||
* [x] Get applications .json
|
||||
* [ ] Get application by id and user_id
|
||||
* [x] Age as a DD.MM.YYYY
|
||||
|
12
app.py
Normal file
12
app.py
Normal file
@ -0,0 +1,12 @@
|
||||
from modules.utils import configGet
|
||||
from pyrogram.client import Client
|
||||
|
||||
app = Client("holochecker", bot_token=configGet("bot_token", "bot"), api_id=configGet("api_id", "bot"), api_hash=configGet("api_hash", "bot"))
|
||||
|
||||
async def isAnAdmin(admin_id):
|
||||
if admin_id == configGet("owner") or admin_id in configGet("admins"):
|
||||
return True
|
||||
async for member in app.get_chat_members(configGet("admin_group")):
|
||||
if member.user.id == admin_id:
|
||||
return True
|
||||
return False
|
@ -124,5 +124,22 @@
|
||||
"sus_allowed": "✅ Доступ {0} дозволено",
|
||||
"sus_refused": "❌ Доступ {0} заборонено",
|
||||
"nothing": "🔔 Дія вже виконана"
|
||||
},
|
||||
"inline": {
|
||||
"forbidden": {
|
||||
"title": "Дія недоступна",
|
||||
"description": "Ти не маєш дозволу переглядати це",
|
||||
"message_content": "Немає дозволу на перегляд."
|
||||
},
|
||||
"not_pm": {
|
||||
"title": "Дія недоступна",
|
||||
"description": "Ця команда доступна тільки в приватних повідомленнях в чаті з самим ботом",
|
||||
"message_content": "Дія доступна тільки в ПП."
|
||||
},
|
||||
"user": {
|
||||
"title": "",
|
||||
"description": "Переглянути анкету {0} (@{1})",
|
||||
"message_content": "{0} (@{1})\n\n**Дані анкети:**\n{2}"
|
||||
}
|
||||
}
|
||||
}
|
16
main.py
16
main.py
@ -5,9 +5,10 @@ from time import time
|
||||
from os import getpid, path
|
||||
from modules.birthdays import check_birthdays
|
||||
from modules.utils import *
|
||||
from modules.inline import *
|
||||
from schedule import run_pending, every
|
||||
from app import app
|
||||
|
||||
from pyrogram.client import Client
|
||||
from pyrogram import filters
|
||||
from pyrogram.enums.parse_mode import ParseMode
|
||||
from pyrogram.enums.chat_action import ChatAction
|
||||
@ -17,7 +18,6 @@ from pyrogram.errors.exceptions import bad_request_400
|
||||
|
||||
|
||||
pid = getpid()
|
||||
app = Client("holochecker", bot_token=configGet("bot_token", "bot"), api_id=configGet("api_id", "bot"), api_hash=configGet("api_hash", "bot"))
|
||||
|
||||
|
||||
for entry in [f"{configGet('data', 'locations')}{sep}applications.json"]:
|
||||
@ -28,16 +28,6 @@ for entry in [f"{configGet('data', 'locations')}{sep}applications.json"]:
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
async def isAnAdmin(admin_id):
|
||||
if admin_id == configGet("owner") or admin_id in configGet("admins"):
|
||||
return True
|
||||
async for member in app.get_chat_members(configGet("admin_group")):
|
||||
if member.user.id == admin_id:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
# Start command ================================================================================================================
|
||||
@app.on_message(~ filters.scheduled & filters.private & filters.command(["start"], prefixes=["/"]))
|
||||
async def cmd_start(app, msg):
|
||||
@ -472,6 +462,8 @@ async def get_contact(app, msg):
|
||||
@app.on_message(~ filters.scheduled & filters.private)
|
||||
async def any_stage(app, msg):
|
||||
|
||||
if msg.via_bot == None:
|
||||
|
||||
user_stage = configGet("stage", file=str(msg.from_user.id))
|
||||
|
||||
if user_stage == 1:
|
||||
|
136
modules/inline.py
Normal file
136
modules/inline.py
Normal file
@ -0,0 +1,136 @@
|
||||
from datetime import datetime
|
||||
from os import path, sep
|
||||
from pyrogram.types import InlineQueryResultArticle, InputTextMessageContent
|
||||
from pyrogram.enums.chat_type import ChatType
|
||||
from pyrogram.enums.chat_members_filter import ChatMembersFilter
|
||||
from dateutil.relativedelta import relativedelta
|
||||
|
||||
from app import app, isAnAdmin
|
||||
from modules.utils import configGet, jsonLoad, locale
|
||||
|
||||
@app.on_inline_query()
|
||||
async def inline_answer(client, inline_query):
|
||||
|
||||
if inline_query.chat_type not in [ChatType.BOT, ChatType.PRIVATE]:
|
||||
await inline_query.answer(
|
||||
results=[
|
||||
InlineQueryResultArticle(
|
||||
title=locale("title", "inline", "not_pm"),
|
||||
input_message_content=InputTextMessageContent(
|
||||
locale("message_content", "inline", "not_pm")
|
||||
),
|
||||
description=locale("description", "inline", "not_pm")
|
||||
)
|
||||
]
|
||||
)
|
||||
return
|
||||
|
||||
if (path.exists(f"{configGet('data', 'locations')}{sep}users{sep}{inline_query.from_user.id}.json") and jsonLoad(f"{configGet('data', 'locations')}{sep}users{sep}{inline_query.from_user.id}.json")["approved"]) or (await isAnAdmin(inline_query.from_user.id)):
|
||||
|
||||
list_of_users = []
|
||||
async for m in app.get_chat_members(configGet("admin_group"), filter=ChatMembersFilter.SEARCH, query=inline_query.query):
|
||||
list_of_users.append(m)
|
||||
|
||||
#list_of_names = []
|
||||
|
||||
#list_filtered = [v for v in (list_of_users) if inline_query.query in v]
|
||||
|
||||
results = []
|
||||
|
||||
for match in list_of_users:
|
||||
# if match.user.photo != None:
|
||||
# results.append(
|
||||
# InlineQueryResultArticle(
|
||||
# title=str(match.user.first_name),
|
||||
# input_message_content=InputTextMessageContent(
|
||||
# f"More about @{match.user.username}"
|
||||
# ),
|
||||
# description=f"More info about {match.user.username}",
|
||||
# thumb_url=f'https://api.telegram.org/bot{configGet("bot_token", "bot")}/{match.user.photo.big_file_id}',
|
||||
# thumb_height=640,
|
||||
# thumb_width=640
|
||||
# )
|
||||
# )
|
||||
# else:
|
||||
|
||||
try:
|
||||
user_data = jsonLoad(f"{configGet('data', 'locations')}{sep}users{sep}{match.user.id}.json")
|
||||
application_content = []
|
||||
i = 1
|
||||
for question in configGet("application", file=str(match.user.id)):
|
||||
if i == 2:
|
||||
age = relativedelta(datetime.now(), datetime.strptime(configGet('application', file=str(match.user.id))['2'], '%d.%m.%Y'))
|
||||
application_content.append(f"{locale('question'+str(i), 'message', 'question_titles')} {configGet('application', file=str(match.user.id))['2']} ({age.years} р.)")
|
||||
else:
|
||||
application_content.append(f"{locale('question'+str(i), 'message', 'question_titles')} {configGet('application', file=str(match.user.id))[question]}")
|
||||
i += 1
|
||||
results.append(
|
||||
InlineQueryResultArticle(
|
||||
title=str(match.user.first_name),
|
||||
input_message_content=InputTextMessageContent(
|
||||
locale("message_content", "inline", "user").format(match.user.first_name, match.user.username, "\n".join(application_content))
|
||||
),
|
||||
description=locale("description", "inline", "user").format(match.user.first_name, match.user.username)
|
||||
)
|
||||
)
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
await inline_query.answer(
|
||||
results=results,
|
||||
cache_time=10
|
||||
)
|
||||
|
||||
# await inline_query.answer(
|
||||
# results=[
|
||||
# InlineQueryResultArticle(
|
||||
# title="Installation",
|
||||
# input_message_content=InputTextMessageContent(
|
||||
# "Here's how to install **Pyrogram**"
|
||||
# ),
|
||||
# url="https://docs.pyrogram.org/intro/install",
|
||||
# description="How to install Pyrogram",
|
||||
# reply_markup=InlineKeyboardMarkup(
|
||||
# [
|
||||
# [InlineKeyboardButton(
|
||||
# "Open website",
|
||||
# url="https://docs.pyrogram.org/intro/install"
|
||||
# )]
|
||||
# ]
|
||||
# )
|
||||
# ),
|
||||
# InlineQueryResultArticle(
|
||||
# title="Usage",
|
||||
# input_message_content=InputTextMessageContent(
|
||||
# "Here's how to use **Pyrogram**"
|
||||
# ),
|
||||
# url="https://docs.pyrogram.org/start/invoking",
|
||||
# description="How to use Pyrogram",
|
||||
# reply_markup=InlineKeyboardMarkup(
|
||||
# [
|
||||
# [InlineKeyboardButton(
|
||||
# "Open website",
|
||||
# url="https://docs.pyrogram.org/start/invoking"
|
||||
# )]
|
||||
# ]
|
||||
# )
|
||||
# )
|
||||
# ],
|
||||
# cache_time=1
|
||||
# )
|
||||
|
||||
else:
|
||||
await inline_query.answer(
|
||||
results=[
|
||||
InlineQueryResultArticle(
|
||||
title=locale("title", "inline", "forbidden"),
|
||||
input_message_content=InputTextMessageContent(
|
||||
locale("message_content", "inline", "forbidden")
|
||||
),
|
||||
description=locale("description", "inline", "forbidden")
|
||||
)
|
||||
]
|
||||
)
|
||||
return
|
@ -44,15 +44,15 @@ def configSet(key: str, value, *args: str, file: str = "config"):
|
||||
"""
|
||||
if file == "config":
|
||||
filepath = ""
|
||||
else:
|
||||
filepath = f"data{sep}users{sep}"
|
||||
this_dict = jsonLoad(f"{filepath}{file}.json")
|
||||
if this_dict["debug"]:
|
||||
try:
|
||||
this_dict = jsonLoad("config_debug.json")
|
||||
file = "config_debug"
|
||||
except FileNotFoundError:
|
||||
print("Debug mode is set but config_debug.json is not there! Falling back to config.json", flush=True)
|
||||
else:
|
||||
filepath = f"data{sep}users{sep}"
|
||||
this_dict = jsonLoad(f"{filepath}{file}.json")
|
||||
string = "this_dict"
|
||||
for arg in args:
|
||||
string += f'["{arg}"]'
|
||||
|
Reference in New Issue
Block a user