Skip to content

evobug-com/api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

95 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ Evobug API Server

Bun TypeScript PostgreSQL Drizzle

High-performance API server for Discord/Guilded community management

Features β€’ Quick Start β€’ API Endpoints β€’ Testing β€’ Documentation


πŸ“‹ Overview

The Evobug API Server is a robust, type-safe backend service built with Bun and TypeScript. It provides comprehensive moderation, user management, and economy features for Discord and Guilded communities through an ORPC (Object RPC) interface.

🎯 Key Highlights

  • πŸ”₯ Blazing Fast: Built on Bun runtime for exceptional performance
  • πŸ›‘οΈ Type-Safe: Full TypeScript with strict mode and runtime validation via Zod
  • πŸ”„ Real-time Communication: ORPC-based architecture for seamless client-server interaction
  • πŸ“Š Advanced Moderation: Violation tracking, standing calculation, and suspension management
  • πŸ’° Economy System: Points, daily rewards, work commands, and leaderboards
  • πŸ—„οΈ PostgreSQL + Drizzle ORM: Robust data persistence with type-safe queries

✨ Features

πŸ›‘οΈ Moderation System

  • Violation Management: Issue, track, and expire violations with severity levels
  • Standing Calculation: Dynamic user standing based on violation history
  • Suspension System: Temporary and permanent account restrictions
  • Review Process: Appeal and review system for violations
  • Bulk Operations: Efficient bulk expiration and management

πŸ‘₯ User Management

  • Multi-Platform Support: Discord and Guilded ID linking
  • Role-Based Access: User, Moderator, and Admin roles
  • Profile Management: Comprehensive user profiles and settings

πŸ’° Economy & Stats

  • Points System: Earn and spend virtual currency
  • Daily Rewards: Claim daily bonuses with cooldown tracking
  • Work System: Work commands with dynamic payouts
  • Leaderboards: Global and time-based rankings
  • Activity Tracking: Detailed user activity statistics

πŸ”’ Security

  • Authentication Middleware: Secure endpoint protection
  • Input Validation: Zod schemas for all API inputs
  • SQL Injection Protection: Parameterized queries via Drizzle ORM
  • Rate Limiting: Built-in connection pooling and limits

πŸš€ Quick Start

Prerequisites

  • Bun (latest version)
  • PostgreSQL 14+
  • Node.js 18+ (for some tooling compatibility)

Installation

# Clone the repository
git clone https://github.com/evobug-com/api.git
cd evobug.com/api

# Install dependencies
bun install

# Set up environment variables
cp .env.example .env
# Edit .env with your DATABASE_URL

Database Setup

# Generate database schema
bun run db:generate

# Run migrations
bun run db:migrate

# (Optional) Open Drizzle Studio for database management
bun run db:studio

Development

# Start development server with hot reload
bun run dev

# Server will be available at http://localhost:3001/rpc

πŸ”Œ API Endpoints

The API uses ORPC routing with the following structure:

User Endpoints

users.create         // Create new user
users.get           // Get user by ID
users.update        // Update user profile
users.stats.user    // Get user statistics
users.stats.daily.claim  // Claim daily reward
users.stats.work.claim   // Claim work reward
users.stats.top     // Get leaderboard

Moderation Endpoints

moderation.violations.issue      // Issue new violation
moderation.violations.list       // List violations
moderation.violations.expire     // Expire violation
moderation.violations.updateReview  // Update violation review

moderation.standing.get          // Get user standing
moderation.standing.calculate    // Calculate standing score
moderation.standing.bulk         // Bulk standing query
moderation.standing.restrictions // Get active restrictions

moderation.suspensions.create    // Create suspension
moderation.suspensions.lift      // Lift suspension
moderation.suspensions.check     // Check suspension status
moderation.suspensions.history   // Get suspension history

πŸ§ͺ Testing

# Run all tests
bun test

# Run tests in watch mode
bun test:watch

# Run tests with coverage
bun test:coverage

# Run specific test file
bun test src/contract/stats/stats.spec.ts

Test Structure

  • Unit tests: *.spec.ts files alongside source code
  • Uses in-memory database for isolated testing
  • Mock context utilities for request simulation

πŸ“ Project Structure

api/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ contract/          # API endpoints and business logic
β”‚   β”‚   β”œβ”€β”€ standing/      # Standing calculation system
β”‚   β”‚   β”œβ”€β”€ stats/         # Economy and statistics
β”‚   β”‚   β”œβ”€β”€ suspensions/   # Suspension management
β”‚   β”‚   β”œβ”€β”€ users/         # User management
β”‚   β”‚   β”œβ”€β”€ violations/    # Violation system
β”‚   β”‚   └── router.ts      # Main API router
β”‚   β”œβ”€β”€ db/
β”‚   β”‚   └── schema.ts      # Database schema definitions
β”‚   β”œβ”€β”€ middlewares/
β”‚   β”‚   └── auth.ts        # Authentication middleware
β”‚   β”œβ”€β”€ utils/             # Utility functions
β”‚   └── server.ts          # Server entry point
β”œβ”€β”€ drizzle/               # Database migrations
β”œβ”€β”€ scripts/               # Utility scripts
└── tests/                 # Test files

πŸ”§ Configuration

Environment Variables

# Database
DATABASE_URL=postgresql://user:password@localhost:5432/evobug

# Testing
USE_TEMP_DATABASE=true  # Use in-memory database for testing

# Server
PORT=3001              # API server port

Database Configuration

Configure Drizzle in drizzle.config.ts:

export default {
  dialect: "postgresql",
  schema: "./src/db/schema.ts",
  out: "./drizzle",
  dbCredentials: {
    url: process.env.DATABASE_URL!,
  },
};

πŸ› οΈ Development Commands

# Development
bun run dev              # Start dev server with hot reload

# Database
bun run db:generate      # Generate migrations from schema
bun run db:migrate       # Apply migrations
bun run db:push         # Push schema changes directly (dev only)
bun run db:studio       # Open Drizzle Studio GUI
bun run db:drop         # Drop all tables (careful!)

# Testing
bun test                # Run tests
bun test:watch          # Run tests in watch mode
bun test:coverage       # Generate coverage report

# Code Quality
bunx tsgo --noEmit      # Check TypeScript errors
bunx oxlint --type-aware

# Production
bun run migrate:production  # Run production migrations
bun run migrate:data       # Migrate legacy data

πŸ“Š Database Schema

Core Tables

  • users: User accounts with platform IDs and roles
  • user_stats: Economy points and statistics
  • violations: Moderation actions and warnings
  • suspensions: Temporary and permanent restrictions
  • user_reviews: User review and rating system
  • orders: Purchase and transaction history

Key Relationships

graph TD
    Users -->|1:1| UserStats
    Users -->|1:N| Violations
    Users -->|1:N| Suspensions
    Users -->|1:N| Orders
    Users -->|1:N| Reviews
    Violations -->|N:1| SeverityLevels
Loading

🚒 Deployment

Production Deployment

  1. Set production environment variables
  2. Run database migrations:
    bun run migrate:production
  3. Start the server:
    bun run src/server.ts

Using PM2

// ecosystem.config.js
module.exports = {
  apps: [{
    name: 'evobug-api',
    script: 'bun',
    args: 'run src/server.ts',
    env: {
      NODE_ENV: 'production',
      PORT: 3001
    }
  }]
};

πŸ” Security Considerations

  • Always use parameterized queries (handled by Drizzle ORM)
  • Implement rate limiting for public endpoints
  • Use HTTPS in production
  • Regularly update dependencies
  • Never commit .env files
  • Use strong PostgreSQL passwords
  • Enable PostgreSQL SSL in production

🀝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Run tests and linting before committing
  4. Commit your changes (git commit -m 'Add some AmazingFeature')
  5. Push to the branch (git push origin feature/AmazingFeature)
  6. Open a Pull Request

Code Style

  • Use tabs for indentation
  • Double quotes for strings
  • Maximum line width: 120 characters
  • Run bunx oxlint --type-aware before committing

πŸ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ™ Acknowledgments

  • Bun - JavaScript runtime
  • Drizzle ORM - TypeScript ORM
  • ORPC - Type-safe RPC framework
  • Zod - TypeScript-first schema validation

πŸ“ž Support

For issues and questions:


Made with ❀️ by the Evobug Team

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages