cubicweb-api


Namecubicweb-api JSON
Version 0.14.0 PyPI version JSON
download
home_pagehttps://forge.extranet.logilab.fr/cubicweb/cubes/api
SummaryThis cube is the new api which will be integrated in CubicWeb 4.
upload_time2024-02-23 15:49:25
maintainer
docs_urlNone
authorLOGILAB S.A. (Paris, FRANCE)
requires_python
licenseLGPL
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Summary
================

.. Useful links
.. _RQLController cube: https://forge.extranet.logilab.fr/cubicweb/cubes/rqlcontroller
.. _CubicWebJS: https://forge.extranet.logilab.fr/cubicweb/cubicwebjs
.. _React Admin CubicWeb: https://forge.extranet.logilab.fr/cubicweb/react-admin
.. _OpenAPI: https://www.openapis.org
.. _JWT: https://jwt.io
.. _CubicWeb Repository: https://forge.extranet.logilab.fr/cubicweb/cubicweb
.. _Matrix channel: https://matrix.to/#/#cubicweb:matrix.logilab.org

This cube exposes the new api, replacing the `RQLController cube`_ with a simpler architecture.
We plan on integrating this new API directly into CubicWeb, without having to rely on this cube.

You can use the `CubicWebJS`_ client to communicate with this API in JavaScript.
See the project `React Admin CubicWeb`_ for an example on how to use `CubicWebJS`_.


**⚠️ Please note this cube will later be integrated into CubicWeb.
The installation instructions only applies for the API cube while it lives in its own repository.**

Vision
------

The goal is to offer a minimal API surface,
similar to data-servers compatible with SPARQL.
To this end, this API mainly offers a route to send RQL requests to.

There are only a few helper endpoints to login, fetch the data schema
and retrieve debug information about the server setup.
Those are either impossible to express in RQL,
or essential to have to simplify debugging.

**We will not create endpoints to make common RQL requests easier.**
Instead it is the responsibility of each client
to make creating those requests easier by offering helpers.

If you have trouble expressing your need through RQL,
please ask your question in our `Matrix channel`_ or
open an issue on the `CubicWeb Repository`_.
Depending on the need we may update RQL to add new features!

Setup
-----

Install this cube with pip by running:

``pip install cubicweb_api``

Then open the ``__pkginfo__.py`` of your CubicWeb instance
and add ``cubicweb-api`` in the ``__depends__`` dictionary.

Existing instances
~~~~~~~~~~~~~~~~~~

If you are adding the api to an existing instance,
you need to manually add the cube and run a migration.
To do so, run the following commands
(replacing ``<YOUR_INSTANCE>`` with your instance name):

Open a shell using `cubicweb-ctl shell <YOUR_INSTANCE>`.
In that shell type `add_cube(api)`, then `exit()` to leave the shell.

And finally upgrade your instance:

``cubicweb-ctl upgrade <YOUR_INSTANCE>``

The command will ask you to edit the ``all-in-one.conf`` file.
Accept the changes to write the default configuration options available for this cube.

Configuration options
~~~~~~~~~~~~~~~~~~~~~

Several configuration options are available in `pyramid.ini`:

``cubicweb_api.api_path_prefix``
''''''''''''''''''''''''''''''''

Path after the hostname on which to serve the api. Defaults to ``api``.
The api version number will be added after this prefix (only v1 for now).

**Example:**

For a cubicweb instance deployed on ``http://localhost:8080``.

The api will be deployed by default  at ``http://localhost:8080/api/v1``.

If you set the option to ``cubicweb_api.api_path_prefix = my/custom/path``,
it will be then be deployed on ``http://localhost:8080/my/custom/path/v1``

``cubicweb.includes = cubicweb_api.auth.routes``
''''''''''''''''''''''''''''''''''''''''''''''''

Include ``cubicweb_api.auth.routes`` to enable the login and logout routes.
These routes will use whatever authentication policy is enabled in cubicweb.

``cubicweb.includes = cubicweb_api.auth.jwt``
'''''''''''''''''''''''''''''''''''''''''''''

Include ``cubicweb_api.auth.jwt`` to enable the JWT cookie authentication policy.

**⚠️ This feature is experimental, do not use in production**

Available Routes
----------------

This cube uses the `OpenAPI`_ specification to describe and validate data.
The complete specification is available in `openapi_template.yaml <cubicweb_api/openapi/openapi_template.yaml>`_.

Please note the login route will not appear in the OpenAPI specification if it is disabled (see section "Configuration options").

Authentication
--------------

When sending valid credentials to the login route,
a `JWT`_ token will be generated and sent in the ``Set-Cookie`` header.
This token must be sent as a cookie for each request to be successful.

Please note the login route is disabled by default (see section "Configuration options").

Troubleshooting
---------------

**Pyramid**

Depending on your pyramid configuration,
you may need to manually include the api
routes by adding this line in your pyramid.ini

``cubicweb.includes = cubicweb_api``

            

Raw data

            {
    "_id": null,
    "home_page": "https://forge.extranet.logilab.fr/cubicweb/cubes/api",
    "name": "cubicweb-api",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "LOGILAB S.A. (Paris, FRANCE)",
    "author_email": "contact@logilab.fr",
    "download_url": "https://files.pythonhosted.org/packages/11/97/7972c8170e52e421b0b44b132f7922877409c3bfb987758ecc50e92b2b35/cubicweb-api-0.14.0.tar.gz",
    "platform": null,
    "description": "Summary\n================\n\n.. Useful links\n.. _RQLController cube: https://forge.extranet.logilab.fr/cubicweb/cubes/rqlcontroller\n.. _CubicWebJS: https://forge.extranet.logilab.fr/cubicweb/cubicwebjs\n.. _React Admin CubicWeb: https://forge.extranet.logilab.fr/cubicweb/react-admin\n.. _OpenAPI: https://www.openapis.org\n.. _JWT: https://jwt.io\n.. _CubicWeb Repository: https://forge.extranet.logilab.fr/cubicweb/cubicweb\n.. _Matrix channel: https://matrix.to/#/#cubicweb:matrix.logilab.org\n\nThis cube exposes the new api, replacing the `RQLController cube`_ with a simpler architecture.\nWe plan on integrating this new API directly into CubicWeb, without having to rely on this cube.\n\nYou can use the `CubicWebJS`_ client to communicate with this API in JavaScript.\nSee the project `React Admin CubicWeb`_ for an example on how to use `CubicWebJS`_.\n\n\n**\u26a0\ufe0f Please note this cube will later be integrated into CubicWeb.\nThe installation instructions only applies for the API cube while it lives in its own repository.**\n\nVision\n------\n\nThe goal is to offer a minimal API surface,\nsimilar to data-servers compatible with SPARQL.\nTo this end, this API mainly offers a route to send RQL requests to.\n\nThere are only a few helper endpoints to login, fetch the data schema\nand retrieve debug information about the server setup.\nThose are either impossible to express in RQL,\nor essential to have to simplify debugging.\n\n**We will not create endpoints to make common RQL requests easier.**\nInstead it is the responsibility of each client\nto make creating those requests easier by offering helpers.\n\nIf you have trouble expressing your need through RQL,\nplease ask your question in our `Matrix channel`_ or\nopen an issue on the `CubicWeb Repository`_.\nDepending on the need we may update RQL to add new features!\n\nSetup\n-----\n\nInstall this cube with pip by running:\n\n``pip install cubicweb_api``\n\nThen open the ``__pkginfo__.py`` of your CubicWeb instance\nand add ``cubicweb-api`` in the ``__depends__`` dictionary.\n\nExisting instances\n~~~~~~~~~~~~~~~~~~\n\nIf you are adding the api to an existing instance,\nyou need to manually add the cube and run a migration.\nTo do so, run the following commands\n(replacing ``<YOUR_INSTANCE>`` with your instance name):\n\nOpen a shell using `cubicweb-ctl shell <YOUR_INSTANCE>`.\nIn that shell type `add_cube(api)`, then `exit()` to leave the shell.\n\nAnd finally upgrade your instance:\n\n``cubicweb-ctl upgrade <YOUR_INSTANCE>``\n\nThe command will ask you to edit the ``all-in-one.conf`` file.\nAccept the changes to write the default configuration options available for this cube.\n\nConfiguration options\n~~~~~~~~~~~~~~~~~~~~~\n\nSeveral configuration options are available in `pyramid.ini`:\n\n``cubicweb_api.api_path_prefix``\n''''''''''''''''''''''''''''''''\n\nPath after the hostname on which to serve the api. Defaults to ``api``.\nThe api version number will be added after this prefix (only v1 for now).\n\n**Example:**\n\nFor a cubicweb instance deployed on ``http://localhost:8080``.\n\nThe api will be deployed by default  at ``http://localhost:8080/api/v1``.\n\nIf you set the option to ``cubicweb_api.api_path_prefix = my/custom/path``,\nit will be then be deployed on ``http://localhost:8080/my/custom/path/v1``\n\n``cubicweb.includes = cubicweb_api.auth.routes``\n''''''''''''''''''''''''''''''''''''''''''''''''\n\nInclude ``cubicweb_api.auth.routes`` to enable the login and logout routes.\nThese routes will use whatever authentication policy is enabled in cubicweb.\n\n``cubicweb.includes = cubicweb_api.auth.jwt``\n'''''''''''''''''''''''''''''''''''''''''''''\n\nInclude ``cubicweb_api.auth.jwt`` to enable the JWT cookie authentication policy.\n\n**\u26a0\ufe0f This feature is experimental, do not use in production**\n\nAvailable Routes\n----------------\n\nThis cube uses the `OpenAPI`_ specification to describe and validate data.\nThe complete specification is available in `openapi_template.yaml <cubicweb_api/openapi/openapi_template.yaml>`_.\n\nPlease note the login route will not appear in the OpenAPI specification if it is disabled (see section \"Configuration options\").\n\nAuthentication\n--------------\n\nWhen sending valid credentials to the login route,\na `JWT`_ token will be generated and sent in the ``Set-Cookie`` header.\nThis token must be sent as a cookie for each request to be successful.\n\nPlease note the login route is disabled by default (see section \"Configuration options\").\n\nTroubleshooting\n---------------\n\n**Pyramid**\n\nDepending on your pyramid configuration,\nyou may need to manually include the api\nroutes by adding this line in your pyramid.ini\n\n``cubicweb.includes = cubicweb_api``\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "This cube is the new api which will be integrated in CubicWeb 4.",
    "version": "0.14.0",
    "project_urls": {
        "Homepage": "https://forge.extranet.logilab.fr/cubicweb/cubes/api"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "056a1c04ee76af0e24b9c0cbf58cc59296ccebc2c0687f06614343c8b6837f98",
                "md5": "f84126a967db74208c1b7f2d0b12dd8a",
                "sha256": "1a3067ee3248588552e4f84c1091333450cb0049aac0cddc5b0433ac538920bf"
            },
            "downloads": -1,
            "filename": "cubicweb_api-0.14.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f84126a967db74208c1b7f2d0b12dd8a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 28558,
            "upload_time": "2024-02-23T15:49:23",
            "upload_time_iso_8601": "2024-02-23T15:49:23.330017Z",
            "url": "https://files.pythonhosted.org/packages/05/6a/1c04ee76af0e24b9c0cbf58cc59296ccebc2c0687f06614343c8b6837f98/cubicweb_api-0.14.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11977972c8170e52e421b0b44b132f7922877409c3bfb987758ecc50e92b2b35",
                "md5": "4abe883a2d1f15b9aed3d4aa76777c89",
                "sha256": "55e1d31e688f4abdc9463a04a974b68a10a5056537da9d3152018001e6dea41e"
            },
            "downloads": -1,
            "filename": "cubicweb-api-0.14.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4abe883a2d1f15b9aed3d4aa76777c89",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 27094,
            "upload_time": "2024-02-23T15:49:25",
            "upload_time_iso_8601": "2024-02-23T15:49:25.271463Z",
            "url": "https://files.pythonhosted.org/packages/11/97/7972c8170e52e421b0b44b132f7922877409c3bfb987758ecc50e92b2b35/cubicweb-api-0.14.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-23 15:49:25",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "cubicweb-api"
}
        
Elapsed time: 0.18542s