Discord Bot for SurPath Hub's server

Overview

Dayong

Dayong is dedicated to helping Discord servers build and manage their communities.

  • Multipurpose —lots of features, lots of automation.
  • Self-hosted and easy to deploy —just a few more steps to take.
  • Free and open-source —tinker with it, and feel free to contribute to its improvement!
  • Modular —easily add extensions and features.
  • Written in Python —beautiful syntax and supports rapid development.

Installation

Download the source code:

git clone https://github.com/SurPathHub/Dayong.git

Bot Account Setup

Follow the instructions here: https://discordpy.readthedocs.io/en/stable/discord.html

Project Setup

  1. Go to the project root directory.

    cd Dayong
    
  2. Create a copy of .env.example. Don't forget to omit the .example at the end.

    On Linux and Unix

    cp .env.example .env
    

    On Windows

    copy .env.example .env
    
  3. Edit the .env file and add your credentials to the corresponding variables.

  4. Install poetry. Check if poetry is installed by running poetry --version.

  5. Run poetry shell. This will create or start the virtual environment.

  6. Run poetry install. This will install the project and its dependencies.

Usage

  1. From the project root directory, run:

    python dayong
    
  2. Open your Discord application. Go to the server where you invited the bot and run [your command prefix]help. For instance: .help or !help. The dot prefix is the default.

Welcome Message for New Member

  1. Modify the welcome message by changing the value(s) of the following in Dayong\dayong\embeddings.json.
    "greetings_channel":"<channel name where the greetings will be prompted>",
    "readme_channel_id": <id of the channel you want to tag>,
    "description": "<your greetings>",
    "color": <integer value of the color you want to use>
    
    "greetings_field": {
        "<n>": {
            "name": "field's name"
            "value": "field's value"
        }
        , ...
    }
    

You can have as many as greetings_fields you want. However, make sure that its inner key(s) is an integer (starting with 0) since it will be used inside a for loop.

Comments
  • Implement configuration checking

    Implement configuration checking

    To some degree, Dayong allows high-level customization through the config.json file. Although we only use it now to change how we experience commands and interactions, it's likely to cause erroneous behaviors, especially as the config file becomes larger as we add more features that rely on it.

    Configuration checking helps us avoid any problems that may arise from using the config.json file by first verifying that software requirements are met. It's basically just a process that tells us whether a configuration is good or bad. Dayong does not have that kind of functionality yet.

    enhancement help wanted hacktoberfest 
    opened by huenique 6
  • Addition of end command and greetings.py

    Addition of end command and greetings.py

    End Command in utils.py

    • Allows the termination of the bot in a shorter time. This will help developers that run their programs without IDE.

    Test.py

    • This is a test file.
    • Provides a basic how-to of text embeddings and mentioning a user (currently the author of the message).
    enhancement 
    opened by chraem 6
  • Commands/features missing from documentation

    Commands/features missing from documentation

    The whois command is missing from the commands documentation.

    https://github.com/SurPathHub/Dayong/blob/3abcf95101f61c2ce7a819bd26024729ed17e5ad/dayong/components/privilege_component.py#L45


    Also, please document event listeners/handlers. They should be in a table, in a separate file called events.md, inside the docs directory. The table should have a name and a description column. In the name column is the event listener's function name, and in the description column, the first paragraph of the function docstring.

    An event listener has this decorator: https://github.com/SurPathHub/Dayong/blob/3abcf95101f61c2ce7a819bd26024729ed17e5ad/dayong/components/event_component.py#L17

    documentation good first issue help wanted hacktoberfest 
    opened by huenique 4
  • Replace d.py with hikari and hikari-tanjun

    Replace d.py with hikari and hikari-tanjun

    Resolves #4

    After much deliberation, I've decided to rebuild Dayong with a different library, hikari.

    Extending discord.py was initially our first choice. Developing, testing, and implementing the extension would take months, so that was out. The obvious, best step was to use already existing libraries for that purpose. The best option was discord-interactions out there, which seemed like the answer at first, but after taking a peek at the source code of the current stable build, I determined it wasn’t. I’d rather not deal with endless lines of inefficient spaghetti code. The unstable build is a lot better, but who knows when that'll be ready.

    Active forks of d.py do exist, but they were still in the process of monkey-patching, and devs were still developing and testing the interactions module. Moreover, none of them seem to be fully supportive of type hints from python 3.9 and above.

    There are a few minor issues regarding the usage of hikari. It particularly involves newbie python developers or maybe beginner programmers in general. I’m mainly concerned with its documentation. It’s not very newbie-friendly, as compared to discord.py's documentation. New contributors will definitely have a hard time implementing features and fixing bugs because they’ll be having a hard time finding the methods and classes they need, but only until they get used to it.

    enhancement 
    opened by huenique 4
  • Add shields/badges to README.md

    Add shields/badges to README.md

    Shields or badges allow you to show the state of a project to users. Sometimes they also show how much effort and dedication are put into the project. For now, we want to show the python version (3.9 and above), license (MIT), ~~project version~~, and commit activity.

    documentation help wanted hacktoberfest 
    opened by huenique 2
  • docs: Updated commands.md and created events.md

    docs: Updated commands.md and created events.md

    This is the Pull Request for Issue #12 I hope I did everything correct 🙃

    If there are issues please let me know and I will try to fix them.

    Greetings, lokerhp

    documentation hacktoberfest-accepted 
    opened by lokerhp 1
  • Migrate Dayong's design model and implement slash commands

    Migrate Dayong's design model and implement slash commands

    The sole maintainer of discord.py has ceased the development of their API wrapper. This is my first time making a complete discord bot, so I wasn't aware of this matter.

    The reason I chose discord.py was because of its popularity and that it was a fast and mature library. Now that discord.py is essentially dead, we're left with a few options:

    1. Rebuild the bot in another language.
    2. Rebuild the bot with another library.
    3. Extend discord.py to support slash commands.

    If you read Danny's announcement, Discord is forcing bot developers to use slash commands. Dayong will die in 8 or 9 months if we continue using discord.py's design model.

    Regarding our remaining options, from a project maintainer's point of view, the first one sounds like our top choice, but we don't have to abandon Python just yet. Personally, I think the second or third is our best option. For number 2, I'm looking into other libraries, such as hikari, which is starting to gain traction after the announcement. For number 3, there's discord-interactions, which is a discord.py extension for supporting slash commands.

    enhancement question 
    opened by huenique 1
  • Event listeners raising unexpected and unwanted exceptions

    Event listeners raising unexpected and unwanted exceptions

    Dayong's features are contained within cogs, otherwise known as extensions. As such, it makes sense to define an event listener in the cog for certain features. However, due to how discord.py implements event listeners for bots or cogs, overriding an event like on_message is a fatal mistake. Doing so will overwrite any other explicitly defined on_message method or function found somewhere else in the codebase. It may be fine for a bot with a fixed number of features, but for a multipurpose bot, like Dayong, at scale, it's bound to cause a number of issues.

    Solution I thought about moving the event listeners in a separate directory with each event having its own module. We only have to overwrite an event listener once. I think this looks OK:

    Dayong
    ├── README.md
    └── dayong
        └── listeners
            └── on_message.py
    
    # on_message.py
    from dayong.cogs import moderator
    
    @Cog.listener()
    async def on_message(self, message):
        # Mod is a cog loaded in another module so it doesn't need to be
        # instantiated here. I would recommend using static methods or
        # functions for features that require the use of event listeners.
        mod = moderator.Mod
    
        # Run coroutine that checks if there are bad words in the message.
        # delete_vulgar_message() is a static method denoted by the `staticmethod`
        # decorator.
        await mod.delete_vulgar_message(message)
        ...
    

    In the above code, I registered the delete_vulgar_message() feature from the cog moderator.py. The feature takes the Message instance as an argument and does its job on it.

    Additional Context External event listeners allow you to hear and handle multiple events from different servers, channels, users, etc. A single listener for a specific event is usually enough to handle different operations.

    • https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Bot.listen
    • https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Cog.listener
    bug enhancement 
    opened by huenique 1
  • Decompose Dayong into microservices

    Decompose Dayong into microservices

    As we add more features and integrate third-party software into Dayong, the more monolithic the bot becomes. Monolithic software is hard to maintain and develop. It is also prone to low cohesion and tight coupling, which we prevent by implementing interfaces and design patterns. However, it still takes a few days for new developers/contributors to start writing productive code. From now on, I suggest we implement extendable/big features that take a lot of resources as a microservice.

    Untitled Diagram

    The fitting approach is to decompose Dayong by following an API gateway pattern, where large, resource-intensive features/services are collectively or individually packaged and deployed to their own domains. This results in a stable architecture and services that are cohesive and loosely coupled. This also allows users to integrate their preferred or private services into Dayong with minimal code and labor.

    For more information on microservices, see:

    • https://www.infoq.com/articles/microservices-intro/
    • https://microservices.io/patterns/decomposition/decompose-by-business-capability.html
    • https://microservices.io/patterns/decomposition/decompose-by-subdomain.html
    enhancement help wanted 
    opened by huenique 0
  • Dayong raises KeyError when trying to greet a new member

    Dayong raises KeyError when trying to greet a new member

    Dayong has an event listener called greet_new_member(). It fires whenever a new member joins the server.

    https://github.com/SurPathHub/Dayong/blob/3a2fc34614f6509a9385e556f447a994f4e6d7fa/dayong/components/event_component.py#L76

    The code above is supposed to retrieve nested objects from the config.json file in the greetings_field key.

    Expected result:

    Dayong greets the new member in a channel specified in the config.json file.

    bug help wanted 
    opened by huenique 0
  • Add simple and easy to understand example component

    Add simple and easy to understand example component

    We think it's only appropriate to provide an example component for users who want to add their own commands/features. Although the libraries Dayong uses already provide the needed examples, we believe adding our own would make the bot more user-friendly.

    Using hikari-tanjun, please provide a descriptive, simple, and easy-to-understand example of a message command, a slash command, and an event listener.

    Here are basic examples provided by tanjun we can use as reference: https://github.com/FasterSpeeding/Tanjun/tree/master/examples

    enhancement help wanted hacktoberfest 
    opened by huenique 2
Releases(0.2.9)
  • 0.2.9(Nov 10, 2021)

    0.2.9 (2021-11-10)

    Features

    • add support for other third-party content providers (f12250f)

    Bug Fixes

    • adjust email cred checking logic (f1a1938)
    • consolidate dependency injection (adeda5f)
    • greatly reduce resource consumption (3f2d0f6)
    • make scheduled tasks purely optional (a603e07)
    • prevent queueing the same task (e217c44)
    • prioritize scheduler execution (5fd42d7)
    • resolve err on job exec (8afca6a)
    • resolve UndefinedTableError when starting scheduled tasks with slash command (2a219f1)
    Source code(tar.gz)
    Source code(zip)
Owner
SurPath Hub
Inclusive community for Filipino students | House of the GitHub Campus Expert 🇵🇭 - Inspired by @EddieHubCommunity
SurPath Hub
A Twitter Bot that retweets and likes tweets with the hashtag #girlscriptwoc and #girlscript, and also follows the user.

GirlScript Winter of Contributing Twitter Bot A Twitter Bot that retweets and likes tweets with the hashtag #girlscriptwoc and #girlscript, and also f

Pranay Gupta 9 Dec 15, 2022
AnyAPI is a library that helps you to write any API wrapper with ease and in pythonic way.

AnyAPI AnyAPI is a library that helps you to write any API wrappers with ease and in pythonic way. Features Have better looking code using dynamic met

Fatih Kilic 129 Sep 20, 2022
A web app via which users can buy and sell stocks using virtual money

finance Virtual Stock Trader. A web app via which users can buy and sell stocks using virtual money. All stock prices are real and provided by IEX. Fe

Kiron Deb 0 Jan 15, 2022
Python functions for opentargets.org API

What is opy_Targets? Opentargets.org uses GraphQL API to explore it's content via coding. This ensemble of functions aim is to make it easy to use the

1 Jan 10, 2022
Seems Like Everyone Is Posting This, Thought I Should Too, Tokens Get Locked Upon Creation And Im Not Going To Fix For Several Reasons

Member-Booster Seems Like Everyone Is Posting This, Thought I Should Too, Tokens Get Locked Upon Creation And Im Not Going To Fix For Several Reasons

Mintyz 1 Dec 28, 2021
Create a Neo4J graph of users and roles trust policies within an AWS Organization.

AWS_ORG_MAPPER This tool uses sso-oidc to authenticate to the AWS organization. Once authenticated the tool will attempt to enumerate all users and ro

Ruse 24 Jul 28, 2022
GG Dorking is a tool to generate GitHub and Google dorking for pentesters and bug bounty hunters.

GG-Dorking GG Dorking is a python tool to generate GitHub and Google dorking links for pentesters and bug bounty hunters. It will help you to find imp

Eslam Akl 80 Nov 24, 2022
Companion "receiver" to matrix-appservice-webhooks for [matrix].

Matrix Webhook Receiver Companion "receiver" to matrix-appservice-webhooks for [matrix]. The purpose of this app is to listen for generic webhook mess

Kim Brose 13 Sep 29, 2022
This is a Discord script that will provide a QR Code to your scholars for Axie Infinity.

DiscordQRCodeBot This is a Discord script that will provide a QR Code to your Axie Infinity scholars. Setup Run Ubuntu on AWS ec2 instance Dowloads al

ZracheSs | xyZ 24 Oct 05, 2022
This is a DCA crypto trading bot built for Binance written in Python

This is a DCA crypto trading bot built for Binance written in Python. It works by allowing you to DCA at an interval of your choosing and reports back on your average buy price as well as a chart con

Andrei 55 Oct 17, 2022
NiceHash Python Library and Command Line Rest API

NiceHash Python Library and Command Line Rest API Requirements / Modules pip install requests Required data and where to get it Following data is nee

Ashlin Darius Govindasamy 2 Jan 02, 2022
A telegram bot writen in python for mirroring files on the internet to our beloved Google Drive

[] Mirror Bot This is a telegram bot writen in python for mirroring files on the internet to our beloved Google Drive. Deploying on Heroku Give Star &

43 Mar 06, 2022
A very tiny python api for the stock exchange tradegate.de

pytradegate A very tiny python api for the stock exchange tradegate.de The api provides the recent ask/bid data and all other data as found on the det

dunderstr aka seimen 7 Aug 24, 2022
Example app to be deployed to AWS as an API Gateway / Lambda Stack

Disclaimer I won't answer issues or emails regarding the project anymore. The project is old and not maintained anymore. I'm not sure if it still work

Ben 123 Jan 01, 2023
Bot Telegram per creare e gestire un Babbo Natale Segreto con amici ecc

Babbo Natale Segreto: Telegram Bot Bot Telegram per creare e gestire un Babbo Natale Segreto con amici ecc. Che cos'è? Il Babbo Natale Segreto è un gi

Francesco Ciociola 2 Jul 18, 2022
BT CCXT Store

bt-ccxt-store-cn backtrader是一个非常好的开源量化回测平台,我自己也时常用它,backtrader也能接入实盘,而bt-ccxt-store就是帮助backtrader接入数字货币实盘交易的一个插件,但是bt-ccxt-store的某些实现并不是很好,无节制的网络轮询,一些

moses 40 Dec 31, 2022
Python Wrapper for handling payment requests through the Daraja MPESA API

Python Daraja Description Python Wrapper for handling payment requests through the Daraja MPESA API Contribution Refer to the CONTRIBUTING GUIDE. Usag

William Otieno 18 Dec 14, 2022
提供火币网交易接口API最简封装,提供现货买入、卖出、huobi币安查询账户余额等接口,数字货币,虚拟货币,BTC量化交易框架,自动交易,轻量便携,不用安装,即开即用

火币网交易接口的最简封装(只管用,不用再关注细节) 提供火币网交易接口的python封装,提供买入、卖出、查询账户余额等接口 接口说明 order_value() 进行买入操作,参数为买入的币和买入的金额 买入返回的详情数据: {'单号': '272229546125038', '成交数量': 0.

dev 95 Sep 24, 2021
Signs the target email up to over 1000 different mailing lists to get spammed each day.

Email Bomber Say goodbye to that email Features Signs up to over 1k different mailing lists Written in python so the program is lightweight Easy to us

Loxdr 1 Nov 30, 2021
A Discord token grabber written in Python3, with awesome obfuscation and anti-debug protection.

☣️ Plague ☣️ Plague is a Discord token grabber written in Python3, obfuscated with Kramer, protected from traffic analysers with Scarecrow and using t

Billy 125 Dec 20, 2022