پرش به محتوا

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

از ویکی البرز
جزبدون خلاصۀ ویرایش
جزبدون خلاصۀ ویرایش
 
(۱۳ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد)
خط ۲: خط ۲:
-- Module:AlborzSports
-- Module:AlborzSports
-- Wiki Alborz Sports Information System
-- Wiki Alborz Sports Information System
-- Version 3.0
-- Core Engine
-- 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")
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- CONFIGURATION
-- CONFIG
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local DEFAULT_IMAGE_WIDTH = data.meta.imageWidth or "280px"
local INFOBOX_CLASS =
    data.meta.class
    or "infobox sport-infobox"
 
 
local DEFAULT_IMAGE_WIDTH =
    data.defaults.image_width
    or data.meta.imageWidth
    or "250px"
 
 
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- HELPERS
-- UTILITY FUNCTIONS
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function clean(value)
local function clean(value)
 
if value == nil then
    if not value then
return nil
        return nil
end
    end
if type(value) == "string" then
 
value = mw.text.trim(value)
 
if value == "" then
    value =
return nil
        mw.text.trim(
end
            tostring(value)
end
        )
return value
 
 
    if value == "" then
        return nil
    end
 
 
    return value
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- ARGUMENT SOURCE
-- GET ARGUMENTS
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function getArgs(frame)
local function getArgsFrame(frame)
local args = {}
 
local source = frame
    local parent =
local parent = frame:getParent()
        frame:getParent()
if parent and next(parent.args) then
 
source = parent
 
end
    if parent
for key, value in pairs(source.args) do
    and next(parent.args) then
local cleanKey = mw.text.trim(tostring(key))
 
local cleanValue = clean(value)
        return parent
if cleanKey ~= "" and cleanValue then
 
args[cleanKey] = cleanValue
    end
end
 
end
 
return args
    return frame
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- NORMALIZE ARGUMENTS
-- NORMALIZE INPUT
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function normalize(args)
local function normalizeArgs(frame)
local result = {}
 
for key, value in pairs(args) do
    frame =
local field = data.lookup[key] or key
        getArgsFrame(frame)
result[field] = value
 
end
 
return result
    local args = {}
 
 
    for key, value in pairs(frame.args) do
 
 
        local cleanKey =
            mw.text.trim(
                tostring(key)
            )
 
 
        local cleanValue =
            clean(value)
 
 
        if cleanValue then
 
 
            local field =
                data.lookup[cleanKey]
                or cleanKey
 
 
            args[field] =
                cleanValue
 
 
        end
 
    end
 
 
    return args
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- ENTITY DETECTION
-- LOCAL ENTITY ALIASES (تکمیل‌کننده Data برای پشتیبانی کامل فارسی)
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local localEntityAliases = {
-- People
player = "player",
athlete = "player",
["بازیکن"] = "player",
["ورزشکار"] = "player",
coach = "coach",
["مربی"] = "coach",
referee = "referee",
["داور"] = "referee",
manager = "manager",
["مدیر ورزشی"] = "manager",
["مدیر"] = "manager",


local function detectEntity(args)
-- Clubs
 
club = "club",
 
sports_club = "club",
    if args.entity_type
sport_club = "club",
    and data.entities[args.entity_type] then
["باشگاه"] = "club",
["باشگاه ورزشی"] = "club",


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


    end
-- Facilities
 
stadium = "stadium",
 
["ورزشگاه"] = "stadium",
    return
gym = "gym",
        data.defaults.entity_type
gymnasium = "gym",
        or "player"
["سالن"] = "gym",
 
["سالن ورزشی"] = "gym",
end
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"
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- GET ENTITY
-- ENTITY DETECTION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function getEntity(args)
local entity = clean(args.entity_type)


local function getEntity(entityType)
----------------------------------------------------------------
-- 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


    if data.entities[entityType] then
----------------------------------------------------------------
-- INFERENCE FROM SUBTYPE (نوع)
----------------------------------------------------------------
local subtype = clean(args.subtype)


        return data.entities[entityType]
if subtype then
local lowerSubtype = mw.ustring.lower(subtype)


    end
------------------------------------------------------------
-- 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


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


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


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


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


    local value =
------------------------------------------------------------
        args[field]
-- 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


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


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


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


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


    return nil
if data.entities[defaultEntity] then
return defaultEntity
end


----------------------------------------------------------------
-- FINAL SAFE FALLBACK
----------------------------------------------------------------
return "player"
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- LABEL
-- TITLE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function getTitle(entity, args)
local function getLabel(field)
if args.name then
 
return args.name
 
end
    if data.fieldDefinitions
local entityData = data.entities[entity]
    and data.fieldDefinitions[field]
if entityData and entityData.title then
    and data.fieldDefinitions[field].label then
return entityData.title
 
end
 
return data.meta.title
        return
            data.fieldDefinitions[field].label
 
    end
 
 
    return field
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- TITLE
-- IMAGE HANDLING
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function buildImage(args)
local function renderTitle(box, entityType, args)
if not args.image then
 
return nil
 
end
    local entity =
local width = args.image_width or DEFAULT_IMAGE_WIDTH
        getEntity(entityType)
local caption = args.caption or ""
 
return {
 
type = "image",
    local title =
image = args.image,
        args.name
size = width,
        or entity.title
caption = caption
        or data.meta.title
}
 
 
 
    box
        :tag("tr")
        :tag("th")
        :attr("colspan","2")
        :addClass("infobox-title")
        :wikitext(title)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- IMAGE
-- FIELD BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function buildFields(layout, args)
local function renderImage(box,args)
local fields = {}
 
for _, item in ipairs(layout) do
 
local label = item[1]
    if not args.image then
local key = item[2]
 
local value = clean(args[key])
        return
if value then
 
table.insert(fields, {
    end
label = label,
 
value = value
 
})
    local width =
end
        args.image_width
end
        or DEFAULT_IMAGE_WIDTH
return fields
 
 
 
    local image =
        mw.html.create("div")
        :addClass("infobox-image")
 
 
 
    image
        :wikitext(
            string.format(
                "[[پرونده:%s|%s]]",
                args.image,
                width
            )
        )
 
 
    if args.caption then
 
 
        image
            :tag("div")
            :addClass("infobox-caption")
            :wikitext(args.caption)
 
 
    end
 
 
 
    box
        :tag("tr")
        :tag("td")
        :attr("colspan","2")
        :node(image)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- SECTION HEADER
-- GROUP BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function buildGroups(entity, args)
local groups = {}
local entityData = data.entities[entity]
if not entityData then
return groups
end


local function renderSectionHeader(box,layout)
for _, layoutName in ipairs(entityData.layouts or {}) do
 
local layout = data.layouts[layoutName]
 
if layout then
    local title =
local fields = buildFields(layout, args)
        layout
if #fields > 0 then
 
local title = data.layoutTitles[layoutName] or layoutName
 
table.insert(groups, {
 
name = title,
    box
fields = fields
        :tag("tr")
})
        :tag("th")
end
        :attr("colspan","2")
end
        :addClass("infobox-header")
end
        :wikitext(title)
return groups
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- FIELD RENDERER
-- 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 function renderField(box,field,value)
local frame = mw.getCurrentFrame()
 
local content = frame:expandTemplate{
 
title = "Infobox medal templates",
    local row =
args = {
        box
medals = medals,
        :tag("tr")
title = args.medaltemplates_title or "",
 
expand = "yes"
 
}
 
}
    row
content = clean(content)
        :tag("th")
if not content then
        :wikitext(
return nil
            getLabel(field)
end
        )
return content
 
 
 
    row
        :tag("td")
        :wikitext(value)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- SPECIAL FIELDS
-- INFOBOX BUILDER
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function buildInfobox(entity, args)
local box = {}
box.title = getTitle(entity, args)


local function renderSpecialField(box,field,value)
local image = buildImage(args)
 
if image then
 
box.image = image
    if field == "website" then
end
 
 
        value =
            string.format(
                "[%s وبگاه]",
                value
            )
 
 
    elseif field == "instagram" then
 
 
        value =
            string.format(
                "[%s اینستاگرام]",
                value
            )
 
 
    elseif field == "telegram" then
 
 
        value =
            string.format(
                "[%s تلگرام]",
                value
            )
 
 
    end
 
 


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


return box
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- LAYOUT PROCESSOR
-- RENDER VALUE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
local function renderValue(value)
local function renderLayout(box,args,layout)
if type(value) == "table" then
 
return table.concat(value, "، ")
 
end
    local fields =
return tostring(value)
        data.layouts[layout]
 
 
    if not fields then
 
        return
 
    end
 
 
 
    local rows = {}
 
 
 
    for _, item in ipairs(fields) do
 
 
        local label =
            item[1]
 
 
        local field =
            item[2]
 
 
        local value =
            getValue(
                args,
                field
            )
 
 
        if value then
 
 
            table.insert(
                rows,
                {
                    label = label,
                    field = field,
                    value = value
                }
            )
 
 
        end
 
 
    end
 
 
 
    if #rows == 0 then
 
        return
 
    end
 
 
 
    renderSectionHeader(
        box,
        layout
    )
 
 
 
    for _, row in ipairs(rows) do
 
 
        renderSpecialField(
            box,
            row.field,
            row.value
        )
 
 
    end
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- ENTITY RENDERER
-- RENDER INFOBOX
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local function renderInfobox(box)
local result = {}


local function renderEntity(box,args,entityType)
table.insert(result, '<table class="sport-infobox">')
 
 
    local entity =
        getEntity(entityType)
 
 
 
    if not entity then
 
        return
 
    end


-- 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 ""


    for _, layout in ipairs(entity.layouts) do
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


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


table.insert(result, '</table>')
return table.concat(result, "\n")
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- INFOBOX BUILDER
-- PUBLIC FUNCTION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
function p.main(frame)
local function buildInfobox(args)
local args = getArgs(frame)
 
args = normalize(args)
 
local entity = getEntity(args)
    local entityType =
local box = buildInfobox(entity, args)
        detectEntity(args)
return renderInfobox(box)
 
 
 
    local box =
        mw.html.create("table")
 
 
 
    box
        :addClass(
            INFOBOX_CLASS
        )
 
 
 
    renderTitle(
        box,
        entityType,
        args
    )
 
 
 
    renderImage(
        box,
        args
    )
 
 
 
    renderEntity(
        box,
        args,
        entityType
    )
 
 
 
    return
        tostring(box)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- MAIN
-- TEMPLATE ENTRY
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
function p.infobox(frame)
function p.main(frame)
return p.main(frame)
 
 
    local args =
        normalizeArgs(frame)
 
 
 
    return
        buildInfobox(args)
 
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- INVOKE
-- DEBUG FUNCTION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function p.test(frame)
local args = getArgs(frame)
args = normalize(args)
local entity = getEntity(args)
local entityData = data.entities[entity]


function p.invoke(frame)
if not entityData then
 
return "Entity not found: " .. tostring(entity)
 
end
    return
        p.main(frame)


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
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- RENDER
-- GET ENTITY LIST
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
function p.entities()
function p.render(frame)
local result = {}
 
for key, value in pairs(data.entities) do
 
table.insert(result, key .. " : " .. tostring(value.title))
    return
end
        p.main(frame)
table.sort(result)
 
return table.concat(result, "\n")
 
end
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- TEST
-- GET VERSION
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 
function p.version()
function p.test(frame)
return data.version.name .. " v" .. data.version.major .. "." .. data.version.minor
 
 
    local args = {
 
 
        name =
            "علیرضا جهانبخش",
 
 
        entity_type =
            "player",
 
 
        nationality =
            "ایرانی",
 
 
        country =
            "ایران",
 
 
        sport =
            "فوتبال",
 
 
        discipline =
            "فوتبال",
 
 
        position =
            "هافبک",
 
 
        current_club =
            "هیرنفین",
 
 
        birth_date =
            "۱۱ مرداد ۱۳۷۲",
 
 
        birth_place =
            "جیرنده"
 
 
    }
 
 
 
    return
        buildInfobox(args)
 
 
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