Skip to main content

Easy AJAX validation for Django projects, inspired by Laravel approach.

Project description

Django Easy Validation |pypi version|

Django Easy Validation is a simple Django library that allows validation for forms via ajax in a simple and elegant way.

Installation

Install project with pip

  pip install django-easy-validation

Usages

from django_easy_validation import Validator
from django.http import HttpResponse, JsonResponse


    def store(request):
       errors = Validator.validate(request, {
           "name": "required|unique:rating_metrices|max:100|min:6",
           "score": "required|numeric"
       })
       if errors:
           return JsonResponse(errors, status=422, safe=False)

    return JsonResponse('success', safe=False)

By default validator generated messages will be thrown, but messsages can be customized too. For example if you want to show custom messages based on validation attributes you can define it as follows

from django_easy_validation import Validator
from django.http import HttpResponse, JsonResponse


    def store(request):
       errors = Validator.validate(request, {
           "name": "required|unique:rating_metrices|max:100|min:6",
           "score": "required|numeric"
       },{
         'name.required': 'Name field cannot be empty',
         'score.required': 'Score should be assigned to each name',
      })
       if errors:
           return JsonResponse(errors, status=422, safe=False)

    return JsonResponse('success', safe=False)

Advance Usages

Instead of writing rules inside the validator validate method you can import it from other files to make the code for elegant. For example: Create a user_rules.py file under rules directory and place all your rules and messages there.

user_rules.py

class UserRules:

    valid_rules = {
        'name': 'required|min:6|max:20',
        'score': 'required|numeric',
    }

    messages = {
        'required.name': 'Name field cannot be empty',
        'required.score': 'You must add score for each name',
    }

Now you can import user_rules.py in your views and use it as below

from django_easy_validation import Validator
from rules.user_rules import UserRules


def store(request):
    metrices = json.loads(request.body)
    errors = Validator.validate(request, UserRules.valid_rules, UserRules.messages)
    if errors and is_ajax:
        return JsonResponse(errors, status=422, safe=False)

Available Validation Rules

required
unique  (unique:users)
max_character     (min:10)
min_character     (max:100)
email
numeric
boolean
string
uppercase
is_array
alphanumeric
lowercase
between
size

Build Locally

Clone the project

  git clone https://github.com/sandysh/django-easy-validation.git

Go to the project directory

  cd django-easy-validation

Build

  python setup.py sdist

Publish

  twine upload dist/*

Authors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-easy-validation-1.0.0.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file django-easy-validation-1.0.0.tar.gz.

File metadata

  • Download URL: django-easy-validation-1.0.0.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for django-easy-validation-1.0.0.tar.gz
Algorithm Hash digest
SHA256 2778acf964da04807aaa53e293a47437f94ff0541d9618c0b45e07d288d0a383
MD5 97158758f6d387f808208fa7645e22a1
BLAKE2b-256 3a57441b9c8a6324e0498ce760e049692645c1ffdae14a44a038cbe4854fb811

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page