Skip to main content

A Django model to manage Fiware Orion Entities as local models

Project description

A Django App to manage a Fiware Orion context broker entities as Django Model Objects.

Install

In order to intall simply use pip

pip install django_orion_model

Usage

Simply add django_orion_model to your settings.py:

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
    ...
'django_orion_model',
    ...
]

ORION_URL = "https://yourorion:1234"
ORION_SCOPE = "/desiredscope"
ORION_EXPIRATION = 200 // living time of local values

To define a Entity Model simply define a class in your models.py Using OrionEntity as Class father and use Orion fields to properties expected to live in the context broker.

from django_orion_model import OrionEntityi

class WasteManagementStage(OrionEntity):
    name = OrionCharField("name", max_length=1024, blank=True)
    description = OrionTextField("description", max_length=1024, blank=True)

Available Field types for Orion Context ContextBroker:

  • OrionCharField
  • OrionTextField
  • OrionFloatField
  • OrionDateTimeField

An orion entity have a Default Field to manage Communication With Orion:

  • context_broker(ForeingKey-ContextBroker): The Orion Context ContextBroker that manages the entity
  • service_path(ForeingKey-Scope): The service-path where the entity lies.
  • orion_id(CharField): The ID of the entity in Orion.
  • type(CharField): The type of the entity in Orion.
  • data(JSONField): A local repository of the last known values of the entity.
  • updated(ArrayField-CharField): The name of the Orion field updates since las connection.
  • expiration(DateTimeField): The time when the local data is considered obsolete.
  • status(CharField): A predefined text that indicates the communication. Expected values:
    • OK Everything is OK and up to date
    • OFFLINE Set to Disable communication to Orion
    • MISSING Indicates that the Entity not exist in Orion
    • CREATING Set to Create the entity into Orion.
    • CREATED Indicates that the entity is created but is values are not yet pulled from Orion(Transitory)
    • PENDING_WRITING Indicates that the entity is performing a push to Orion(Transitory).
    • PENDING_READING Indicates that the entity is performing a pull to Orion(Transitory).
    • AWAIT_REFRESH The pull has failed and the entity is expecting a new opportunity to retry.
    • AWAIT_REWRITING The push has failed and the entity is expecting a new opportunity to retry.
  • error(TextField): IF the connection have a problem the Orion response is stored here.

Entity Behaivour

The entity is expected to pull values from Orion after its creation, when an orion attributes is read and expiration time is up, before saving to database and after values are updated to orion. The entity is expected to push values to Orion after a Orion values is Set.

Some status Values forces Some behavior:

  • OFFLINE Set to Disable communication to Orion
  • CREATING Set to Create the entity into Orion.

This library is partially funded by the Waste4Think proyect that has received funding from the European Union’s Horizon 2020 research and innovation program under grant agreement 688995. The dissemination of results herein reflects only the author’s view and the European Commission is not responsible for any use that may be made of the information it contains.

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

django-orion-model-0.92.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

django_orion_model-0.92-py2.py3-none-any.whl (16.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-orion-model-0.92.tar.gz.

File metadata

  • Download URL: django-orion-model-0.92.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.9

File hashes

Hashes for django-orion-model-0.92.tar.gz
Algorithm Hash digest
SHA256 f40d71029a21e7a13cfcb51e86978072587935177855c972f595cd3035c2a8ed
MD5 850cdca46460445bab00dd8e8ff8d57d
BLAKE2b-256 7d41a9b194b6d6e118fa0e94f5c12411d613db2ed88714e62ed3ee4a0a07751e

See more details on using hashes here.

File details

Details for the file django_orion_model-0.92-py2.py3-none-any.whl.

File metadata

  • Download URL: django_orion_model-0.92-py2.py3-none-any.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.9

File hashes

Hashes for django_orion_model-0.92-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 679e5997d2b2cdb00e9111b36a5c233ea356ee64107b9db1c2451903ccc184ae
MD5 bd7f1bc37e002217dfb62673e7895906
BLAKE2b-256 006d7975636a4b350f20071afa7741d5020d18055c65a81ec365ca587288192c

See more details on using hashes here.

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