A set of django tools to help you create JSON service..
Project description
django-apiview
A set of django tools to help you create JSON service.
Install
pip install django-apiview
Installed Decorators
- @apiview
- @requires(*parameter_names)
- @choices(field, choices, allow_none=False)
- @between(field, min, max, include_min=True, include_max=True, annotation=Number, allow_none=False)
- @rsa_decrypt(field, private_key_instance)
- @meta_variable(variable_name, meta_name)
- @cache(key, expire=None, cache_name="default", get_from_cache=True, set_to_cache=True)
- @safe_apiview(get_client_rsa_publickey, **kwargs)
- @decode_encrypted_data(result_encoder=cipherutils.SafeBase64Encoder(), privatekey=None, server_rsa_privatekey_filedname="RSA_PRIVATEKEY", encrypted_password_fieldname="encryptedPassword", encrypted_data_fieldname="encryptedData")
- @check_aclkey(aclkey=None, aclkey_field_name="aclkey")
- default aclkey=settings.DJANGO_APIVIEW_ACLKEY
Note:
- @apiview
- apiview = Apiview(SimpleJsonPacker())
- @safe_apiview(...)
- Requires django_middleware_global_request, see django_middleware_global_request's usage at https://pypi.org/project/django-middleware-global-request/.
- Requires server rsa settings: RSA_PRIVATEKEY_STRING, RSA_PRIVATEKEY (load RSA_PRIVATEKEY_STRING as RsaKey)
- Callback function get_client_rsa_publickey defines:
def get_client_rsa_publickey(client_id): pass
- kwargs:
- client_id_fieldname = "clientId"
- client_rsa_publickey_fieldname = "CLIENT_RSA_PUBLICKEY"
- result_encoder = cipherutils.SafeBase64Encoder()
- server_rsa_privatekey_filedname = RSA_PRIVATEKEY
- encrypted_password_fieldname = encryptedPassword
- encrypted_data_fieldname = encryptedData
- packer_class = SafeJsonResultPacker
- password_length = 32
- @cache(...)
- Optional setting: DJANGO_APIVIEW_DISABLE_CACHE_HEADER_NAME = "HTTP_DISABLE_CACHE"
- Optional setting: DJANGO_APIVIEW_DEFAULT_CACHE_EXPIRE = None
Usage
Note:
- You DON'T need to put django_apiview into INSTALLED_APPS.
- Apiview always set csrf_exempt=True.
- @apiview or @safe_apiview decorator must be the first decorator.
- Return raw data without serialized, we'll do result pack for you.
app/views.py
import time
from django_apiview.views import apiview
from django_apiview.views import requires
from django_apiview.views import choices
from django_apiview.views import between
@apiview
def ping():
return "pong"
@apiview
def timestamp():
return int(time.time())
@apiview
@requires("msg")
def echo(msg: str):
return msg
@apiview
def getBooleanResult(value : bool):
return value
@apiview
def getIntegerResult(value: int):
return value
@apiview
def getBytesResult(value: bytes):
return value
@apiview
@choices("op", ["+", "-", "*", "/"])
@between("a", 2, 10, include_min=False)
@between("b", 2, 10, include_max=False)
def calc(a: int, op: str, b: int):
if op == "+":
return a + b
if op == "-":
return a - b
if op == "*":
return a * b
if op == "/":
return a / b
@safe_apiview(get_client_rsa_publickey=get_client_rsa_publickey)
def safe_ping():
return "pong"
Bug report
Please report any issues at https://github.com/zencore-cn/zencore-issues.
Releases
v0.9.2 2020/02/09
- Add log_api_response_time.
v0.8.9 2020/02/08
- Fix boolean calc problem.
v0.8.8 2021/02/08
- Use logger.exception instead of logger.error, so that we get running stack message.
- use
cache.expire(key, expire)
aftercache.set(key, value)
instread ofcache.set(key, value, keepttl=expire)
.
v0.8.6 2020/12/24
- Add check_aclkey.
- Parse json data before doing data unpack.
v0.8.4 2020/11/18
- Add cache entry_point manage.
v0.8.3 2020/09/30
- Fix variable reference problem.
v0.8.2 2020/09/30
- Fix variable reference problem.
v0.8.1 2020/09/30
- Fix variable reference problem.
v0.8.0 2020/09/30
- Add ApiviewDecorator to make decorator programming easier.
- Fix some function reference problem.
v0.7.0 2020/09/28
- Add batch_mode parameter support for cache.
v0.6.0 2020/09/06
- Add safe_apiview.
v0.5.0 2020/08/13
- Add cache decorator.
- Add func's default values to View.data.
v0.4.0 2020/08/06
- Add meta_variable decorator.
- Datetime value encode to native time, and in format like
2020-08-06 14:41:00
.
v0.3.4 2020/07/26
- Fix BizError class check problem.
v0.3.3 2020/07/24
- Add rsa_decrypt decorator.
v0.3.2 2020/07/18
- Add Apiview class based implementation.
- Add setup_result_packer api.
- Rename simple_json_result_packer to simple_result_packer.
v0.3.1 2020/07/01
- Change app name from
apiview
todjango_apiview
. - Add parameter validators.
WARN
: NOT backward compatible.
v0.2.0
- Using fastutils.typingutils for annotation cast.
- Add result pack mechanism.
- Move example views from the main app to example app and the example app is not include in published package.
v0.1.3
- Add logging while getting result failed in @apiview.
- Add Map, List annotations.
v0.1.2
- Fix form process problem.
v0.1.1
- Add PAYLOAD injection, PAYLOAD field has low priority.
v0.1.0
- First release,
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
django-apiview-0.9.2.tar.gz
(13.5 kB
view details)
File details
Details for the file django-apiview-0.9.2.tar.gz
.
File metadata
- Download URL: django-apiview-0.9.2.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50d2fec62c0d8f9c0a368137139803884b465a72fa5ab9e2217319292975cf04 |
|
MD5 | fda7c94d3213ab9fb0e5b293ab2349fd |
|
BLAKE2b-256 | 9f0178f4b119ca77495ba49ed2b39a01251ab7e200ff2d57438cb5d65fc0a28a |