다른 명령
편집 요약 없음 |
편집 요약 없음 |
||
5번째 줄: | 5번째 줄: | ||
local debugInfo = {} | local debugInfo = {} | ||
-- DPL3 템플릿 호출 | -- DPL3 템플릿 호출 (HTML 형식) | ||
local dplResult = frame:expandTemplate{ | local dplResult = frame:expandTemplate{ | ||
title = "DynamicPageList3", | title = "DynamicPageList3", | ||
26번째 줄: | 26번째 줄: | ||
table.insert(debugInfo, dplResult) | table.insert(debugInfo, dplResult) | ||
-- | -- HTML 형식의 데이터를 파싱 | ||
local result = {} | local result = {} | ||
for | for listItem in dplResult:gmatch("<li.->(.-)</li>") do | ||
local title | -- 선수 이름 추출 | ||
local title = listItem:match('<a href="/wiki/[^"]+" title="([^"]+)">[^<]+</a>') | |||
local totalPrize = 0 | |||
-- | if title then | ||
-- 디버깅: 이름 추출 확인 | |||
table.insert(debugInfo, string.format("선수 이름: %s", title)) | |||
-- 상금 값 추출 | |||
for prizeValue in listItem:gmatch('<span data%-sort%-value="(%d+)">₩[%d,]+</span>') do | |||
local number = tonumber(prizeValue) | |||
if number then | |||
totalPrize = totalPrize + number | |||
end | end | ||
end | |||
-- 디버깅: 상금 계산 확인 | |||
table.insert(debugInfo, string.format("%s의 총상금: %d", title, totalPrize)) | |||
-- 결과에 추가 | |||
table.insert(result, {name = title, prize = totalPrize}) | |||
else | else | ||
-- 디버깅: | -- 디버깅: 이름 추출 실패 | ||
table.insert(debugInfo, string.format("매칭 실패: %s", | table.insert(debugInfo, string.format("매칭 실패: %s", listItem)) | ||
end | end | ||
end | end |
2024년 12월 5일 (목) 11:09 판
이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다
local p = {}
function p.sortCategory(frame)
-- 디버깅 데이터를 저장할 테이블
local debugInfo = {}
-- DPL3 템플릿 호출 (HTML 형식)
local dplResult = frame:expandTemplate{
title = "DynamicPageList3",
args = {
category = "선수", -- 분류 이름
namespace = "Main", -- 네임스페이스
addpagevariables = "true", -- 문서 변수 가져오기 활성화
includepage = "{Prize}" -- Prize 값을 포함
}
}
-- DPL3 결과가 없거나 비어 있을 경우 처리
if not dplResult or dplResult == "" then
table.insert(debugInfo, "DPL3 결과를 가져오지 못했습니다. 분류 또는 네임스페이스를 확인하세요.")
return table.concat(debugInfo, "\n")
end
-- 디버깅: DPL3 결과 확인
table.insert(debugInfo, "DPL3 결과:")
table.insert(debugInfo, dplResult)
-- HTML 형식의 데이터를 파싱
local result = {}
for listItem in dplResult:gmatch("<li.->(.-)</li>") do
-- 선수 이름 추출
local title = listItem:match('<a href="/wiki/[^"]+" title="([^"]+)">[^<]+</a>')
local totalPrize = 0
if title then
-- 디버깅: 이름 추출 확인
table.insert(debugInfo, string.format("선수 이름: %s", title))
-- 상금 값 추출
for prizeValue in listItem:gmatch('<span data%-sort%-value="(%d+)">₩[%d,]+</span>') do
local number = tonumber(prizeValue)
if number then
totalPrize = totalPrize + number
end
end
-- 디버깅: 상금 계산 확인
table.insert(debugInfo, string.format("%s의 총상금: %d", title, totalPrize))
-- 결과에 추가
table.insert(result, {name = title, prize = totalPrize})
else
-- 디버깅: 이름 추출 실패
table.insert(debugInfo, string.format("매칭 실패: %s", listItem))
end
end
-- 총상금 기준으로 정렬
table.sort(result, function(a, b) return a.prize > b.prize end)
-- 결과 출력
local output = {}
table.insert(output, "! 총상금 정렬된 선수 목록") -- 테이블 헤더
for _, player in ipairs(result) do
table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
end
-- 디버깅: 최종 결과 확인
if #result == 0 then
table.insert(debugInfo, "결과 테이블이 비어 있습니다.")
else
table.insert(debugInfo, "결과 테이블:")
for _, player in ipairs(result) do
table.insert(debugInfo, string.format("선수: %s, 총상금: %s", player.name, player.prize))
end
end
-- 디버깅 정보를 출력 결과에 포함
return table.concat(output, "\n") .. "\n\n[디버깅 정보]\n" .. table.concat(debugInfo, "\n")
end
return p