Exemplo n.º 1
0
 async def write(self, _: "pyrogram.Client"):
     return raw.types.ReplyKeyboardMarkup(rows=[
         raw.types.KeyboardButtonRow(buttons=[
             types.KeyboardButton(j).write() if isinstance(j, str) else j.
             write() for j in i
         ]) for i in self.keyboard
     ],
                                          resize=self.resize_keyboard
                                          or None,
                                          single_use=self.one_time_keyboard
                                          or None,
                                          selective=self.selective or None)
Exemplo n.º 2
0
async def alive(client, message):
    try:
        stdin[message.from_user.id]
        args[message.from_user.id]
    except KeyError:
        stdin[message.from_user.id] = False
        args[message.from_user.id] = False
    buttons = []
    buton = types.InlineKeyboardMarkup([[
        types.InlineKeyboardButton(
            '✅ stdin' if stdin[message.from_user.id] else '❌ stdin',
            callback_data="stdin_trigger"),
        types.InlineKeyboardButton(
            '✅ args' if args[message.from_user.id] else '❌ args',
            callback_data="args_trigger")
    ]])

    if len(message.text.split(None, 1)) == 2:
        lan = message.text.split(None, 1)[1]
        if lan not in lang_names:
            await message.reply("Wrong language of choice!")
            return
        else:
            codes = "**Language**: `{}`\n\nGive me a code to execute:".format(
                lan)
    else:
        for l in langs:
            buttons.append(
                [types.KeyboardButton(l.language + " " + (l.version or ""))])
        language = await client.ask(
            message.chat.id,
            f"pick a language from Keyboard:",
            reply_markup=types.ReplyKeyboardMarkup(buttons),
            reply_to_message_id=message.message_id)
        lan = language.text.split(None, 1)
        if lan[0] not in lang_names:
            await message.reply("Wrong language of choice",
                                reply_markup=types.ReplyKeyboardRemove())
            return
        try:
            for l in langs:
                if lan[0] == l.language:
                    codes = "**Language**: `{}`\n**Version**: `{}`\n\nGive me a code to execute:".format(
                        l.language, l.version)
        except IndexError:
            codes = "**Language**: `{}`\n\nGive me a code to execute:".format(
                lan[0])
    await message.reply("got it!", reply_markup=types.ReplyKeyboardRemove())
    source = await client.ask(message.chat.id,
                              text=codes,
                              reply_to_message_id=message.message_id,
                              reply_markup=buton)
    if stdin[message.from_user.id]:
        std = await client.ask(
            message.chat.id,
            text="give me your input to the code",
            reply_to_message_id=message.message_id,
        )
        std = std.text
    else:
        std = None
    if args[message.from_user.id]:
        arg = await client.ask(
            message.chat.id,
            text="give me arguments to the code separated by a 'space'",
            reply_to_message_id=message.message_id,
        )
        arg = arg.text.split(" ")
    else:
        arg = None
    start_time = time.time()
    for l in langs:
        if lan[0] == l.language:
            output = await piston.execute(language=lan if len(
                message.text.split(None, 1)) == 2 else lan[0],
                                          source=source.text,
                                          version=l.version,
                                          stdin=std,
                                          args=arg)
    out = "**-Result-**\n"
    try:
        if output.language:
            out += f"**Language**: ```{output.language}```\n\n"
        # if output.output:
        #     out += f"**Output**:\n```{output.output}```\n\n"
        if output.run:
            out += f"**Stdout**:\n```{output.run.output}```\n\n"
        await message.reply(
            out,
            reply_markup=types.InlineKeyboardMarkup([[
                types.InlineKeyboardButton(
                    'stats', callback_data=f'stats-{start_time}-{time.time()}')
            ]]))

    except AttributeError as err:
        await message.reply(f"Code Execution was not Successful!\n```{err}```")