Пример #1
0
def checkForInt(var):
    """Checks if the given var is a number"""
    try:  #Tries to change var into int
        var = int(var)
    except Exception:
        pycord.errorLog(
            "Variable does not consist of only numbers. Aborting...")
        time.sleep(3)
        exit()
Пример #2
0
async def actStatus(status):
	"""Changes the status based on str given"""
	if status == "online":
		await bot.change_presence(status = discord.Status.online) #changes status to online

	elif status == "away":
		await bot.change_presence(status = discord.Status.idle) #changes status to away

	elif status == "dnd":
		await bot.change_presence(status = discord.Status.dnd)

	elif status == "invisible":
		await bot.change_presence(status = discord.Status.invisible)
	else:
		pycord.errorLog("actStatus(status): Status incorrect! This is a problem on the programmer's side")
Пример #3
0
async def on_ready():
		try:
			channelId = bot.details["channelId"]
			username = bot.details["username"]
		except Exception:
			pass

		###MISSING VARIABLE CHECK###
		try:
			channelId = channelId #checks if the variable can be accessed

		except Exception:
			errorForId = 1
			pycord.errorLog("Error loading channel id from file...")
			while errorForId == 1: #A loop that is run while the user is entering their new channel id
				channelId = input("Please enter the channel id: ")
				if pycord.checkNumber(channelId) == False: #checknumber returns true if it is a number and false if it itn't
					pycord.errorLog("Invalid channel id!")
				else:
					errorForId = 0
					break

		try:
			username = username #checks if the variable can be accessed

		except Exception:
			pycord.errorLog("Error getting username from settings.py...")
			usernameLoop = 1
			while usernameLoop == 1: #cheks for invalid usernames
				username = input("Enter your username: "******"":
					pycord.errorLog("Invalid username!")
				if username == " ":
					pycord.errorLog("Invalid username!")
				else:
					usernameLoop = 0
					break

		channelId = discord.Object(id=channelId) #Makes the variable a discord object

		#####################################

		#Checks ping
		t1 = time.time()
		await bot.send_typing(channelId)
		t2 = time.time()
		ping = (t2-t1)*1000
		ping = round(ping, 2)
		######################################

		pycord.log("Logged into {}".format(bot.user.name)) #Sets game

		#Welcome message
		print("Welcome to Pycord {}!".format(username))
		print(cmdlist)
		print("---------------------------------------------------------------------")
		print("Connection info:")
		print("Logged into: {}".format(bot.user.name))
		print("Your ping is: {}".format(ping))
		print("---------------------------------------------------------------------")
		print(random.choice(tips))
		print("---------------------------------------------------------------------")
		######################################

		await bot.send_message(channelId, "**{}** logged into Pycord.".format(username))

		while True : #The main loop


			msg = input("Pycord> ")
			#Checks if the msg is empty
			if msg == "":
				pycord.errorLog("Cannot send empty message.")
			
			if msg == " ":
				pycord.errorLog("Cannot only send spaces!")

			#Changes the presence
			elif msg.startswith("/setgame"):
				game = msg[9:]
				await bot.change_presence(game=discord.Game(name=game))
				pycord.log("Game set to {}".format(msg[9:]))

			#Send file command (Use: /sendfile file.png), all formats supported as long as it is under 8MB
			elif msg.startswith("/sendfile"):
				pycord.log("Sending file {}...".format(msg[10:]))
				try:
					await bot.send_file(channelId, msg[10:])

				except Exception:
					pycord.errorLog("An error occured while sending the file...")

			#Lets the user set the parameters for the send
			elif msg.startswith("/customsend"):
				pycord.log("Attempting custom send...")
				eval("""await bot.send_message({})""".format(msg[12:]))

			#Changes pycord username
			elif msg.startswith("/changeuser"):
				username = msg[12:]
				pycord.log("Username changed to {}".format(username))

			#Opens a text file and says it's contents in discord
			elif msg.startswith("/sendtxt"):
				try:
					file = open(msg[9:], 'r')
					pycord.log("Sending txt file...")
					try:
						if bot.showUsername == True:
							await bot.send_message(channelId, """`[{}]` `Text File`\n""".format(username) + file.read())
						if bot.showUsername == False:
							await bot.send_message(channelId, file.read())
					except Exception:
						pycord.errorLog("An error occured while sending the message...")
				except Exception:
					pycord.errorLog("An error occured opening the file...")

			#Change channel ID
			elif msg.startswith("/changeid"):
				channelIdNew = msg[10:]
				if pycord.checkNumber(channelIdNew) == False: #Checks if channelIdNew is a number or not. If it fails, the below is executed.
					pycord.errorLog("Could not change the id. Failed checkNumber check.")
				else:
					channelId = discord.Object(id=channelIdNew)
					pycord.log("Channel Id changed to {}".format(channelId))

			#Lists all the commands
			elif msg.startswith("/help"):
				print(cmdlist)

			#Exits PyCord
			elif msg == "/exit" or msg == "/quit":
				print(exitMsg)
				time.sleep(3)
				bot.details = ""
				try:
					details = "" #i have no idea if this is going to work thats why im putting it in a try statement
				except Exception:
					pass
				await bot.send_message(channelId, "**{}** logged out of Pycord.".format(username))
				await bot.close() #Logs out
				break #Breaks the loop

			#Sends the shrug emote
			elif msg.startswith("/shrug"):
				try:
					if bot.showUsername == True:
						await bot.send_message(channelId, "`[{}]` ¯\_(ツ)_/¯".format(username))
					if bot.showUsername == False:
						await bot.send_message(channelId, "¯\_(ツ)_/¯")
				except Exception:
					pycord.errorLog("An error occured while sending the message...")

			#A ping command
			elif msg.startswith("/ping"):
				try:
					t1 = time.time()
					await bot.send_typing(channelId)
					t2 = time.time()
					ping = (t2-t1)*1000
					ping = round(ping, 2)
					pycord.log("Your ping is {}ms".format(ping))

				except Exception:
					pycord.errorLog("An error occured while sending the message...")

			#Embed command
			elif msg.startswith("/embed"):
				args = msg[7:]
				try:
					title, content = args.split("-")
					content = content[1:]
					embed = discord.Embed(title=title, description=content)
					try:
						await bot.send_message(channelId, embed=embed)
					except Exception:
						pycord.errorLog("Failed sending the message")
				except Exception:
					pycord.errorLog("Splitting failed. Required argumends might have not been met. Make sure to split the title and content with a dash and space like '- '.")

			#Clears the screen
			elif msg.startswith("/clear"):
				pycord.clear()

			#sets status to online
			elif msg == "/online":
				await actStatus("online")
				pycord.log("Status set to Online")

			#sets status to away
			elif msg == "/away" or msg == "/afk" or msg == "/idle":
				await actStatus("away")
				pycord.log("Status set to Away")

			#sets status to dnd
			elif msg == "/dnd":
				await actStatus("dnd")
				pycord.log("Status set to Do Not Disturb")

			#sets status to offline
			elif msg == "/offline" or msg == "/invisible":
				await actStatus("invisible")
				pycord.log("Status set to Invisible")

			elif msg == "/userToggle":
				if bot.details["useUsername"] == True:
					bot.details["useUsername"] = False
					pycord.log("Username hidden.")
				
				else:
					bot.details["useUsername"] = True
					pycord.log("Username will be shown.")

			#final checks
			elif msg.startswith("/"):
				pass


			#If none of the requirements above are met, send the message
			else:
				if msg.startswith("./"):
					msg = msg[1:] #removes first character
				try:
					if bot.details["useUsername"] == True:
						await bot.send_message(channelId, "`[{}]` {}".format(username, msg))
					if bot.details["useUsername"] == False:
						await bot.send_message(channelId, msg)
				except Exception:
					pycord.errorLog("An error occured while sending the message...")

		pycord.log("Loop broken")
Пример #4
0
try:
	from Pycord import pycord
except ImportError:
	print("Could not import the Pycord module! Cannot continue!")
	exit()
try: #Attempts to import
	import discord
	import asyncio
	import random
	import time
	from Pycord import pycord
	import os
	from settings import * #Imports variables you set in the setup

except ImportError: #This is run if there is an error while importing
	pycord.errorLog("There was an error while importing! Pycord cannot continue. Make sure you ran setup.py before launching Pycord")
	print("")
	runSetup = input("Do you want to run the setup now? (y/N)")
	runSetup = runSetup.lower() #Turns runSetup into lower case letters

	if runSetup == "y":
		try:
			os.system("python setup.py")
			exit()
		except Exception: #In case the system uses "python3" for it's commands, that will happen
			try:
				os.system("python3 setup.py")
				exit()
			except Exception:
				pycord.errorLog("There was an error while attempting to run the setup. Pycord cannot proceed.")
				time.sleep(3)
Пример #5
0
def editFile():
    #Function called to edit settings.py
    pycord.log("Settings file already found. A new file won't be created.")
    editFileQuestionmark = input(
        "Do you want to edit your current settings? (y/N) ")
    editFileQuestionmark = editFileQuestionmark.lower()

    if editFileQuestionmark == "y":  #The editing part
        #Grabs all the variables
        newUsername = input("Input your new username: "******"Do your want your Pycord username to be visible in messages? (y/N)"
        )
        newChannelId = input("Input your new channel id: ")
        #Debug purposes
        try:
            checkForInt(newChannelId)
        except Exception:
            pycord.errorLog("checkForInt() failed!")
        #############################################
        newFocusMode = input("Do you want to enable Focus Mode? (Y/n)")

        newFocusMode = newFocusMode.lower()
        if newFocusMode == "n":
            newFocusMode = 0

        else:
            newFocusMode = 1

        if newUseUsername.lower() == "y":
            useUsename = True

        else:
            useUsename = False

        file = open("settings.py", "w+")  #opens the file so it can be edited
        sampleDict['botToken'] = newToken
        sampleDict['channelId'] = newChannelId
        sampleDict['focusonchannel'] = newFocusMode
        sampleDict['useUsername'] = useUsename
        sampleDict['username'] = newUsername

        settingsFile = "#This is the Pycord Save file. This is where all your Pycord information is stored. This is not to be ran but rater edited.\ndetails = {}".format(
            sampleDict)

        try:
            file.write(settingsFile)  #writes to the file

        except Exception:
            pycord.errorLog("Error writing file! Aborting...")
            time.sleep(3)
            exit()
        file.close()  #closes the file and applies changes

        pycord.log("Edit successful! Closing...")
        time.sleep(3)
        exit()

    elif editFileQuestionmark == "n":
        pycord.log("Quitting...")
        time.sleep(1)
        exit()

    else:
        pycord.log("Invalid response. Quitting...")
        time.sleep(1)
        exit()
Пример #6
0
except ImportError:  #except when you don't have it
    pycord.log("No settings file. Creating one.")
    x = input("Do you want to start the setup (y/N)? ")
    x = x.lower()  #Changes x into lower case
    if x == "y":
        pycord.log("Starting to install modules...")
        mm.installModule("-r requirements.txt")
        pycord.log("Installing modules done!")
        time.sleep(1)
        pycord.log("Building modules for quicker imports...")

        #Module building
        try:
            import discord
        except ImportError:
            pycord.errorLog(
                "Failed to import discord! Try re-running the setup.")
            time.sleep(3)
            exit()

        try:
            import requests
        except ImportError:
            pycord.errorLog(
                "A non-fatal (for now) error occured. Failed to import requests!"
            )
        import aiohttp
        try:
            from colorama import Fore, Back, Style
            from colorama import init
        except ImportError:
            pass