Socket
Book a DemoInstallSign in
Socket

discord-spams

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

discord-spams

Discord spam protection library written in TypeScript by the discord.ts community

1.3.0
unpublished
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Discord server NPM version NPM downloads paypal

Create a discord bot with TypeScript and Decorators!

📖 Introduction

If you are reading this, then you are a developer who has encountered discord spam personally or through your discord server. That's also my story. The library is simple and provides functions to detect spam.

The sole purpose of this library is to provide a global list to prevent spam in Discord. Therefore, we are asking you to contribute to our little project and submit a pull request to add a new type of spam message.

💻 Installation

Version 16.6.0 or newer of Node.js is required

npm install discord-spams
yarn add discord-spams

📟 Example

@Discord()
export class Spam {
  lastUpdate: number | null = null;

  @On("messageCreate")
  async handler([message]: ArgsOf<"messageCreate">): Promise<void> {
    if (!message.guild || !message.member || message.author.bot) {
      return;
    }

    // update master list every five minute, will not be updated if event is not called
    if (!this.lastUpdate || Date.now() - this.lastUpdate > 5 * 60 * 1000) {
      await SpamMeta.refreshMasterList();
      this.lastUpdate = Date.now();
    }

    if (SpamMeta.isSpam(message.content)) {
      // delete message, if bot have permissions
      await message.delete().catch(() => null);

      // mute member for 6 hours
      const isMuted = await message.member
        .disableCommunicationUntil(
          Date.now() + 6 * 60 * 60 * 1000,
          "Spam message detected"
        )
        .catch(() => null);

      if (isMuted) {
        message.channel.send(
          `:cold_face: Spam message detected, I have muted ${message.author} for 6 hours.`
        );
      } else {
        message.channel.send(
          `:cold_face: Spam message detected from ${message.author}, please allow me to mute members!`
        );
      }
    }
  }
}

🙋 FAQ

In your bot, create a command that allows all users to report links. On the bot side, add that link to spam storage using SpamMeta.addLink("cars-dont-fly.com");.

Later, Please report on our repository so we can add it to the global list.

☎️ Need help?

Ask in discord server

Thank you

Show your support for discordx by giving us a star on github.

FAQs

Package last updated on 13 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.