Skip to content

vikasyadav01234/Round-Robin-Coupon-Distribution-System

Repository files navigation

Round-Robin Coupon Distribution System

A Next.js application that implements a fair coupon distribution system with abuse prevention mechanisms.

Project Overview

This system distributes coupons in a round-robin fashion while preventing abuse through IP tracking and cookie-based monitoring. Built with Next.js 14, MongoDB, and modern web technologies.

Last Updated: 2025-03-12 08:35:26 UTC
Maintained by: vikasyadav01234

Features

1. Coupon Distribution

  • Sequential coupon assignment ensuring fair distribution
  • Automatic tracking of coupon usage and limits
  • Support for coupon expiration dates

2. Abuse Prevention

  • IP-based tracking with cooldown periods
  • Browser session monitoring via cookies
  • Rate limiting for claim attempts

3. User Experience

  • No login required for claiming coupons
  • Clear feedback messages
  • Responsive design
  • Real-time coupon availability status

Technology Stack

  • Frontend: Next.js 14, React 18
  • Backend: Next.js API Routes
  • Database: MongoDB
  • State Management: React Hooks
  • Styling: CSS Modules

Prerequisites

  • Node.js 18.x or higher
  • MongoDB Atlas account or local MongoDB instance
  • npm or yarn package manager

Installation

  1. Clone the repository:
git clone https://github.com/vikasyadav01234/round-robin-coupon-distribution.git
cd round-robin-coupon-distribution
  1. Install dependencies:
npm install
  1. Create a .env.local file in the root directory:
MONGODB_URI=mongodb+srv://<username>:<password>@cluster0.xxxxx.mongodb.net/coupon-system?retryWrites=true&w=majority
  1. Seed the database with initial coupons:
npm run seed
  1. Start the development server:
npm run dev

Project Structure

round-robin-coupon-distribution/
├── src/
│   ├── app/
│   │   ├── api/
│   │   │   └── claimCoupon/
│   │   │       └── route.js
│   │   ├── layout.js
│   │   └── page.js
│   ├── components/
│   │   ├── CouponClaimForm.js
│   │   └── CouponMessage.js
│   ├── models/
│   │   └── coupon.js
│   ├── styles/
│   │   ├── globals.css
│   │   └── Home.module.css
│   └── utils/
│       ├── coupons.js
│       └── dbConnect.js
├── scripts/
│   └── seed-coupons.js
├── .env.local
├── package.json
└── README.md

API Endpoints

POST /api/claimCoupon

Claims a coupon for the current user.

Response:

{
  "message": "Successfully claimed coupon: SAVE10",
  "coupon": "SAVE10"
}

Error Response:

{
  "message": "Please wait 45 minutes before claiming another coupon"
}

Database Schema

Coupon Model

{
  code: String,          // Coupon code
  isActive: Boolean,     // Coupon availability status
  createdAt: Date,       // Creation timestamp
  expiresAt: Date,       // Expiration date
  usageLimit: Number,    // Maximum number of claims
  usageCount: Number     // Current number of claims
}

Claim Model

{
  couponId: ObjectId,    // Reference to claimed coupon
  ipAddress: String,     // Claimer's IP address
  sessionId: String,     // Browser session ID
  claimedAt: Date        // Claim timestamp
}

Security Measures

  1. IP Tracking

    • 10 Minutes cooldown between claims
    • IP address validation
  2. Session Management

    • Secure cookie settings
    • HTTP-only cookies
    • SameSite cookie policy
  3. Rate Limiting

    • Request rate limiting
    • Abuse prevention mechanisms

Development

Running Tests

npm run test

Building for Production

npm run build

Starting Production Server

npm run dev

Contributing

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

License

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

Acknowledgments

  • Next.js team for the amazing framework
  • MongoDB team for the reliable database
  • All contributors and maintainers

Support

For support, please create an issue in the repository or contact vikasyadav01234.


Built with ❤️ by vikasyadav01234

Releases

No releases published

Packages

No packages published