Модуль:FetchData: відмінності між версіями
Admin (обговорення | внесок) Немає опису редагування Мітка: Скасовано |
Admin (обговорення | внесок) Немає опису редагування Мітка: Ручний відкіт |
||
Рядок 5: | Рядок 5: | ||
local player = frame.args.player | local player = frame.args.player | ||
local season_titles = { | |||
local | "Перший_сезон", "Другий_сезон", "Третій_сезон", | ||
"Четвертий_сезон", "П'ятий_сезон" | |||
} | |||
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 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 | mw.log("Error: Content not found for the season page.") | ||
return "Season page not found" | return "Season page not found" | ||
end | 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 | if not rating_section then | ||
mw.log("Error: Rating section | mw.log("Error: Rating section not found within the page content.") | ||
return "Rating section not found" | return "Rating section not found" | ||
end | end | ||
mw.log("Rating section extracted, length: ", string.len(rating_section)) | |||
local | |||
local | local pattern = "|%s*%[%[" .. mw.ustring.gsub(player, "([%(%)%.%-%+])", "%%%1") .. "|[^%]]+%]%]%s*|%s*(%d+)%s*|" | ||
local rank = mw.ustring.match(rating_section, | 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 | 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