diff --git a/biblio-tools/examples.http b/biblio-tools/examples.http index c66ca1f..aae23cb 100644 --- a/biblio-tools/examples.http +++ b/biblio-tools/examples.http @@ -192,3 +192,16 @@ { "id":4, "value": ""} ] ### + + +# conditor/works/expand +POST {{baseUrl}}/v1/conditor/works/expand?indent=true HTTP/1.1 +Content-Type: application/json + +[ + { "id":1, "value": "10.1016/S0047-6374(98)00099-2"}, + { "id":2, "value": "10.35562/arabesques.1222"}, + { "id":3, "value": "10.3324/haematol.2016.148908"}, + { "id":4, "value": ""} +] +### diff --git a/biblio-tools/v1/conditor/works/expand.ini b/biblio-tools/v1/conditor/works/expand.ini new file mode 100644 index 0000000..d343ab0 --- /dev/null +++ b/biblio-tools/v1/conditor/works/expand.ini @@ -0,0 +1,93 @@ +# OpenAPI Documentation - JSON format (dot notation) +mimeType = application/json + +post.operationId = post-v1-crossref-works-expand +post.description = Récupération des métadonnées associées à un DOI dans Conditor +post.summary = Récupération à partir d'un tableau d'objets avec à minima un champ value contenant le DOI +post.tags.0 = biblio-tools +post.requestBody.content.application/json.example.0.id = 1 +post.requestBody.content.application/json.example.0.value = 10.1093/ageing/afm016 +post.requestBody.content.application/json.schema.$ref = #/components/schemas/JSONStream +post.requestBody.required = true +post.responses.default.content.application/json.example.0.id = 1 +post.responses.default.content.application/json.example.0.value = { ... } +post.responses.default.content.application/json.schema.$ref = #/components/schemas/JSONStream +post.responses.default.description = Les prefixes DOI en version textuel +post.parameters.0.description = Indenter le JSON résultant +post.parameters.0.in = query +post.parameters.0.name = indent +post.parameters.0.schema.type = boolean + +# Necessary plugins +[use] +plugin = basics + +# Flow configuration +[JSONParse] +separator = * + +# Quelques paramètres modifiables si besoin +[env] +path = size +value = 10 + +path = indent +value = true + +# Début du traitement par lot +[group] +size = env('size') + +# Création d'une requete avec une liste d'identifiants +[replace] +path = output.0.q +value = self().map('value').filter(Boolean).map(JSON.stringify).join(' ').thru(allIdentifiers => `doi:(${allIdentifiers})`) + +path = output.0.size +value = env('size') + +path = output.0.envelope +value = false + +path = input +value = self() + +[map] +path = output + +# Envoi de la requete +[map/URLStream] +url = https://corhal-api.inist.fr/mergedDocuments +json = true +path = .* +timeout = 30000 +retries = 3 +noerror = false + +[map/OBJFlatten] + +# Création d'un objet réponse +[map/replace] +path = id +value = get('doi').toLower() +path = value +value = self() + +# Croisements des resultats et des dois +[exchange] +value = get('input').map((i) => ({ ...i, value:_.get(_.find(self.output, {id:i.value}), 'value') })) + +# Fin du traitement par lot +[ungroup] + +# On marque les réponses qui n'ont pas abouti +[swing] +test = has('value.sourceUids') +reverse = true + +[swing/assign] +path = value +value = fix('n/a') + +[dump] +indent = env('indent', false)