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


    -- List of season titles corresponding to their URLs
     local season_titles = {
     local season_titles = {
         "Перший_сезон", "Другий_сезон", "Третій_сезон",
         "Перший_сезон", "Другий_сезон", "Третій_сезон",
Рядок 14: Рядок 15:
     end
     end


    -- Fetch the page content using the correct title
     local title = mw.title.makeTitle(0, season_title)
     local title = mw.title.makeTitle(0, season_title)
     local content = title:getContent()
     local content = title:getContent()
Рядок 20: Рядок 22:
     end
     end


     -- Assuming different table class names or identifiers for different seasons
     -- Pattern to extract the ranking section and rank data
     local table_class = "wikitable sortable" -- default class
     local rating_section = mw.ustring.match(content, "== Рейтинг ==.-{| class=\"wikitable sortable\"(.-)|}")
     if season == "2" then
     if not rating_section then
         table_class = "another-class-name" -- Example: different class for "Другий сезон"
         return "Rating section not found"
     end
     end


     local pattern = "|%s*%[%[" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "|[^%]]+%]%]%s*|%s*(%d+)%s*|"
     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 direct_pattern = "|%s*" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "%s*|%s*(%d+)%s*|"
     local rating_section = mw.ustring.match(content, "== Рейтинг ==.-{| class=\"" .. table_class .. "\"(.-)|}")
     local rank = mw.ustring.match(rating_section, pattern) or mw.ustring.match(rating_section, direct_pattern)
      
      
    if not rating_section then
        return "Rating section not found"
    end
    local rank = mw.ustring.match(rating_section, pattern) or mw.ustring.match(rating_section, direct_pattern)
     if not rank then
     if not rank then
         return "Player not found in season rankings"
         return "Player not found in season rankings"

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

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

local p = {}

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

    -- List of season titles corresponding to their URLs
    local season_titles = {
        "Перший_сезон", "Другий_сезон", "Третій_сезон",
        "Четвертий_сезон", "П'ятий_сезон"
    }
    local season_title = season_titles[tonumber(season)]
    if not season_title then
        return "Invalid season number"
    end

    -- Fetch the page content using the correct title
    local title = mw.title.makeTitle(0, season_title)
    local content = title:getContent()
    if not content then
        return "Season page not found"
    end

    -- Pattern to extract the ranking section and rank data
    local rating_section = mw.ustring.match(content, "== Рейтинг ==.-{| class=\"wikitable sortable\"(.-)|}")
    if not rating_section then
        return "Rating section not found"
    end

    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
        return "Player not found in season rankings"
    end

    return rank
end

return p