/select command implemented

It calls _query_command function
This commit is contained in:
Davte 2019-07-26 11:42:41 +02:00
parent 39e7d8b783
commit 1297402357
2 changed files with 15 additions and 1 deletions

View File

@ -14,7 +14,7 @@ __author__ = "Davide Testa"
__email__ = "davide@davte.it" __email__ = "davide@davte.it"
__credits__ = ["Marco Origlia", "Nick Lee @Nickoala"] __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "2.1.33" __version__ = "2.1.34"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"

View File

@ -603,6 +603,14 @@ default_admin_messages = {
'it': "Risultato della query" 'it': "Risultato della query"
} }
}, },
'select_command': {
'description': {
'en': "Receive the result of a SELECT query performed on bot "
"database",
'it': "Ricevi il risultato di una query SQL di tipo SELECT "
"sul database del bot"
}
},
'query_button': { 'query_button': {
'error': { 'error': {
'en': "Error!", 'en': "Error!",
@ -973,6 +981,12 @@ def init(bot, talk_messages=None, admin_messages=None):
async def query_command(bot, update, user_record): async def query_command(bot, update, user_record):
return await _query_command(bot, update, user_record) return await _query_command(bot, update, user_record)
@bot.command(command='/select', aliases=[], show_in_keyboard=False,
description=admin_messages['select_command']['description'],
authorization_level='admin')
async def select_command(bot, update, user_record):
return await _query_command(bot, update, user_record)
@bot.button(prefix='db_query:///', separator='|', @bot.button(prefix='db_query:///', separator='|',
description=admin_messages['query_command']['description'], description=admin_messages['query_command']['description'],
authorization_level='admin') authorization_level='admin')