Skip to content

A Discord bot that connects Devtranet's API and tranfer roles from the platform to our Discord server to authenticate waitlist users

License

Notifications You must be signed in to change notification settings

DevtranetHQ/Checkmate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

checkmate

basically gandalf as a discord bot

create the discord bot

follow this tutorial to create your discord bot.

you must invite the bot on the discord server you want it to authenticate users!

installation

the bot requires at least python 3.8

git clone https://github.com/EsprIx/checkmate

then run under the checkmate directory

pip install -r requirements.txt
pip install -U git+https://github.com/Rapptz/discord.py

under the checkmate directory, you need to create a credentials.json as well as a config.json file.

they should look like this:

credentials.json :

{
    "token": "str",
    "gmailUser": "str",
    "gmailPassword": "str"
}
Key Description Default Required
token secret token of your discord bot None True
gmailUser gmail address from which you want the bot to send the emails to the users None True
gmailPassword gmail password of the above gmail address None True

config.json :

{
    "prefix": "str",
    "checkedRoleName": "str",
    "uncheckedRoleName": "str",
    "participantRoleName": "str",
    "checkChannelName": "str",
    "userInDbEndpoint": "str",
    "addUserEndpoint": "str",
    "X-API-KEY": "str",
    "checkChannelMessage": "str",
    "basicErrorMessage": "str",
    "checkProcessAskEmailMessage": "str",
    "checkProcessAskCodeMessage": "str",
    "checkProcessTimeOutErrorMessage": "str",
    "checkProcessAccountErrorMessage": "str",
    "checkProcessCodeErrorMessage": "str",
    "checkProcessEmailErrorMessage": "str",
    "checkProcessCompletedMessage": "str"
}
Key Description Default Required
prefix the prefix of your discord bot None True
checkedRoleName the display name of the checked role None True
uncheckedRoleName the display name of the unchecked role None True
participantRoleName the display name of the participant role None True
checkChannelName the display name of the verification channel None True
userInDbEndpoint the endpoint to check if the user email is in the db None True
addUserEndpoint the endpoint to link the discord user id to it's account on your website None True
X-API-KEY secret key that is in the header of every request the bot does None True
checkChannelMessage the message sent in the check channel below the "start verification button" None True
basicErrorMessage the message shown when an unknown error raises None True
checkProcessAskEmailMessage the message shown to the user to ask them their email None True
checkProcessAskCodeMessage the message shown to the user to ask them to enter the code they received None True
checkProcessTimeOutErrorMessage the message shown to the user when they take too long to reply None True
checkProcessAccountErrorMessage the message shown to the user when they are not registered on the website None True
checkProcessCodeErrorMessage the message shown to the user when they enter an invalid code None True
checkProcessEmailErrorMessage the message shown to the user when they enter an invalid email None True
checkProcessCompletedMessage the message shown to the user when they complete the verification None True

run the bot

execute the client.py file at the root of the checkmate directory.

python client.py

license

MIT

made with 🤍 by Bonsaï#8521 a founding Engineer at Devtranet :)

About

A Discord bot that connects Devtranet's API and tranfer roles from the platform to our Discord server to authenticate waitlist users

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages