about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn3/api/metadata.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/gn3/api/metadata.py b/gn3/api/metadata.py
index 1f99c57..eb7a599 100644
--- a/gn3/api/metadata.py
+++ b/gn3/api/metadata.py
@@ -620,3 +620,45 @@ CONSTRUCT {
             context)
     except (RemoteDisconnected, URLError):
         return jsonify({})
+
+
+@metadata.route("/species", methods=["GET"])
+def list_species():
+    """List all species"""
+    try:
+        sparql = SPARQLWrapper(current_app.config.get("SPARQL_ENDPOINT"))
+        sparql.setQuery(Template("""
+$prefix
+
+CONSTRUCT {
+        ?species ?predicate ?object .
+} WHERE {
+        ?species ^skos:member gnc:Species ;
+                 ?predicate ?object .
+        VALUES ?predicate {
+               rdfs:label skos:prefLabel
+               skos:altLabel gnt:shortName
+               gnt:family skos:notation
+        }
+
+}
+""").substitute(prefix=RDF_PREFIXES))
+        results = sparql.queryAndConvert()
+        results = json.loads(
+            results.serialize(format="json-ld")
+        )
+        return jsonld.compact(results, {
+            "@context": PREFIXES | {
+                "data": "@graph",
+                "type": "@type",
+                "id": "@id",
+                "name": "rdfs:label",
+                "family": "gnt:family",
+                "shortName": "gnt:shortName",
+                "alternateName": "skos:altLabel",
+                "taxonomicId": "skos:notation",
+                "fullName": "skos:prefLabel",
+            },
+        })
+    except (RemoteDisconnected, URLError):
+        return jsonify({})