Phyks (Lucas Verney)
e7332e3b91
* Add routes to fetch relationships for a given paper. * Add backrefs in relationships to be able to get the reversed relationship. * Update some doc.
164 lines
4.4 KiB
Python
164 lines
4.4 KiB
Python
"""
|
|
This file contains GET routes methods.
|
|
"""
|
|
import bottle
|
|
|
|
import database
|
|
import tools
|
|
|
|
|
|
def fetch_papers(db):
|
|
"""
|
|
Fetch all matching papers.
|
|
|
|
.. code-block:: bash
|
|
|
|
GET /papers
|
|
Accept: application/vnd.api+json
|
|
|
|
|
|
Filtering is possible using ``id=ID``, ``doi=DOI``, ``arxiv_id=ARXIV_ID`` \
|
|
or any combination of these GET parameters. Other parameters are ignored.
|
|
|
|
|
|
.. code-block:: json
|
|
|
|
{
|
|
"data": [
|
|
{
|
|
"type": "papers",
|
|
"id": 1,
|
|
"attributes": {
|
|
"doi": "10.1126/science.1252319",
|
|
"arxiv_id": "1401.2910"
|
|
},
|
|
"links": {
|
|
"self": "/papers/1"
|
|
},
|
|
"relationships": {
|
|
"cite": {
|
|
"links": {
|
|
"related": "/papers/1/relationships/cite"
|
|
}
|
|
},
|
|
…
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
:param db: A database session, injected by the ``Bottle`` plugin.
|
|
:returns: An ``HTTPResponse``.
|
|
"""
|
|
filters = {k: bottle.request.params[k]
|
|
for k in bottle.request.params
|
|
if k in ["id", "doi", "arxiv_id"]}
|
|
resources = db.query(database.Paper).filter_by(**filters).all()
|
|
if resources:
|
|
return tools.APIResponse(tools.pretty_json({
|
|
"data": [resource.json_api_repr() for resource in resources]
|
|
}))
|
|
return bottle.HTTPError(404, "Not found")
|
|
|
|
|
|
def fetch_by_id(id, db):
|
|
"""
|
|
Fetch a resource identified by its internal id.
|
|
|
|
.. code-block:: bash
|
|
|
|
GET /papers/1
|
|
Accept: application/vnd.api+json
|
|
|
|
|
|
.. code-block:: json
|
|
|
|
{
|
|
"data": {
|
|
"type": "papers",
|
|
"id": 1,
|
|
"attributes": {
|
|
"doi": "10.1126/science.1252319",
|
|
"arxiv_id": "1401.2910"
|
|
},
|
|
"links": {
|
|
"self": "/papers/1"
|
|
},
|
|
"relationships": {
|
|
"cite": {
|
|
"links": {
|
|
"related": "/papers/1/relationships/cite"
|
|
}
|
|
},
|
|
…
|
|
}
|
|
}
|
|
}
|
|
|
|
:param id: The id of the requested paper.
|
|
:param db: A database session, injected by the ``Bottle`` plugin.
|
|
:returns: An ``HTTPResponse``.
|
|
"""
|
|
resource = db.query(database.Paper).filter_by(id=id).first()
|
|
if resource:
|
|
return tools.APIResponse(tools.pretty_json({
|
|
"data": resource.json_api_repr()
|
|
}))
|
|
return bottle.HTTPError(404, "Not found")
|
|
|
|
|
|
def fetch_relationship(id, name, db):
|
|
"""
|
|
Fetch relationships of the given type associated with the given paper.
|
|
|
|
.. code-block:: bash
|
|
|
|
GET /papers/1/relationships/cite
|
|
Accept: application/vnd.api+json
|
|
|
|
|
|
.. code-block:: json
|
|
|
|
{
|
|
"links": {
|
|
"self": "/papers/1/relationships/cite",
|
|
"related": "/papers/1/cite"
|
|
},
|
|
"data": [
|
|
{
|
|
"type": "papers",
|
|
"id": 2,
|
|
},
|
|
…
|
|
]
|
|
}
|
|
|
|
:param id: The id of the requested paper.
|
|
:param name: The name of the requested relationship for this paper.
|
|
:param db: A database session, injected by the ``Bottle`` plugin.
|
|
:returns: An ``HTTPResponse``.
|
|
"""
|
|
reversed = (
|
|
"reverse" in bottle.request.params and
|
|
bottle.request.params["reverse"] != 0
|
|
)
|
|
resource = db.query(database.Paper).filter_by(id=id).first()
|
|
if resource:
|
|
response = {
|
|
"links": {
|
|
"self": "/papers/%d/relationships/%s" % (id, name),
|
|
"related": "/papers/%d/%s" % (id, name),
|
|
},
|
|
"data": [
|
|
]
|
|
}
|
|
if reversed:
|
|
relationships = resource.related_by
|
|
else:
|
|
relationships = resource.related_to
|
|
for r in relationships:
|
|
if r.relationship.name == name:
|
|
response["data"].append({"type": name, "id": r.right_id})
|
|
return tools.APIResponse(tools.pretty_json(response))
|
|
return bottle.HTTPError(404, "Not found")
|