Falcon sorting helper
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file falcon_sorting-0.2.0.tar.gz
.
File metadata
- Download URL: falcon_sorting-0.2.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d869fa5c8dfe6d34c694f71ad1116f7155899701ee67b36e9a16a09c49f2b980 |
|
MD5 | 20030cfcd4f5325a693ba75a33c14b43 |
|
BLAKE2b-256 | 6308617d5d7eaaedb2fb2e52c3c153ff4714cbfdc8153de89f30b4626c0269c8 |
File details
Details for the file falcon_sorting-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: falcon_sorting-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c781efca49359ca0158d1106ec04198435a85c697b659143f321420eca05212d |
|
MD5 | 382fa34babd896c19341bafdf571aa50 |
|
BLAKE2b-256 | 90bfaf89ac79e42d259fc75e9aa2a7dd4928845ff21098da5e11e895d46dffb3 |