ሞድዩል:ካርታ ቦታ

ካብ ዊኪፐድያ፣ ናጻ ኢንሳይክሎፐድያ

Documentation for this module may be created at ሞድዩል:ካርታ ቦታ/doc

require('Module:No globals')

local p = {}

local getArgs = require('Module:ክርክራት').getArguments

local function round(n, decimals)
	local pow = 10^(decimals or 0)
	return math.floor(n * pow + 0.5) / pow
end

function p.getMapParams(map, frame)
	if not map then
		error('The name of the location map definition to use must be specified', 2)
	end
	map = mw.text.trim(map)
	--local moduletitle = mw.title.new('ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map)
	--mw.log('Name ' .. 'ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map)
	--if not moduletitle then
	--	mw.log('Invalid name ' .. 'ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map)
	--	error('"' .. map .. '" is not a valid name for a location map definition', 2)
	--elseif moduletitle.exists then
	--	local mapData = mw.loadData('ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map)
	--	return function(name, params)
	--		if name == nil then
	--			return 'ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map
	--		elseif mapData[name] == nil then
	--			return ''
	--		elseif params then
	--			return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain()
	--		else
	--			return mapData[name]
	--		end
	--	end
	--elseif mw.title.new('ሞደል:ካርታ ቦታ' .. map).exists then
	if mw.title.new('ሞደል:ካርታ ቦታ ' .. map).exists then
		local cache = {}
		if type(frame) ~= 'table' or type(frame.expandTemplate) ~= 'function' then
			error('You must supply the frame object of the page if you use a map implemented using a template')
		end
		return function(name, params)
			if params then
				return frame:expandTemplate{title = 'ሞደል:ካርታ ቦታ ' .. map, args = { name, unpack(params) }}
			else
				if name == nil then
					return 'ሞደል:ካርታ ቦታ ' .. map
				elseif cache[name] == nil then
					cache[name] = frame:expandTemplate{title = 'ሞደል:ካርታ ቦታ ' .. map, args = { name }}
				end
				return cache[name]
			end
		end
	else
		error('The specified location cannot be displayed because there is no ሞድዩል:ካርታ ቦታ/ሓበሬታ/' .. map .. ' or ሞደል:ካርታ ቦታ ' .. map, 2)
	end
end

function p.data(frame, args, map)
	if not args then
		args = getArgs(frame, {frameOnly = true})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	local params = {}
	for k,v in ipairs(args) do
		if k > 2 then
			params[k-2] = v
		end
	end
	return map(args[2], #params ~= 0 and params)
end

local hemisphereMultipliers = {
	longitude = { W = -1, w = -1, O = -1, o = -1, E = 1, e = 1 },
	latitude = { S = -1, s = -1, N = 1, n = 1 }
}

local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction)
	if not degrees or degrees == '' then
		if not decimal or decimal == '' then
			return nil
		end
		local retval = tonumber(decimal)
		if not retval then
			error('The value "' .. decimal .. '" provided for ' .. direction .. ' is not valid', 2)
		end
		return retval
	end
	decimal = tonumber(degrees)
	if not decimal then
		error('The degree value "' .. degrees .. '" provided for ' .. direction .. ' is not valid', 2)
	end
	if minutes  and minutes == '' then
		minutes = 0
	end
	if seconds  and seconds == '' then
		seconds = 0
	end
	
	if minutes  and not tonumber(minutes) then
		error('The minute value "' .. minutes .. '" provided for ' .. direction .. ' is not valid', 2)
	end
	if seconds  and not tonumber(seconds) then
		error('The second value "' .. seconds .. '" provided for ' .. direction .. ' is not valid', 2)
	end
	decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600
	if hemisphere and hemisphere ~= '' then
		local multiplier = hemisphereMultipliers[direction][hemisphere]
		if not multiplier then
			error('The hemisphere "' .. hemisphere .. '" provided for ' .. direction .. ' is not valid', 2)
		end
		decimal = decimal * multiplier
	end
	return decimal
end

-- effectively make removeBlanks false for caption and maplink, and true for everything else
-- if useWikidata is present but blank, convert it to false instead of nil
-- p.top, p.bottom, and their callers need to use this
function p.valueFunc(key, value)
	if value then
		value = mw.text.trim(value)
	end
	if value ~= '' or key == 'እግሪ' or key == 'caption' or key == 'maplink' or key == "መጋጠሚ_ካርታ" then
		return value
	elseif key == 'useWikidata' or key == "ዊኪዳታ_ተጠቀም"then
		return false
	end
end

local function getContainerImage(args, map)
	if (args.AlternativeMap and args.AlternativeMap ~= '') or (args['ኣማራጽያዊ_ካርታ'] and args['ኣማራጽያዊ_ካርታ'] ~= '') then
		return args.AlternativeMap or args['ኣማራጽያዊ_ካርታ']
	elseif args['ዓይነት'] and args['ዓይነት'] ~= '' and map(args['ዓይነት']) and  map(args['ዓይነት']) ~= '' then
		return map(args['ዓይነት'])
	elseif args.relief or args['ቅርጻ_መሬት'] and map('image1') ~= '' then
		return map('image1')
	else
		return map('image')
	end
end

function p.top(frame, args, map)
	local alignment, border, caption, width, mapLink, label, overlayImage
	if not args then
		args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	
	    -- Variable with parameters in English or in Tigrinya
	
	local width
	width = args['ስፍሓት'] or args.width
	alignment = args['ኣሳላልፋ'] or args.float
        caption = args.caption or args['እግሪ']
        mapLink = args['መጋጠሚ_ካርታ'] or args.maplink 
        label = args.label or args['ገላጺ']
        border = args['ወሰን'] or args.border 
        overlayImage = args['ዝተለበጠ_ምስሊ'] or args.overlay_image
	if not width or width == '' then
		width = round((args.default_width or 255) * (tonumber(map('defaultscale')) or 1))
	elseif mw.ustring.sub(width, -2) == 'px' then
		width = mw.ustring.sub(width, 1, -3)
	else
		width = width
	end
	
	
	local retval = alignment == 'center' and '<div class="center">' or ''
	
	if caption and caption ~= '' and caption ~= 'no' then
		retval = retval .. '<div class="noviewer thumb '
		if alignment == '"left"' or alignment == 'left' then
			retval = retval .. 'tleft'
		elseif alignment == '"center"' or alignment == 'center' or alignment == 'ማእከል' or alignment == '"none"' or alignment == 'none' then
			retval = retval .. 'tnone'
		else
			retval = retval .. 'tright'
		end
		retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px'
		
		if border == 'none' then
			
			retval = retval .. ';border:none'
		elseif border then
			retval = retval .. ';border-color:' .. border
		end
		retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (border ~= 'none' and ';border:1px solid lightgray">' or '">')
	else
		retval = retval .. '<div style="width:' .. width .. 'px;'
		if alignment == '"left"' or alignment == 'left' then
			retval = retval .. 'float:left;clear:left'
		elseif alignment == '"center"' or alignment == 'center' then
			retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto'
		elseif alignment == '"none"' or args.float == 'none' then
			retval = retval .. 'float:none;clear:none'
		else
			retval = retval .. 'float:right;clear:right'
		end
		retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">'
	end
	local image = getContainerImage(args, map)
	retval = string.format(
		'%s[[ፋይል:%s|%spx|%s%s]]',
		retval,
		image,
		width,
		args.alt or ('alt=' .. (label or mw.title.getCurrentTitle().text) .. ' ዝርኸብ ኣብ ' .. map('name')),
		mapLink and ('|link=' .. mapLink) or ''
	)
	if args.overlay_image then
		return retval .. '<div style="position:absolute;top:0;left:0">[[ፋይል:' .. overlayImage .. '|' .. width .. 'px]]</div>'
	else
		return retval
	end
end

function p.bottom(frame, args, map)
	local alignment, border, caption, width, mapLink, label, captionUndefined
	if not args then
		args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	    -- Variable with parameters in English or in Tigrinya
	
	local width
	width = args['ስፍሓት'] or args.width
	alignment = args['ኣሳላልፋ'] or args.float
        caption = args.caption or args['እግሪ']
        mapLink = args['መጋጠሚ_ካርታ'] or args.maplink 
        label = args['ገላጺ'] or args.label
        border = args['ወሰን'] or args.border
        captionUndefined = args['ዘይተገልጸ_እግሪ'] or  args.caption_undefined 
	local retval = '</div>'
	
	if not caption then
		retval = retval .. '<div style="font-size:90%;padding-top:3px">'
		.. (( label or mw.title.getCurrentTitle().text) .. ' (' .. map('name') .. ')')
		.. '</div>'
	elseif caption == '' or caption == 'no' then
		retval = retval .. '<div style="font-size:90%;padding-top:3px"></div>'
	else 
		-- Creating a link without any text on purpose so that the CSS can give us a good image
		retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:ፋይል:' .. getContainerImage(args, map) .. '| ]]</div>' .. caption .. '</div>'
	end
	
	retval = retval .. '</div></div>'
	retval = retval .. (alignment == 'center' and '</div>' or '')
	if captionUndefined then
		mw.log('Removed parameter ዘይተገልጸ_እግሪ.')
		local parent = frame:getParent()
		if parent then
			mw.log('Parent is ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		retval = retval .. '[[Category:Wikipedia:Location maps with removed parameters|caption_undefined]]'
	end
	return retval
end

local function markOuterDiv(x, y, imageDiv, labelDiv)
	return mw.html.create('div')
		:cssText('position:absolute;top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;height:0;width:0;margin:0;padding:0')
		:node(imageDiv)
		:node(labelDiv)
end

local function markImageDiv(mark, marksize, label, link, alt, title)
	local builder = mw.html.create('div')
		:cssText('position:absolute;text-align:center;left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px;width:' .. marksize .. 'px;font-size:' .. marksize .. 'px;line-height:0')
		:attr('title', title)
	if marksize ~= 0 then
		builder:wikitext(string.format(
			'[[ፋይል:%s|%dx%dpx|%s|link=%s%s]]',
			mark,
			marksize,
			marksize,
			label,
			link,
			alt and ('|alt=' .. alt) or ''
		))
	end
	return builder
end

local function markLabelDiv(label, label_size, label_width, position, background, x, marksize)
	local builder = mw.html.create('div')
		:cssText('font-size:' .. label_size .. '%;line-height:110%;position:absolute;width:' .. label_width .. 'em')
	local distance = round(marksize / 2 + 1)
	local spanCss
	if position == 'top' then -- specified top
		builder:cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center')
	elseif position == 'bottom' then -- specified bottom
		builder:cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center')
	elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left
		builder:cssText('top:-0.75em;right:' .. distance .. 'px;text-align:right')
		spanCss = 'float:right'
	else -- specified right or autodetected to right
		builder:cssText('top:-0.75em;left:' .. distance .. 'px;text-align:left')
		spanCss = 'float:left'
	end
	builder = builder:tag('span')
		:cssText('padding:1px')
		:cssText(spanCss)
		:wikitext(label)
	if background then
		builder:cssText('background-color:' .. background)
	end
	return builder:done()
end

local function getX(longitude, left, right)
	local width = (tonumber(right) - tonumber(left)) % 360
	if width == 0 then
		width = 360
	end
	local distanceFromLeft = (longitude - left) % 360
	-- The distance beyond the right of the map equals distanceFromLeft - width. 
	-- The distance beyond the left of the map equals 360 - distanceFromLeft. 
	-- to minimize stretching of the page it will be in any way shorter
	if distanceFromLeft - width / 2 >= 180 then
		distanceFromLeft = distanceFromLeft - 360
	end
	return 100 * distanceFromLeft / width
end

local function getY(latitude, top, bottom)
	return 100 * (top - latitude) / (top - bottom)
end

function p.mark(frame, args, map)
	if not args then
		args = getArgs(frame, {wrappers = 'ካርታ ቦታ~'})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	local x, y, longitude, latitude, outside, wikidata, statements
    outside = args['ግዳም'] or args.outside
	longitude = decdeg(args.lon_deg or args.lon_gra, args.lon_min, args.lon_sec or args.lon_seg, args.lon_dir, args.long, 'longitude')
	latitude = decdeg(args.lat_deg or args.lat_gra, args.lat_min, args.lat_sec or args.lat_seg, args.lat_dir, args.lat, 'latitude')
	wikidata = args['ዊኪዳታ_ተጠቀም'] or args.useWikidata
	if not longitude and not latitude and wikidata then
		-- If no coordinates are provided, try to get them from Wikidata. 
		statements = require('ሞድዩል:Wikidata').getStatements(args['entity'])
		if statements and statements.P625 and statements.P625[1].mainsnak.snaktype == 'value' then
			local value = statements.P625[1].mainsnak.datavalue.value
			longitude, latitude = value.longitude, value.latitude
		end
	end
	if not longitude then
		error('No value was provided for longitude')
	end
	if not latitude then
		error('No value was provided for latitude')
	end
	local builder = mw.html.create()
	if args.skew or args.lon_shift or args.markhigh then
		mw.log('Removed parameter used in invocation.')
		local parent = frame:getParent()
		if parent then
			mw.log('Parent is ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		builder:wikitext('[[Category:Wikipedia:Location maps with removed parameters|]]')
	end
	--if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' then --or map('type') ~= '' then
	--	mw.log('Removed parameter used in map definition ' .. map())
	--	builder:wikitext('[[Category:Wikipedia:Location maps with removed parameters|]]')
	--end 
	if  map('x') and map('x') ~= '' and tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude }))) then
		mw.log('Exists x -' .. map('x'))
		x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude })))
	else
		mw.log('There is no x')
		x = tonumber(getX(longitude, map('left'), map('right')))
	end
	if  map('y') and map('y') ~= '' and tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))  then
		mw.log('Exists y -' .. map('y'))
		y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))
	else
		mw.log('There is no y')
		y = tonumber(getY(latitude, map('top'), map('bottom')))
	end

	if (x < 0 or x > 100 or y < 0 or y > 100) and not outside then
		mw.log('Mark placed outside map boundaries without outside flag set. x = ' .. x .. ', y = ' .. y)
		local parent = frame:getParent()
		if parent then
			mw.log('Parent is ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		builder:wikitext('[[Category:Wikipedia:Location maps with marks outside map and outside parameter not set|]]')
	end
	local mark = args['ምልክት'] or args.mark or map('ምልክት') or map('mark')
	if mark == '' then
		mark = 'Red pog.svg'
	end
	local label = args['ገላጺ'] or args.label
	local position = args['ኣቀማምጣ'] or args.position
	local marksize =  tonumber(args.marksize) or tonumber(args['መጠን_ምልክት']) or tonumber(map('marksize')) or tonumber(map('መጠን_ምልክት')) or 8
	local imageDiv = markImageDiv(mark, marksize, label or mw.title.getCurrentTitle().text, args.link or '', args.alt, args[2])
	local labelDiv
	if args.label and args.position ~= 'none' then
		labelDiv = markLabelDiv(label, args['መጠን_ገላጺ'] or args.label_size or 90, args['ስፍሓት_ገላጺ'] or args.label_width or 6, args['ኣቀማምጣ'] or args.position, args['ሕብሪ_ገላጺ'] or args.background, x, marksize)
	end
	return builder:node(markOuterDiv(x, y, imageDiv, labelDiv))
end

function p.main(frame, args, map)
	if not args then
		args = getArgs(frame, {wrappers = 'ሞደል:ካርታ ቦታ ', valueFunc = p.valueFunc})
		mw.log('Not detected args')
		if args[1] then
	   		mw.log('ሽም ' .. args[1])
	    end
	end
	if not args[1] then
		args[1] = 'መሬት'
	end
	if args.useWikidata == nil and args['ዊኪዳታ_ተጠቀም'] == nil then
		args.useWikidata = true
	end
	if not map then
		map = p.getMapParams(tostring(args[1]), frame)
	end
	return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map)
end

return p