Module:PaperOfTheDay: Difference between revisions
From MaRDI portal
Created page with "local p = {} local sparql = require('mw.sparql') -- Requires the SPARQL extension function p.query(frame) local query = [[ PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/> PREFIX wd: <https://portal.mardi4nfdi.de/entity/> SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q57162 . ?item rdfs:label ?itemLabel . } LIMIT 1 ]] local result = sparql.query(query) if result and resul..." |
No edit summary |
||
(18 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
-- Required module containing helper methods | |||
local helper = require('Module:HelperMethods') | |||
local sparql = require('SPARQL') | |||
local mwHtml = require('mw.html') | |||
local p = {} | local p = {} | ||
function p.query(frame) | function p.query(frame) | ||
local | |||
-- Retrieve target1 from frame arguments or return error message if not set | |||
local target1 = frame.args[1] | |||
if not target1 or target1 == '' then | |||
return "No records found" | |||
end | |||
local sparqlQuery = [[ | |||
PREFIX target1: <https://portal.mardi4nfdi.de/entity/]] .. target1 .. [[> | |||
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/> | |||
PREFIX wd: <https://portal.mardi4nfdi.de/entity/> | |||
SELECT ?p1638_value ?p1639_value ?p27_value ?p28_value ?p159_value ?p205_value | |||
WHERE { | |||
target1: wdt:P1638 ?p1638_value . | |||
OPTIONAL { target1: wdt:P1639 ?p1639_value . } | |||
OPTIONAL { target1: wdt:P27 ?p27_value . } | |||
OPTIONAL { target1: wdt:P28 ?p28_value . } | |||
OPTIONAL { target1: wdt:P159 ?p159_value . } | |||
OPTIONAL { target1: wdt:P205 ?p205_value . } | |||
} | |||
LIMIT 1 | |||
]] | ]] | ||
local | |||
-- Executing the SPARQL query and retrieving results in JSON format | |||
return | local jsonResults = sparql.runQuery(sparqlQuery) | ||
-- mw.logObject(jsonResults) | |||
-- Handle error in SPARQL query execution | |||
if jsonResults and jsonResults.error then | |||
mw.log("Error in SPARQL query: " .. tostring(jsonResults.error)) | |||
return nil | |||
end | |||
if not jsonResults then | |||
return "Could not fetch data." | |||
end | |||
if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then | |||
return "No records found." | |||
end | |||
--mw.logObject(jsonResults) | |||
--mw.logObject(jsonResults.results.bindings[0].p1636_value.value) | |||
-- Extract the first item's value | |||
local firstBinding = jsonResults.results.bindings[0] | |||
if firstBinding then | |||
local p159_value = firstBinding.p159_value.value | |||
local p27_value = firstBinding.p27_value.value | |||
local p1638_value = firstBinding.p1638_value.value | |||
local p1639_value = firstBinding.p1639_value.value | |||
local qid_no_Q = target1:match("^Q(.*)") or target1 | |||
local resultString = p159_value .. "<br /><br /> " .. | |||
"Summary: <br /> " .. p1638_value .. "<br /><br />" .. | |||
"Easy summary: <br /> " .. p1639_value .. "<br /><br />" .. | |||
"Read more about it on the MaRDI portal: https://portal.mardi4nfdi.de/wiki/Publication:" .. qid_no_Q .. "<br /><br />" .. | |||
"Read more about it on arXiv: https://doi.org/" .. p27_value | |||
return resultString | |||
end | |||
return "Label not found." | |||
end | end | ||
return p | return p |
Latest revision as of 10:09, 19 November 2024
Documentation for this module may be created at Module:PaperOfTheDay/doc
-- Required module containing helper methods
local helper = require('Module:HelperMethods')
local sparql = require('SPARQL')
local mwHtml = require('mw.html')
local p = {}
function p.query(frame)
-- Retrieve target1 from frame arguments or return error message if not set
local target1 = frame.args[1]
if not target1 or target1 == '' then
return "No records found"
end
local sparqlQuery = [[
PREFIX target1: <https://portal.mardi4nfdi.de/entity/]] .. target1 .. [[>
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>
SELECT ?p1638_value ?p1639_value ?p27_value ?p28_value ?p159_value ?p205_value
WHERE {
target1: wdt:P1638 ?p1638_value .
OPTIONAL { target1: wdt:P1639 ?p1639_value . }
OPTIONAL { target1: wdt:P27 ?p27_value . }
OPTIONAL { target1: wdt:P28 ?p28_value . }
OPTIONAL { target1: wdt:P159 ?p159_value . }
OPTIONAL { target1: wdt:P205 ?p205_value . }
}
LIMIT 1
]]
-- Executing the SPARQL query and retrieving results in JSON format
local jsonResults = sparql.runQuery(sparqlQuery)
-- mw.logObject(jsonResults)
-- Handle error in SPARQL query execution
if jsonResults and jsonResults.error then
mw.log("Error in SPARQL query: " .. tostring(jsonResults.error))
return nil
end
if not jsonResults then
return "Could not fetch data."
end
if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then
return "No records found."
end
--mw.logObject(jsonResults)
--mw.logObject(jsonResults.results.bindings[0].p1636_value.value)
-- Extract the first item's value
local firstBinding = jsonResults.results.bindings[0]
if firstBinding then
local p159_value = firstBinding.p159_value.value
local p27_value = firstBinding.p27_value.value
local p1638_value = firstBinding.p1638_value.value
local p1639_value = firstBinding.p1639_value.value
local qid_no_Q = target1:match("^Q(.*)") or target1
local resultString = p159_value .. "<br /><br /> " ..
"Summary: <br /> " .. p1638_value .. "<br /><br />" ..
"Easy summary: <br /> " .. p1639_value .. "<br /><br />" ..
"Read more about it on the MaRDI portal: https://portal.mardi4nfdi.de/wiki/Publication:" .. qid_no_Q .. "<br /><br />" ..
"Read more about it on arXiv: https://doi.org/" .. p27_value
return resultString
end
return "Label not found."
end
return p