Module:BacklinksList: Difference between revisions
From MaRDI portal
No edit summary |
No edit summary |
||
(25 intermediate revisions by 2 users not shown) | |||
Line 19: | Line 19: | ||
if binding and binding.subjectLabel and binding.subjectLabel.value then | if binding and binding.subjectLabel and binding.subjectLabel.value then | ||
if resultsString ~= "" then | if resultsString ~= "" then | ||
resultsString = resultsString .. " | resultsString = resultsString .. " ⋮ " | ||
end | end | ||
-- Extract the name | |||
local name = binding.subjectLabel.value | local name = binding.subjectLabel.value | ||
if string.find(name, "https://") then | if string.find(name, "https://") then | ||
Line 27: | Line 28: | ||
end | end | ||
-- Extract the item type | |||
local itemType = "" | |||
if binding.itemType and binding.itemType.value then | |||
local itemTypeLink = binding.itemType.value | |||
if itemTypeLink:match("Q5976449$") then | |||
itemType = "Publication" | |||
elseif itemTypeLink:match("Q5976450$") then | |||
itemType = "Software" | |||
elseif itemTypeLink:match("Q5976451$") then | |||
itemType = "Dataset" | |||
else | |||
itemType = "Undefined" | |||
end | |||
end | |||
-- Build the link based on itemType | |||
local link = binding.subject.value | local link = binding.subject.value | ||
link = link:gsub("entity/Q", "wiki/Software:") | if itemType == "Publication" then | ||
link = link:gsub("entity/Q", "wiki/Publication:") | |||
elseif itemType == "Dataset" then | |||
link = link:gsub("entity/Q", "wiki/Dataset:") | |||
elseif itemType == "Software" then | |||
link = link:gsub("entity/Q", "wiki/Software:") | |||
else | |||
link = link:gsub("entity/Q", "wiki/Item:Q") | |||
end | |||
-- Return the final entry | |||
local nameAndLink = "[" .. link .. " " .. name .. "]" | local nameAndLink = "[" .. link .. " " .. name .. "]" | ||
resultsString = resultsString .. nameAndLink | resultsString = resultsString .. nameAndLink | ||
end | end | ||
end | end | ||
Line 52: | Line 79: | ||
-- Constructing the SPARQL query with dynamic entity target1 | -- Constructing the SPARQL query with dynamic entity target1 | ||
local sparqlQuery = [[ | local sparqlQuery = [[ | ||
select distinct ?subject ?subjectLabel | select distinct ?subject ?subjectLabel ?itemType | ||
{ | { | ||
values (?item) {(wd:]] .. target1 .. [[)} | values (?item) {(wd:]] .. target1 .. [[)} | ||
?subject ?predicate ?item . | ?subject ?predicate ?item . | ||
?property wikibase:directClaim ?predicate | ?property wikibase:directClaim ?predicate | ||
OPTIONAL { | |||
?subject wdt:P1460 ?itemType . | |||
} | |||
service wikibase:label { bd:serviceParam wikibase:language "en" } | service wikibase:label { bd:serviceParam wikibase:language "en" } | ||
} | } | ||
LIMIT 100 | |||
]] | ]] | ||
Line 78: | Line 109: | ||
end | end | ||
local itemCount = helper.countElementsInBindings(jsonResults.results.bindings) | |||
if itemCount == 0 then | |||
return nil | return nil | ||
end | |||
local itemCountText = "(" .. itemCount .. ")" | |||
if itemCount > 99 then | |||
local url = mw.uri.new("https://query.portal.mardi4nfdi.de/#select%20distinct%20%3Fsubject%20%3FsubjectLabel%20%3FitemType%0A%09%7B%0A%09%09values%20%28%3Fitem%29%20%7B%28wd%3A" .. target1 .. "%29%7D%0A%09%09%3Fsubject%20%3Fpredicate%20%3Fitem%20.%0A%09%09%3Fproperty%20wikibase%3AdirectClaim%20%3Fpredicate%0A%09%09OPTIONAL%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Fsubject%20wdt%3AP1460%20%3FitemType%20.%0A%20%20%20%20%20%20%20%20%7D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%09%09service%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22%20%7D%0A%09%7D") | |||
local link = '[' .. tostring(url) .. ' show all]' | |||
itemCountText = '(only showing first 100 items - ' .. link .. ')' | |||
end | end | ||
Line 86: | Line 128: | ||
local result = [[ | local result = [[ | ||
<div class= | <div class="keywords-header"> | ||
<span class= | <span class="keywords-title">Related Items ]] .. itemCountText .. [[</span> | ||
<div class= | <div class="keywords-line"></div> | ||
</div> | </div> | ||
<div class= | <div class="keywords-list"> ]] .. linkList .. [[</div> | ||
]] | ]] | ||
Latest revision as of 09:32, 18 October 2024
Documentation for this module may be created at Module:BacklinksList/doc
-- Required module containing helper methods
local helper = require('Module:HelperMethods')
-- Required modules for SPARQL queries and HTML table generation
local sparql = require('SPARQL')
local mwHtml = require('mw.html')
-- Main table to hold all functions
local p = {}
-- Function to convert JSON results into a comma-separated string
function p.convertJsonToCommaSeparatedList(jsonResults)
local resultsString = ""
if jsonResults and jsonResults.results and jsonResults.results.bindings then
local bindings = jsonResults.results.bindings
for i = 0, #bindings do
local binding = bindings[i]
if binding and binding.subjectLabel and binding.subjectLabel.value then
if resultsString ~= "" then
resultsString = resultsString .. " ⋮ "
end
-- Extract the name
local name = binding.subjectLabel.value
if string.find(name, "https://") then
name = "Unnamed Item"
end
-- Extract the item type
local itemType = ""
if binding.itemType and binding.itemType.value then
local itemTypeLink = binding.itemType.value
if itemTypeLink:match("Q5976449$") then
itemType = "Publication"
elseif itemTypeLink:match("Q5976450$") then
itemType = "Software"
elseif itemTypeLink:match("Q5976451$") then
itemType = "Dataset"
else
itemType = "Undefined"
end
end
-- Build the link based on itemType
local link = binding.subject.value
if itemType == "Publication" then
link = link:gsub("entity/Q", "wiki/Publication:")
elseif itemType == "Dataset" then
link = link:gsub("entity/Q", "wiki/Dataset:")
elseif itemType == "Software" then
link = link:gsub("entity/Q", "wiki/Software:")
else
link = link:gsub("entity/Q", "wiki/Item:Q")
end
-- Return the final entry
local nameAndLink = "[" .. link .. " " .. name .. "]"
resultsString = resultsString .. nameAndLink
end
end
end
return resultsString
end
-- Function to build the list
function p.getBacklinkList(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
-- Constructing the SPARQL query with dynamic entity target1
local sparqlQuery = [[
select distinct ?subject ?subjectLabel ?itemType
{
values (?item) {(wd:]] .. target1 .. [[)}
?subject ?predicate ?item .
?property wikibase:directClaim ?predicate
OPTIONAL {
?subject wdt:P1460 ?itemType .
}
service wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100
]]
-- mw.log( sparqlQuery )
-- 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 nil
end
local itemCount = helper.countElementsInBindings(jsonResults.results.bindings)
if itemCount == 0 then
return nil
end
local itemCountText = "(" .. itemCount .. ")"
if itemCount > 99 then
local url = mw.uri.new("https://query.portal.mardi4nfdi.de/#select%20distinct%20%3Fsubject%20%3FsubjectLabel%20%3FitemType%0A%09%7B%0A%09%09values%20%28%3Fitem%29%20%7B%28wd%3A" .. target1 .. "%29%7D%0A%09%09%3Fsubject%20%3Fpredicate%20%3Fitem%20.%0A%09%09%3Fproperty%20wikibase%3AdirectClaim%20%3Fpredicate%0A%09%09OPTIONAL%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Fsubject%20wdt%3AP1460%20%3FitemType%20.%0A%20%20%20%20%20%20%20%20%7D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%09%09service%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22%20%7D%0A%09%7D")
local link = '[' .. tostring(url) .. ' show all]'
itemCountText = '(only showing first 100 items - ' .. link .. ')'
end
local linkList = p.convertJsonToCommaSeparatedList(jsonResults)
-- mw.log(linkList)
local result = [[
<div class="keywords-header">
<span class="keywords-title">Related Items ]] .. itemCountText .. [[</span>
<div class="keywords-line"></div>
</div>
<div class="keywords-list"> ]] .. linkList .. [[</div>
]]
return result
end
-- Return the created html table
return p