odoo-addon-base-external-system


Nameodoo-addon-base-external-system JSON
Version 16.0.1.0.0.5 PyPI version JSON
download
home_pagehttps://github.com/OCA/server-backend
SummaryData models allowing for connection to external systems.
upload_time2023-11-09 05:31:42
maintainer
docs_urlNone
authorLasLabs, Odoo Community Association (OCA)
requires_python>=3.10
licenseLGPL-3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================
Base External System
====================

.. 
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! This file is generated by oca-gen-addon-readme !!
   !! changes will be overwritten.                   !!
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! source digest: sha256:538c9c995cdcc3f95d664975e426c7a54638c5a728cef8253014ef178d29ec3f
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
    :target: https://odoo-community.org/page/development-status
    :alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
    :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
    :alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github
    :target: https://github.com/OCA/server-backend/tree/16.0/base_external_system
    :alt: OCA/server-backend
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
    :target: https://translation.odoo-community.org/projects/server-backend-16-0/server-backend-16-0-base_external_system
    :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-backend&target_branch=16.0
    :alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module provides an interface/adapter mechanism for the definition of remote
systems.

Note that this module stores everything in plain text. In the interest of security,
it is recommended you use another module (such as `keychain` or `red_october` to
encrypt things like the password and private key). This is not done here in order
to not force a specific security method.

**Table of contents**

.. contents::
   :local:

Configuration
=============

Configure external systems in Settings => Technical => External Systems

Usage
=====

The credentials for systems are stored in the ``external.system`` model, and are to
be configured by the user. This model is the unified interface for the underlying
adapters.

Using the Interface
~~~~~~~~~~~~~~~~~~~

Given an ``external.system`` singleton called ``external_system``, you would do the
following to get the underlying system client:

.. code-block:: python

   with external_system.client() as client:
       client.do_something()

The client will be destroyed once the context has completed. Destruction takes place
in the adapter's ``external_destroy_client`` method.

The only unified aspect of this interface is the client connection itself. Other more
opinionated interface/adapter mechanisms can be implemented in other modules, such as
the file system interface in `OCA/server-tools/external_file_location
<https://github.com/OCA/server-tools/tree/9.0/external_file_location>`_.

Creating an Adapter
~~~~~~~~~~~~~~~~~~~

Modules looking to add an external system adapter should inherit the
``external.system.adapter`` model and override the following methods:

* ``external_get_client``: Returns a usable client for the system
* ``external_destroy_client``: Destroy the connection, if applicable. Does not need
  to be defined if the connection destroys itself.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-backend/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/server-backend/issues/new?body=module:%20base_external_system%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* LasLabs

Contributors
~~~~~~~~~~~~

* Dave Lasley <dave@laslabs.com>
* Ronald Portier <ronald@therp.nl>
* `Tecnativa <https://www.tecnativa.com>`__:

  * Alexandre Díaz
  * César A. Sánchez

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
   :alt: Odoo Community Association
   :target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/server-backend <https://github.com/OCA/server-backend/tree/16.0/base_external_system>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/OCA/server-backend",
    "name": "odoo-addon-base-external-system",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "",
    "author": "LasLabs, Odoo Community Association (OCA)",
    "author_email": "support@odoo-community.org",
    "download_url": "",
    "platform": null,
    "description": "====================\nBase External System\n====================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:538c9c995cdcc3f95d664975e426c7a54638c5a728cef8253014ef178d29ec3f\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html\n    :alt: License: LGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github\n    :target: https://github.com/OCA/server-backend/tree/16.0/base_external_system\n    :alt: OCA/server-backend\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/server-backend-16-0/server-backend-16-0-base_external_system\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png\n    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-backend&target_branch=16.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nThis module provides an interface/adapter mechanism for the definition of remote\nsystems.\n\nNote that this module stores everything in plain text. In the interest of security,\nit is recommended you use another module (such as `keychain` or `red_october` to\nencrypt things like the password and private key). This is not done here in order\nto not force a specific security method.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nConfiguration\n=============\n\nConfigure external systems in Settings => Technical => External Systems\n\nUsage\n=====\n\nThe credentials for systems are stored in the ``external.system`` model, and are to\nbe configured by the user. This model is the unified interface for the underlying\nadapters.\n\nUsing the Interface\n~~~~~~~~~~~~~~~~~~~\n\nGiven an ``external.system`` singleton called ``external_system``, you would do the\nfollowing to get the underlying system client:\n\n.. code-block:: python\n\n   with external_system.client() as client:\n       client.do_something()\n\nThe client will be destroyed once the context has completed. Destruction takes place\nin the adapter's ``external_destroy_client`` method.\n\nThe only unified aspect of this interface is the client connection itself. Other more\nopinionated interface/adapter mechanisms can be implemented in other modules, such as\nthe file system interface in `OCA/server-tools/external_file_location\n<https://github.com/OCA/server-tools/tree/9.0/external_file_location>`_.\n\nCreating an Adapter\n~~~~~~~~~~~~~~~~~~~\n\nModules looking to add an external system adapter should inherit the\n``external.system.adapter`` model and override the following methods:\n\n* ``external_get_client``: Returns a usable client for the system\n* ``external_destroy_client``: Destroy the connection, if applicable. Does not need\n  to be defined if the connection destroys itself.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/server-backend/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/server-backend/issues/new?body=module:%20base_external_system%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n~~~~~~~\n\n* LasLabs\n\nContributors\n~~~~~~~~~~~~\n\n* Dave Lasley <dave@laslabs.com>\n* Ronald Portier <ronald@therp.nl>\n* `Tecnativa <https://www.tecnativa.com>`__:\n\n  * Alexandre D\u00edaz\n  * C\u00e9sar A. S\u00e1nchez\n\nMaintainers\n~~~~~~~~~~~\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\nThis module is part of the `OCA/server-backend <https://github.com/OCA/server-backend/tree/16.0/base_external_system>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n\n\n",
    "bugtrack_url": null,
    "license": "LGPL-3",
    "summary": "Data models allowing for connection to external systems.",
    "version": "16.0.1.0.0.5",
    "project_urls": {
        "Homepage": "https://github.com/OCA/server-backend"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5e777ef8942459659fa5f1fac604c4658c4f58a557703405cd153630d6eec60",
                "md5": "5a95d47d4fd30a6a9b62fe147ac6434c",
                "sha256": "4ec73120800fe0e9f88447141602d3786665f5e258fc8bb93aadc634eb4055c1"
            },
            "downloads": -1,
            "filename": "odoo_addon_base_external_system-16.0.1.0.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5a95d47d4fd30a6a9b62fe147ac6434c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 36752,
            "upload_time": "2023-11-09T05:31:42",
            "upload_time_iso_8601": "2023-11-09T05:31:42.012984Z",
            "url": "https://files.pythonhosted.org/packages/d5/e7/77ef8942459659fa5f1fac604c4658c4f58a557703405cd153630d6eec60/odoo_addon_base_external_system-16.0.1.0.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-09 05:31:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "OCA",
    "github_project": "server-backend",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "odoo-addon-base-external-system"
}
        
Elapsed time: 0.28882s