Module:BacklinksList: Difference between revisions

From MaRDI portal
Created page with "-- 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 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..."
 
No edit summary
 
(9 intermediate revisions by the same user not shown)
Line 8: Line 8:
-- Main table to hold all functions
-- Main table to hold all functions
local p = {}
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
               
                local name = binding.subjectLabel.value
                if string.find(name, "https://") then
                name = "Unnamed Item"
                end
               
                local link = binding.subject.value
                link = link:gsub("entity/Q", "wiki/Software:")
               
                local nameAndLink = "[" .. link .. " " .. name .. "]"
                resultsString = resultsString .. nameAndLink
            end
        end
    end
    return resultsString
end


-- Function to build the list
-- Function to build the list
Line 20: Line 52:
     -- Constructing the SPARQL query with dynamic entity target1
     -- Constructing the SPARQL query with dynamic entity target1
     local sparqlQuery = [[
     local sparqlQuery = [[
PREFIX target1: <https://portal.mardi4nfdi.de/entity/]] .. target1 .. [[>
select distinct ?subject ?subjectLabel  
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
{
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>
values (?item) {(wd:]] .. target1 .. [[)}
 
?subject ?predicate ?item .
SELECT DISTINCT ?subject ?subjectLabel {
?property wikibase:directClaim ?predicate
  values (?item) {:target1}
service wikibase:label { bd:serviceParam wikibase:language "en" }
  ?subject ?predicate ?item .
}
  ?property wikibase:directClaim ?predicate
]]
  service wikibase:label { bd:serviceParam wikibase:language "en" }
}
    ]]
      
      
     mw.log( sparqlQuery )
     -- mw.log( sparqlQuery )
      
      
-- Executing the SPARQL query and retrieving results in JSON format
-- Executing the SPARQL query and retrieving results in JSON format
local jsonResults = sparql.runQuery(sparqlQuery)
local jsonResults = sparql.runQuery(sparqlQuery)
-- mw.logObject(jsonResults)
mw.logObject(jsonResults)


-- Handle error in SPARQL query execution
-- Handle error in SPARQL query execution
Line 46: Line 75:


if not jsonResults then
if not jsonResults then
         return "Could not fetch data."
         return nil
end
end
if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then
if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then
         return "No records found."
         return nil
end
end


-- local authorList = p.convertJsonToCommaSeparatedList(jsonResults)
local linkList = p.convertJsonToCommaSeparatedList(jsonResults)
-- mw.log(authorList)  
-- mw.log(linkList)  
    -- return authorList
 
     return ""
local result = [[
<div class="keywords-header">
<span class="keywords-title">Related Items</span>
<div class="keywords-line"></div>
</div>
<div class="keywords-list"> ]] .. linkList .. [[</div>
]]
 
     return result
end
end


-- Return the created html table
-- Return the created html table
return p
return p

Latest revision as of 23:21, 21 February 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
                
                local name = binding.subjectLabel.value
                if string.find(name, "https://") then
                	name = "Unnamed Item"
                end
                
                local link = binding.subject.value
                link = link:gsub("entity/Q", "wiki/Software:")
                
                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 
	{
		values (?item) {(wd:]] .. target1 .. [[)}
		?subject ?predicate ?item .
		?property wikibase:directClaim ?predicate
		service wikibase:label { bd:serviceParam wikibase:language "en" }
	}
]]
    
    -- 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
	
	if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then
        return nil
	end

	local linkList = p.convertJsonToCommaSeparatedList(jsonResults)
	-- mw.log(linkList) 

	local result = [[
<div class="keywords-header">
<span class="keywords-title">Related Items</span>
<div class="keywords-line"></div>
</div>
<div class="keywords-list"> ]] .. linkList .. [[</div>
]]

	
    return result
end

-- Return the created html table
return p