메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모듈:SortPlayer: 두 판 사이의 차이

이터널리턴 이스포츠 위키
편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 27개는 보이지 않습니다)
2번째 줄: 2번째 줄:


function p.sortCategory(frame)
function p.sortCategory(frame)
     -- API URL 생성
     -- DPL3 결과를 가져오기
     local apiUrl = mw.uri.fullUrl('api.php', {
     local dplResult = frame:expandTemplate{
         action = 'query',
         title = "DynamicPageList3",
         list = 'categorymembers',
         args = {
        cmtitle = 'Category:선수',
            category = "선수", -- 분류 이름
        cmlimit = '500', -- 최대 500개의 문서 가져오기
            addpagevariables = "true",
         format = 'json'
            includepage = "{Prize}"
     })
         }
     }


     -- HTTP 요청
     -- 디버깅: DPL3 결과 확인
     local response = mw.http.get(apiUrl)
     local debugInfo = {}
    table.insert(debugInfo, "=== DPL3 결과 ===")
    table.insert(debugInfo, dplResult or "nil")
    table.insert(debugInfo, "===================")


     -- 응답 처리
     -- DPL3 결과가 없으면 처리 중단
     if not response then
     if not dplResult or dplResult == "" then
         return 'API 호출에 실패했습니다.'
         return "DPL3 결과가 없습니다.\n\n" .. table.concat(debugInfo, "\n")
     end
     end


     -- JSON 파싱
     -- 결과를 한 줄씩 처리
     local data = mw.text.jsonDecode(response)
     local result = {}
    if not data or not data.query or not data.query.categorymembers then
    local currentName = nil
         return '분류 데이터를 가져올 수 없습니다.'
    local totalPrize = 0
 
    -- 데이터를 공백으로 분리
    for token in dplResult:gmatch("[^%s]+") do
        if not token:find("₩") and not token:find("틀:Prize.default") then
            -- 닉네임인 경우
            if currentName then
                -- 이전 닉네임 결과 저장
                table.insert(result, {name = currentName, prize = totalPrize})
                table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
            end
            currentName = token
            totalPrize = 0 -- 상금 초기화
        elseif token:find("틀:Prize.default") then
            -- 틀:Prize.default 처리
            if currentName then
                table.insert(result, {name = currentName, prize = 0})
                table.insert(debugInfo, string.format("%s의 내용이 틀:Prize.default로 처리되었습니다. 총상금: 0", currentName))
            end
            currentName = nil -- 닉네임 초기화
            totalPrize = 0
        elseif token:find("₩") then
            -- 상금 데이터 합산
            local prize = tonumber((token:gsub("₩", ""):gsub(",", "")))
            if prize then
                totalPrize = totalPrize + prize
            end
        end
    end
 
    -- 마지막 닉네임 처리
    if currentName then
         table.insert(result, {name = currentName, prize = totalPrize})
        table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
     end
     end


     -- 결과 처리
    -- 총상금 기준으로 정렬
     local members = data.query.categorymembers
    table.sort(result, function(a, b) return a.prize > b.prize end)
     local result = {}
 
     for _, member in ipairs(members) do
     -- 결과 출력 생성
        table.insert(result, string.format("* [[%s]]", member.title))
     local output = {}
    table.insert(output, "! 총상금 정렬된 선수 목록")
     if #result == 0 then
        table.insert(output, "| 결과 없음") -- 결과가 없을 경우 메시지 추가
        table.insert(debugInfo, "결과가 비어 있습니다.")
     else
        for _, player in ipairs(result) do
            table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
        end
     end
     end


     -- 정렬된 목록 반환
     -- 디버깅 정보를 출력에 포함
     return table.concat(result, "\n")
     return table.concat(output, "\n") .. "\n\n[디버깅 정보]\n" .. table.concat(debugInfo, "\n")
end
end


return p
return p

2024년 12월 5일 (목) 11:41 기준 최신판

이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다

local p = {}

function p.sortCategory(frame)
    -- DPL3 결과를 가져오기
    local dplResult = frame:expandTemplate{
        title = "DynamicPageList3",
        args = {
            category = "선수", -- 분류 이름
            addpagevariables = "true",
            includepage = "{Prize}"
        }
    }

    -- 디버깅: DPL3 결과 확인
    local debugInfo = {}
    table.insert(debugInfo, "=== DPL3 결과 ===")
    table.insert(debugInfo, dplResult or "nil")
    table.insert(debugInfo, "===================")

    -- DPL3 결과가 없으면 처리 중단
    if not dplResult or dplResult == "" then
        return "DPL3 결과가 없습니다.\n\n" .. table.concat(debugInfo, "\n")
    end

    -- 결과를 한 줄씩 처리
    local result = {}
    local currentName = nil
    local totalPrize = 0

    -- 데이터를 공백으로 분리
    for token in dplResult:gmatch("[^%s]+") do
        if not token:find("₩") and not token:find("틀:Prize.default") then
            -- 닉네임인 경우
            if currentName then
                -- 이전 닉네임 결과 저장
                table.insert(result, {name = currentName, prize = totalPrize})
                table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
            end
            currentName = token
            totalPrize = 0 -- 상금 초기화
        elseif token:find("틀:Prize.default") then
            -- 틀:Prize.default 처리
            if currentName then
                table.insert(result, {name = currentName, prize = 0})
                table.insert(debugInfo, string.format("%s의 내용이 틀:Prize.default로 처리되었습니다. 총상금: 0", currentName))
            end
            currentName = nil -- 닉네임 초기화
            totalPrize = 0
        elseif token:find("₩") then
            -- 상금 데이터 합산
            local prize = tonumber((token:gsub("₩", ""):gsub(",", "")))
            if prize then
                totalPrize = totalPrize + prize
            end
        end
    end

    -- 마지막 닉네임 처리
    if currentName then
        table.insert(result, {name = currentName, prize = totalPrize})
        table.insert(debugInfo, string.format("%s의 총상금: %d", currentName, totalPrize))
    end

    -- 총상금 기준으로 정렬
    table.sort(result, function(a, b) return a.prize > b.prize end)

    -- 결과 출력 생성
    local output = {}
    table.insert(output, "! 총상금 정렬된 선수 목록")
    if #result == 0 then
        table.insert(output, "| 결과 없음") -- 결과가 없을 경우 메시지 추가
        table.insert(debugInfo, "결과가 비어 있습니다.")
    else
        for _, player in ipairs(result) do
            table.insert(output, string.format("| [[%s]]: ₩%s", player.name, mw.language.getContentLanguage():formatNum(player.prize)))
        end
    end

    -- 디버깅 정보를 출력에 포함
    return table.concat(output, "\n") .. "\n\n[디버깅 정보]\n" .. table.concat(debugInfo, "\n")
end

return p