Marvel Database
Advertisement

Documentation for this module may be created at Module:Design/doc

local p = {}
local h = require("Module:HF")
local getArgs = require('Dev:Arguments').getArgs


--------------------------------------------------------------------------------
function p.get_main_border_color()
	return '#B5B7CF'
end

function p.get_main_background_color()
	return '#EFF0FF'
end

--------------------------------------------------------------------------------
function p.green(text)
	local output = ''
	if not h.isempty(text)
		then 
			output = mw.html.create( 'span' )
				:css( 'color', 'darkgreen' )
				:css( 'font-weight', 'bold' )
				:css( 'font-style', 'italic' )
				:css( 'font-size', 'smaller' )
				:wikitext('('..text..')')
				:done()
			output = tostring(output)
	end
	return output
end


--------------------------------------------------------------------------------
function p.span(text)
	local italic = mw.html.create( 'span' ):css( 'font-style', 'italic' )
	local bold = mw.html.create( 'span' ):css( 'font-weight', 'bold' )
	local both = mw.html.create( 'span' ):css( 'font-weight', 'bold' ):css( 'font-style', 'italic' )
	local output = { italic = '', bold = '', both = '' }
	
	if not h.isempty(text)
		then
			output = {
				italic  = tostring(italic:wikitext(text):done()),
				bold	= tostring(bold:wikitext(text):done()),
				both	= tostring(both:wikitext(text):done()),
			}
	end

	return output
end


--------------------------------------------------------------------------------
-- creates message box
function p.messagebox(frame)
	local args = getArgs (frame)
	local width = args['width'] or '95%'
	local textalign = args['text-align'] or 'center'
	local fontsize = args['font-size'] or '100%'
	local border = args['border'] or p.get_main_border_color()
	local background = args['background'] or p.get_main_background_color()
	local margin = args['margin'] or '1em'
	local clear = args['clear'] or 'none'
	local padding = args['padding'] or '5px'
	local extrastyle = args['extrastyle'] or ''
	local message = args[1] or args['Message'] or ''
	
	local tag = mw.html.create( 'div' )
				:attr( 'id', 'messageBox' )
				:attr( 'align', 'center' )
				:css( 'width', width )
				:css( 'text-align', textalign )
				:css( 'font-size', fontsize )
				:css( 'border', '1px solid '..border )
				:css( 'background', background )
				:css( 'border-radius', '10px' )
				:css( 'margin', margin )
				:css( 'clear', clear )
				:css( 'padding', padding )
				:wikitext( message )
				:done()
	if not h.isempty(extrastyle)
		then tag:cssText (extrastyle):done()
	end
	
	return tostring(tag)
end


--------------------------------------------------------------------------------
-- creates message box with spoiler warning 
function p.spoiler_warning()
	local background = 'rgb(255, 102, 102)'
	local border = 'rgb(255, 20, 20)'
	local extrastyle = 'color: white; clear: both;'
	local header = p.span('Spoiler Warning!').bold
	local message = '<br>This page may contain spoilers with plot and/or ending details about stories which have been only recently published or broadcast.<br>'
	message = message..'Please see our [[Marvel Database:Spoilers|spoiler policy]] for our rules governing articles about such subjects.'

	return p.messagebox( {Message = header..message, background = background, border = border, extrastyle = extrastyle}) 
end


--------------------------------------------------------------------------------
-- creates table with "previous" and "next" sections
function p.table_previous_and_next(message, link_to_previous, link_to_next)
	local td_left = mw.html.create('td')
					:css('width', '10%')
					:css('max-width', '20%')
					--:css('border-right', '1px solid '..p.get_main_border_color() )
					:css('text-align', 'left')
	local td_right = mw.html.create('td')
					:css('width', '10%')
					:css('max-width', '20%')
					--:css('border-left', '1px solid '..p.get_main_border_color() )
					:css('text-align', 'right')
	local td_left_arrow = mw.html.create('td')
					:css('vertical-align', 'middle')
					:css('font-size', '18px')
					:css('width', '1%')
					:wikitext('←')
	local td_right_arrow = mw.html.create('td')
					:css('vertical-align', 'middle')
					:css('font-size', '18px')
					:css('width', '1%')
					:wikitext('→')
	local td_empty = mw.html.create('td')
					:css('width', '11%')
	local tr = mw.html.create('tr')
	local left = ''
	local right = ''
	local output = mw.html.create('table')
					:css('width', '100%')
			
	if h.isempty(message)
		then message = ''
	end
	message = tostring( mw.html.create('td'):wikitext(message) )
	
	if h.isempty(link_to_previous)
		then left = tostring(td_empty)
		else left = tostring(td_left_arrow)..tostring(td_left:wikitext(link_to_previous))
	end
	if h.isempty(link_to_next)
		then right = tostring(td_empty)
		else right = tostring(td_right:wikitext(link_to_next))..tostring(td_right_arrow)
	end
	tr = tostring( tr:wikitext(left..message..right) )
	output = tostring( output:wikitext(tr) )
			
	return output
end

--------------------------------------------------------------------------------
function p.show_hide(frame)
	local args = getArgs (frame)
	local title = args['title'] or args['header'] or ' '
	local body = args['body'] or args['text'] or ''
	local collapsed = args['collapsed']
	local clear = args['clear'] or 'both'
	local border = args['border'] or p.get_main_border_color()
	local extrastyle = args['extrastyle'] or ''
	local extrastyle2 = args['extrastyle2'] or ''
	local titlestyle = args['titlestyle'] or ''
	local width = args['width'] or '100%'
	local background = args['background'] or p.get_main_background_color()
	local expandtext = args['expandtext'] or 'Expand'
	local collapsetext = args['collapsetext'] or 'Collapse'

	if h.isempty(collapsed) or collapsed == 'true' or collapsed == true
		then collapsed = ' mw-collapsed'
		else collapsed = ''
	end

	body = mw.html.create( 'div' )
			:addClass('mw-collapsible-content')
			:css('background-color', 'transparent')
			:wikitext(body)
			:done()
	body = tostring(body)

	title = mw.html.create( 'div' )
			:css('font-weight', 'bold')
			:css( 'background-color', background )
			:wikitext(title)
			:done()
	if not h.isempty(titlestyle)
		then title:cssText (titlestyle):done()
	end
	title = tostring(title)
	
	body = mw.html.create( 'div' )
			:addClass('mw-collapsible'..collapsed)
			:attr('data-expandtext', expandtext)
			:attr('data-collapsetext', collapsetext)
			:css( 'width', width )
			:css( 'border', '1px solid '..border )
			:css( 'font-size', '12px' )
			:css( 'clear', clear )
			:wikitext(title..body)
			:done()
	if not h.isempty(extrastyle)
		then body:cssText (extrastyle):done()
	end

	return tostring(body)
end


--------------------------------------------------------------------------------
function p.add_header(text, level, align)
	local output = ''
	level = level or '2'
	align = align or 'left'
	
	if not h.isempty(text)
		then output = '\n'..tostring( mw.html.create( 'h'..level ):css('text-align', align):wikitext( text ) )
	end
	
	return output
end


--------------------------------------------------------------------------------
function p.lua_add_tooltip(text, tooltip)
	local output = mw.html.create('span')
					:css('border-bottom', '1px dotted')
					:css('cursor', 'help')
					:attr('title', tooltip)
					:wikitext(text)
	return tostring(output)
end



--*******************************************************************************************
-- ************* functions for related sites *************
local list_of_sites = {
	['IMDB']	= {'http://www.imdb.com', 'IMDB.com', 'http://www.imdb.com/title/tt'},
	['AM']		= {'http://www.allmovie.com', 'AllMovie.com', 'http://www.allmovie.com/movie/'},
	['MCU'] 	= {'w:c:marvelcinematicuniverse', 'Marvel Cinematic Universe wiki'}, -- https://marvelcinematicuniverse.fandom.com/wiki/
	['MM']		= {'w:c:marvel-movies', 'Marvel Movies wiki'}, -- https://marvel-movies.fandom.com/wiki/
	['SMF'] 	= {'w:c:spiderman-films', 'Spider-Man Films wiki'}, -- https://spiderman-films.fandom.com/wiki/
	['XM']		= {'w:c:xmenmovies', 'X-Men Movies wiki'}, -- https://xmenmovies.fandom.com/wiki/
}

--------------------------------------------------------------------------------
-- used in Marvel Database:Film Template
function p.get_related_site_label(frame)
	local args = getArgs(frame)
	local site = args[1]
	local info = list_of_sites[site]
	
	if h.in_list({'IMDB', 'AM'}, site)
		then output = 'On ['..info[1]..' '..info[2]..']'
		else output = 'On '..h.Link(info[1], info[2])
	end
	
	return output
end


--------------------------------------------------------------------------------
-- used in Marvel Database:Film Template
function p.get_related_site_link(frame)
	local args = getArgs(frame)
	local site = args[1]
	local link = args[2]
	local text = args[3]
	local info = list_of_sites[site]
	local output = ''

	if not h.isempty(link)
		then 
			if h.isempty(text)
				then text = link
			end
			if h.in_list({'IMDB', 'AM'}, site)
				then output = '['..info[3]..link..' '..text..']'
				else output = h.Link(info[1]..':'..link, text)
			end
	end
	
	return output
end


--*******************************************************************************************
-- ************* functions to create INFOBOX *************
--------------------------------------------------------------------------------
-- to be deleted
function p.create_infobox(text, width)
	width = width or '250px'
	text = text or ''

	return '__NOEDITSECTION__'..tostring( mw.html.create( 'div' )
		:attr('class', 'infobox')
		:css( 'width', width )
		:css( 'float', 'right' )
		:css( 'clear', 'none' )
		:css( 'margin', '0px 0px 1em 1em' )
		:css( 'border', '1px solid '..p.get_main_border_color() )
		:css( 'background', p.get_main_background_color() )
		:css( 'border-radius', '10px' )
		:css( 'padding', '10px' )
		:wikitext(text)
		:done() )
end


--------------------------------------------------------------------------------
-- to be deleted
function p.add_infobox_row(label, value)
	local width_l = '40%'
	local width_r = '60%'
	local tag_label
	local tag_value
	local output = ''
	
	if not h.isempty(value)
		then
			if string.find(value, '^\n') == nil
				then value = '\n'..value
			end
			
			tag_label = mw.html.create( 'div' )
				:css( 'width', width_l )
				:css( 'text-align', 'left' )
				:css( 'float', 'left' )
				:css( 'font-weight', 'bold')
				:wikitext(label)
				:done()
			tag_value = mw.html.create( 'div' )
				:css( 'width', width_r )
				:css( 'text-align', 'left' )
				:css( 'float', 'left' )
				:wikitext(value)
				:done()
				
			tag_label = tostring(tag_label)
			tag_value = tostring(tag_value)
			
			output = mw.html.create( 'div' )
				:css( 'border-top', '1px solid '..p.get_main_border_color() )
				:css( 'padding', '2px 0px 2px 0px')
				:css( 'height', '1.5em' )
				:css( 'text-align', 'center' )
				:css( 'clear', 'left' )
				:css( 'font-size', '12px' )
				:wikitext(tag_label..tag_value)
				:done()
			output = tostring(output)
	end

	return output
end


--------------------------------------------------------------------------------
-- to be deleted
function p.add_infobox_group(group, header)
	local output = ''
	
	if table.concat(group) ~= ''
		then
			header = mw.html.create( 'div' )
			:css( 'clear', 'both' )
				:css( 'text-align', 'center' )
				:css( 'font-weight', 'bold' )
				:css( 'padding', '10px' )
				:css( 'height', '1.5em' )
				:css( 'background', p.get_main_background_color())
				:css( 'font-size', '14px' )
				:wikitext(header)
				:done()
			output = tostring(header)..'\n'..table.concat(group)
	end
	
	return output
end


--------------------------------------------------------------------------------
-- to be deleted
function p.add_infobox_horizontal_group(frame)
	local args = getArgs (frame)
	local centralheader = args['central_header'] or ''
	local leftheader = args['left_header'] or ''
	local lefttext = args['left_text'] or ''
	local rightheader = args['right_header'] or ''
	local righttext = args['right_text'] or ''
	local totalwidth = args['total_width']
	local tag_centralheader
	local tag_leftheader
	local tag_rightheader
	local tag_lefttext
	local tag_righttext
	local output = ''
 
	if not h.isempty(righttext)
		then 
			if not h.isempty(totalwidth)
				then totalwidth = tostring(tonumber(totalwidth)/2)..'px' 
				else totalwidth = '50%'
			end
		else totalwidth = '100%'
	end

	if not h.isempty(centralheader)
		then
			tag_centralheader = mw.html.create( 'div' )
				:css( 'width', '100%' )
				:css( 'float', 'left' )
				:css( 'font-weight', 'bold')
				:css( 'font-size', '12px' )
				:wikitext(centralheader)
				:done()
			output = output..tostring(tag_centralheader)
		else
			tag_leftheader = mw.html.create( 'div' )
				:css( 'width', totalwidth )
				:css( 'float', 'left' )
				:css( 'font-weight', 'bold')
				:css( 'font-size', '12px' )
				:wikitext(leftheader)
				:done()
			output = output..tostring(tag_leftheader)
	end
 
	if not h.isempty(righttext) and h.isempty(centralheader)
		then
			tag_rightheader = mw.html.create( 'div' )
					:css( 'width', totalwidth )
					:css( 'float', 'left' )
					:css( 'clear', 'right' )
					:css( 'font-weight', 'bold')
					:css( 'font-size', '12px' )
					:wikitext(rightheader)
					:done()
			output = output..tostring(tag_rightheader)
	end
 
	tag_lefttext = mw.html.create( 'div' )
		:css( 'width', totalwidth )
		:css( 'float', 'left' )
		:css( 'clear', 'left' )
		:css( 'font-size', '12px' )
		:wikitext(lefttext)
		:done()
	output = output..tostring(tag_lefttext)
 
 
	if not h.isempty(righttext)
		then
			tag_righttext = mw.html.create( 'div' )
					:css( 'width', totalwidth )
					:css( 'float', 'left' )
					:css( 'text-align', 'center' )
					:css( 'font-size', '12px' )
					:wikitext(righttext)
					:done()
			output = output..tostring(tag_righttext)
	end
 
	return tostring( mw.html.create( 'div' )
		:css( 'border-top', '1px solid '..p.get_main_border_color() )
		:css( 'text-align', 'center' )
		:css( 'clear', 'left' )
		:wikitext(output)
		:done() )
end 


--------------------------------------------------------------------------------
-- to be deleted
function p.add_infobox_page_title_and_image(args, pagename, page_type)
	local title = args.Title
	local name = args.OfficialName
	local image = args.Image or args.Video
	local image_size = '250px'
	local image_text = args.ImageText
	local alias = ''
	local gallery = ''
	local i
	local output_categories = {}
	local output = ''

	if page_type == 'Character'
		then
			name = args.RealName
			alias = args.CurrentAlias
		elseif page_type == 'Race'
			then name = args.Name
	end
	
	if not h.isempty(title)
		then output = title
		elseif not h.isempty(alias)
			then output = alias
		elseif not h.isempty(name)
			then output = name
		else output = pagename
	end
	
	if not h.is_link(output) 
		then 
			if h.exists(output..' (Disambiguation)')
				then output = h.Link(output..' (Disambiguation)', output)
				elseif h.exists(output)
					then output = h.Link(output)
			end
	end

	output = mw.html.create('div')
			:css('text-align', 'center')
			:css('font-size', '18px')
			:css('font-weight', 'bold')
			:css('line-height', '2em')
			:wikitext(output)
	output = tostring( output )

	if not h.isempty(image_size)
		then image_size = string.gsub(image_size, 'px', '')..'px'
	end
	if not h.isempty(image)
		then 
			image = string.gsub(image, 'File:', '')
			if not h.exists('File:'..image)
				then table.insert(output_categories, page_type..' Image Correction Needed')
			end
			if h.in_list({'None.jpg', 'Needed.png'}, image)
				then table.insert(output_categories, page_type..' Image Needed')
			end

			if image ~= 'No Image Available At All.png'
				then output = output .. '[[File:'..image..'|'..image_size..'|center]]'
			end
			if not h.isempty(image_text) and page_type == 'Staff'
				then 
					image_text = mw.html.create('span')
								 :css('font-size', '80%')
								 :css('font-family', 'monospace')
								 :wikitext(image_text)
					output = output .. tostring(image_text)
			end
		else
			table.insert(output_categories, page_type..' Image Needed')
	end
	
	if h.pages_in_category(pagename..'/Images', 'files') > 0 
	or ( not h.isempty(image) and not h.in_list({'None.jpg', 'Needed.png', 'No Image Available At All.png'}, image) )
		then 
			gallery = h.Link(pagename..'/Gallery', 'Gallery')
			if not h.exists(pagename..'/Gallery')
				then table.insert(output_categories,  page_type..' Gallery Page Needed')
			end
			gallery = mw.html.create('div')
						:css('text-align', 'center')
						:css('font-size', '14px')
						:css('font-weight', 'bold')
						:css('font-style', 'italic')
						:css('line-height', '2em')
						:wikitext(gallery)
			output = output .. tostring(gallery)
	end

	return output, output_categories
end


--------------------------------------------------------------------------------
-- for fields with a lot of text
function p.add_infobox_row_collapsible(frame)
	local args = getArgs (frame)
	local value = args[1]
	local i
	local j
	local output = ''

	if not h.isempty(value)
		then
			i, j = string.find(string.lower(value), '; formerly ') 
			if i ~= nil 
				then output = string.sub(value, 1, i-1) .. '<br>' .. p.show_hide( { title = 'Formerly',  body = string.sub(value, j+1, #value) } )
				elseif #value > 500
					then 
						output = p.show_hide( {
						title = '', 
						body = value, 
						collapsed = 'true',
						extrastyle = 'border: none;',
						} )
				else
					output = value
			end
	end

	return output
end


--------------------------------------------------------------------------------
function p.add_infobox_page_title(frame)
	local standard = require("Module:StandardizedName")
	local pagename = mw.title.getCurrentTitle().text
	local sortname = ''
	local args = getArgs (frame)
	local page_type = args.page_type
	local title = args.Title or args.EpisodeTitle
	local alias = args.CurrentAlias
	local name = args.OfficialName
	local image = args.Image
	local info
	local output_categories = {}
	local output = ''

	if h.isempty(name)
		then
			if not h.isempty(args.RealName)
				then name = args.RealName
				elseif not h.isempty(args.Name)
					then name = args.Name
			end
	end
	
	if not h.isempty(title)
		then output = title
		elseif not h.isempty(alias)
			then output = alias
		elseif not h.isempty(name)
			then output = name
		else output = string.gsub(pagename, ' %(.+%)', '')
	end

	if not h.is_link(output) and h.exists(output)
		then output = h.Link(output)
	end
	
	if page_type == 'Episode'
		then output = '"'..string.gsub(output, '"', '')..'"'
	end
	
	-- add default sort name
	if page_type == 'Reality'
		then 
			table.insert(output_categories, 'Realities')
			sortname = '{{DEFAULTSORT:'..require("Module:Reality").get_reality_info({pagename}).padded_number..'|noerror}}'
		elseif page_type == 'Series'
			then 
				sortname = '{{DEFAULTSORT:'..standard.lua_remove_the(pagename)..'|noerror}}'
		elseif h.in_list({'Film', 'Novel', 'Video Game'}, page_type) 
			then
				table.insert(output_categories, page_type..'s')
				sortname = '{{DEFAULTSORT:'..standard.lua_remove_the(pagename)..'|noerror}}'
		elseif h.in_list({'Episode', 'Comic'}, page_type) 
			then
				if page_type == 'Episode'
					then info = standard.lua_get_title_volume_issue(pagename, 'Season')
					else info = standard.lua_get_title_volume_issue(pagename, 'Vol')
				end
				if not h.isempty(info.title)
					then sortname = info.sortname.all
					else sortname = standard.lua_remove_the(pagename)
				end
				sortname = '{{DEFAULTSORT:'..sortname..'|noerror}}__NOTOC__'
				table.insert(output_categories, page_type..'s')
				table.insert(output_categories, info.noissue)
		elseif page_type == 'Staff'
			then
				table.insert(output_categories, 'Marvel Staff')
				sortname = h.explode(' ', pagename)
				if tonumber(sortname[#sortname]) == nil
					then sortname = sortname[#sortname]..' '..string.gsub(pagename, ' '..sortname[#sortname], '')
					else sortname = pagename
				end
				sortname = '{{DEFAULTSORT:'..sortname..'|noerror}}'
		else
			table.insert(output_categories, page_type..'s')
			sortname = '{{DEFAULTSORT:'..standard.name_for_sorting({pagename})..'|noerror}}'
	end
	
	-- add categories for main image
	if not h.isempty(image)
		then 
			image = string.gsub(image, 'File:', '')
			if not h.exists('File:'..image) -- 'Image' field is filled, but such image doesn't exist on wiki
				then table.insert(output_categories, page_type..' Image Correction Needed')
			end
			if h.in_list({'None.jpg', 'Needed.png'}, image) 
				then table.insert(output_categories, page_type..' Image Needed')
			end
		else
			table.insert(output_categories, page_type..' Image Needed')
	end
	

	return frame:preprocess(output..sortname)..h.add_categories(output_categories)
end


--------------------------------------------------------------------------------
function p.add_infobox_gallery(frame)
	local pagename = mw.title.getCurrentTitle().text
	local args = getArgs (frame)
	local page_type = args.page_type
	local image = args.Image
	local image_text = args.ImageText
	local output_categories = {}
	local output = ''

	if page_type ~= 'Staff' 
		then
			if	h.pages_in_category(pagename..'/Images', 'files') > 0 
			or ( not h.isempty(image) and not h.in_list({'None.jpg', 'Needed.png', 'No Image Available At All.png'}, image) )
				then 
					output = h.Link(pagename..'/Gallery', 'Gallery')
					if not h.exists(pagename..'/Gallery')
						then table.insert(output_categories,  page_type..' Gallery Page Needed')
					end
			end
		elseif not h.isempty(image_text)
			then output = tostring(image_text)			
	end

	return output..h.add_categories(output_categories)
end


-------------------------------------------------------------------------------
function p.add_infobox_official_name(frame)
	local args = getArgs (frame)
	--local page_type = args.page_type
	local name = args.Name
	local name2 = args.Name2
	local ref = args.NameRef
	local output = ''
	
	if not h.isempty(args.Name)
		then 
			name = args.Name
			name2 = args.Name2
			ref = args.NameRef
		elseif not h.isempty(args.OfficialName)
			then
				name = args.OfficialName
				name2 = args.OfficialName2
				ref = args.OfficialNameRef
		elseif not h.isempty(args.RealName)
			then
				name = args.RealName
				name2 = args.RealName2
				ref = args.RealNameRef	
	end
	
	if h.isempty(name)
		then output = 'Unknown'
		else 
			output = name
			if not h.is_link(output) and h.exists(output)
				then output = h.Link(output)
			end
	end
	if not h.isempty(name2)
		then output = output..' '..name2
	end
	if not h.isempty(ref)
		then output = output..ref
	end

	return output
end


--------------------------------------------------------------------------------
function p.add_infobox_first_appearance(frame)
	local standard = require("Module:StandardizedName")
	local args = getArgs(frame)
	local page_type = args.page_type
	local value = args.First
	local value2 = args.First2
	local debut
	local output_categories = {}
	local output = ''

	if not h.isempty(value)
		then 
			output, debut = standard.lua_get_link_and_release_date(value)
			if not h.isempty(debut)
				then
					debut = string.match(debut, '(%d%d%d%d)')
					if debut ~= nil
						then 
							if not h.isempty(page_type)
								then table.insert(output_categories, debut..' '..page_type..' Debuts')
								else table.insert(output_categories, debut..' Debuts')
							end
					end
			end	
		elseif h.isempty(value2)
			then
				if not h.isempty(page_type)
					then value = page_type..' First Appearance Needed'
					else value = 'First Appearance Needed'
				end
				table.insert(output_categories, value)
				output = h.LinkToCategory(value, 'Unknown')
	end
	if not h.isempty(value2)
		then output = output..value2
	end

	return output..h.add_categories(output_categories)
end


--------------------------------------------------------------------------------
function p.add_infobox_last_appearance(frame)
	local standard = require("Module:StandardizedName")
	local args = getArgs(frame)
	local last_appearance
	local last_appearance2
	local last_header
	local output = ''

	if not h.isempty(args.Death) or not h.isempty(args.Death2)
		then 
			last_header = 'Death'
			last_appearance = args.Death
			last_appearance2 = args.Death2
		elseif not h.isempty(args.Destruction) or not h.isempty(args.Destruction2)
			then
			last_header = 'Destruction'
			last_appearance = args.Destruction
			last_appearance2 = args.Destruction2
		else
			last_header = 'Last'
			last_appearance = args.Last
			last_appearance2 = args.Last2
	end

	if not h.isempty(args[1])
		then output = last_header
		else
			if not h.isempty(last_appearance)
				then output = standard.lua_get_link_and_release_date(last_appearance)
				else output = ''
			end
			if not h.isempty(last_appearance2)
				then output = output..last_appearance2
			end
	end

	return output
end


--------------------------------------------------------------------------------
function p.add_infobox_creators(frame)
	local SC = require("Module:StaffCorrection")
	local args = getArgs(frame)
	local page_type = args.page_type
	local creators = args.Creators
	local creators2 = args.Creators2
	local output_categories = {}
	local output = ''
	
	if not h.isempty(creators)
		then output, output_categories = SC.lua_get_creators(creators)
		elseif not h.isempty(creators2)
			then output = output..creators2
		else table.insert(output_categories, page_type..' Creators Needed')
	end
	
	return output..h.add_categories(output_categories)
end


--------------------------------------------------------------------------------------------------
function p.add_infobox_identity(frame)
	local args = getArgs (frame)
	local page_type = args.page_type
	local value = args.Identity
	local category = ''
	
	if not h.isempty(value)
		then 
			category = value..' Identity '..page_type..'s'
			value = h.LinkToCategory(category, value)
			category = h.Category(category)
		else value = ''
	end
	if not h.isempty(args.Identity2)
		then value = value..' '..args.Identity2
	end
	
	return value..category
end


--------------------------------------------------------------------------------------------------
function p.add_infobox_status(frame)
	local args = getArgs (frame)
	local value = args.Status
	local page_type = args.page_type
	if page_type == 'Reality'
		then page_type = 'Realities'
		else page_type = page_type..'s'
	end
	local output_category = h.Category(value..' '..page_type)
	local output = h.LinkToCategory(value..' '..page_type, value)

	return output..output_category
end


--------------------------------------------------------------------------------------------------
function p.add_infobox_members_group_header(frame)
	local pagename = mw.title.getCurrentTitle().text
	local category = pagename..'/Members'
	local n = h.pages_in_category(category, 'pages')
	local output = 'Members'
	
	if n > 0
		then output = h.LinkToCategory(category, output)
	end
	
	return output	
end


--------------------------------------------------------------------------------
function p.add_infobox_reality(frame)
	local module_reality = require("Module:Reality")
	local args = getArgs (frame)
	local page_type = args.page_type
	local pagename = mw.title.getCurrentTitle().text
	local i
	local reality1 = args.Universe or args.Reality
	local reality2 = args.Universe2 or args.Reality2
	local value
	local category
	local output_categories = {}
	local output = {}

	if h.isempty(reality1) and h.isempty(reality2) 
		then 
			if h.in_list({'/Characters', '/Teams', '/Organizations'}, page_type)
				then table.insert(output_categories, 'Unspecified Reality')
			end
			if string.find(pagename, '(', 1, true) ~= nil
				then
					_, reality1 = module_reality.lua_get_name_and_reality(pagename)
					reality1 = reality1.name
			end
	end
	
	if not h.isempty(reality1)
		then 
			if string.find(reality1, ';') ~= nil
				then 
					reality1  = mw.text.split(reality1, ';')
					for i = 1, #reality1 do
						value = reality1[i]
						value = module_reality.get_reality_info({value, 1})
						if value ~= nil
							then
								table.insert(output, h.Link(value))
								table.insert(output_categories, value..page_type)
						end
					end
				else
					value = module_reality.get_reality_info({reality1, 1})
					if value ~= nil
						then
							table.insert(output, h.Link(value))
							table.insert(output_categories, value..page_type)
					end
			end
	end
	
	if not h.isempty(reality2)
		then 
			value = module_reality.get_reality_info({reality2, 1})
			if value ~= nil
				then
					table.insert(output, h.Link(value))
					table.insert(output_categories, value..page_type)
				else
					table.insert(output, reality2)
			end
	end
	
	output = mw.text.listToText(output, ', ', ', ')
	
	return output..h.add_categories(output_categories)
end


--------------------------------------------------------------------------------
function p.add_overview_and_toc(overview)
	local output = '__TOC__'
	
	if not h.isempty(overview)
		then output = '\n'..overview..'<br>'..output
	end
	
	return output
end


--------------------------------------------------------------------------------
function p.add_quote(args)
	local output_categories = {}
	local output = ''
	
	if not h.isempty(args.Quotation)
		then output, output_categories = require("Module:Quote").main(args.Quotation, args.Speaker, args.QuoteSource, true)
	end
	if not h.isempty(args.BlockQuote)
		then 
			output = args.BlockQuote
			table.insert(output_categories, 'BlockQuotes')
	end
	
	return output, output_categories
end

--------------------------------------------------------------------------------
-- used to add sections like "Notes", "Trivia", etc.
function p.add_section(header, section, header_level)
	local output = ''
	
	header_level = header_level or 2
	
	if not h.isempty(section)
		then output = p.add_header(header, header_level)..'\n'..section
	end
	
	return output
end


--------------------------------------------------------------------------------
function p.add_history_section(args, page_type)
	local value = args.History
	local value2 = args.HistoryText
	local category = ''
	local output = ''
	
	if h.isempty(value) and h.isempty(value2)
		then category = page_type..' History Needed'
		elseif not h.isempty(value)
			then output = p.add_section('History', value, 2)
		elseif not h.isempty(value2)
			then output = p.add_section('History', value2, 2)
	end
	
	return output, category
end


--------------------------------------------------------------------------------
-- one function to add 'Quote', 'Overview' section, 'TOC' and 'History' section at the same time
function p.add_quote_overview_toc_history(args, page_type)
	local value
	local categories = {}
	local output_categories = {}
	local output = {}

	value, categories = p.add_quote(args)
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	table.insert( output, p.add_overview_and_toc(args.Overview) )
	
	value, categories = p.add_history_section(args, page_type)
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	return output, output_categories
end


--------------------------------------------------------------------------------
-- one function to add 'Notes', 'Trivia', 'See Also', 'Recommended Reading' and 'Links and References' sections  at the same time
function p.add_notes_trivia_see_also_recommended_links_references(args, page_type, pagename)
	local value
	local categories = {}
	local output_categories = {}
	local output = {}

	table.insert( output, p.add_section('Notes', args.Notes, 2) )
	table.insert( output, p.add_section('Trivia', args.Trivia, 2) )

	table.insert( output, p.add_header('See Also', 2) )
	--add links to standard sub-pages/categories - "Appearances", "Minor Appearances", Mentions", "Images", "Quotes" and "Gallery" 
	value, categories = p.add_links_to_standard_subpages(pagename, page_type)
	output_categories = h.join_tables(output_categories, categories)
	output = h.join_tables(output, value)
	
	table.insert( output, p.add_section('Recommended Reading', args.Recommended, 2) )
	
	table.insert( output, p.add_links_and_references(args, pagename) )

	return output, output_categories
end


--------------------------------------------------------------------------------
-- used to add links to standard sub-pages/categories - "Appearances", "Minor Appearances", Mentions", "Images", "Quotes" and "Gallery" 
function p.add_links_to_standard_subpages(pagename, page_type)
	local list_for_reality = {'Characters', 'Teams', 'Organizations', 'Locations', 'Items', 'Vehicles', 'Races'}
	local s = ''
	local value
	local category
	local output_categories = {}
	local output = {}
	
	value, categories = p.links_to_subcategories(pagename..'/Appearances', 'pages', pagename, ' appearance(s) of ', page_type..' Appearances Category Needed')
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)
	
	value, categories = p.links_to_subcategories(pagename..'/Minor Appearances', 'pages', pagename, ' minor appearance(s) of ', page_type..' Minor Appearances Category Needed')
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)
	
	value, categories = p.links_to_subcategories(pagename..'/Mentions', 'pages', pagename, ' mention(s) of ', page_type..' Mentions Category Needed')
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	if page_type == 'Film' or page_type == 'Episode'
		then value, categories = p.links_to_subcategories(pagename..'/Images', 'files', pagename, ' image(s) from ', page_type..' Images Category Needed')
		else value, categories = p.links_to_subcategories(pagename..'/Images', 'files', pagename, ' image(s) of ', page_type..' Images Category Needed')
	end
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	value, categories = p.links_to_subcategories(pagename..'/Quotes', 'pages', pagename, ' quotation(s) by or about ', 'Quotes Category Needed')
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	value, categories = p.links_to_subcategories('Killed by '..pagename, 'pages', pagename, ' victim(s) killed by ', 'Killed By Category Needed')
	output_categories = h.join_tables(output_categories, categories)
	table.insert(output, value)

	if page_type == 'Team' or page_type == 'Organization'
		then
			value, categories = p.links_to_subcategories(pagename..'/Members', 'pages', pagename, ' member(s) of ', 'Members Category Needed')
			output_categories = h.join_tables(output_categories, categories)
			table.insert(output, value)
	end
	
	if page_type == 'Race' 
		then
			value, categories = p.links_to_subcategories(string.gsub(pagename, '%(Race%)', ''), 'pages', pagename, ' representative(s) of ', 'Race Category Needed')
			output_categories = h.join_tables(output_categories, categories)
			table.insert(output, value)
	end
	
	if page_type == 'Location' 
		then 
			value, categories = p.links_to_subcategories(pagename, 'pages', pagename, ' article(s) related to ', 'Location Category Needed')
			output_categories = h.join_tables(output_categories, categories)
			table.insert(output, value)	
	end

	if page_type ~= 'Reality'
		then
			value, categories = p.links_to_subcategories(pagename..'/Items', 'pages', pagename, ' item(s) used/owned by ', 'Items Category Needed')
			output_categories = h.join_tables(output_categories, categories)
			table.insert(output, value)
		else
			for i = 1, #list_for_reality do
				s = ' '..string.lower(list_for_reality[i])
				value, categories = p.links_to_subcategories(pagename..'/'..list_for_reality[i], 'pages', pagename, s..' that originate from ', list_for_reality[i]..' Category Needed')
				output_categories = h.join_tables(output_categories, categories)
				table.insert(output, value)
			end
	end
	
	return output, output_categories
end


function p.links_to_subcategories(category, page_types, pagename, text, needed)
	local n = 0
	local output_category = ''
	local output = ''
	
	n = h.pages_in_category(category, page_types)
	if n > 0
		then 
			output = '\n* '..h.LinkToCategory(category, n..text..pagename)
			if not h.exists('Category:'..category)
				then output_category = needed
			end
	end

	return output, output_category
end


--------------------------------------------------------------------------------
function p.add_links_and_references(args, pagename)
	local value
	local output = {}
	
	table.insert(output, p.add_header('Links and References', 2) )

	value = args.Marvel
	if not h.isempty(value)
		then 
			value = '<span class="plainlinks">[http://www.marvel.com/characters/'..value..' '..pagename..' on Marvel.com]</span>'
			table.insert(output, '\n* '..value)
	end
	
	value = args.Wikipedia
	if not h.isempty(value)
		then 
			value = h.Link('Wikipedia:'..value, pagename..' on Wikipedia.org')
			table.insert(output, '\n* '..value)
	end
	
	value = args.OfficialWebsite
	if not h.isempty(value)
		then 
			--value = '<span class="plainlinks">['..value..' Official website of '..pagename..']</span>'
			table.insert(output, value)
	end

	value = args.Links
	if not h.isempty(value)
		then table.insert(output, '\n'..value)
	end

	table.insert(output, p.add_list_of_references() )

	value = tostring( mw.html.create('span'):attr('id', 'twitter-button') )
	value = mw.html.create('div')
			:css('width', '99%')
			:css('padding', '5px')
			:css('text-align', 'center')
			:css('font-weight', 'bold')
			:css('border-top', '1px solid #AAAAAA')
			:css('border-bottom', '1px solid #AAAAAA')
			:wikitext('Like this? Let us know!   '..value)
	table.insert(output, tostring(value))

	return table.concat(output)
end


--------------------------------------------------------------------------------
function p.add_list_of_references()
	local output = mw.html.create('div')
	:css('overflow', 'auto')
	:css('height', 'auto')
	:css('max-height', '250px')
	:css('width', '99%')
	:css('font-size', '12px')
	:css('border', '1px solid #AAAAAA')
	:wikitext('<references group="note" /><references />')

	return p.add_header('Footnotes', 3)..'\n'..tostring(output)
end

return p
Advertisement