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
Line 20: Line 20:
     -- 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 )

Revision as of 20:08, 20 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 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 "Could not fetch data."
	end
	
	if helper.countElementsInBindings(jsonResults.results.bindings) == 0 then
        return "No records found."
	end

	-- local authorList = p.convertJsonToCommaSeparatedList(jsonResults)
	-- mw.log(authorList) 
    -- return authorList
    return ""
end

-- Return the created html table
return p