Module:BacklinksList: Difference between revisions

From MaRDI portal
No edit summary
the item link is now set depending on the itemType
 
(11 intermediate revisions by 2 users not shown)
Line 22: Line 22:
                 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/Person:")
                 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" }
}
}
Line 75: Line 105:


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 linkList = p.convertJsonToCommaSeparatedList(jsonResults)
local linkList = p.convertJsonToCommaSeparatedList(jsonResults)
mw.log(authorList)  
-- mw.log(linkList)  
     return 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
end


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

Latest revision as of 20:49, 10 September 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" }
	}
]]
    
    -- 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