Module:Products: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
(recipes which have the passive tag will have their quantities displayed as per-hour, rather than per-recipe)
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
require('Module:Mw.html extension')
local p = {}
local Array = require('Module:Array')
local currency = require('Module:Currency').parse
local yesno = require('Module:Yesno')
local purge = require('Module:Purge')._purge
local purge = require('Module:Purge')._purge

local p = {}


function p.main(frame)
function p.main(frame)
return p._main(frame:getParent().args)
return p._main(frame:getParent().args)
end

local function recipe_sort(recipe_a, recipe_b)
--if one is nil but not both, put nil levels after known levels
if (recipe_a.level == nil) ~= (recipe_b.level == nil) then
return recipe_b.level == nil
end
-- if both are nil, sort by name
if recipe_a.level == nil then
return recipe_a.output[1].name < recipe_b.output[1].name
end
-- if neither is nil, sort first by level
if recipe_a.level ~= recipe_b.level then
return recipe_a.level < recipe_b.level
end

-- if neither is nil and levels are the same, sort by name
return recipe_a.output[1].name < recipe_b.output[1].name
end
end


function p._main(args)
function p._main(args)
args = args or {}
args = args or {}
args.item = args.item or mw.title.getCurrentTitle().text
local item = args[1] or mw.title.getCurrentTitle().text
local showPrices = yesno(args.showPrices)

local products = p.getProducts(args)
local showValues = yesno(args.showValues)
local limit = tonumber(args.limit or 0) or 0
if products ~= 0 then
if limit <= 0 then
local recipeNames = p.extractRecipeNames(products)
limit = 500
local prodprices = p.getShopBuyPrices(products)
end
-- Generate and return a table containing the product information
local output = p.displayProductTable(prodprices)
-- Query for data
return output
local smw_data = mw.smw.ask{
else
'[[Uses item::' .. item .. ']] OR [[Activity input::' .. item .. ']] OR [[Activity container::' .. item .. ']]',
return ":''No products found. To force an update, click "
'?Recipe JSON',
..purge('dml-'..mw.uri.anchorEncode(args.item), 'here', 'span')
'?Activity JSON',
showValues and '?Value',
limit = limit
}
if not smw_data then
return ":''No products found. To force an update, click "
..purge('dml-'..mw.uri.anchorEncode(item), 'here', 'span')
..".''[[Category:Empty products lists]]"
..".''[[Category:Empty products lists]]"
end
end
end


-- Create a list of all recipes that use this item
function p.extractRecipeNames(products)
local recipeNames = {}
local recipes = {}
for _, product in ipairs(smw_data) do
-- this part will need to be addressed if a page has both a recipe and an activity
local jsons = product['Recipe JSON'] or product['Activity JSON']
if type(jsons) == 'string' then
jsons = { jsons }
end
for _, json in ipairs(jsons) do
local json = mw.text.jsonDecode(json)
json.Value = product.Value
-- Filter out when this item isn't actually used (Will happen on pages with multiple recipes)
if Array.any(json.materials, function(mat)
return mat.name == item
end) then
table.insert(recipes, json)
end
end
end


-- Sort list of recipes by the level of the recipe (cross-profession)
for _, recipeInfo in ipairs(products) do
table.sort(recipes, recipe_sort)
local recipeLink = recipeInfo["Recipe"]
if recipeLink then
local displayName = recipeLink:match("%[%[.-|(.+)%]%]")
if displayName then
table.insert(recipeNames, displayName)
end
end
end
return recipeNames
end


-- if recipe is passive, want per hour
function p.getProducts(args)
for _, recipe in ipairs(recipes) do
local item = mw.smw.ask('[[:+]][[Uses item::' .. args.item .. ']]|?Uses item |?Profession A |?Profession Level A|?Value |mainlabel=Recipe') or 0
recipe.recipePerHour = recipe.duration and math.floor(3600/recipe.duration)
return item
-- replace quantities with per-hour quantities
end
-- if recipe.passive then
for _,item in ipairs(recipe.output) do
item.displayQuantity = (item.quantity and recipe.recipePerHour and item.quantity * recipe.recipePerHour) or ''
end
for _,item in ipairs(recipe.materials) do
item.displayQuantity = (item.quantity and recipe.recipePerHour and item.quantity * recipe.recipePerHour) or ''
end
-- end
end
-- Calculate shop prices
if showPrices then
local price_cache = {}
for _, recipe in ipairs(recipes) do
for _, item in ipairs(recipe.materials) do
-- Extract item name and quantity from the "item,#" format


-- Query for the shop buy price of the item
function p.getShopBuyPrices(products)
local shopPriceResult = price_cache[item.name] or mw.smw.ask{
local mw = require('mw')
'[[Sold item::' .. item.name .. ']]',
'?Shop buy price'
} or {}
price_cache[item.name] = shopPriceResult
local shopPrice


if shopPriceResult[1] then
for _, product in ipairs(products) do
shopPrice = tonumber(shopPriceResult[1]['Shop buy price'] or 0) or 0
local usesItems = product["Uses item"]
end
if type(usesItems) == "table" then

for _, item in ipairs(usesItems) do
-- Update the product with the total price
-- Extract item name from the link
if shopPrice ~= nil then
local itemName = item:match("%[%[.-|(.+)%]%]") or item:match("%[%[(.-)%]%]")
item.price = shopPrice * item.quantity
if itemName then
end
-- Query for the shop buy price of the item
end
local shopPriceQuery = '[[:+]][[Sold item::' .. itemName .. ']]|?Shop buy price|mainlabel=' .. itemName
end
local shopPriceResult = mw.smw.ask(shopPriceQuery) or {}
end
if shopPriceResult[1] and shopPriceResult[1]["Shop buy price"] then

product[itemName .. "_Shop_buy_price"] = shopPriceResult[1]["Shop buy price"]
-- Create table
else
local out = mw.html.create('table')
product[itemName .. "_Shop_buy_price"] = "N/A"
:addClass('wikitable align-right-1 sortable')
end
:tag('tr')
end
:tag('th')
end
:attr{ colspan = '3' }
elseif type(usesItems) == "string" then
:wikitext('Product')
-- Handle single uses item (not a table)
:done()
local itemName = usesItems:match("%[%[.-|(.+)%]%]") or usesItems:match("%[%[(.-)%]%]")
:tag('th'):wikitext('Level'):done()
if itemName then
:IF(showValues)
-- Query for the shop buy price of the item
:tag('th'):wikitext('Value'):done()
local shopPriceQuery = '[[:+]][[Sold item::' .. itemName .. ']]|?Shop buy price|mainlabel=' .. itemName
:END()
local shopPriceResult = mw.smw.ask(shopPriceQuery) or {}
:tag('th'):wikitext('Inputs'):done()
if shopPriceResult[1] and shopPriceResult[1]["Shop buy price"] then
:IF(showPrices)
product[itemName .. "_Shop_buy_price"] = shopPriceResult[1]["Shop buy price"]
:tag('th'):wikitext('Price'):done()
else
:END()
product[itemName .. "_Shop_buy_price"] = "N/A"
:done()
end

end
for _, recipe in ipairs(recipes) do
end
local row = out:tag('tr')
end
:tag('td')
return products
:css{ ['border-right'] = '0', ['padding-right'] = '0' }
end
:attr{ ['data-sort-value'] = recipe.output[1].name }
:IF(recipe.passive)
:wikitext(recipe.output[1].displayQuantity .. ' (/hr) &times;')
:ELSE()
:wikitext(recipe.output[1].quantity .. ' &times;')
:END()
:done()
:tag('td')
:addClass('plinkt-image no-border')
:css{ ['border-left'] = '0', ['padding-left'] = '0' }
:wikitext('[[File:' .. recipe.output[1].name .. '.png|link=' .. recipe.output[1].name .. '|30px]]')
:done()
:tag('td')
:addClass('plinkt-link no-border')
:wikitext('[[' .. recipe.output[1].name .. ']]')
:done()
:tag('td')
:IF(recipe.profession)
:wikitext(('[[File:%s small icon.png|15px|link=%s]] %s'):format(recipe.profession, recipe.profession, recipe.level or 'Unknown'))
:ELSE()
:wikitext(('[[FileUnknown profession small icon.png|15px|link=Professions]] %s'):format(recipe.level or 'Unknown'))
:END()
:done()


if showValues then
function p.displayProductTable(products)
if recipe.Value then
local currency = require('Module:Currency').parse
row:tag('td')
local out = {}
:wikitext(currency(recipe.Value))
table.insert(out, '{| class="wikitable"')
:done()
table.insert(out, '! Recipe !! Level !! Value !! Ingredients !! Price')
else
row:tag('td')
:attr{ ['data-sort-value'] = '' }
:wikitext('Unknown')
:done()
end
end


local ingredients = row:tag('td')
for _, product in ipairs(products) do
:attr{ ['data-sort-value'] = table.concat(Array.map(recipe.materials, function(item) return item.name end), '\0') }
local recipe = product["Recipe"] or "Unknown"
:tag('ul')
local professionName = product["Profession A"]:match("%[%[.-|(.+)%]%]") or product["Profession A"]:match("%[%[(.-)%]%]") or product["Profession A"] or "Unknown"
:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }
local professionLevel = "[[File:" .. professionName .. " small icon.png|x30px]] " .. (product["Profession Level A"] or "Unknown")
local usesItems = product["Uses item"] or {}
local value = currency(product["Value"]) or "Unknown"


for _, item in ipairs(recipe.materials) do
-- Concatenate uses items and their shop buy prices in unordered lists
ingredients:tag('li')
local usesItemStr = "<ul style='list-style:none; margin:0; padding-left:0;'>"
:IF(recipe.passive)
local shopBuyPriceStr = "<ul style='list-style:none; margin:0; padding-left:0; text-align:right;'>"
:wikitext(('%s (/hr) &times; [[File:%s.png|link=%s|18px]] [[%s]]'):format(item.displayQuantity, item.name, item.name, item.name))
:ELSE()
:wikitext(('%s &times; [[File:%s.png|link=%s|18px]] [[%s]]'):format(item.quantity, item.name, item.name, item.name))
:END()
:done()
end


if showPrices then
if type(usesItems) == "table" then
local prices = row:tag('td')
for _, item in ipairs(usesItems) do
:tag('ul')
local itemName = item:match("%[%[.-|(.+)%]%]") or item:match("%[%[(.-)%]%]") or item
:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }
usesItemStr = usesItemStr .. "<li>" .. item .. "</li>"
local shopBuyPrice = product[itemName .. "_Shop_buy_price"] or 0
if shopBuyPrice == "N/A" then shopBuyPrice = 0 end
shopBuyPriceStr = shopBuyPriceStr .. "<li>" .. currency(shopBuyPrice) .. "</li>"
end
elseif type(usesItems) == "string" then
usesItemStr = usesItemStr .. "<li>" .. usesItems .. "</li>"
local itemName = usesItems:match("%[%[.-|(.+)%]%]") or usesItems:match("%[%[(.-)%]%]") or usesItems
local shopBuyPrice = product[itemName .. "_Shop_buy_price"] or 0
if shopBuyPrice == "N/A" then shopBuyPrice = 0 end
shopBuyPriceStr = shopBuyPriceStr .. "<li>" .. currency(shopBuyPrice) .. "</li>"
end


for _, item in ipairs(recipe.materials) do
usesItemStr = usesItemStr .. "</ul>"
if item.price then
shopBuyPriceStr = shopBuyPriceStr .. "</ul>"
prices:tag('li'):wikitext(currency(item.price)):done()
else
prices:tag('li'):wikitext('Unknown'):done()
end
end
end


end
table.insert(out, '|-')
table.insert(out, '| ' .. recipe .. ' || ' .. professionLevel .. ' || ' .. value .. ' || ' .. usesItemStr .. ' || ' .. shopBuyPriceStr)
end


return out
table.insert(out, '|}')
return table.concat(out, '\n')
end
end



Latest revision as of 19:16, 28 December 2024

Module documentation
This documentation is transcluded from Module:Products/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Products/doc. [edit]
Module:Products's function main is invoked by Template:Products.
Module:Products requires Module:Array.
Module:Products requires Module:Currency.
Module:Products requires Module:Mw.html extension.
Module:Products requires Module:Purge.
Module:Products requires Module:Yesno.

require('Module:Mw.html extension')
local Array = require('Module:Array')
local currency = require('Module:Currency').parse
local yesno = require('Module:Yesno')
local purge = require('Module:Purge')._purge

local p = {}

function p.main(frame)
	return p._main(frame:getParent().args)
end

local function recipe_sort(recipe_a, recipe_b)
	--if one is nil but not both, put nil levels after known levels
	if (recipe_a.level == nil) ~= (recipe_b.level == nil) then
		return recipe_b.level == nil
	end
	
	-- if both are nil, sort by name
	if recipe_a.level == nil then
		return recipe_a.output[1].name < recipe_b.output[1].name
	end
	
	-- if neither is nil, sort first by level
	if recipe_a.level ~= recipe_b.level then
		return recipe_a.level < recipe_b.level
	end

	-- if neither is nil and levels are the same, sort by name
	return recipe_a.output[1].name < recipe_b.output[1].name
end

function p._main(args)
	args = args or {}
	local item = args[1] or mw.title.getCurrentTitle().text
	local showPrices = yesno(args.showPrices)
	local showValues = yesno(args.showValues)
	local limit = tonumber(args.limit or 0) or 0
	if limit <= 0 then
		limit = 500
	end
	
	-- Query for data
	local smw_data = mw.smw.ask{
		'[[Uses item::' .. item .. ']] OR [[Activity input::' .. item .. ']] OR [[Activity container::' .. item .. ']]',
		'?Recipe JSON',
		'?Activity JSON',
		showValues and '?Value',
		limit = limit
	}
	if not smw_data then
		return ":''No products found. To force an update, click "
				..purge('dml-'..mw.uri.anchorEncode(item), 'here', 'span')
				..".''[[Category:Empty products lists]]"
	end

	-- Create a list of all recipes that use this item
	local recipes = {}
	for _, product in ipairs(smw_data) do
		-- this part will need to be addressed if a page has both a recipe and an activity
		local jsons = product['Recipe JSON'] or product['Activity JSON'] 
		if type(jsons) == 'string' then
			jsons = { jsons }
		end
		for _, json in ipairs(jsons) do
			local json = mw.text.jsonDecode(json)
			json.Value = product.Value
			-- Filter out when this item isn't actually used (Will happen on pages with multiple recipes)
			if Array.any(json.materials, function(mat)
				return mat.name == item
			end) then
				table.insert(recipes, json)
			end
		end
	end

	-- Sort list of recipes by the level of the recipe (cross-profession)
	table.sort(recipes, recipe_sort)

	-- if recipe is passive, want per hour
	for _, recipe in ipairs(recipes) do
		recipe.recipePerHour = recipe.duration and math.floor(3600/recipe.duration)
		-- replace quantities with per-hour quantities
--		if recipe.passive then
			for _,item in ipairs(recipe.output) do
				item.displayQuantity = (item.quantity and recipe.recipePerHour and item.quantity * recipe.recipePerHour) or ''
			end
			for _,item in ipairs(recipe.materials) do
				item.displayQuantity = (item.quantity and recipe.recipePerHour and item.quantity * recipe.recipePerHour) or ''
			end
--		end
	end
	
	-- Calculate shop prices
	if showPrices then
		local price_cache = {}
		for _, recipe in ipairs(recipes) do
			for _, item in ipairs(recipe.materials) do
				-- Extract item name and quantity from the "item,#" format

				-- Query for the shop buy price of the item
				local shopPriceResult = price_cache[item.name] or mw.smw.ask{
					'[[Sold item::' .. item.name .. ']]',
					'?Shop buy price'
				} or {}
				price_cache[item.name] = shopPriceResult
				local shopPrice

				if shopPriceResult[1] then
					shopPrice = tonumber(shopPriceResult[1]['Shop buy price'] or 0) or 0
				end

				-- Update the product with the total price
				if shopPrice ~= nil then
					item.price = shopPrice * item.quantity
				end
			end
		end
	end

	-- Create table
	local out = mw.html.create('table')
		:addClass('wikitable align-right-1 sortable')
		:tag('tr')
			:tag('th')
				:attr{ colspan = '3' }
				:wikitext('Product')
			:done()
			:tag('th'):wikitext('Level'):done()
			:IF(showValues)
				:tag('th'):wikitext('Value'):done()
			:END()
			:tag('th'):wikitext('Inputs'):done()
			:IF(showPrices)
				:tag('th'):wikitext('Price'):done()
			:END()
		:done()

	for _, recipe in ipairs(recipes) do
		local row = out:tag('tr')
			:tag('td')
				:css{ ['border-right'] = '0', ['padding-right'] = '0' }
				:attr{ ['data-sort-value'] = recipe.output[1].name }
				:IF(recipe.passive)
					:wikitext(recipe.output[1].displayQuantity .. ' (/hr) &times;')
				:ELSE()
					:wikitext(recipe.output[1].quantity .. ' &times;')
				:END()
			:done()
			:tag('td')
				:addClass('plinkt-image no-border')
				:css{ ['border-left'] = '0', ['padding-left'] = '0' }
				:wikitext('[[File:' .. recipe.output[1].name .. '.png|link=' .. recipe.output[1].name .. '|30px]]')
			:done()
			:tag('td')
				:addClass('plinkt-link no-border')
				:wikitext('[[' .. recipe.output[1].name .. ']]')
			:done()
			:tag('td')
				:IF(recipe.profession)
					:wikitext(('[[File:%s small icon.png|15px|link=%s]] %s'):format(recipe.profession, recipe.profession, recipe.level or 'Unknown'))
				:ELSE()
					:wikitext(('[[FileUnknown profession small icon.png|15px|link=Professions]] %s'):format(recipe.level or 'Unknown'))
				:END()
			:done()

		if showValues then
			if recipe.Value then
				row:tag('td')
					:wikitext(currency(recipe.Value))
				:done()
			else
				row:tag('td')
					:attr{ ['data-sort-value'] = '' }
					:wikitext('Unknown')
				:done()
			end
		end

		local ingredients = row:tag('td')
			:attr{ ['data-sort-value'] = table.concat(Array.map(recipe.materials, function(item) return item.name end), '\0') }
			:tag('ul')
				:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }

		for _, item in ipairs(recipe.materials) do
			ingredients:tag('li')
				:IF(recipe.passive)
					:wikitext(('%s (/hr) &times; [[File:%s.png|link=%s|18px]] [[%s]]'):format(item.displayQuantity, item.name, item.name, item.name))
				:ELSE()
					:wikitext(('%s &times; [[File:%s.png|link=%s|18px]] [[%s]]'):format(item.quantity, item.name, item.name, item.name))
				:END()
			:done()
		end

		if showPrices then
			local prices = row:tag('td')
				:tag('ul')
					:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }

			for _, item in ipairs(recipe.materials) do
				if item.price then
					prices:tag('li'):wikitext(currency(item.price)):done()
				else
					prices:tag('li'):wikitext('Unknown'):done()
				end
			end
		end

	end

	return out
end

return p