پرش به محتوا

پودمان:AlborzSports: تفاوت میان نسخه‌ها

از ویکی البرز
صفحه‌ای تازه حاوی «-------------------------------------------------------------------------------- -- Module:AlborzSports -- Wiki Alborz Sports Information System -- Core Engine -- Version 2.1 -------------------------------------------------------------------------------- local p = {} -------------------------------------------------------------------------------- -- LOAD DATA --------------------------------------------------------------------------...» ایجاد کرد
 
جزبدون خلاصۀ ویرایش
 
(۱۷ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد)
خط ۳: خط ۳:
-- Wiki Alborz Sports Information System
-- Wiki Alborz Sports Information System
-- Core Engine
-- Core Engine
-- Version 2.1
-- Version 2.2.2 (Fixed Entity Detection Priority)
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local p = {}
local p = {}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- LOAD DATA
-- LOAD DATA
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local data = mw.loadData("Module:AlborzSports/Data")
local data = mw.loadData("Module:AlborzSports/Data")
--------------------------------------------------------------------------------
-- LOAD DEPENDENCIES
--------------------------------------------------------------------------------
local infobox = require("Module:Infobox")
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- CONFIG
-- CONFIG
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local DEFAULT_IMAGE_WIDTH = data.meta.imageWidth or "280px"
local DEFAULT_IMAGE_WIDTH = data.meta.imageWidth or "250px"
 
 
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- UTILITY FUNCTIONS
-- UTILITY FUNCTIONS
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function clean(value)
local function clean(value)
 
if value == nil then
    if value == nil then
return nil
        return nil
end
    end
if type(value) == "string" then
 
value = mw.text.trim(value)
    if type(value) == "string" then
if value == "" then
 
return nil
        value = mw.text.trim(value)
end
 
end
        if value == "" then
return value
            return nil
        end
 
    end
 
    return value
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- GET ARGUMENTS
-- GET ARGUMENTS
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function getArgs(frame)
local function getArgs(frame)
local args = {}
local source = frame
local parent = frame:getParent()
if parent and next(parent.args) then
source = parent
end
for key, value in pairs(source.args) do
local cleanKey = mw.text.trim(tostring(key))
local cleanValue = clean(value)
if cleanKey ~= "" and cleanValue then
args[cleanKey] = cleanValue
end
end
return args
end
--------------------------------------------------------------------------------
-- NORMALIZE INPUT
--------------------------------------------------------------------------------
local function normalize(args)
local result = {}
for key, value in pairs(args) do
local field = data.lookup[key] or key
result[field] = value
end
return result
end
--------------------------------------------------------------------------------
-- LOCAL ENTITY ALIASES (تکمیل‌کننده Data برای پشتیبانی کامل فارسی)
--------------------------------------------------------------------------------
local localEntityAliases = {
-- People
player = "player",
athlete = "player",
["بازیکن"] = "player",
["ورزشکار"] = "player",
coach = "coach",
["مربی"] = "coach",
referee = "referee",
["داور"] = "referee",
manager = "manager",
["مدیر ورزشی"] = "manager",
["مدیر"] = "manager",


    local args = {}
-- Clubs
club = "club",
sports_club = "club",
sport_club = "club",
["باشگاه"] = "club",
["باشگاه ورزشی"] = "club",


    for k,v in pairs(frame.args) do
-- Academy
academy = "academy",
["آکادمی"] = "academy",
["آکادمی ورزشی"] = "academy",


        local key = mw.text.trim(k)
-- Facilities
stadium = "stadium",
["ورزشگاه"] = "stadium",
gym = "gym",
gymnasium = "gym",
["سالن"] = "gym",
["سالن ورزشی"] = "gym",
pool = "pool",
swimming_pool = "pool",
["استخر"] = "pool",
zurkhaneh = "zurkhaneh",
["زورخانه"] = "zurkhaneh",
sports_school = "sports_school",
["مدرسه ورزشی"] = "sports_school",
sports_complex = "sports_complex",
["مجموعه ورزشی"] = "sports_complex",
facility = "facility",
["مجموعه"] = "facility",


        local value = clean(v)
-- Organization / Board
board = "board",
sports_board = "board",
["هیئت"] = "board",
["هیئت ورزشی"] = "board",


        if value then
-- Competition
competition = "competition",
["مسابقه"] = "competition",
["مسابقات"] = "competition"
}
--------------------------------------------------------------------------------
-- ENTITY DETECTION
--------------------------------------------------------------------------------
local function getEntity(args)
local entity = clean(args.entity_type)


            args[key] = value
----------------------------------------------------------------
-- EXPLICIT ENTITY TYPE
--
-- اگر کاربر صریحاً entity_type داده باشد،
-- بالاترین اولویت را دارد.
----------------------------------------------------------------
if entity then
entity = (data.entityAliases and data.entityAliases[entity])
or localEntityAliases[entity]
or entity


        end
if data.entities[entity] then
 
return entity
    end
end
 
end
    return args
 
end


----------------------------------------------------------------
-- INFERENCE FROM SUBTYPE (نوع)
----------------------------------------------------------------
local subtype = clean(args.subtype)


--------------------------------------------------------------------------------
if subtype then
-- NORMALIZE INPUT
local lowerSubtype = mw.ustring.lower(subtype)
--------------------------------------------------------------------------------


local function normalize(args)
------------------------------------------------------------
-- CLUB
------------------------------------------------------------
if mw.ustring.find(subtype, "باشگاه")
or mw.ustring.find(lowerSubtype, "club") then
return "club"
end


    local result = {}
------------------------------------------------------------
-- ACADEMY
------------------------------------------------------------
if mw.ustring.find(subtype, "آکادمی")
or mw.ustring.find(lowerSubtype, "academy") then
return "academy"
end


    for key,value in pairs(args) do
------------------------------------------------------------
-- STADIUM
------------------------------------------------------------
if mw.ustring.find(subtype, "ورزشگاه")
or mw.ustring.find(lowerSubtype, "stadium") then
return "stadium"
end


        local field = data.lookup[key] or key
------------------------------------------------------------
-- GYM
------------------------------------------------------------
if mw.ustring.find(subtype, "سالن")
or mw.ustring.find(lowerSubtype, "gym") then
return "gym"
end


        result[field] = value
------------------------------------------------------------
-- SWIMMING POOL
------------------------------------------------------------
if mw.ustring.find(subtype, "استخر")
or mw.ustring.find(lowerSubtype, "pool") then
return "pool"
end


    end
------------------------------------------------------------
-- ZURKHANEH
------------------------------------------------------------
if mw.ustring.find(subtype, "زورخانه")
or mw.ustring.find(lowerSubtype, "zurkhaneh") then
return "zurkhaneh"
end


    return result
------------------------------------------------------------
-- SPORTS SCHOOL
------------------------------------------------------------
if mw.ustring.find(subtype, "مدرسه")
or mw.ustring.find(lowerSubtype, "school") then
return "sports_school"
end


end
------------------------------------------------------------
-- SPORTS COMPLEX
------------------------------------------------------------
if mw.ustring.find(subtype, "مجموعه")
or mw.ustring.find(lowerSubtype, "complex") then
return "sports_complex"
end


------------------------------------------------------------
-- SPORTS BOARD
------------------------------------------------------------
if mw.ustring.find(subtype, "هیئت")
or mw.ustring.find(lowerSubtype, "board") then
return "board"
end
end


--------------------------------------------------------------------------------
----------------------------------------------------------------
-- ENTITY DETECTION
-- INFERENCE FROM FIELDS
--------------------------------------------------------------------------------
----------------------------------------------------------------
if args.established
or args.manager
or args.owner
or args.president
or args.ceo
or args.stadium
or args.capacity
or args.facilities
or args.services
or (args.address and args.city) then


local function getEntity(args)
------------------------------------------------------------
-- STADIUM
------------------------------------------------------------
if args.stadium or args.capacity then
return "stadium"
end


    local entity = args.entity_type
------------------------------------------------------------
-- CLUB
------------------------------------------------------------
return "club"
end


    if not entity then
----------------------------------------------------------------
        entity = data.defaults.entity_type
-- DEFAULT ENTITY
    end
----------------------------------------------------------------
local defaultEntity = data.defaults.entity_type or "player"


    if data.entities[entity] then
defaultEntity = (data.entityAliases and data.entityAliases[defaultEntity])
        return entity
or localEntityAliases[defaultEntity]
    end
or defaultEntity


    return "player"
if data.entities[defaultEntity] then
return defaultEntity
end


----------------------------------------------------------------
-- FINAL SAFE FALLBACK
----------------------------------------------------------------
return "player"
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- TITLE
-- TITLE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function getTitle(entity, args)
local function getTitle(entity,args)
if args.name then
 
return args.name
    if args.name then
end
        return args.name
local entityData = data.entities[entity]
    end
if entityData and entityData.title then
 
return entityData.title
    if data.entities[entity] then
end
        return data.entities[entity].title
return data.meta.title
    end
 
    return data.meta.title
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- IMAGE HANDLING
-- IMAGE HANDLING
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function buildImage(args)
local function buildImage(args)
 
if not args.image then
    if not args.image then
return nil
        return nil
end
    end
local width = args.image_width or DEFAULT_IMAGE_WIDTH
 
local caption = args.caption or ""
    local width = args.image_width or DEFAULT_IMAGE_WIDTH
return {
 
type = "image",
    local caption = args.caption or ""
image = args.image,
 
size = width,
    local image = {
caption = caption
 
}
        type = "image",
 
        image = args.image,
 
        size = width,
 
        caption = caption
 
    }
 
    return image
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- FIELD BUILDER
-- FIELD BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function buildFields(layout, args)
local function buildFields(layouts,args)
local fields = {}
 
for _, item in ipairs(layout) do
    local fields = {}
local label = item[1]
 
local key = item[2]
    for _,layout in ipairs(layouts) do
local value = clean(args[key])
 
if value then
        local label = layout[1]
table.insert(fields, {
 
label = label,
        local key = layout[2]
value = value
 
})
        local value = args[key]
end
 
end
        value = clean(value)
return fields
 
        if value then
 
            table.insert(fields,{
 
                label = label,
 
                value = value
 
            })
 
        end
 
    end
 
    return fields
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- GROUP BUILDER
-- GROUP BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function buildGroups(entity, args)
local groups = {}
local entityData = data.entities[entity]
if not entityData then
return groups
end


local function buildGroups(entity,args)
for _, layoutName in ipairs(entityData.layouts or {}) do
 
local layout = data.layouts[layoutName]
    local groups = {}
if layout then
 
local fields = buildFields(layout, args)
    local entityData = data.entities[entity]
if #fields > 0 then
 
local title = data.layoutTitles[layoutName] or layoutName
    if not entityData then
table.insert(groups, {
        return groups
name = title,
    end
fields = fields
 
})
 
end
    for _,layoutName in ipairs(entityData.layouts) do
end
 
end
 
return groups
        local layout = data.layouts[layoutName]
end
 
--------------------------------------------------------------------------------
 
-- MEDAL BUILDER
        if layout then
--------------------------------------------------------------------------------
 
local function buildMedals(args)
 
local medals = clean(args.medaltemplates)
            local fields = buildFields(layout,args)
if not medals then
 
medals = clean(args.medals)
 
end
            if #fields > 0 then
if not medals then
 
return nil
 
end
                table.insert(groups,{
 
                    name = layoutName,
 
                    fields = fields
 
                })
 
 
            end
 
 
        end
 
 
    end
 
 
    return groups


local frame = mw.getCurrentFrame()
local content = frame:expandTemplate{
title = "Infobox medal templates",
args = {
medals = medals,
title = args.medaltemplates_title or "",
expand = "yes"
}
}
content = clean(content)
if not content then
return nil
end
return content
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- INFOBOX BUILDER
-- INFOBOX BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function buildInfobox(entity, args)
local box = {}
box.title = getTitle(entity, args)


local function buildInfobox(entity,args)
local image = buildImage(args)
 
if image then
 
box.image = image
    local box = {}
end
 


    box.title = getTitle(entity,args)
box.groups = buildGroups(entity, args)
 
box.medals = buildMedals(args)
 
    local image = buildImage(args)
 
 
    if image then
 
        box.image = image
 
    end
 
 
 
    box.groups = buildGroups(entity,args)
 
 
 
    return box


return box
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- RENDER TEXT
-- RENDER VALUE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function renderValue(value)
local function renderValue(value)
 
if type(value) == "table" then
 
return table.concat(value, "، ")
    if type(value) == "table" then
end
 
return tostring(value)
        return table.concat(value,"، ")
 
    end
 
 
    return tostring(value)
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- RENDER INFOBOX
-- RENDER INFOBOX
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function renderInfobox(box)
local function renderInfobox(box)
local result = {}


    local result = {}
table.insert(result, '<table class="sport-infobox">')


    table.insert(result, '<table class="infobox sport-infobox">')
-- Title
if box.title then
table.insert(result,
'<tr class="sport-infobox-title">' ..
'<th colspan="2">' .. box.title .. '</th></tr>'
)
end


-- Image
if box.image then
local image = box.image
local file = image.image
local size = image.size or DEFAULT_IMAGE_WIDTH
local caption = image.caption or ""


table.insert(result,
'<tr><td colspan="2" class="sport-infobox-image">' ..
'[[File:' .. file .. '|' .. size .. ']]'
)
if caption ~= "" then
table.insert(result,
'<div class="sport-infobox-caption">' .. caption .. '</div>'
)
end
table.insert(result, '</td></tr>')
end


    ------------------------------------------------------------
-- Groups
    -- TITLE
for _, group in ipairs(box.groups) do
    ------------------------------------------------------------
table.insert(result,
 
'<tr class="sport-infobox-header">' ..
    if box.title then
'<th colspan="2">' .. group.name .. '</th></tr>'
 
)
        table.insert(result,
for _, field in ipairs(group.fields) do
 
table.insert(result,
            '<tr class="infobox-title">' ..
'<tr>' ..
            '<th colspan="2">' ..
'<th class="sport-infobox-label">' .. field.label .. '</th>' ..
            box.title ..
'<td class="sport-infobox-value">' .. renderValue(field.value) .. '</td>' ..
            '</th></tr>'
'</tr>'
 
)
        )
end
 
end
    end
 
 
 
    ------------------------------------------------------------
    -- IMAGE
    ------------------------------------------------------------
 
    if box.image then
 
 
        local image = box.image
 
 
        local file = image.image
 
 
        local size = image.size or DEFAULT_IMAGE_WIDTH
 
 
        local caption = image.caption or ""
 
 
        table.insert(result,
 
            '<tr>' ..
            '<td colspan="2" class="infobox-image">' ..
 
            '[[File:' ..
            file ..
            '|' ..
            size ..
            ']]'
 
 
        )
 
 
        if caption ~= "" then
 
 
            table.insert(result,
 
                '<br /><small>' ..
                caption ..
                '</small>'
 
            )
 
 
        end
 
 
        table.insert(result,
 
            '</td></tr>'
 
        )
 
 
    end
 
 
 
    ------------------------------------------------------------
    -- GROUPS
    ------------------------------------------------------------
 
    for _,group in ipairs(box.groups) do
 
 
 
        table.insert(result,
 
 
            '<tr class="infobox-header">' ..
 
            '<th colspan="2">' ..
 
            group.name ..
 
            '</th></tr>'
 
 
        )
 
 
 
        for _,field in ipairs(group.fields) do
 
 
            table.insert(result,
 
 
                '<tr>' ..
 
                '<th>' ..
                field.label ..
                '</th>' ..
 
                '<td>' ..
                renderValue(field.value) ..
                '</td>' ..
 
                '</tr>'
 
 
            )
 
 
        end
 
 
    end
 
 
 
    ------------------------------------------------------------
    -- CLOSE
    ------------------------------------------------------------
 
    table.insert(result,
 
        '</table>'
 
    )
 
 
    return table.concat(result,"\n")


-- Medals
if box.medals then
table.insert(result,
'<tr><td colspan="2" class="sport-infobox-medals">' ..
box.medals .. '</td></tr>'
)
end


table.insert(result, '</table>')
return table.concat(result, "\n")
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- PUBLIC FUNCTION
-- PUBLIC FUNCTION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.main(frame)
function p.main(frame)
 
local args = getArgs(frame)
 
args = normalize(args)
    local args = getArgs(frame)
local entity = getEntity(args)
 
local box = buildInfobox(entity, args)
 
return renderInfobox(box)
    args = normalize(args)
 
 
 
    local entity = getEntity(args)
 
 
 
    local box = buildInfobox(entity,args)
 
 
 
    return renderInfobox(box)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- TEMPLATE ENTRY
-- TEMPLATE ENTRY
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.infobox(frame)
function p.infobox(frame)
 
return p.main(frame)
    return p.main(frame)
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- DEBUG FUNCTION
-- DEBUG FUNCTION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.test(frame)
function p.test(frame)
local args = getArgs(frame)
args = normalize(args)
local entity = getEntity(args)
local entityData = data.entities[entity]


    local args = getArgs(frame)
if not entityData then
 
return "Entity not found: " .. tostring(entity)
    args = normalize(args)
end
 
 
    local entity = getEntity(args)
 
 
    local entityData = data.entities[entity]
 
 
    if not entityData then
 
        return "Entity not found"
 
    end


local result = {}
table.insert(result, "Entity: " .. entity)
table.insert(result, "Title: " .. tostring(entityData.title))
table.insert(result, "Layouts: " .. table.concat(entityData.layouts or {}, ", "))
table.insert(result, "Subtype: " .. tostring(args.subtype or "NOT FOUND"))
table.insert(result, "Coach: " .. tostring(args.coach or "NOT FOUND"))
table.insert(result, "Medals: " .. tostring(args.medaltemplates or args.medals or "NOT FOUND"))


    local result = {}
return table.concat(result, "\n")
 
 
 
    table.insert(result,
 
        "Entity: " .. entity
 
    )
 
 
 
    table.insert(result,
 
        "Title: " .. entityData.title
 
    )
 
 
 
    table.insert(result,
 
        "Layouts: " ..
 
        table.concat(entityData.layouts,", ")
 
    )
 
 
    return table.concat(result,"\n")
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- GET ENTITY LIST
-- GET ENTITY LIST
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.entities()
function p.entities()
 
local result = {}
    local result = {}
for key, value in pairs(data.entities) do
 
table.insert(result, key .. " : " .. tostring(value.title))
 
end
    for key,value in pairs(data.entities) do
table.sort(result)
 
return table.concat(result, "\n")
 
        table.insert(result,
 
            key .. " : " .. value.title
 
        )
 
 
    end
 
 
    return table.concat(result,"\n")
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- GET VERSION
-- GET VERSION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.version()
function p.version()
 
return data.version.name .. " v" .. data.version.major .. "." .. data.version.minor
    return
 
        data.version.name ..
 
        " v" ..
 
        data.version.major ..
 
        "." ..
 
        data.version.minor
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORT
-- EXPORT
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
return p
return p

نسخهٔ کنونی تا ‏۱۰ اوت ۲۰۲۶، ساعت ۱۸:۲۹

توضیحات این پودمان می‌تواند در پودمان:AlborzSports/توضیحات قرار گیرد.

--------------------------------------------------------------------------------
-- Module:AlborzSports
-- Wiki Alborz Sports Information System
-- Core Engine
-- Version 2.2.2 (Fixed Entity Detection Priority)
--------------------------------------------------------------------------------
local p = {}
--------------------------------------------------------------------------------
-- LOAD DATA
--------------------------------------------------------------------------------
local data = mw.loadData("Module:AlborzSports/Data")
--------------------------------------------------------------------------------
-- CONFIG
--------------------------------------------------------------------------------
local DEFAULT_IMAGE_WIDTH = data.meta.imageWidth or "280px"
--------------------------------------------------------------------------------
-- UTILITY FUNCTIONS
--------------------------------------------------------------------------------
local function clean(value)
	if value == nil then
		return nil
	end
	if type(value) == "string" then
		value = mw.text.trim(value)
		if value == "" then
			return nil
		end
	end
	return value
end
--------------------------------------------------------------------------------
-- GET ARGUMENTS
--------------------------------------------------------------------------------
local function getArgs(frame)
	local args = {}
	local source = frame
	local parent = frame:getParent()
	if parent and next(parent.args) then
		source = parent
	end
	for key, value in pairs(source.args) do
		local cleanKey = mw.text.trim(tostring(key))
		local cleanValue = clean(value)
		if cleanKey ~= "" and cleanValue then
			args[cleanKey] = cleanValue
		end
	end
	return args
end
--------------------------------------------------------------------------------
-- NORMALIZE INPUT
--------------------------------------------------------------------------------
local function normalize(args)
	local result = {}
	for key, value in pairs(args) do
		local field = data.lookup[key] or key
		result[field] = value
	end
	return result
end
--------------------------------------------------------------------------------
-- LOCAL ENTITY ALIASES (تکمیل‌کننده Data برای پشتیبانی کامل فارسی)
--------------------------------------------------------------------------------
local localEntityAliases = {
	-- People
	player = "player",
	athlete = "player",
	["بازیکن"] = "player",
	["ورزشکار"] = "player",
	coach = "coach",
	["مربی"] = "coach",
	referee = "referee",
	["داور"] = "referee",
	manager = "manager",
	["مدیر ورزشی"] = "manager",
	["مدیر"] = "manager",

	-- Clubs
	club = "club",
	sports_club = "club",
	sport_club = "club",
	["باشگاه"] = "club",
	["باشگاه ورزشی"] = "club",

	-- Academy
	academy = "academy",
	["آکادمی"] = "academy",
	["آکادمی ورزشی"] = "academy",

	-- Facilities
	stadium = "stadium",
	["ورزشگاه"] = "stadium",
	gym = "gym",
	gymnasium = "gym",
	["سالن"] = "gym",
	["سالن ورزشی"] = "gym",
	pool = "pool",
	swimming_pool = "pool",
	["استخر"] = "pool",
	zurkhaneh = "zurkhaneh",
	["زورخانه"] = "zurkhaneh",
	sports_school = "sports_school",
	["مدرسه ورزشی"] = "sports_school",
	sports_complex = "sports_complex",
	["مجموعه ورزشی"] = "sports_complex",
	facility = "facility",
	["مجموعه"] = "facility",

	-- Organization / Board
	board = "board",
	sports_board = "board",
	["هیئت"] = "board",
	["هیئت ورزشی"] = "board",

	-- Competition
	competition = "competition",
	["مسابقه"] = "competition",
	["مسابقات"] = "competition"
}
--------------------------------------------------------------------------------
-- ENTITY DETECTION
--------------------------------------------------------------------------------
local function getEntity(args)
	local entity = clean(args.entity_type)

	----------------------------------------------------------------
	-- EXPLICIT ENTITY TYPE
	--
	-- اگر کاربر صریحاً entity_type داده باشد،
	-- بالاترین اولویت را دارد.
	----------------------------------------------------------------
	if entity then
		entity = (data.entityAliases and data.entityAliases[entity])
			or localEntityAliases[entity]
			or entity

		if data.entities[entity] then
			return entity
		end
	end

	----------------------------------------------------------------
	-- INFERENCE FROM SUBTYPE (نوع)
	----------------------------------------------------------------
	local subtype = clean(args.subtype)

	if subtype then
		local lowerSubtype = mw.ustring.lower(subtype)

		------------------------------------------------------------
		-- CLUB
		------------------------------------------------------------
		if mw.ustring.find(subtype, "باشگاه")
			or mw.ustring.find(lowerSubtype, "club") then
			return "club"
		end

		------------------------------------------------------------
		-- ACADEMY
		------------------------------------------------------------
		if mw.ustring.find(subtype, "آکادمی")
			or mw.ustring.find(lowerSubtype, "academy") then
			return "academy"
		end

		------------------------------------------------------------
		-- STADIUM
		------------------------------------------------------------
		if mw.ustring.find(subtype, "ورزشگاه")
			or mw.ustring.find(lowerSubtype, "stadium") then
			return "stadium"
		end

		------------------------------------------------------------
		-- GYM
		------------------------------------------------------------
		if mw.ustring.find(subtype, "سالن")
			or mw.ustring.find(lowerSubtype, "gym") then
			return "gym"
		end

		------------------------------------------------------------
		-- SWIMMING POOL
		------------------------------------------------------------
		if mw.ustring.find(subtype, "استخر")
			or mw.ustring.find(lowerSubtype, "pool") then
			return "pool"
		end

		------------------------------------------------------------
		-- ZURKHANEH
		------------------------------------------------------------
		if mw.ustring.find(subtype, "زورخانه")
			or mw.ustring.find(lowerSubtype, "zurkhaneh") then
			return "zurkhaneh"
		end

		------------------------------------------------------------
		-- SPORTS SCHOOL
		------------------------------------------------------------
		if mw.ustring.find(subtype, "مدرسه")
			or mw.ustring.find(lowerSubtype, "school") then
			return "sports_school"
		end

		------------------------------------------------------------
		-- SPORTS COMPLEX
		------------------------------------------------------------
		if mw.ustring.find(subtype, "مجموعه")
			or mw.ustring.find(lowerSubtype, "complex") then
			return "sports_complex"
		end

		------------------------------------------------------------
		-- SPORTS BOARD
		------------------------------------------------------------
		if mw.ustring.find(subtype, "هیئت")
			or mw.ustring.find(lowerSubtype, "board") then
			return "board"
		end
	end

	----------------------------------------------------------------
	-- INFERENCE FROM FIELDS
	----------------------------------------------------------------
	if args.established
		or args.manager
		or args.owner
		or args.president
		or args.ceo
		or args.stadium
		or args.capacity
		or args.facilities
		or args.services
		or (args.address and args.city) then

		------------------------------------------------------------
		-- STADIUM
		------------------------------------------------------------
		if args.stadium or args.capacity then
			return "stadium"
		end

		------------------------------------------------------------
		-- CLUB
		------------------------------------------------------------
		return "club"
	end

	----------------------------------------------------------------
	-- DEFAULT ENTITY
	----------------------------------------------------------------
	local defaultEntity = data.defaults.entity_type or "player"

	defaultEntity = (data.entityAliases and data.entityAliases[defaultEntity])
		or localEntityAliases[defaultEntity]
		or defaultEntity

	if data.entities[defaultEntity] then
		return defaultEntity
	end

	----------------------------------------------------------------
	-- FINAL SAFE FALLBACK
	----------------------------------------------------------------
	return "player"
end
--------------------------------------------------------------------------------
-- TITLE
--------------------------------------------------------------------------------
local function getTitle(entity, args)
	if args.name then
		return args.name
	end
	local entityData = data.entities[entity]
	if entityData and entityData.title then
		return entityData.title
	end
	return data.meta.title
end
--------------------------------------------------------------------------------
-- IMAGE HANDLING
--------------------------------------------------------------------------------
local function buildImage(args)
	if not args.image then
		return nil
	end
	local width = args.image_width or DEFAULT_IMAGE_WIDTH
	local caption = args.caption or ""
	return {
		type = "image",
		image = args.image,
		size = width,
		caption = caption
	}
end
--------------------------------------------------------------------------------
-- FIELD BUILDER
--------------------------------------------------------------------------------
local function buildFields(layout, args)
	local fields = {}
	for _, item in ipairs(layout) do
		local label = item[1]
		local key = item[2]
		local value = clean(args[key])
		if value then
			table.insert(fields, {
				label = label,
				value = value
			})
		end
	end
	return fields
end
--------------------------------------------------------------------------------
-- GROUP BUILDER
--------------------------------------------------------------------------------
local function buildGroups(entity, args)
	local groups = {}
	local entityData = data.entities[entity]
	if not entityData then
		return groups
	end

	for _, layoutName in ipairs(entityData.layouts or {}) do
		local layout = data.layouts[layoutName]
		if layout then
			local fields = buildFields(layout, args)
			if #fields > 0 then
				local title = data.layoutTitles[layoutName] or layoutName
				table.insert(groups, {
					name = title,
					fields = fields
				})
			end
		end
	end
	return groups
end
--------------------------------------------------------------------------------
-- MEDAL BUILDER
--------------------------------------------------------------------------------
local function buildMedals(args)
	local medals = clean(args.medaltemplates)
	if not medals then
		medals = clean(args.medals)
	end
	if not medals then
		return nil
	end

	local frame = mw.getCurrentFrame()
	local content = frame:expandTemplate{
		title = "Infobox medal templates",
		args = {
			medals = medals,
			title = args.medaltemplates_title or "",
			expand = "yes"
		}
	}
	content = clean(content)
	if not content then
		return nil
	end
	return content
end
--------------------------------------------------------------------------------
-- INFOBOX BUILDER
--------------------------------------------------------------------------------
local function buildInfobox(entity, args)
	local box = {}
	box.title = getTitle(entity, args)

	local image = buildImage(args)
	if image then
		box.image = image
	end

	box.groups = buildGroups(entity, args)
	box.medals = buildMedals(args)

	return box
end
--------------------------------------------------------------------------------
-- RENDER VALUE
--------------------------------------------------------------------------------
local function renderValue(value)
	if type(value) == "table" then
		return table.concat(value, "، ")
	end
	return tostring(value)
end
--------------------------------------------------------------------------------
-- RENDER INFOBOX
--------------------------------------------------------------------------------
local function renderInfobox(box)
	local result = {}

	table.insert(result, '<table class="sport-infobox">')

	-- Title
	if box.title then
		table.insert(result,
			'<tr class="sport-infobox-title">' ..
			'<th colspan="2">' .. box.title .. '</th></tr>'
		)
	end

	-- Image
	if box.image then
		local image = box.image
		local file = image.image
		local size = image.size or DEFAULT_IMAGE_WIDTH
		local caption = image.caption or ""

		table.insert(result,
			'<tr><td colspan="2" class="sport-infobox-image">' ..
			'[[File:' .. file .. '|' .. size .. ']]'
		)
		if caption ~= "" then
			table.insert(result,
				'<div class="sport-infobox-caption">' .. caption .. '</div>'
			)
		end
		table.insert(result, '</td></tr>')
	end

	-- Groups
	for _, group in ipairs(box.groups) do
		table.insert(result,
			'<tr class="sport-infobox-header">' ..
			'<th colspan="2">' .. group.name .. '</th></tr>'
		)
		for _, field in ipairs(group.fields) do
			table.insert(result,
				'<tr>' ..
				'<th class="sport-infobox-label">' .. field.label .. '</th>' ..
				'<td class="sport-infobox-value">' .. renderValue(field.value) .. '</td>' ..
				'</tr>'
			)
		end
	end

	-- Medals
	if box.medals then
		table.insert(result,
			'<tr><td colspan="2" class="sport-infobox-medals">' ..
			box.medals .. '</td></tr>'
		)
	end

	table.insert(result, '</table>')
	return table.concat(result, "\n")
end
--------------------------------------------------------------------------------
-- PUBLIC FUNCTION
--------------------------------------------------------------------------------
function p.main(frame)
	local args = getArgs(frame)
	args = normalize(args)
	local entity = getEntity(args)
	local box = buildInfobox(entity, args)
	return renderInfobox(box)
end
--------------------------------------------------------------------------------
-- TEMPLATE ENTRY
--------------------------------------------------------------------------------
function p.infobox(frame)
	return p.main(frame)
end
--------------------------------------------------------------------------------
-- DEBUG FUNCTION
--------------------------------------------------------------------------------
function p.test(frame)
	local args = getArgs(frame)
	args = normalize(args)
	local entity = getEntity(args)
	local entityData = data.entities[entity]

	if not entityData then
		return "Entity not found: " .. tostring(entity)
	end

	local result = {}
	table.insert(result, "Entity: " .. entity)
	table.insert(result, "Title: " .. tostring(entityData.title))
	table.insert(result, "Layouts: " .. table.concat(entityData.layouts or {}, ", "))
	table.insert(result, "Subtype: " .. tostring(args.subtype or "NOT FOUND"))
	table.insert(result, "Coach: " .. tostring(args.coach or "NOT FOUND"))
	table.insert(result, "Medals: " .. tostring(args.medaltemplates or args.medals or "NOT FOUND"))

	return table.concat(result, "\n")
end
--------------------------------------------------------------------------------
-- GET ENTITY LIST
--------------------------------------------------------------------------------
function p.entities()
	local result = {}
	for key, value in pairs(data.entities) do
		table.insert(result, key .. " : " .. tostring(value.title))
	end
	table.sort(result)
	return table.concat(result, "\n")
end
--------------------------------------------------------------------------------
-- GET VERSION
--------------------------------------------------------------------------------
function p.version()
	return data.version.name .. " v" .. data.version.major .. "." .. data.version.minor
end
--------------------------------------------------------------------------------
-- EXPORT
--------------------------------------------------------------------------------
return p