Change API to deliver a boolean e if value is an entity

This commit is contained in:
Cyber MacGeddon 2024-11-26 13:49:12 +00:00
parent c83bbe173e
commit 483f761e15
5 changed files with 71 additions and 58 deletions

View file

@ -213,9 +213,16 @@ class Api:
"limit": limit
}
if s: input["s"] = s
if p: input["p"] = p
if o: input["o"] = o
if not isinstance(s, Uri):
raise RuntimeError("s must be Uri")
if not isinstance(p, Uri):
raise RuntimeError("p must be Uri")
if not isinstance(o, Uri) and not isinstance(o, Literal):
raise RuntimeError("o must be Uri or Literal")
if s: input["s"] = { "v": str(s), "e": isinstance(s, Uri), }
if p: input["p"] = { "v": str(p), "e": isinstance(p, Uri), }
if o: input["o"] = { "v": str(o), "e": isinstance(o, Uri), }
url = f"{self.url}triples-query"
@ -272,10 +279,10 @@ class Api:
if metadata:
metadata.emit(
lambda t: triples.append({
"s": t.s.value,
"p": t.p.value,
"o": t.o.value
lambda t: triples.append(
"s": { "v": t.s, "e": isinstance(t.s, Uri) }
"p": { "v": t.p, "e": isinstance(t.p, Uri) }
"o": { "v": t.o, "e": isinstance(t.o, Uri) }
})
)
@ -312,9 +319,9 @@ class Api:
if metadata:
metadata.emit(
lambda t: triples.append({
"s": t.s.value,
"p": t.p.value,
"o": t.o.value
"s": { "v": t.s, "e": isinstance(t.s, Uri),
"p": { "v": t.p, "e": isinstance(t.p, Uri),
"o": { "v": t.o, "e": isinstance(t.o, Uri),
})
)

View file

@ -1,6 +1,15 @@
from . defs import *
from .. schema import Triple, Value
def Value(value, is_uri):
return {
"v": value, "e": is_uri,
}
def Triple(s, p, o):
return {
"s": s, "p": p, "o": o,
}
class DigitalDocument:

View file

@ -1,6 +1,15 @@
from . defs import *
from .. schema import Triple, Value
def Value(value, is_uri):
return {
"v": value, "e": is_uri,
}
def Triple(s, p, o):
return {
"s": s, "p": p, "o": o,
}
class Organization:
def __init__(self, id, name=None, description=None):

View file

@ -1,6 +1,15 @@
from . defs import *
from .. schema import Triple, Value
def Value(value, is_uri):
return {
"v": value, "e": is_uri,
}
def Triple(s, p, o):
return {
"s": s, "p": p, "o": o,
}
class PublicationEvent:
def __init__(

View file

@ -73,10 +73,7 @@ default_timeout = 600
default_port = 8088
def to_value(x):
if x.startswith("http:") or x.startswith("https:"):
return Value(value=x, is_uri=True)
else:
return Value(value=x, is_uri=False)
return Value(value=x["v"], is_uri=x["e"])
def to_subgraph(x):
return [
@ -195,43 +192,41 @@ class Subscriber:
if id in self.full:
del self.full[id]
def serialize_value(v):
return {
"v": v.value,
"e": v.is_uri,
}
def serialize_triple(t):
return {
"s": serialize_value(t.s),
"p": serialize_value(t.p),
"o": serialize_value(t.o)
}
def serialize_subgraph(sg):
return [
serialize_triple(t)
for t in sg
]
def serialize_triples(message):
return {
"metadata": {
"id": message.metadata.id,
"metadata": [
{
"s": t.s.value,
"p": t.p.value,
"o": t.o.value,
}
for t in message.metadata.metadata
],
"metadata": serialize_subgraph(message.metadata.metadata),
"user": message.metadata.user,
"collection": message.metadata.collection,
},
"triples": [
{
"s": t.s.value,
"p": t.p.value,
"o": t.o.value,
}
for t in message.triples
]
"triples": serialize_subgraph(message.triples),
}
def serialize_graph_embeddings(message):
return {
"metadata": {
"id": message.metadata.id,
"metadata": [
{
"s": t.s.value,
"p": t.p.value,
"o": t.o.value,
}
for t in message.metadata.metadata
],
"metadata": serialize_subgraph(message.metadata.metadata),
"user": message.metadata.user,
"collection": message.metadata.collection,
},
@ -563,23 +558,7 @@ class Api:
return web.json_response(
{
"response": [
{
"s": {
"v": t.s.value,
"e": t.s.is_uri,
},
"p": {
"v": t.p.value,
"e": t.p.is_uri,
},
"o": {
"v": t.o.value,
"e": t.o.is_uri,
}
}
for t in resp.triples
]
"response": serialize_subgraph(resp.triples),
}
)