예제 #1
0
 def __reboot(self, device, serial):
     LOGGER.info("#### Rebooting %s ####" % (device))
     ps = subprocess.Popen(["adb", "-s", serial, "reboot"],
                           stdout=subprocess.PIPE,
                           stderr=subprocess.PIPE)
     output = ps.communicate()[0].decode('utf-8')
     return output
예제 #2
0
파일: bot.py 프로젝트: Breee/raidquaza
 async def on_ready(self):
     LOGGER.info('Bot is ready.')
     self.start_time = datetime.utcnow()
     await self.change_presence(activity=discord.Game(name=config.PLAYING))
     # make mentionable.
     self.command_prefix.extend(
         [f'<@!{self.user.id}> ', f'<@{self.user.id}> '])
예제 #3
0
 def __reboot_list(self, device_names):
     LOGGER.info("#### Got list to reboot %s ####" % (str(device_names)))
     outputs = []
     devices = [(device_name, self.devices[device_name])
                for device_name in device_names]
     for device, serial in devices:
         output = self.__reboot(device, serial)
         outputs.append("%s : %s : %s" % (device, serial, output))
     return outputs
예제 #4
0
파일: pollcog.py 프로젝트: Breee/raidquaza
 async def simplepoll(self, ctx, poll_title, *options):
     LOGGER.info("Creating Poll: %s %s on Server %s" % (poll_title, options, ctx.guild))
     # create a new poll
     poll_id = str(uuid.uuid4())
     new_poll = Poll(poll_id, poll_title, list(options))
     # send it to discord
     msg, embed = new_poll.to_discord()
     sent_message: discord.Message = await ctx.channel.send(content=msg,
                                                            embed=embed)
     self.pollmanager.add_poll(poll=new_poll, received_message=ctx.message, sent_message=sent_message)
     # add reactions to the poll.
     for reaction in new_poll.reaction_to_option.keys():
         await sent_message.add_reaction(reaction)
예제 #5
0
파일: utilscog.py 프로젝트: Breee/raidquaza
 async def notify_servers(self, ctx, message):
     admin_ids = set()
     admins = set()
     for member in self.bot.get_all_members():
         if member.guild_permissions.administrator and not member.bot:
             if member.id not in admin_ids:
                 admins.add(member)
                 admin_ids.add(member.id)
     app = await self.bot.application_info()
     if app.team:
         owners = [m.mention for m in app.team.members]
     else:
         owners = [app.owner.mention]
     message_prefix = f"Hey there,\nYou are the administrator of a server on which I am and I got an important " \
                      f"notification from my owner(s) {' '.join(owners)}:\n\n"
     LOGGER.info(f"Admins I notify: {[a.name for a in admins]}")
     for admin in admins:
         try:
             await admin.send(message_prefix + message)
         except:
             LOGGER.error(f"Could not send notification to {admin.name}")
예제 #6
0
 def get_polls(self, age=None) -> List[poll_models.Poll]:
     LOGGER.info(f'Getting polls with age {age}')
     if age:
         since = datetime.datetime.now() - datetime.timedelta(days=age)
         LOGGER.info(f'since: {since}')
         polls = self.session.query(poll_models.Poll).filter(
             poll_models.Poll.creation_time >= since)
         LOGGER.info(f'polls: {polls}')
     else:
         polls = self.session.query(poll_models.Poll).filter()
     return polls
예제 #7
0
 def update_member(self, member: Member, access_level: int) -> None:
     if access_level > 0:
         LOGGER.info(f"Updating: {member} to lvl {access_level}")
         self.session.execute(
             self.generate_query(member.id, access_level,
                                 f'{member.name}#{member.discriminator}'))
예제 #8
0
MIT License

Copyright (c) 2018 Breee@github

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""

from utility.globals import LOGGER
from bot import Raidquaza

if __name__ == "__main__":
    LOGGER.info("Starting Bot.")
    bot = Raidquaza(description="")
    bot.run()
예제 #9
0
파일: rolecog.py 프로젝트: Breee/authicuno
 async def on_member_join(self, member):
     LOGGER.info(f"Member {member} joined server, updating access-level")
     self.update_member(member=member)
예제 #10
0
파일: rolecog.py 프로젝트: Breee/authicuno
 async def on_member_remove(self, member):
     LOGGER.info(f"Member {member} left server, updating access-level")
     self.update_member(member=member)
예제 #11
0
파일: rolecog.py 프로젝트: Breee/authicuno
 async def on_member_update(self, before, after):
     if before.roles != after.roles:
         LOGGER.info(f"Member {after} updated roles, updating access-level")
         self.update_member(member=after)