Немає опису редагування
Мітка: Скасовано
Немає опису редагування
Мітка: Ручний відкіт
Рядок 5: Рядок 5:
     local player = frame.args.player
     local player = frame.args.player


    -- Only one title now, as all seasons are on the same page
     local season_titles = {
     local season_title = "Сезони"
        "Перший_сезон", "Другий_сезон", "Третій_сезон",
    local headings = { "I", "II", "III", "IV", "V" }
        "Четвертий_сезон", "П'ятий_сезон"
     local heading = headings[tonumber(season)]
     }


     if not heading then
     mw.log("Season index: ", season)
        mw.log("Error: Invalid season number provided.")
    mw.log("Player name: ", player)
        return "Invalid season number"
 
     end
    local season_title = season_titles[tonumber(season)]
     mw.log("Season page title: ", season_title)


     local title = mw.title.makeTitle(0, season_title)
     local title = mw.title.makeTitle(0, season_title)
Рядок 19: Рядок 20:


     if not content then
     if not content then
         mw.log("Error: Content not found for the 'Сезони' page.")
         mw.log("Error: Content not found for the season page.")
         return "Season page not found"
         return "Season page not found"
     end
     end


     -- Matching the specific section for the season
     mw.log("Page content loaded, length: ", string.len(content))
    local pattern = "== " .. heading .. " ==" .. ".-{| class=\"wikitable sortable\"(.-)|}"
    local rating_section = mw.ustring.match(content, pattern)


    local rating_section = mw.ustring.match(content, "== Рейтинг ==.-{| class=\"wikitable sortable\"(.-)|}")
     if not rating_section then
     if not rating_section then
         mw.log("Error: Rating section for season " .. heading .. " not found.")
         mw.log("Error: Rating section not found within the page content.")
         return "Rating section not found"
         return "Rating section not found"
     end
     end


     -- Extracting player ranking
     mw.log("Rating section extracted, length: ", string.len(rating_section))
     local rank_pattern = "|%s*%[%[" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "|[^%]]+%]%]%s*|%s*(%d+)%s*|"
 
     local direct_rank_pattern = "|%s*" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "%s*|%s*(%d+)%s*|"
     local pattern = "|%s*%[%[" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "|[^%]]+%]%]%s*|%s*(%d+)%s*|"
     local rank = mw.ustring.match(rating_section, rank_pattern) or mw.ustring.match(rating_section, direct_rank_pattern)
     local direct_pattern = "|%s*" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "%s*|%s*(%d+)%s*|"
     local rank = mw.ustring.match(rating_section, pattern) or mw.ustring.match(rating_section, direct_pattern)


     if not rank then
     if not rank then
         mw.log("Error: Player '" .. player .. "' not found in season " .. heading .. " rankings.")
         mw.log("Error: Player not found in season rankings or regex failed.")
         return "Player not found in season rankings"
         return "Player not found in season rankings"
     end
     end


    mw.log("Player rank found: ", rank)
     return rank
     return rank
end
end


return p
return p

Версія за 15:26, 17 квітня 2024

Документацію для цього модуля можна створити у Модуль:FetchData/документація

local p = {}

function p.season_result(frame)
    local season = frame.args.season
    local player = frame.args.player

    local season_titles = {
        "Перший_сезон", "Другий_сезон", "Третій_сезон",
        "Четвертий_сезон", "П'ятий_сезон"
    }

    mw.log("Season index: ", season)
    mw.log("Player name: ", player)

    local season_title = season_titles[tonumber(season)]
    mw.log("Season page title: ", season_title)

    local title = mw.title.makeTitle(0, season_title)
    local content = title:getContent()

    if not content then
        mw.log("Error: Content not found for the season page.")
        return "Season page not found"
    end

    mw.log("Page content loaded, length: ", string.len(content))

    local rating_section = mw.ustring.match(content, "== Рейтинг ==.-{| class=\"wikitable sortable\"(.-)|}")
    if not rating_section then
        mw.log("Error: Rating section not found within the page content.")
        return "Rating section not found"
    end

    mw.log("Rating section extracted, length: ", string.len(rating_section))

    local pattern = "|%s*%[%[" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "|[^%]]+%]%]%s*|%s*(%d+)%s*|"
    local direct_pattern = "|%s*" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "%s*|%s*(%d+)%s*|"
    local rank = mw.ustring.match(rating_section, pattern) or mw.ustring.match(rating_section, direct_pattern)

    if not rank then
        mw.log("Error: Player not found in season rankings or regex failed.")
        return "Player not found in season rankings"
    end

    mw.log("Player rank found: ", rank)
    return rank
end

return p