Metadata-Version: 2.4
Name: django-testimonials
Version: 1.0.1
Summary: High-performance Django package for managing customer testimonials at scale
Home-page: https://github.com/NzeStan/django-testimonials
Author: NzeStan
Author-email: NzeStan <nnamaniifeanyi10@gmail.com>
Maintainer-email: NzeStan <nnamaniifeanyi10@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/NzeStan/django-testimonials
Project-URL: Documentation, https://django-testimonials.readthedocs.io/
Project-URL: Repository, https://github.com/NzeStan/django-testimonials
Project-URL: Bug Tracker, https://github.com/NzeStan/django-testimonials/issues
Keywords: django,testimonials,reviews,feedback,api,rest
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=4.2
Requires-Dist: djangorestframework>=3.12.0
Requires-Dist: django-filter>=22.1
Requires-Dist: django-phonenumber-field[phonenumbers]>=7.0.0
Requires-Dist: Pillow>=8.0.0
Provides-Extra: performance
Requires-Dist: django-background-tasks>=1.2.5; extra == "performance"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-django>=4.5.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Requires-Dist: pre-commit>=2.20.0; extra == "dev"
Requires-Dist: factory-boy>=3.2.0; extra == "dev"
Requires-Dist: Faker>=15.0.0; extra == "dev"
Requires-Dist: django-background-tasks>=1.2.5; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Django Testimonials

[![PyPI version](https://badge.fury.io/py/django-testimonials.svg)](https://pypi.org/project/django-testimonials/)
[![Build Status](https://github.com/NzeStan/django-testimonials/actions/workflows/tests.yml/badge.svg)](https://github.com/NzeStan/django-testimonials/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/django-testimonials/badge/?version=latest)](https://django-testimonials.readthedocs.io/en/latest/)
[![Coverage Status](https://coveralls.io/repos/github/NzeStan/django-testimonials/badge.svg?branch=main)](https://coveralls.io/github/NzeStan/django-testimonials?branch=main)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A **high-performance**, **enterprise-grade** Django package for managing customer testimonials at scale. Built with Django REST Framework and optimized for applications handling millions of testimonials with thousands of concurrent users.

## 🚀 **Performance-First Design**

- **⚡ Sub-100ms API responses** with intelligent caching
- **📊 Optimized database queries** with strategic indexing
- **🔄 Background processing** for emails and media
- **📈 Horizontal scaling ready** with background task support
- **💾 Smart caching strategies** with automatic invalidation

## ✨ **Enterprise Features**

### **Core Functionality**
- 📝 **Complete testimonial management** with approval workflows
- ⭐ **Flexible rating systems** (1-10 scale, configurable)
- 🏷️ **Category organization** with hierarchical support
- 📎 **Rich media attachments** (images, videos, audio, documents)
- 💬 **Response system** for official company replies
- 👤 **Anonymous testimonials** with privacy controls

### **Performance & Scalability**
- 🚄 **Smart caching** for lightning-fast responses
- ⚡ **Background task processing** with threading support
- 🔍 **Full-text search** with optimized queries
- 📊 **Real-time statistics** with cached aggregations
- 🔄 **Bulk operations** for efficient moderation

### **Developer Experience**
- 🔌 **Django REST Framework** API with comprehensive endpoints
- 📚 **Extensive documentation** with examples
- 🧪 **Comprehensive test suite** with 95%+ coverage
- 🌍 **Internationalization ready** with gettext support
- 🔧 **Highly configurable** with 25+ settings

## 📋 **Requirements**

- **Python:** 3.10+
- **Django:** 4.2+
- **Django REST Framework:** 3.14+
- **Pillow:** 10.0+ (for image handling)
- **django-phonenumber-field:** 7.0+
- **django-filter:** 23.2+

### **Optional (for performance features):**
- **django-background-tasks:** For database-backed background task processing

## 🚀 **Quick Start**

### 1. **Installation**

```bash
pip install django-testimonials
```

### 2. **Basic Configuration**

Add to your `INSTALLED_APPS`:

```python
INSTALLED_APPS = [
    # ... other apps
    'rest_framework',
    'django_filters',
    'testimonials',
]
```

### 3. **Database Setup**

```bash
python manage.py migrate testimonials
```

### 4. **URL Configuration**

```python
# urls.py
from django.urls import path, include

urlpatterns = [
    # ... other patterns
    path('api/testimonials/', include('testimonials.api.urls')),
]
```

### 5. **Basic Usage**

```python
from testimonials.models import Testimonial, TestimonialCategory

# Create a category
category = TestimonialCategory.objects.create(
    name="Product Reviews",
    description="Customer feedback on our products"
)

# Create a testimonial
testimonial = Testimonial.objects.create(
    author_name="John Doe",
    author_email="john@example.com",
    content="This product exceeded my expectations!",
    rating=5,
    category=category
)

# Get published testimonials (uses caching automatically)
testimonials = Testimonial.objects.published()
featured = Testimonial.objects.featured()
```

## 🔧 **Performance Configuration**

### **Caching (Recommended)**

```python
# settings.py
TESTIMONIALS_USE_CACHE = True
TESTIMONIALS_CACHE_TIMEOUT = 900  # 15 minutes

# Configure Django cache backend (Database Cache example)
CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
        'LOCATION': 'testimonials_cache_table',
    }
}
```

Then run:
```bash
python manage.py createcachetable
```

### **Background Task Processing (Recommended)**

```python
# settings.py
TESTIMONIALS_USE_BACKGROUND_TASKS = True

# Add django-background-tasks to INSTALLED_APPS
INSTALLED_APPS += ['background_task']

# Run migrations for background_task
# python manage.py migrate
```

Process tasks with:
```bash
python manage.py process_tasks
```

### **Email Notifications**

```python
# settings.py
TESTIMONIALS_NOTIFICATION_EMAIL = "admin@yoursite.com"

# Email backend configuration
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_HOST_USER = 'your-email@gmail.com'
EMAIL_HOST_PASSWORD = 'your-app-password'
DEFAULT_FROM_EMAIL = 'Your Site <noreply@yoursite.com>'
```

## 🏗️ **Architecture Overview**

```
┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│   Frontend      │    │   Django API    │    │   Background    │
│   (React/Vue)   │◄──►│   (REST API)    │◄──►│   (Threads)     │
└─────────────────┘    └─────────────────┘    └─────────────────┘
                              │                        │
                              ▼                        ▼
                    ┌─────────────────┐    ┌─────────────────┐
                    │   PostgreSQL    │    │  Django Cache    │
                    │   (Database)    │    │  (DB/LocMem)     │
                    └─────────────────┘    └─────────────────┘
```

## 📊 **API Endpoints**

### **Testimonials**
- `GET /api/testimonials/` - List testimonials (cached)
- `POST /api/testimonials/` - Create testimonial
- `GET /api/testimonials/{id}/` - Get testimonial details
- `PUT/PATCH /api/testimonials/{id}/` - Update testimonial
- `DELETE /api/testimonials/{id}/` - Delete testimonial

### **Moderation (Admin/Moderator only)**
- `POST /api/testimonials/{id}/approve/` - Approve testimonial
- `POST /api/testimonials/{id}/reject/` - Reject testimonial
- `POST /api/testimonials/{id}/feature/` - Feature testimonial
- `POST /api/testimonials/bulk_action/` - Bulk moderation

### **Categories**
- `GET /api/categories/` - List categories (cached)
- `GET /api/categories/{id}/testimonials/` - Category testimonials

### **Media**
- `GET /api/media/` - List media files
- `POST /api/testimonials/{id}/add_media/` - Add media to testimonial

### **Statistics & Analytics**
- `GET /api/testimonials/stats/` - Get comprehensive statistics
- `GET /api/testimonials/featured/` - Get featured testimonials

## 💡 **Usage Examples**

### **Frontend Integration (JavaScript)**

```javascript
// Fetch testimonials with caching
const response = await fetch('/api/testimonials/?page=1&page_size=10');
const data = await response.json();

// Create a new testimonial
const testimonial = await fetch('/api/testimonials/', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'X-CSRFToken': csrfToken
    },
    body: JSON.stringify({
        author_name: 'Jane Smith',
        content: 'Amazing service, highly recommend!',
        rating: 5,
        category_id: 1
    })
});

// Get featured testimonials (cached)
const featured = await fetch('/api/testimonials/featured/');
```

### **Django Templates**

```html
{% load static %}

<div class="testimonials-section">
    <h2>What Our Customers Say</h2>
    
    {% for testimonial in featured_testimonials %}
    <div class="testimonial-card">
        <div class="rating">
            {% for i in "12345"|make_list %}
                {% if forloop.counter <= testimonial.rating %}⭐{% endif %}
            {% endfor %}
        </div>
        
        <blockquote>{{ testimonial.content }}</blockquote>
        
        <cite>
            {{ testimonial.author_name }}
            {% if testimonial.company %}, {{ testimonial.company }}{% endif %}
        </cite>
        
        {% if testimonial.response %}
        <div class="company-response">
            <strong>Our Response:</strong> {{ testimonial.response }}
        </div>
        {% endif %}
    </div>
    {% endfor %}
</div>
```

### **Admin Bulk Operations**

```python
# In your admin or management command
from testimonials.models import Testimonial

# Approve multiple testimonials
testimonial_ids = [1, 2, 3, 4, 5]
testimonials = Testimonial.objects.filter(id__in=testimonial_ids)
for t in testimonials:
    t.approve(user=request.user)
```

## 🔒 **Security Features**

- 🛡️ **Permission-based access** with role-based moderation
- 🔐 **CSRF protection** for all API endpoints  
- 📝 **Input validation** with comprehensive sanitization
- 🚫 **Rate limiting** for API endpoints
- 👤 **Anonymous submission** with privacy controls
- 📧 **Email verification** for author notifications

## 🌍 **Internationalization**

```python
# All user-facing strings support translation
from django.utils.translation import gettext_lazy as _

# Example usage in templates
{% load i18n %}
{% trans "Submit your testimonial" %}

# Configure languages in settings.py
LANGUAGES = [
    ('en', _('English')),
    ('es', _('Spanish')),
    ('fr', _('French')),
    # Add more languages
]
```

## 📈 **Performance Benchmarks**

| Operation | Without Optimization | With Optimization | Improvement |
|-----------|---------------------|-------------------|-------------|
| List API (100 items) | 250ms | 45ms | **82% faster** |
| Detail API | 180ms | 25ms | **86% faster** |
| Search queries | 400ms | 60ms | **85% faster** |
| Bulk approve (1000) | 45 seconds | 3 seconds | **93% faster** |
| Statistics calculation | 800ms | 50ms | **94% faster** |

## 🎛️ **Advanced Configuration**

<details>
<summary><strong>View all configuration options</strong></summary>

```python
# Performance & Caching
TESTIMONIALS_USE_CACHE = True
TESTIMONIALS_CACHE_TIMEOUT = 900
TESTIMONIALS_CACHE_KEY_PREFIX = "testimonials"

# Background Processing
TESTIMONIALS_USE_BACKGROUND_TASKS = True
TESTIMONIALS_EMAIL_RATE_LIMIT = 60

# File Handling
TESTIMONIALS_MAX_FILE_SIZE = 10 * 1024 * 1024  # 10MB
TESTIMONIALS_ENABLE_THUMBNAILS = True
TESTIMONIALS_THUMBNAIL_SIZES = {
    'small': (150, 150),
    'medium': (300, 300),
}

# Moderation
TESTIMONIALS_REQUIRE_APPROVAL = True
TESTIMONIALS_MODERATION_ROLES = ['content_manager']
TESTIMONIALS_ALLOW_ANONYMOUS = True

# Search & Pagination
TESTIMONIALS_SEARCH_MIN_LENGTH = 3
TESTIMONIALS_PAGINATION_SIZE = 10
TESTIMONIALS_SEARCH_RESULTS_LIMIT = 1000

# Features
TESTIMONIALS_ENABLE_CATEGORIES = True
TESTIMONIALS_ENABLE_MEDIA = True
TESTIMONIALS_ENABLE_DASHBOARD = True
```

</details>

## 🧪 **Testing**

```bash
# Run the full test suite
python -m pytest

# Run with coverage
python -m pytest --cov=testimonials --cov-report=html

# Run specific test categories
python -m pytest testimonials/tests/test_api_views.py
python -m pytest testimonials/tests/test_model.py
python -m pytest testimonials/tests/test_serializers.py
```

## 🤝 **Contributing**

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.

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

## 📚 **Documentation**

Installation Guide
https://github.com/NzeStan/django-testimonials/blob/main/docs/installation.md

Configuration Guide
https://github.com/NzeStan/django-testimonials/blob/main/docs/configuration.md

API Reference
https://github.com/NzeStan/django-testimonials/blob/main/docs/api.md

Performance Guide
https://github.com/NzeStan/django-testimonials/blob/main/docs/performance.md

Deployment Guide
https://github.com/NzeStan/django-testimonials/blob/main/docs/deployment.md

Customization Guide
https://github.com/NzeStan/django-testimonials/blob/main/docs/customization.md

## 📄 **License**

This project is licensed under the MIT License - see the [LICENSE](https://github.com/NzeStan/django-testimonials/blob/main/LICENSE) file for details.

🙏 Acknowledgments

Built with Django – https://djangoproject.com/

Built with Django REST Framework – https://www.django-rest-framework.org/

Performance optimizations inspired by high-scale web applications

Icons and design elements from the open-source community

⭐ Support the Project

If this package helped you, please give it a star ⭐

Report Issues:
https://github.com/NzeStan/django-testimonials/issues

Request Features / Discussions:
https://github.com/NzeStan/django-testimonials/discussions

Documentation:
https://django-testimonials.readthedocs.io/
