Module:File link: Difference between revisions

allow specifying height and width values as strings ending in px
m (Protected Module:File link: High-risk Lua module ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite)))
(allow specifying height and width values as strings ending in px)
Line 5:
 
local fileLink = {}
 
local function checkTypeStringOrNum(funcName, pos, arg)
local argType = type(arg)
if argType ~= 'nil' and argType ~= 'string' and argType ~= 'number' then
error(string.format(
"bad argument #%d to '%s' (string or number expected, got %s)",
pos,
funcName,
argType
), 3)
end
end
 
function fileLink.new(filename)
Line 52 ⟶ 64:
end
 
local function sizeErrorvalidateSize(methodNamemethod, px)
-- UsedValidate input for formatting duplication errors in size-related methodsfunctions. The px type is checked
-- using checkTypeStringOrNum, so will be a string, a number, or nil.
error(string.format(
if px and data.isUpright then
"duplicate size argument detected in '%s'"
error(string.format(
.. " ('upright' cannot be used in conjunction with height or width)",
"duplicate size argument detected in '%s' ('upright' cannot be"
methodName
.. " ('upright' cannot be used in conjunction with height or width)"',
), 3)
method
), 3)
end
if type(px) == 'string' then
local origPx = px
px = px:match('^(%d+)px$') or px
px = tonumber(px)
if not px then
error(string.format(
"invalid string '%s' passed to '%s'",
origPx,
method
), 3)
end
end
-- px is now a number or nil.
if px and px < 1 or math.floor(px) ~= px then
error(string.format(
"invalid image size specified in '%s' (size must be a positive"
.. 'integer)',
method
), 3)
end
return px
end
function data:width(px)
checkSelf(self, 'width')
checkTypecheckTypeStringOrNum('fileLink:width', 1, px, 'number', true)
sizeErrorpx = validateSize('fileLink:width', px)
if px and data.isUpright then
sizeError('fileLink:width')
end
data.theWidth = px
return self
Line 73 ⟶ 107:
function data:height(px)
checkSelf(self, 'height')
checkTypecheckTypeStringOrNum('fileLink:height', 1, px, 'number', true)
sizeErrorpx = validateSize('fileLink:height', px)
if px and data.isUpright then
sizeError('fileLink:height')
end
data.theHeight = px
return self
Line 185 ⟶ 217:
data.theLang = s
return self
end
 
local function checkTypeStringOrNum(funcName, pos, arg)
local argType = type(arg)
if argType ~= 'nil' and argType ~= 'string' and argType ~= 'number' then
error(string.format(
"bad argument #%d to '%s' (string or number expected, got %s)",
pos,
funcName,
argType
), 3)
end
end