Conan Exiles Wiki
([ST] + updateCache function, also refactor out h.getKey())
([ST] omg str)
Line 38: Line 38:
 
local args = util_args.merge()
 
local args = util_args.merge()
 
local str = args[1]
 
local str = args[1]
  +
if not str then return end
h.getFromCargo(inpLemma, key)
+
h.getFromCargo(str, key)
 
local key = h.getKey(str)
 
local key = h.getKey(str)
 
end
 
end

Revision as of 14:16, 12 October 2020

local util_args = require("Module:ArgsUtil")
local util_cache = require("Module:CacheUtil")
local util_vars = require("Module:VarsUtil")
local cache = require('mw.ext.LuaCache')
local PREFIX = 'ITEMLINK_04'
local lang = mw.getLanguage('en')

local p = {}
local h = {}
local cargo = mw.ext.cargo

function p.Main(frame)
	local args = util_args.merge()
	local text = ""
	local inpLemma = args[1]
	local inpText  = args[2]
	local key = h.getKey(inpLemma)
	local result
	if util_args.castAsBool(args.force) then
		result = h.getFromCargo(inpLemma, key)
	else
		result = h.getFromVariablesOrCache(inpLemma, key)
	end
	if not result then
		return '[[' .. h.switchString(inpLemma, inpText) .. ']]'
	end
	
	if result['dlcPackage'] ~= "" then
		text = '<span style="position: relative; display: inline-block;"><span style="display: block;">[[File:' .. result['image'] .. '|32px|link=' .. result['_pageName'] .. '|frameless]]</span><span style="position: absolute; display: block; top: 0; bottom: 0; left: 0; right: 0;">[[File:T DLC icon.png|32px|link=' .. result['_pageName'] .. ']]</span></span>'
	else
		text = '[[File:' .. result['image'] .. '|32px|link=' .. result['_pageName'] .. '|frameless]]'
	end
	text = text .. '&nbsp;[['.. result['_pageName'] .. '|' .. h.switchString(result['_pageName'], inpText) ..']]'
	return text
end

function p.updateCache(frame)
	local args = util_args.merge()
	local str = args[1]
	if not str then return end
	h.getFromCargo(str, key)
	local key = h.getKey(str)
end

-- the following code extracts the result from either:
-- (a) a LuaVariables result stored earlier on the page; or
-- (b) a LuaCache object of the lowercase name; or finally
-- (c) an actual Cargo query to retrieve the information from the page
-- we avoid doing a Cargo query at all costs because Cargo queries are extremely expensive

-- this was not premature optimization; the wiki was actually experiencing errors
-- prior to this optimization being added
-- this code was adapted from Module:Team on Leaguepedia
-- contact River for questions

function h.getKey(str)
	return PREFIX .. lang:lc(str)
end

function h.getFromVariablesOrCache(str, key)
	return util_vars.getObject(key) or h.getFromCacheOrCargo(str, key)
end

function h.getFromCacheOrCargo(str, key)
	local result = cache.get(key) or h.getFromCargo(str, key)
	if result.exists == nil then
		result.exists = true
	end
	util_vars.setObject(key, result)
	return result
end

function h.getFromCargo(str, key)
	local tables = 'Item'
	local fields = '_pageName,image,dlcPackage'
	local args = {
		where = 'uniqueName = "' .. str .. '" AND _pageName=uniqueName',
		groupBy = '_pageName',
		limit = 1
	}
	local result = cargo.query( tables, fields, args )[1]
	cache.set(key, result)
	return result
end

function h.switchString(str1, str2)
	local ret = ""
	if str2 == nil then
		ret = str1
	else
		if str2 == '' then
			ret = str1
		else 
			ret = str2
		end
	end
	return ret
end

return p