Module:ServicesList: 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 convert JSON results into a comma-separated string function p.convertJsonToHTMLListEntries(jsonResults) local resultsString = "" if jsonResults and jsonResults.results and jsonResu..."
 
No edit summary
 
(69 intermediate revisions by the same user not shown)
Line 9: Line 9:
local p = {}
local p = {}


-- Function to convert JSON results into a comma-separated string
function p.convertJsonToHTMLCards(jsonResults)
function p.convertJsonToHTMLListEntries(jsonResults)
    local resultsHTML = ""
local resultsString = ""
   
    if jsonResults and jsonResults.results and jsonResults.results.bindings then
if jsonResults and jsonResults.results and jsonResults.results.bindings then
         local bindings = jsonResults.results.bindings
         local bindings = jsonResults.results.bindings
         for i = 0, #bindings do
         for i = 0, #bindings do
             local binding = bindings[i]
             local binding = bindings[i]
             if binding.valueLabel and binding.valueLabel.value then
              
                if resultsString ~= "" then
            -- Extract fields from the bindings
                    resultsString = resultsString .. ""
            local name = binding.name and binding.name.value or "Unnamed Service"
                end
            local category = binding.category and binding.category.value or "No Category"
               
            local maintainer = binding.maintainer and binding.maintainer.value or "Unknown maintainer"
                local name = binding.valueLabel.value
            local maintainer_url = binding.maintainer_url and binding.maintainer_url.value or " "
                if string.find(name, "https://") then
            local description = binding.description and binding.description.value or "No description available."
                name = "Unnamed Algorithm"
            local status = binding.status and binding.status.value or "No status available."
                end
            local link = binding.item and binding.item.value:gsub("entity/Q", "wiki/Service:") or "#"
               
            local imageName = binding.icon and binding.icon.value or "Persona emma.jpg" -- Default placeholder image
                local link = binding.value.value
            -- Extract only the "File:..." portion from the URL
                link = link:gsub("entity/Q", "wiki/Algorithm:")
imageName = imageName:match("File:.*") or imageName
               
            local image = "[[" .. imageName .. "|200px|left|link=]]"
                local nameAndLink = "<li>[" .. link .. " " .. name .. "]</li>"


                resultsString = resultsString .. nameAndLink
            -- Build individual card HTML
             end
            resultsHTML = resultsHTML .. string.format([[
                <table style="border: 0; width: 100%%; margin: 10px 0;">
                    <tr>
                        <!-- Left column for the image -->
                        <td style="width: 200px; vertical-align: top; padding-right: 10px;">
                            %s
                        </td>
                        <!-- Right column for the text -->
                        <td style="vertical-align: top;">
                            <h3 style="font-weight: bold; margin: 0;">[%s %s]</h3>
                            <div style="font-weight: bold; margin: 2px 0 0 0;">%s (%s)</div>
                            <p style="margin: 10px 0;">%s</p>
                            <div style="font-size: 12px; color: #888;">Maintained by: [%s %s]</div>
                        </td>
                    </tr>
                </table>
             ]], image, link, name, category, status, description, maintainer_url, maintainer)
         end
         end
     end
     end


     return "<ul> " .. resultsString .. " </ul>"
     return resultsHTML
end
end


-- Function to build the list
-- Function to build the list
Line 49: Line 62:
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>


SELECT ?item ?description
SELECT ?item ?name ?maintainer ?maintainer_url ?icon ?category ?description ?status
WHERE {  
WHERE {  
   ?item wdt:P1460 wd:Q6503324 .
   ?item wdt:P1460 wd:Q6503324 .
   ?item wdt:P1459 ?description  
   ?item rdfs:label ?name .
  OPTIONAL { ?item wdt:P19 ?maintainer_url .
            ?maintainer_url rdfs:label ?maintainer . }
  OPTIONAL { ?item wdt:P1641 ?category_url .
            ?category_url rdfs:label ?category . }
  OPTIONAL { ?item wdt:P1640 ?icon . }
  OPTIONAL { ?item wdt:P1459 ?description . }
  OPTIONAL { ?item wdt:P230 ?status_url .
            ?status_url rdfs:label ?status .
  FILTER(LANG(?status) = "en") }
}
}
     ]]
     ]]
Line 77: Line 99:
end
end


local servicesList = p.convertJsonToHTMLListEntries(jsonResults)
local serviceList = p.convertJsonToHTMLCards(jsonResults)
-- mw.log(describedByList)  
     return servicesList
     return serviceList
end
end


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

Latest revision as of 00:16, 21 November 2024

Documentation for this module may be created at Module:ServicesList/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 p.convertJsonToHTMLCards(jsonResults)
    local resultsHTML = ""
    
    if jsonResults and jsonResults.results and jsonResults.results.bindings then
        local bindings = jsonResults.results.bindings
        for i = 0, #bindings do
            local binding = bindings[i]
            
            -- Extract fields from the bindings
            local name = binding.name and binding.name.value or "Unnamed Service"
            local category = binding.category and binding.category.value or "No Category"
            local maintainer = binding.maintainer and binding.maintainer.value or "Unknown maintainer"
            local maintainer_url = binding.maintainer_url and binding.maintainer_url.value or " "
            local description = binding.description and binding.description.value or "No description available."
            local status = binding.status and binding.status.value or "No status available."
            local link = binding.item and binding.item.value:gsub("entity/Q", "wiki/Service:") or "#"
            local imageName = binding.icon and binding.icon.value or "Persona emma.jpg" -- Default placeholder image
            -- Extract only the "File:..." portion from the URL
			imageName = imageName:match("File:.*") or imageName
            local image = "[[" .. imageName .. "|200px|left|link=]]"

            -- Build individual card HTML
            resultsHTML = resultsHTML .. string.format([[
                <table style="border: 0; width: 100%%; margin: 10px 0;">
                    <tr>
                        <!-- Left column for the image -->
                        <td style="width: 200px; vertical-align: top; padding-right: 10px;">
                            %s
                        </td>
                        <!-- Right column for the text -->
                        <td style="vertical-align: top;">
                            <h3 style="font-weight: bold; margin: 0;">[%s %s]</h3>
                            <div style="font-weight: bold; margin: 2px 0 0 0;">%s (%s)</div>
                            <p style="margin: 10px 0;">%s</p>
                            <div style="font-size: 12px; color: #888;">Maintained by: [%s %s]</div>
                        </td>
                    </tr>
                </table>
            ]], image, link, name, category, status, description, maintainer_url, maintainer)
        end
    end

    return resultsHTML
end

-- Function to build the list
function p.buildServiceList(frame)
	
    -- Constructing the SPARQL query with dynamic entity target1
    local sparqlQuery = [[
PREFIX wdt: <https://portal.mardi4nfdi.de/prop/direct/>
PREFIX wd: <https://portal.mardi4nfdi.de/entity/>

SELECT ?item ?name ?maintainer ?maintainer_url ?icon ?category ?description ?status
WHERE { 
  ?item wdt:P1460 wd:Q6503324 .
  ?item rdfs:label ?name .
  OPTIONAL { ?item wdt:P19 ?maintainer_url .
             ?maintainer_url rdfs:label ?maintainer . }
  OPTIONAL { ?item wdt:P1641 ?category_url .
             ?category_url rdfs:label ?category . }
  OPTIONAL { ?item wdt:P1640 ?icon . }
  OPTIONAL { ?item wdt:P1459 ?description . }
  OPTIONAL { ?item wdt:P230 ?status_url .
             ?status_url rdfs:label ?status . 
  			 FILTER(LANG(?status) = "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 serviceList = p.convertJsonToHTMLCards(jsonResults)
	
    return serviceList
end

-- Return the created html table
return p