Aller au contenu

« Module:Episode » : différence entre les versions

De Stargate Wiki Sémantique
Contenu supprimé Contenu ajouté
Page créée avec « local data = require("Module:Episode/data") local p = {} -- Function 1: Get full episode link from key function p.getEpisode(frame) local key = string.lower(frame.args[1] or "") local entry = data[key] if not entry then return "Épisode non référencé" end local ns, link, _, title = unpack(entry) -- If namespace is empty or nil, omit it if ns == "" or ns == nil then return string.format("%s", link, title)... »
 
Aucun résumé des modifications
 
(10 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
local data = require("Module:Episode/data")
local p = {}
local p = {}


-- Centralized Episode Index (multi-series, episodes + movies)
-- Function 1: Get full episode link from key
local Index = require("Module:Episode/index")
function p.getEpisode(frame)
local key = string.lower(frame.args[1] or "")
local entry = data[key]


------------------------------------------------------------
if not entry then
-- Internal helper: retrieve episode entry from key
return "Épisode non référencé"
------------------------------------------------------------
local function getEntry(frame)
local key = frame.args[1]
if not key or key == "" then
return nil
end
end
return Index.get(key)
end

------------------------------------------------------------
-- Internal helper: preprocess a title using the parser
-- Falls back gracefully if title is missing.
------------------------------------------------------------
local function preprocessTitle(frame, ep)
local raw = ep.title_fr or ep.page_title or ep.property or ep.id or ""
return frame:preprocess(raw)
end


------------------------------------------------------------
local ns, link, _, title = unpack(entry)
-- Internal helper: build a link using the episode namespace
-- If namespace is empty (movies), omit it.
-- Title is always preprocessed here.
------------------------------------------------------------
local function buildEpisodeLink(frame, ep, labelOverride)
local title = labelOverride or preprocessTitle(frame, ep)


-- If namespace is empty or nil, omit it
if ep.namespace == "" or ep.namespace == nil then
if ns == "" or ns == nil then
-- Movies and telefilms: no namespace
return string.format("[[%s|%s]]", link, title)
return string.format("[[%s|%s]]", ep.page_title, title)
else
else
-- Regular episodes: use namespace
return string.format("[[%s:%s|%s]]", ns, link, title)
return string.format("[[%s:%s|%s]]", ep.namespace, ep.page_title, title)
end
end
end
end


------------------------------------------------------------
-- Function 2: Force namespace to "Credits:"
-- Function 1: Get full episode link (default namespace)
function p.getCreditsLink(frame)
-- Uses preprocessed French title as label.
local key = string.lower(frame.args[1] or "")
------------------------------------------------------------
local entry = data[key]
function p.getEpisode(frame)
local ep = getEntry(frame)
if not ep then
return "Épisode ou film non référencé"
end
return buildEpisodeLink(frame, ep)
end


------------------------------------------------------------
if not entry then
-- Function 2: Force namespace to "Crédits:"
return "Épisode non référencé"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getCreditsLink(frame)
local ep = getEntry(frame)
if not ep then
return "Épisode ou film non référencé"
end
end


local _, link, _,title = unpack(entry) -- We ignore original namespace
local title = preprocessTitle(frame, ep)
return string.format("[[Crédits:%s|%s]]", link, title)
return string.format("[[Crédits:%s|%s]]", ep.page_title, title)
end
end


------------------------------------------------------------
-- Function 3: Force namespace to "Transcript:"
-- Function 3: Force namespace to "Retranscription:"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getTranscriptLink(frame)
function p.getTranscriptLink(frame)
local key = string.lower(frame.args[1] or "")
local ep = getEntry(frame)
local entry = data[key]
if not ep then
return "Épisode ou film non référencé"

if not entry then
return "Épisode non référencé"
end
end


local _, link, _, title = unpack(entry) -- We ignore original namespace
local title = preprocessTitle(frame, ep)
return string.format("[[Retranscription:%s|%s]]", link, title)
return string.format("[[Retranscription:%s|%s]]", ep.page_title, title)
end
end
-- Function 4: Force namespace to "Quotes:"
function p.getQuotesLink(frame)
local key = string.lower(frame.args[1] or "")
local entry = data[key]


------------------------------------------------------------
if not entry then
-- Function 4: Force namespace to "Citations:"
return "Épisode non référencé"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getQuotesLink(frame)
local ep = getEntry(frame)
if not ep then
return "Épisode ou film non référencé"
end
end


local _, link, title = unpack(entry) -- We ignore original namespace
local title = preprocessTitle(frame, ep)
return string.format("[[Citations:%s|%s]]", link, title)
return string.format("[[Citations:%s|%s]]", ep.page_title, title)
end
end


------------------------------------------------------------
-- Function 5: Force namespace to "Category:Images from"
-- Function 5: Force namespace to "Catégorie:Images de ..."
-- Leading colon prevents categorization when used in articles.
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getImagesLink(frame)
function p.getImagesLink(frame)
local key = string.lower(frame.args[1] or "")
local ep = getEntry(frame)
local entry = data[key]
if not ep then
return "Épisode ou film non référencé"

if not entry then
return "Épisode non référencé"
end
end


local _, link, _, title = unpack(entry) -- We ignore original namespace
local title = preprocessTitle(frame, ep)
return string.format("[[:Catégorie:Images de %s|%s]]", link, title)
return string.format("[[:Catégorie:Images de %s|%s]]", ep.page_title, title)
end
end


------------------------------------------------------------
-- Function 6: Retrieve from link
-- Function 6: Retrieve only the page title (no namespace)
-- No preprocess needed here.
------------------------------------------------------------
function p.getEpisodeLink(frame)
function p.getEpisodeLink(frame)
local key = string.lower(frame.args[1] or "")
local ep = getEntry(frame)
local entry = data[key]
if not ep then
return "Épisode ou film non référencé"

if not entry then
return "Épisode non référencé"
end
end
return ep.page_title

local _, link, _, _ = unpack(entry) -- We ignore original namespace
return string.format("%s", link)
end
end


------------------------------------------------------------
-- Function 7: Get full episode link only from key
-- Function 7: Retrieve full link target (namespace + title)
-- Example: "Épisode:Enfants des dieux"
-- Movies return only "Enfants des dieux".
-- No preprocess needed here.
------------------------------------------------------------
function p.getEpisodeFullLink(frame)
function p.getEpisodeFullLink(frame)
local key = string.lower(frame.args[1] or "")
local ep = getEntry(frame)
local entry = data[key]
if not ep then
return "Épisode ou film non référencé"

if not entry then
return "Épisode non référencé"
end
end


if ep.namespace == "" or ep.namespace == nil then
local ns, link, _, _ = unpack(entry)
return ep.page_title

-- If namespace is empty or nil, omit it
if ns == "" or ns == nil then
return string.format("%s", link)
else
else
return string.format("%s:%s", ns, link)
return string.format("%s:%s", ep.namespace, ep.page_title)
end
end
end
end


------------------------------------------------------------
-- Function 8: Get episode title only from key
-- Function 8: Retrieve only the French title (preprocessed)
------------------------------------------------------------
function p.getEpisodeTitle(frame)
function p.getEpisodeTitle(frame)
local key = string.lower(frame.args[1] or "")
local ep = getEntry(frame)
local entry = data[key]
if not ep then
return "Épisode ou film non référencé"
end
return preprocessTitle(frame, ep)
end

------------------------------------------------------------
-- Function 9: Get the episode number as a two‑digit string
-- Returns "" for movies (no episode number)
------------------------------------------------------------
function p.getEpisodeNumber(frame)
local ep = getEntry(frame)
if not ep then
return "Épisode ou film non référencé"
end

-- Movies and telefilms have no episode number
if not ep.episode or ep.episode == "" then
return ""
end

-- Format as two digits (01, 02, ..., 22)
return string.format("%02d", tonumber(ep.episode))
end

------------------------------------------------------------
-- Function 10: Get the season number as a numeric string
-- Returns "" for movies (no season number)
------------------------------------------------------------
function p.getSeasonNumber(frame)
local ep = getEntry(frame)
if not ep then
return "Épisode ou film non référencé"
end


-- Movies and telefilms have no season number
if not entry then
if not ep.season or ep.season == "" then
return "Episode not found"
return ""
end
end


-- Return numeric season (no formatting)
local _, _, _, title = unpack(entry)
return string.format("%s", title)
return tostring(ep.season)
end
end



Dernière version du 29 mai 2026 à 20:58

Documentation icon Documentation module[créer]
local p = {}

-- Centralized Episode Index (multi-series, episodes + movies)
local Index = require("Module:Episode/index")

------------------------------------------------------------
-- Internal helper: retrieve episode entry from key
------------------------------------------------------------
local function getEntry(frame)
    local key = frame.args[1]
    if not key or key == "" then
        return nil
    end
    return Index.get(key)
end

------------------------------------------------------------
-- Internal helper: preprocess a title using the parser
-- Falls back gracefully if title is missing.
------------------------------------------------------------
local function preprocessTitle(frame, ep)
    local raw = ep.title_fr or ep.page_title or ep.property or ep.id or ""
    return frame:preprocess(raw)
end

------------------------------------------------------------
-- Internal helper: build a link using the episode namespace
-- If namespace is empty (movies), omit it.
-- Title is always preprocessed here.
------------------------------------------------------------
local function buildEpisodeLink(frame, ep, labelOverride)
    local title = labelOverride or preprocessTitle(frame, ep)

    if ep.namespace == "" or ep.namespace == nil then
        -- Movies and telefilms: no namespace
        return string.format("[[%s|%s]]", ep.page_title, title)
    else
        -- Regular episodes: use namespace
        return string.format("[[%s:%s|%s]]", ep.namespace, ep.page_title, title)
    end
end

------------------------------------------------------------
-- Function 1: Get full episode link (default namespace)
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getEpisode(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end
    return buildEpisodeLink(frame, ep)
end

------------------------------------------------------------
-- Function 2: Force namespace to "Crédits:"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getCreditsLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    local title = preprocessTitle(frame, ep)
    return string.format("[[Crédits:%s|%s]]", ep.page_title, title)
end

------------------------------------------------------------
-- Function 3: Force namespace to "Retranscription:"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getTranscriptLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    local title = preprocessTitle(frame, ep)
    return string.format("[[Retranscription:%s|%s]]", ep.page_title, title)
end

------------------------------------------------------------
-- Function 4: Force namespace to "Citations:"
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getQuotesLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    local title = preprocessTitle(frame, ep)
    return string.format("[[Citations:%s|%s]]", ep.page_title, title)
end

------------------------------------------------------------
-- Function 5: Force namespace to "Catégorie:Images de ..."
-- Leading colon prevents categorization when used in articles.
-- Uses preprocessed French title as label.
------------------------------------------------------------
function p.getImagesLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    local title = preprocessTitle(frame, ep)
    return string.format("[[:Catégorie:Images de %s|%s]]", ep.page_title, title)
end

------------------------------------------------------------
-- Function 6: Retrieve only the page title (no namespace)
-- No preprocess needed here.
------------------------------------------------------------
function p.getEpisodeLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end
    return ep.page_title
end

------------------------------------------------------------
-- Function 7: Retrieve full link target (namespace + title)
-- Example: "Épisode:Enfants des dieux"
-- Movies return only "Enfants des dieux".
-- No preprocess needed here.
------------------------------------------------------------
function p.getEpisodeFullLink(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    if ep.namespace == "" or ep.namespace == nil then
        return ep.page_title
    else
        return string.format("%s:%s", ep.namespace, ep.page_title)
    end
end

------------------------------------------------------------
-- Function 8: Retrieve only the French title (preprocessed)
------------------------------------------------------------
function p.getEpisodeTitle(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end
    return preprocessTitle(frame, ep)
end

------------------------------------------------------------
-- Function 9: Get the episode number as a two‑digit string
-- Returns "" for movies (no episode number)
------------------------------------------------------------
function p.getEpisodeNumber(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    -- Movies and telefilms have no episode number
    if not ep.episode or ep.episode == "" then
        return ""
    end

    -- Format as two digits (01, 02, ..., 22)
    return string.format("%02d", tonumber(ep.episode))
end

------------------------------------------------------------
-- Function 10: Get the season number as a numeric string
-- Returns "" for movies (no season number)
------------------------------------------------------------
function p.getSeasonNumber(frame)
    local ep = getEntry(frame)
    if not ep then
        return "Épisode ou film non référencé"
    end

    -- Movies and telefilms have no season number
    if not ep.season or ep.season == "" then
        return ""
    end

    -- Return numeric season (no formatting)
    return tostring(ep.season)
end

return p