Increase query limit and suppress "further results" link for consistency (via update-page on MediaWiki MCP Server)
Implement pagination for consistency and future-proofing (via update-page on MediaWiki MCP Server)
Line 2: Line 2:
-- Dynamically generates a list of AV device brand buttons by querying
-- Dynamically generates a list of AV device brand buttons by querying
-- all unique brands from the AV devices category.
-- all unique brands from the AV devices category.
-- Uses pagination to work around server-side SMW query limits.


local p = {}
local p = {}
Line 11: Line 12:
if s == '' then return nil end
if s == '' then return nil end
return s
return s
end
local function extractBrandsFromResult(queryResult, brandsSet, brandsList)
if not queryResult then return end
for cellContent in queryResult:gmatch('<td[^>]*>(.-)</td>') do
local brand = trim(cellContent:gsub('<[^>]+>', ''))
if brand and brand ~= '' and not brandsSet[brand] then
brandsSet[brand] = true
table.insert(brandsList, brand)
end
end
end
end


function p.list(frame)
function p.list(frame)
-- Query all AV devices and get their brands
-- Use high limit and searchlabel= to suppress "further results"
local queryWikitext =
'{{#ask:\n' ..
' [[Category:AV devices]]\n' ..
' |?Has brand\n' ..
' |format=broadtable\n' ..
' |headers=hide\n' ..
' |link=none\n' ..
' |mainlabel=-\n' ..
' |limit=5000\n' ..
' |searchlabel=\n' ..
'}}'
local queryResult = frame:preprocess(queryWikitext)
-- Extract unique brands from the result
local brandsSet = {}
local brandsSet = {}
local brandsList = {}
local brandsList = {}
if queryResult then
-- Query in batches to work around server-side limits
for cellContent in queryResult:gmatch('<td[^>]*>(.-)</td>') do
local batchSize = 500
local brand = trim(cellContent:gsub('<[^>]+>', ''))
local maxBatches = 20  -- Safety limit
if brand and brand ~= '' and not brandsSet[brand] then
brandsSet[brand] = true
for batch = 0, maxBatches - 1 do
table.insert(brandsList, brand)
local offset = batch * batchSize
local queryWikitext =
'{{#ask:\n' ..
' [[Category:AV devices]]\n' ..
' |?Has brand\n' ..
' |format=broadtable\n' ..
' |headers=hide\n' ..
' |link=none\n' ..
' |mainlabel=-\n' ..
' |limit=' .. batchSize .. '\n' ..
' |offset=' .. offset .. '\n' ..
' |searchlabel=\n' ..
'}}'
local queryResult = frame:preprocess(queryWikitext)
extractBrandsFromResult(queryResult, brandsSet, brandsList)
-- Count cells to check if we got a full batch
local cellCount = 0
if queryResult then
for _ in queryResult:gmatch('<td[^>]*>') do
cellCount = cellCount + 1
end
end
end
-- If we got fewer results than batch size, we're done
if cellCount < batchSize then
break
end
end
end
end

Revision as of 21:28, 4 February 2026

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

-- Module:AVBrandList
-- Dynamically generates a list of AV device brand buttons by querying
-- all unique brands from the AV devices category.
-- Uses pagination to work around server-side SMW query limits.

local p = {}

local function trim(s)
	if s == nil then return nil end
	s = tostring(s)
	s = s:gsub('^%s+', ''):gsub('%s+$', '')
	if s == '' then return nil end
	return s
end

local function extractBrandsFromResult(queryResult, brandsSet, brandsList)
	if not queryResult then return end
	
	for cellContent in queryResult:gmatch('<td[^>]*>(.-)</td>') do
		local brand = trim(cellContent:gsub('<[^>]+>', ''))
		if brand and brand ~= '' and not brandsSet[brand] then
			brandsSet[brand] = true
			table.insert(brandsList, brand)
		end
	end
end

function p.list(frame)
	local brandsSet = {}
	local brandsList = {}
	
	-- Query in batches to work around server-side limits
	local batchSize = 500
	local maxBatches = 20  -- Safety limit
	
	for batch = 0, maxBatches - 1 do
		local offset = batch * batchSize
		
		local queryWikitext =
			'{{#ask:\n' ..
			' [[Category:AV devices]]\n' ..
			' |?Has brand\n' ..
			' |format=broadtable\n' ..
			' |headers=hide\n' ..
			' |link=none\n' ..
			' |mainlabel=-\n' ..
			' |limit=' .. batchSize .. '\n' ..
			' |offset=' .. offset .. '\n' ..
			' |searchlabel=\n' ..
			'}}'
		
		local queryResult = frame:preprocess(queryWikitext)
		
		extractBrandsFromResult(queryResult, brandsSet, brandsList)
		
		-- Count cells to check if we got a full batch
		local cellCount = 0
		if queryResult then
			for _ in queryResult:gmatch('<td[^>]*>') do
				cellCount = cellCount + 1
			end
		end
		
		-- If we got fewer results than batch size, we're done
		if cellCount < batchSize then
			break
		end
	end
	
	-- Sort alphabetically
	table.sort(brandsList)
	
	if #brandsList == 0 then
		return '<p><em>No AV device brands found.</em></p>'
	end
	
	-- Build the output: render each brand using Template:AV brand entry
	local output = {}
	for _, brand in ipairs(brandsList) do
		local templateCall = '{{AV brand entry|brand=' .. brand .. '}}'
		table.insert(output, frame:preprocess(templateCall))
	end
	
	return table.concat(output, '\n')
end

return p
MediaWiki Appliance - Powered by TurnKey Linux