Skip to main content

Falcon sorting helper

Project description

https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square https://travis-ci.org/Darkheir/falcon-sorting-hook.svg?branch=master https://codecov.io/gh/Darkheir/falcon-sorting-hook/branch/master/graph/badge.svg https://api.codacy.com/project/badge/Grade/a8a34e89d34b4a928e988fe1624e2eae Updates

A small falcon hook to parse sorting elements from the request.

Usage

The easiest way to use this hook is the following:

class Resource:
    sorting_fields = ("foo", "bar")  # List of fields allowed for sorting

    @falcon.before(SortingHook())
    def on_get(self, req, resp, user):
        # Here req['context']['sort'] is set

The Hook will look in the query parameters for parameters looking like sort=value.

The default sorting order is ascending. To sort in a descending order a minus (-) sign needs to be specified before the value. i.e. sort=-value

It is possible to specify multiple sorting values by separating them with a comma. i.e. sort=-value1,value2

It will create a list in the request context accessible at req.context['sort']. This list consists of tuples where the first element is the name of the field to sort on and the second the order to follow (either ASC or DESC)

i.e. [('foo', 'ASC'), ('bar', 'DESC')].

Configuration options

Allowing fields for sorting

For security reasons, the fields allowed for sorting must be specified in the sorting_fields attribute of the resource.

All the fields not defined in it will be discarded by the hook.

Default sorting order

It is possible to specify a default sorting order by setting the default_sorting attribute in the resource.

This attribute must be a string or a tuple that respects the convention we have for the request parameter.

The attributes specified as the default order must also be part of sorting_fields.

Examples:

default_sorting = '-foo'
# or
default_sorting = ('foo', '-bar')

Hook configuration

One parameter can be passed to the hook:

  • sort_query_key : The name of the key used in the query to sort data. Default: sort.

Example:

@falcon.before(PaginationFromRequestHook(
    sort_query_key='order',
))
def on_get(self, req, resp, user):
    # Get request

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

falcon_sorting-0.2.0.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

falcon_sorting-0.2.0-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

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