Zuletzt bearbeitet vor einer Woche
von Xineohp1506

EpisodeOutput

Die Dokumentation für dieses Modul kann unter Modul:LPON/EpisodeOutput/Doku erstellt werden

local episodeOutput = {}
local helper = require('Module:LPON/Helper')

-- Funktion zur tabberbasierten Ausgabe der Folgen mit festem Design
function episodeOutput.inside(frame, cleanProjektname)
    if not mw.smw then
        return "Semantic MediaWiki-Erweiterung nicht gefunden."
    end

    if not cleanProjektname or cleanProjektname == "" then
        return "Kein Projekt angegeben."
    end

    -- Abfrage-String erstellen
    local query = string.format(
        "[[LPON:Projekt::%s]][[LPON:Typ::Episode]]|?LPON:Episodennummer|?LPON:Episodentitel|?LPON:Description|?LPON:Service|?LPON:ID",
        cleanProjektname
    )

    local queryResult = mw.smw.getQueryResult(query)

    if not queryResult or not queryResult.results then
        return "Keine Folgen für dieses Projekt gefunden."
    end

    -- Folgen nach Tabs aufteilen
    local tabGroups = {}
    for _, result in ipairs(queryResult.results) do
        local episodeNumber = result.printouts["LPON:Episodennummer"] and result.printouts["LPON:Episodennummer"][1] or 0
        local episodeTitle = result.printouts["LPON:Episodentitel"] and result.printouts["LPON:Episodentitel"][1] or "Ohne Titel"
        local description = result.printouts["LPON:Description"] and result.printouts["LPON:Description"][1] or "Keine Beschreibung verfügbar"
        local service = result.printouts["LPON:Service"] and result.printouts["LPON:Service"][1] or nil
        local videoID = result.printouts["LPON:ID"] and result.printouts["LPON:ID"][1] or nil

        -- Staffelnummer bestimmen (z. B. alle 20 Folgen eine neue Staffel)
        local season = math.floor((episodeNumber - 1) / 20) + 1
        local tabName = string.format("%02d - %02d", (season - 1) * 20 + 1, season * 20)

        if not tabGroups[tabName] then
            tabGroups[tabName] = {}
        end

        -- Link zur Plattform generieren
        local vodWikiLink = "PRIVAT"
        if service and videoID then
            local videoLink = helper.getVideoLink(service, videoID)
            if videoLink then
                vodWikiLink = "[" .. videoLink .. " " .. service:gsub("^%l", string.upper) .. "]"
            end
        end

        -- HTML-Tabelleintrag hinzufügen
        table.insert(tabGroups[tabName], string.format(
            '<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td></tr>',
            episodeNumber,
            episodeTitle,
            description,
            frame:preprocess(vodWikiLink)
        ))
    end

    -- Tabber-Ausgabe generieren
    local wikitextOutput = '<tabber>'
    for tabName, episodes in pairs(tabGroups) do
        wikitextOutput = wikitextOutput .. string.format(
            "\n%s=\n<table class='lpnon-episode-table'>\n<tr><th>Nr.</th><th>Titel</th><th>Beschreibung</th><th>VOD</th></tr>\n%s\n</table>\n|-|\n",
            tabName,
            table.concat(episodes, "\n")
        )
    end
    wikitextOutput = wikitextOutput .. '</tabber>'

    -- Wikitext verarbeiten
    return frame:preprocess(wikitextOutput)
end

return episodeOutput