Module:RootFinder: Difference between revisions

From The Seven Sages of Rome
No edit summary
No edit summary
 
(45 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


-- Function to recursively find the root language
function p.search(frame)
function p.findRootLanguage(frame, languageName)
local startTitle = frame.args[1]
    local rootLanguage = languageName
     if not startTitle or startTitle == "" then
     local varietyProperty = "Is Variety Of"
        return "Error: No start title provided"
    end
      
      
     -- Keep querying for the parent language until no parent is found
local prop = frame.args[2]
if not prop or prop == "" then
        return "Error: No property name provided"
     end
 
    local title = startTitle
 
     while true do
     while true do
         local askQuery = string.format('{{#ask: [[%s]][[%s::+]] |?%s |limit=1 |format=list}}',  
         local queryString = string.format('[[%s]]|?%s', title, prop)
            rootLanguage, varietyProperty, varietyProperty)
         local queryResult = mw.smw.getQueryResult(queryString)
       
 
         local parentLanguage = frame:preprocess(askQuery)
         -- Ensure queryResult is valid and extract the first parent
        parentLanguage = parentLanguage:match("^%s*(.-)%s*$")
        local parent = nil
       
         if queryResult and type(queryResult) == "table" then
         -- If no parent language is found, we've reached the root
        for k,v in pairs( queryResult.results ) do
         if parentLanguage == "" then
        if v.printouts then
            break
            if v.printouts[prop] and  #v.printouts[prop] > 0 and v.printouts[prop][1].fulltext then
              parent = v.printouts[prop][1].fulltext
            end
            end
        end
         end
         end
       
 
         -- Update the root language to the parent
         -- If no parent is found, return the current title as root
         rootLanguage = parentLanguage
        if not parent or parent == "" then
            return title
        end
 
        -- Move up to the parent language
         title = parent
     end
     end
   
    return rootLanguage
end
-- Main function to generate the language tree
function p.languageTree(frame)
    local languageName = frame.args[1]
   
    -- Find the root language
    local rootLanguage = p.findRootLanguage(frame, languageName)
   
    -- Construct the tree query
    local treeQuery = string.format('[[Category:Language]] |format=tree |parent=Is Variety Of |limit=5000 |root=%s',
        rootLanguage)
   
    -- Return the tree using preprocessing
    return frame:preprocess('{{#ask:' .. treeQuery .. '}}')
end
end


return p
return p

Latest revision as of 13:43, 26 March 2025

Documentation for this module may be created at Module:RootFinder/doc

local p = {}

function p.search(frame)
	local startTitle = frame.args[1]
    if not startTitle or startTitle == "" then
        return "Error: No start title provided"
    end
    
	local prop = frame.args[2]
	if not prop or prop == "" then
        return "Error: No property name provided"
    end

    local title = startTitle

    while true do
        local queryString = string.format('[[%s]]|?%s', title, prop)
        local queryResult = mw.smw.getQueryResult(queryString)

        -- Ensure queryResult is valid and extract the first parent
        local parent = nil
        if queryResult and type(queryResult) == "table" then
        	for k,v in pairs( queryResult.results ) do
        		if v.printouts then
	            	if v.printouts[prop] and  #v.printouts[prop] > 0 and v.printouts[prop][1].fulltext then
	            	  parent = v.printouts[prop][1].fulltext
	            	end
            	end
        	end
        end

        -- If no parent is found, return the current title as root
        if not parent or parent == "" then
            return title
        end

        -- Move up to the parent language
        title = parent
    end
end

return p