Difference between revisions of "Module:Person height"
Jump to navigation
Jump to search
imported>Frietjes |
imported>Frietjes (merge some code (could be buggy)) |
||
Line 21: | Line 21: | ||
end | end | ||
− | function convert( | + | function convert(s, prefer, enforce) |
− | + | local prefer_m = (prefer or '') == 'm' | |
− | local prefer_m = ( | + | local force_m = (enforce or '') == 'm' |
− | local force_m = ( | + | local prefer_cm = (prefer or '') == 'cm' |
− | local prefer_cm = ( | + | local force_cm = (enforce or '') == 'cm' |
− | local force_cm = ( | + | |
+ | s = clean(s or '') -- basic unit cleaning | ||
local cleaned = mw.ustring.gsub(s, '&[Nn][Bb][Ss][Pp];', ' ') | local cleaned = mw.ustring.gsub(s, '&[Nn][Bb][Ss][Pp];', ' ') | ||
Line 36: | Line 37: | ||
if m == nil and f == nil and i == nil then | if m == nil and f == nil and i == nil then | ||
− | return s | + | return '', s |
end | end | ||
if c ~= nil and f == nil and i == nil then | if c ~= nil and f == nil and i == nil then | ||
local n = tonumber(mw.ustring.sub(cleaned, 1, c - 1)) | local n = tonumber(mw.ustring.sub(cleaned, 1, c - 1)) | ||
− | if n == nil then | + | if n == nil then return '', s end |
− | + | return force_m | |
− | + | and {n/100,'m','ftin',0,['abbr']='on'} | |
− | + | or {n,'cm','ftin',0,['abbr']='on'}, mw.ustring.sub(cleaned, c+2) | |
− | |||
− | |||
− | |||
end | end | ||
if m ~= nil and c == nil and f == nil and i == nil then | if m ~= nil and c == nil and f == nil and i == nil then | ||
local n = tonumber(mw.ustring.sub(cleaned, 1, m - 1)) | local n = tonumber(mw.ustring.sub(cleaned, 1, m - 1)) | ||
− | if n == nil then | + | if n == nil then return '', s end |
− | + | return force_cm | |
− | + | and {n*100,'cm','ftin',0,['abbr']='on'} | |
− | + | or {n,'m','ftin',0,['abbr']='on'}, mw.ustring.sub(cleaned, m+1) | |
− | |||
− | |||
− | |||
end | end | ||
Line 64: | Line 59: | ||
local n1 = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) | local n1 = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) | ||
local n2 = tonumber(mw.ustring.sub(cleaned, f+2, i - 1)) | local n2 = tonumber(mw.ustring.sub(cleaned, f+2, i - 1)) | ||
− | if n1 == nil or n2 == nil then | + | if n1 == nil or n2 == nil then return '', s end |
− | + | return (force_m or prefer_m) | |
− | + | and {n1,'ft',n2,'in', 'm',2,['abbr']='on'} | |
− | + | or {n1,'ft',n2,'in', 'cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, i+2) | |
− | |||
− | |||
− | |||
end | end | ||
if f ~= nil and i == nil and m == nil then | if f ~= nil and i == nil and m == nil then | ||
local n = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) | local n = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) | ||
− | if n == nil then | + | if n == nil then return '', s end |
− | + | return (force_m or prefer_m) | |
− | + | and {n,'ft','m',2,['abbr']='on'} | |
− | + | or {n,'ft','cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, f+2) | |
− | |||
− | |||
− | |||
end | end | ||
if i ~= nil and f == nil and m == nil then | if i ~= nil and f == nil and m == nil then | ||
local n = tonumber(mw.ustring.sub(cleaned, 1, i - 1)) | local n = tonumber(mw.ustring.sub(cleaned, 1, i - 1)) | ||
− | if n == nil then | + | if n == nil then return '', s end |
− | + | return (force_m or prefer_m) | |
− | + | and {n,'in','m',2,['abbr']='on'} | |
− | + | or {n,'in','cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, i+2) | |
− | |||
− | |||
− | |||
end | end | ||
− | return s | + | return '', s |
end | end | ||
function p.main(frame) | function p.main(frame) | ||
− | + | local args = frame.args[1] and frame.args or frame:getParent().args | |
+ | local targs, str = convert(args[1], args['prefer'] or '', args['enforce'] or '') | ||
+ | |||
+ | if type(targs) == 'table' then | ||
+ | return frame:expandTemplate{ title = 'convert', args = targs} .. str | ||
+ | else | ||
+ | return str | ||
+ | end | ||
end | end | ||
return p | return p |
Revision as of 20:17, 25 September 2019
Documentation for this module may be created at Module:Person height/doc
-- This module will implement [[Template:Infobox person/height]] local p = {} local function clean(s) s = mw.ustring.gsub(s, '([^a])meter', '%1m') -- prevents "parameter" from being changed to "param" s = mw.ustring.gsub(s, 'metre', 'm') s = mw.ustring.gsub(s, 'centi', 'c') s = mw.ustring.gsub(s, 'feet', 'ft') s = mw.ustring.gsub(s, 'foot', 'ft') s = mw.ustring.gsub(s, 'inches', 'in') s = mw.ustring.gsub(s, 'inch', 'in') s = mw.ustring.gsub(s, 'ms', 'm') s = mw.ustring.gsub(s, 'ins', 'in') s = mw.ustring.gsub(s, '%[%[[Ii]n|in%]%]', '[[inch|in]]') s = mw.ustring.gsub(s, '%[%[[Cc]entim|cm%]%]', '[[Centimetre|cm]]') s = mw.ustring.gsub(s, '%[%[[Mm]%]%]s', '[[Metre|m]]') s = mw.ustring.gsub(s, '%[%[[Cc]m%]%]s', '[[Centimetre|cm]]') return s end function convert(s, prefer, enforce) local prefer_m = (prefer or '') == 'm' local force_m = (enforce or '') == 'm' local prefer_cm = (prefer or '') == 'cm' local force_cm = (enforce or '') == 'cm' s = clean(s or '') -- basic unit cleaning local cleaned = mw.ustring.gsub(s, '&[Nn][Bb][Ss][Pp];', ' ') local m = mw.ustring.find(cleaned, 'm') local c = mw.ustring.find(cleaned, 'cm') local f = mw.ustring.find(cleaned, 'ft') local i = mw.ustring.find(cleaned, 'in') if m == nil and f == nil and i == nil then return '', s end if c ~= nil and f == nil and i == nil then local n = tonumber(mw.ustring.sub(cleaned, 1, c - 1)) if n == nil then return '', s end return force_m and {n/100,'m','ftin',0,['abbr']='on'} or {n,'cm','ftin',0,['abbr']='on'}, mw.ustring.sub(cleaned, c+2) end if m ~= nil and c == nil and f == nil and i == nil then local n = tonumber(mw.ustring.sub(cleaned, 1, m - 1)) if n == nil then return '', s end return force_cm and {n*100,'cm','ftin',0,['abbr']='on'} or {n,'m','ftin',0,['abbr']='on'}, mw.ustring.sub(cleaned, m+1) end if f ~= nil and i ~=nil and m == nil then local n1 = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) local n2 = tonumber(mw.ustring.sub(cleaned, f+2, i - 1)) if n1 == nil or n2 == nil then return '', s end return (force_m or prefer_m) and {n1,'ft',n2,'in', 'm',2,['abbr']='on'} or {n1,'ft',n2,'in', 'cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, i+2) end if f ~= nil and i == nil and m == nil then local n = tonumber(mw.ustring.sub(cleaned, 1, f - 1)) if n == nil then return '', s end return (force_m or prefer_m) and {n,'ft','m',2,['abbr']='on'} or {n,'ft','cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, f+2) end if i ~= nil and f == nil and m == nil then local n = tonumber(mw.ustring.sub(cleaned, 1, i - 1)) if n == nil then return '', s end return (force_m or prefer_m) and {n,'in','m',2,['abbr']='on'} or {n,'in','cm',0,['abbr']='on'}, mw.ustring.sub(cleaned, i+2) end return '', s end function p.main(frame) local args = frame.args[1] and frame.args or frame:getParent().args local targs, str = convert(args[1], args['prefer'] or '', args['enforce'] or '') if type(targs) == 'table' then return frame:expandTemplate{ title = 'convert', args = targs} .. str else return str end end return p