Newer
Older
web-services / biblio-tools / v1 / istex / works / expand.ini
@Nicolas Thouvenin Nicolas Thouvenin on 27 Oct 2022 2 KB fix: don't use unionby
# 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 ISTEX
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.raw:(${allIdentifiers})`)

path = output.0.rankBy
value = qualityOverRelevance

path = output.0.sid
value = bibilo-tools

path = output.0.total
value = 0

path = output.0queryType
value = querywithARK

path = output.0.output
value = *

path = input
value = self()

[map]
path = output

# Envoi de la requete
[map/URLStream]
url = https://api.istex.fr/document/
json = true
path = .hits.*
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().omit(['refBibs', 'enrichments', 'metadata', 'fulltext', 'annexes', 'covers'])

# 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.arkIstex')
reverse = true

[swing/assign]
path = value
value = fix('n/a')

[dump]
indent = env('indent', false)