Files
peeringdb-peeringdb/docs/dev/modules/validators.py.md
T
Stefan Pratter 3ee0d1ea5e Support 202205 (#1188)
* Add "Last login" to https://peeringdb.com/cp/peeringdb_server/user/ #879

* Bug in renumbering tool #660

* Add the IX name and id to IX-F Import Emails #963

* Use username to create deskpro person when no first-name / last-name data exists #1057

* Organization merge tool usergroup issues #930

* Exempt superusers (PeeringDB Admin Committee & Operations Committee admins) from throttling #1172

* add missing migration for #1172

* linting

* poetry relock

* adapt to django-two-factor-auth template-tag renaming changes

* increase default for DATA_QUALITY_MAX_SPEED to 5Tb

* regenerate docs

* fix api test for netixlan max speed validation

* pdb_api_cache command needs to disable CSRF_USE_SESSIONS before it runs

Co-authored-by: David Poarch <[email protected]>
2022-06-15 07:23:26 -05:00

2.6 KiB

Generated from validators.py on 2022-06-14 09:38:55.484251

peeringdb_server.validators

peeringdb model / field validators

Functions


validate_address_space

def validate_address_space(prefix)

Validate an ip prefix according to peeringdb specs.

Arguments: - prefix: ipaddress.IPv4Network or an ipaddress.IPv6Network

Raises: - ValidationError on failed validation


validate_api_rate

def validate_api_rate(value)

Validates a number/time-unit format used to determine rate limits

e.g., 10/second or 100/minute

Will raise a ValidationError on failure

Arguments:

  • value(str)

Returns:

  • validated value (str)

validate_bool

def validate_bool(value)

Validates a boolean value

This can be passed a string for True or False or an integer as 1, 0 as well to convert and return a boolean value

Will raise ValidationError on failure.

Arguments:

  • value (str|int|bool)

Returns:

  • validated value (bool)

validate_irr_as_set

def validate_irr_as_set(value)

Validate irr as-set string.

  • the as-set/rs-set name has to conform to RFC 2622 (5.1 and 5.2)
  • the source may be specified by AS-SET@SOURCE or SOURCE::AS-SET
  • multiple values must be separated by either comma, space or comma followed by space

Arguments:

  • value: irr as-set string

Returns:

  • str: validated irr as-set string

validate_phonenumber

def validate_phonenumber(phonenumber, country=None)

Validate a phonenumber to E.164

Arguments: - phonenumber (str)

Raises: - ValidationError if phone number isn't valid E.164 and cannot be made E.164 valid

Returns: - str: validated phonenumber


validate_prefix

def validate_prefix(prefix)

Validate ip prefix.

Arguments: - prefix: ipaddress.IPv4Network or an ipaddress.IPv6Network

Raises: - ValidationError on failed validation

Returns: - ipaddress.ip_network instance


validate_prefix_overlap

def validate_prefix_overlap(prefix)

Validate that a prefix does not overlap with another prefix on an already existing ixlan.

Arguments: - prefix: ipaddress.IPv4Network or an ipaddress.IPv6Network

Raises: - ValidationError on failed validation


validate_zipcode

def validate_zipcode(zipcode, country)

Validate a zipcode for a country. If a country has zipcodes, a zipcode is required. If a country does not have zipcodes, it's not required.

Arguments: - zipcode (can be Str or None at this point) - country (two-letter country-code provided in data) Raises: - ValidationError if Zipcode is missing from a country WITH zipcodes Returns: - str: zipcode