mirror of
https://github.com/polyjitter/searchbot-discord.git
synced 2024-08-14 22:46:55 +00:00
176 lines
6 KiB
Python
176 lines
6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Botlist Reporting
|
|
# Reports statistics to various botlists.
|
|
# Not useful for redist instances.
|
|
|
|
'''Botlist Cog'''
|
|
|
|
import discord
|
|
import aiohttp
|
|
from discord.ext import commands, tasks
|
|
import dbl
|
|
|
|
|
|
class BotList(commands.Cog, name='Bot List'):
|
|
"""Provides various utilities for handling BotList stuff."""
|
|
|
|
def __init__(self, bot):
|
|
|
|
# Main Stuff
|
|
self.bot = bot
|
|
self.request = bot.request
|
|
self.debug = bot.logging.debug
|
|
self.emoji = "\U0001F5F3"
|
|
|
|
# List Tokens
|
|
self.dbl_token = bot.config['BOTLISTS']['DBL']
|
|
self.dbots_token = bot.config['BOTLISTS']['DBOTS']
|
|
self.bod_token = bot.config['BOTLISTS']['BOD']
|
|
self.dblcom_token = bot.config['BOTLISTS']['DBLCOM']
|
|
self.blspace_token = bot.config['BOTLISTS']['BLSPACE']
|
|
self.dad_token = bot.config['BOTLISTS']['DAD']
|
|
|
|
# top.gg client
|
|
self.dbl_client = dbl.DBLClient(
|
|
self.bot, self.dbl_token)
|
|
|
|
# Start update loop
|
|
self.update_stats.start()
|
|
|
|
async def _update_logic(self):
|
|
"""Handles all statistic updating for various different bot lists."""
|
|
|
|
# Prerequisites
|
|
dbots_call = "https://discord.bots.gg/api/v1"
|
|
bod_call = "https://bots.ondiscord.xyz/bot-api/"
|
|
dblcom_call = "https://discordbotlist.com/api"
|
|
dad_call = "https://api.discordapps.dev/api/v2/"
|
|
responses = {}
|
|
|
|
# Calls
|
|
# discord.bots.gg
|
|
if self.dbots_token != '':
|
|
|
|
# Call Prereqs
|
|
dbots_call += f"/bots/{self.bot.user.id}/stats"
|
|
dbots_data = {'guildCount': len(self.bot.guilds)}
|
|
dbots_headers = {'Authorization': self.dbots_token}
|
|
|
|
# Call Handling
|
|
async with self.request.post(dbots_call,
|
|
json=dbots_data,
|
|
headers=dbots_headers) as resp:
|
|
resp_json = await resp.json()
|
|
responses['dbots'] = resp_json
|
|
|
|
# bots.ondiscord.xyz
|
|
if self.bod_token != '':
|
|
|
|
# Call Prereqs
|
|
bod_call += f"/bots/{self.bot.user.id}/guilds"
|
|
bod_data = {'guildCount': len(self.bot.guilds)}
|
|
bod_headers = {'Authorization': self.bod_token}
|
|
|
|
# Call Handling
|
|
async with self.request.post(bod_call,
|
|
json=bod_data,
|
|
headers=bod_headers) as resp:
|
|
responses['bod'] = resp.status
|
|
|
|
# discordbotlist.com
|
|
if self.dblcom_token != '':
|
|
|
|
# Call Prereqs
|
|
dblcom_call += f"/bots/{self.bot.user.id}/stats"
|
|
dblcom_data = {'guilds': len(self.bot.guilds)}
|
|
dblcom_headers = {'Authorization': f"Bot {self.dblcom_token}"}
|
|
|
|
# Call Handling
|
|
async with self.request.post(dblcom_call,
|
|
json=dblcom_data,
|
|
headers=dblcom_headers) as resp:
|
|
responses['dblcom'] = resp.status
|
|
|
|
# top.gg
|
|
if self.dbl_token != '':
|
|
# NOTE top.gg has a lib so it gets different handling.
|
|
try:
|
|
resp = await self.dbl_client.post_guild_count()
|
|
responses['dbl'] = resp
|
|
except Exception as e:
|
|
responses['dbl'] = e
|
|
|
|
# discordapps.dev
|
|
if self.dad_token != '':
|
|
|
|
# Call Prereqs
|
|
dad_call += f"/bots/{self.bot.user.id}"
|
|
dad_data = {'bot': {'count': len(self.bot.guilds)}}
|
|
dad_headers = {'Authorization': self.dad_token}
|
|
|
|
# Call Handling
|
|
async with self.request.post(dad_call,
|
|
json=dad_data,
|
|
headers=dad_headers) as resp:
|
|
responses['dad'] = resp.status
|
|
|
|
log_msg = f"**Botlists updated!**\n\n```{responses}```"
|
|
await self.debug(content=log_msg, name='List Update')
|
|
|
|
# Finalization
|
|
return responses
|
|
|
|
# TODO Move to Core, hide behind check for any existing token
|
|
@commands.command(aliases=['review'])
|
|
async def vote(self, ctx):
|
|
"""Review and vote for this bot on various botlists."""
|
|
|
|
# Header
|
|
msg = (
|
|
"**Thank you for wanting to help us out!**\n"
|
|
"You can find us on the following lists:\n\n"
|
|
)
|
|
|
|
# Links
|
|
# XXX This sucks
|
|
if self.dbots_token != '':
|
|
msg += f"_discord.bots.gg_ <https://discord.bots.gg/bots/{self.bot.user.id}/>\n"
|
|
if self.bod_token != '':
|
|
msg += f"_bots.ondiscord.xyz_ <https://bots.ondiscord.xyz/bots/{self.bot.user.id}/>\n"
|
|
if self.dblcom_token != '':
|
|
msg += f"_discordbotlist.com_ <https://discordbotlist.com/bots/{self.bot.user.id}/>\n"
|
|
if self.dbl_token != '':
|
|
msg += f"_top.gg_ <https://top.gg/bot/{self.bot.user.id}/>\n"
|
|
if self.bot.config['BOTLISTS']['TABFT_LINK']:
|
|
msg += f"_thereisabotforthat.com_ <{self.bot.config['BOTLISTS']['TABFT_LINK']}>\n"
|
|
if self.dad_token != '':
|
|
msg += f"_discordapps.dev_ <https://discordapps.dev/en-GB/bots/{self.bot.user.id}/>\n"
|
|
if self.blspace_token != '':
|
|
msg += f"_botlist.space_ <https://botlist.space/bot/{self.bot.user.id}\n>"
|
|
|
|
# Sending
|
|
await ctx.send(msg)
|
|
|
|
@commands.command()
|
|
@commands.is_owner()
|
|
async def listupdate(self, ctx):
|
|
"""Updates statistics on botlists."""
|
|
|
|
msg = await ctx.send("<a:loading:393852367751086090> **Updating...**")
|
|
responses = await self._update_logic()
|
|
await msg.edit(content="**Updated!**")
|
|
|
|
@tasks.loop(minutes=30.0)
|
|
async def update_stats(self):
|
|
"""Automatically updates statistics every 15 minutes."""
|
|
|
|
responses = await self._update_logic()
|
|
|
|
def cog_unload(self):
|
|
self.update_stats.cancel()
|
|
|
|
|
|
def setup(bot):
|
|
"""Adds the cog to the bot."""
|
|
bot.add_cog(BotList(bot))
|