From 86a4463a79447bd865a46a1d47420331821d587c Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 18 Sep 2023 13:50:51 +0200 Subject: [PATCH] Improve Json-LD encoder based on Circe (#4278) * Improve Json-LD encoder based on Circe --------- Co-authored-by: Simon Dumas --- .../rdf/jsonld/encoder/JsonLdEncoder.scala | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/delta/rdf/src/main/scala/ch/epfl/bluebrain/nexus/delta/rdf/jsonld/encoder/JsonLdEncoder.scala b/delta/rdf/src/main/scala/ch/epfl/bluebrain/nexus/delta/rdf/jsonld/encoder/JsonLdEncoder.scala index 0c658de4c5..f310ec0487 100644 --- a/delta/rdf/src/main/scala/ch/epfl/bluebrain/nexus/delta/rdf/jsonld/encoder/JsonLdEncoder.scala +++ b/delta/rdf/src/main/scala/ch/epfl/bluebrain/nexus/delta/rdf/jsonld/encoder/JsonLdEncoder.scala @@ -7,7 +7,7 @@ import ch.epfl.bluebrain.nexus.delta.rdf.jsonld.context.{ContextValue, RemoteCon import ch.epfl.bluebrain.nexus.delta.rdf.jsonld.{CompactedJsonLd, ExpandedJsonLd} import ch.epfl.bluebrain.nexus.delta.rdf.syntax._ import ch.epfl.bluebrain.nexus.delta.rdf.{IriOrBNode, RdfError} -import io.circe.Encoder +import io.circe.{Encoder, Json} import io.circe.syntax._ import monix.bio.IO @@ -137,21 +137,31 @@ object JsonLdEncoder { value: A )(implicit opts: JsonLdOptions, api: JsonLdApi, rcr: RemoteContextResolution): IO[RdfError, CompactedJsonLd] = for { - expanded <- expand(value) - compacted <- expanded.toCompacted(context(value)) + (expanded, context) <- expandAndExtractContext(value) + compacted <- expanded.toCompacted(context) } yield compacted override def expand( value: A - )(implicit opts: JsonLdOptions, api: JsonLdApi, rcr: RemoteContextResolution): IO[RdfError, ExpandedJsonLd] = { - val json = value.asJson.replaceContext(context(value).contextObj) - ExpandedJsonLd(json).map { - case expanded if fId(value).isBNode && expanded.rootId.isIri => expanded - case expanded => expanded.replaceId(fId(value)) - } + )(implicit opts: JsonLdOptions, api: JsonLdApi, rcr: RemoteContextResolution): IO[RdfError, ExpandedJsonLd] = + expandAndExtractContext(value).map(_._1) + + private def expandAndExtractContext( + value: A + )(implicit opts: JsonLdOptions, api: JsonLdApi, rcr: RemoteContextResolution) = { + val json = value.asJson + val context = contextFromJson(json) + ExpandedJsonLd(json.replaceContext(context.contextObj)) + .map { + case expanded if fId(value).isBNode && expanded.rootId.isIri => expanded + case expanded => expanded.replaceId(fId(value)) + } + .map(_ -> context) } - override def context(value: A): ContextValue = value.asJson.topContextValueOrEmpty merge ctx + override def context(value: A): ContextValue = contextFromJson(value.asJson) + + private def contextFromJson(json: Json): ContextValue = json.topContextValueOrEmpty merge ctx } implicit val jsonLdEncoderUnit: JsonLdEncoder[Unit] = new JsonLdEncoder[Unit] {