Define views, serializers and routers as the PumpWood format
Project description
Extends Django and Rest FrameWork exceptions in order to give a better detail over model miss-especification and permit serialization of the error data to facilitate front-end debug.
Quick start
Add “pumpwood_viewutils” to your Django INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'pumpwood_viewutils', ]
Description
Each model exposed by a PumpWood View have nine basic end-poitns exposed througth PumpWood router.
list, served as POST: {slugfied model_name}/list
list_without_pag, served as POST: {slugfied model_name}/list-without-pag
retrieve, served as POST: {slugfied model_name}/retrieve/(?pk)
delete, served as DELETE: {slugfied model_name}/retrieve/(?pk)
save, served as POST, PUT: {slugfied model_name}/save/
list_actions, served as GET {slugfied model_name}/actions/
execute_action, served as POST {slugfied model_name}/execute_action/(?pk)
list_search_options, served as GET {slugfied model_name}/options
list_options, served as POST {slugfied model_name}/options
list
Returns a list of objects acording with the filter dict passed as msg body. List is retricted with the maximum length defined on REST_FRAMEWORK[[‘PAGINATE_BY’]]
list-without-pag
Returns a list of objects acording with the filter dict passed as msg body, but without length limit
retrieve
Returns the object as a dictionary, serialized by retrive_serializer. Usualy, when an object is retrieved it have more information than when it is listed.
delete
Delete de object. For security reason, the url is maped but the code for deleting the object is not implemented (it raises an error, must be overrided).
save
Save and updates an object acording to msg body dictionary. If msg body have a pk the object with this pk will be updated, other wise it will be created
list_actions
List Class functions that have been marked with @rest_function wrapper. Returns a list with the path of the action, a short description, an indication for an icon to be used in the front end and necessary parameter, optional parameter and what the function will return.
execute_action
Execute an action over an object, if pk was filled, or a class method. Returns a dictionary with the results, the action name, parameters used in the action and the object on which the action was performed.
list_search_options
Return options to be user in dropdowns and other filter to be used in the search of the object.
list_options
List the options on the object creation according to parcial filment of the object.
This project is on beta phase, use it with carefull.
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
File details
Details for the file pumpwood-viewutils-0.3.9.6.tar.gz
.
File metadata
- Download URL: pumpwood-viewutils-0.3.9.6.tar.gz
- Upload date:
- Size: 234.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30b3b5ee6febf91c3cbdfa9a40a35b420c3817f8c346f2528ca49ebc206e164e |
|
MD5 | 1b7b1e1b3c75aac3aa13931612a186c7 |
|
BLAKE2b-256 | f5d996588f39c488d6706ff312877d5ef4c6abc782a6b0816a2516ad366e8634 |