承接 heyitsmi/content-guard 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

heyitsmi/content-guard

最新稳定版本:v1.1.0

Composer 安装命令:

composer require heyitsmi/content-guard

包简介

A content sanitization library to filter negative content and online gambling spam.

README 文档

README

ContentGuard is a robust PHP content sanitization library specifically designed for the Indonesian web ecosystem. It helps developers filter out online gambling spam (judi online), profanity, and hate speech with advanced detection capabilities.

Unlike simple string replacement tools, ContentGuard uses an intelligent Regex Engine to detect "Leet Speak" (visual masking) commonly used by spammers (e.g., detecting s10t g4c0r as slot gacor).

Features

  • Smart Detection: Catch masked words like g4c0r, s.l.o.t, judi, etc.
  • Pre-built Dictionary: Comes with a comprehensive database of Indonesian gambling terms and profanity.
  • Laravel Ready: Includes Service Provider and Facade for seamless integration.
  • Customizable: Add your own blocklist and configure strictness.
  • Zero Dependencies: Lightweight and fast.

Installation

You can install the package via composer:

composer require heyitsmi/content-guard

Configuration (Laravel)

If you are using Laravel, you can publish the configuration file to customize the behavior (e.g., changing the mask character or adding custom keywords).

Run the following command:

php artisan vendor:publish --tag="content-guard-config"

This will create a config/content-guard.php file in your application.

Usage

1. Using Laravel Facade (Recommended for Laravel)

You can use the ContentGuard facade anywhere in your controllers, jobs, or blade directives.

use Heyitsmi\ContentGuard\Facades\ContentGuard;

// 1. Check if text contains bad words (returns boolean)
$isSpam = ContentGuard::hasBadWords("Ayo main s10t g4c0r hari ini!"); 

if ($isSpam) {
    return back()->withErrors(['message' => 'Your comment contains restricted content.']);
}

// 2. Sanitize text (returns clean string)
$cleanText = ContentGuard::sanitize("Jangan main judi online!");
// Output: "Jangan main **** ******!"

2. Standalone PHP Usage

If you are not using Laravel, you can instantiate the class directly.

use Heyitsmi\ContentGuard\ContentGuard;

$guard = new ContentGuard();

$input = "Situs g.a.c.o.r terpercaya";

if ($guard->hasBadWords($input)) {
    echo "Spam detected!";
}

echo $guard->sanitize($input);

How It Works

ContentGuard converts standard keywords into flexible Regex patterns based on a Substitution Map.

  • Input: slot

  • Regex Generated: /\b(s|5|\$|z)[\W_]*(l|1|!|\|)[\W_]*(o|0|@|ø)[\W_]*(t|7|\+)\b/i

  • Matches: slot, s1ot, s.l.o.t, s-l-o-t, sl0t, etc.

Testing

To run the unit tests included in this package:

composer test

Contributing

Contributions are welcome! If you find new slang words or spam patterns popular in Indonesia, please submit a Pull Request to update the src/Dictionary files.

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-08