Ugrás a tartalomhoz

„Modul:Galeria” változatai közötti eltérés

Innen: MKOE wiki
Nincs szerkesztési összefoglaló
Nincs szerkesztési összefoglaló
 
(12 közbenső módosítás ugyanattól a felhasználótól nincs mutatva)
1. sor: 1. sor:
local p = {}
local p = {}


-- Letisztítja az összes láthatatlan karaktert és újsort a szöveg elejéről/végéről
-- =============================================================================
-- SEGÉDFÜGGVÉNYEK
-- =============================================================================
 
local function megtisztitString(s)
local function megtisztitString(s)
     if not s then return "" end
     if not s then return "" end
     return s:match("^%s*(.-)%s*$")
     s = tostring(s)
    s = s:gsub("^%s*(.-)%s*$", "%1")
    s = s:gsub("[\n\r]", "")
    return s
end
end


-- Képtípus meghatározása és tisztítása
local function detektalKepTipus(nyers_bemenet)
local function detektalKepTipus(nyers_bemenet)
     local tiszta_bemenet = megtisztitString(nyers_bemenet)
     if not nyers_bemenet or nyers_bemenet == "" then return nil end
    if tiszta_bemenet == "" then return nil end
      
 
     local s = megtisztitString(nyers_bemenet)
     local kep_resz = tiszta_bemenet
      
     local felirat = nil
     if s:lower():find("^commons:") then
 
         local tiszta_nev = s:sub(9)
     -- Megkeressük a '|' karaktert, ha esetleg mégis átjönne a stringben
         if not tiszta_nev:lower():find("^file:") and not tiszta_nev:lower():find("^fájl:") then
     local pipe_pos = tiszta_bemenet:find("|")
            tiszta_nev = "File:" .. tiszta_nev
    if pipe_pos then
        end
         kep_resz = megtisztitString(tiszta_bemenet:sub(1, pipe_pos - 1))
        local url_nev = tiszta_nev:gsub(" ", "_")
         felirat = megtisztitString(tiszta_bemenet:sub(pipe_pos + 1))
         return {
    end
            tipus = "URL",
 
            path = "https://commons.wikimedia.org/wiki/Special:FilePath/" .. url_nev
    if felirat == "" then felirat = nil end
        }
 
    -- Ha gstatic vagy google link, de lemaradt a protokoll, pótoljuk
    if (kep_resz:find("^encrypted%-tbn") or kep_resz:find("^lh%d+%.google")) and not kep_resz:find("^https?://") then
         kep_resz = "https://" .. kep_resz
     end
     end
 
      
     -- 1. Internetes link vizsgálata
     if s:find("^https?://") or s:find("^encrypted%-tbn") or s:find("gstatic%.com") then
     if kep_resz:find("^https?://") then
         return {
         return { tipus = "URL", path = kep_resz, felirat = felirat }
            tipus = "URL",
            path = s
        }
     end
     end
 
      
     -- 2. Wikimedia Commons átalakítása közvetlen külső URL-lé
     return {
     if kep_resz:find("^[Cc]ommons:") or kep_resz:find("^[Cc]:") then
         tipus = "WIKI",
         local fajlnev = kep_resz:gsub("^[Cc]ommons:", ""):gsub("^[Cc]:", "")
         path = s
                              :gsub("^[Ff]ájl:", ""):gsub("^[Ff]ile:", "")
     }
                              :match("^%s*(.-)%s*$")
 
         local tiszta_fajlnev = fajlnev:gsub(" ", "_")
        local commons_url = "https://commons.wikimedia.org/wiki/Special:FilePath/" .. tiszta_fajlnev
 
        return { tipus = "URL", path = commons_url, felirat = felirat }
    end
 
    -- 3. Helyi kép vizsgálata
    local helyi_fajl = kep_resz:gsub("^[Ff]ájl:", ""):gsub("^[Ff]ile:", "")
     return { tipus = "HELYI", path = megtisztitString(helyi_fajl), felirat = felirat }
end
end


-- Segédfüggvény annak eldöntésére, hogy egy paraméter kép-e
local function isKepFormatum(szoveg)
local function isKepFormatum(szoveg)
     if not szoveg or szoveg == "" then return false end
     if not szoveg or szoveg == "" then return false end
     local s = mw.ustring.lower(szoveg)
     local s = megtisztitString(szoveg):lower()
 
   
     return mw.ustring.find(s, '^http')
     if s:find("^https?://") or s:find("^encrypted%-tbn") or s:find("gstatic%.com") or s:find("^commons:") then
        or mw.ustring.find(s, 'gstatic%.com')
         return true
        or mw.ustring.find(s, 'googleusercontent')
    end
        or mw.ustring.find(s, '^commons:')
   
         or mw.ustring.find(s, '^c:')
    if s:find("%.jpg$") or s:find("%.jpeg$") or s:find("%.png$") or s:find("%.gif$") or s:find("%.svg$") or s:find("%.webp$") or s:find("%.jpg[^%%a]") or s:find("%.jpeg[^%%a]") then
        or mw.ustring.find(s, '%.jpg')
        return true
        or mw.ustring.find(s, '%.jpeg')
    end
        or mw.ustring.find(s, '%.png')
   
        or mw.ustring.find(s, '%.gif')
    return false
        or mw.ustring.find(s, '%.webp')
end
end


-- =============================================================================
local function kinyerForrasNev(url)
-- ÚJ HELPER FÜGGVÉNY: Kinyeri a domain nevet vagy a forrás nevét az URL-ből
     if not url or url == "" then return "Külső forrás" end
-- =============================================================================
      
local function kinyerForrasNev(url, eredeti_bemenet)
     if url:find("google%.com") or url:find("gstatic%.com") or url:find("^encrypted%-tbn") then
     if not url then return "Külső forrás" end
 
     -- Ha az eredeti bemenetben benne volt a commons, akkor egyértelmű
     if eredeti_bemenet and (eredeti_bemenet:lower():find("^commons:") or eredeti_bemenet:lower():find("^c:")) then
        return "Wikimedia Commons"
    end
 
    -- Speciális esetek kezelése a letisztított URL alapján
    if url:find("gstatic%.com") or url:find("googleusercontent") then
         return "Google Cache"
         return "Google Cache"
     end
     end
     if url:find("giromagi%.com") then
      
        return "Giromagi Cactus"
    end
 
    -- Általános domain kinyerés (levágja a https://-t és a slash utáni részt)
     local domain = url:match("^https?://([^/]+)")
     local domain = url:match("^https?://([^/]+)")
     if domain then
     if domain then
         -- Opcionálisan levághatjuk a 'www.' részt az elejéről a tisztább kinézetért
         domain = domain:gsub("^www%.", "")
        return domain:gsub("^www%.", "")
        return domain
     end
     end
 
   
     return "Külső link"
     return "Külső link"
end
end


-- =============================================================================
-- FŐ FUNKCIÓ: GALÉRIA GENERÁLÁSA
-- =============================================================================
function p.generalGaleria(frame)
function p.generalGaleria(frame)
     local args = {}
     local args = {}
108. sor: 88. sor:
     end
     end


     -- -------------------------------------------------------------------------
     -- 1. Kigyűjtjük a törött Google linkeket
     -- BOMBABIZTOS ELŐFELDOLGOZÁS: Újraépítjük a listát a MediaWiki kavarásai után
     local elrontott_google_linkek = {}
     -- -------------------------------------------------------------------------
     for k, v in pairs(args) do
    local rendezett_args = {}
        if type(k) == "string" then
            local tiszta_kulcs = megtisztitString(k)
            if tiszta_kulcs:find("^https?://") or tiszta_kulcs:find("^encrypted%-tbn") or tiszta_kulcs:find("gstatic%.com") then
                local teljes_url = tiszta_kulcs .. "=" .. megtisztitString(v)
                table.insert(elrott_google_linkek, teljes_url)
            end
        end
    end


     -- Először kigyűjtjük a normális számozott paramétereket, hogy megőrizzük a wikitext sorrendet
     -- 2. Lineáris lista másolása
     local max_index = 0
     local max_index = 0
     for k, v in pairs(args) do
     for k, v in pairs(args) do
119. sor: 106. sor:
     end
     end


    local ideiglenes_lista = {}
     for i = 1, max_index do
     for i = 1, max_index do
         if args[i] then
         if args[i] then
             table.insert(rendezett_args, megtisztitString(args[i]))
             table.insert(ideiglenes_lista, megtisztitString(args[i]))
         end
         end
     end
     end


     -- Most megkeressük azokat a linkeket, amiket a MediaWiki szöveges kulccsá alakított az "=" jel miatt
     -- 3. Rekonstrukció eltolással
     for k, v in pairs(args) do
    local rendezett_args = {}
        if type(k) == "string" then
     local google_idx = 1
            local tiszta_kulcs = megtisztitString(k)
 
            -- Ha a kulcs maga egy elbaltázott Google URL szilánk
    local idx = 1
            if tiszta_kulcs:find("^https?://") or tiszta_kulcs:find("^encrypted%-tbn") or tiszta_kulcs:find("gstatic%.com") then
    while ideiglenes_lista[idx] do
                local teljes_url = tiszta_kulcs .. "=" .. megtisztitString(v)
        local aktualis = ideiglenes_lista[idx]


                -- OKOSSÁG: Megkeressük, hova tartozik a leírása. A MediaWiki a leírást
        if elrontott_google_linkek[google_idx] and not isKepFormatum(aktualis) then
                -- közvetlenül a lyukas pozícióra teszi. Beillesztjük az URL-t pont a leírása ELÉ.
            local utolso_rendezett = rendezett_args[#rendezett_args]
                local beszurtuk = false
            if not utolso_rendezett or not isKepFormatum(utolso_rendezett) then
                for r_idx, r_val in ipairs(rendezett_args) do
                 table.insert(rendezett_args, elrontott_google_linkek[google_idx])
                    if r_val == "Élőhelyi fotó Mexikóból" or (not isKepFormatum(r_val) and r_idx == 2) then
                 google_idx = google_idx + 1
                        table.insert(rendezett_args, r_idx, teljes_url)
                        beszurtuk = true
                        break
                    end
                end
                 -- Ha nem találtuk meg a felirat alapján a helyét, simán beszúrjuk a lista elejére/megfelelő helyre
                if not beszurtuk then
                    table.insert(rendezett_args, 2, teljes_url) -- Alapértelmezetten a 2. helyre szúrjuk (a példád alapján)
                 end
             end
             end
         end
         end
        table.insert(rendezett_args, aktualis)
        idx = idx + 1
     end
     end


     -- -------------------------------------------------------------------------
     while elrontott_google_linkek[google_idx] do
    -- FŐ RENDERELŐ CIKLUS (Most már a tiszta, helyreállított listából dolgozunk)
        table.insert(rendezett_args, elrontott_google_linkek[google_idx])
     -- -------------------------------------------------------------------------
        google_idx = google_idx + 1
    end
 
     -- 4. FŐ RENDERELŐ CIKLUS
     local html = {}
     local html = {}
     table.insert(html, '<div class="egyedi-galeria-container">')
     table.insert(html, '<div class="egyedi-galeria-container">')
165. sor: 150. sor:


             if kepAdat then
             if kepAdat then
                 -- Opcionális felirat detektálása a rendezett listából
                 local felirat_resz = ""
                 if rendezett_args[i+1] then
                 if rendezett_args[i+1] then
                     local kovetkezo = rendezett_args[i+1]
                     local kovetkezo = rendezett_args[i+1]
                     if kovetkezo ~= "" and not isKepFormatum(kovetkezo) then
                     if kovetkezo ~= "" and not isKepFormatum(kovetkezo) then
                         kepAdat.felirat = kovetkezo
                         felirat_resz = kovetkezo
                         i = i + 1 -- Felirat átugrása a következő körben
                         i = i + 1
                     end
                     end
                 end
                 end


                 local tartalom = ""
                 local tartalom = ""
                local tiszta_felirat = kepAdat.felirat or ""


                 if kepAdat.tipus == "URL" then
                 if kepAdat.tipus == "URL" then
                     -- Elrejtjük a kettőspontot a preprocess elől
                     local forras_nev = ""
                     local biztonsagos_path = kepAdat.path:gsub(":", "&#58;")
                     if kepAdat.path:find("commons%.wikimedia%.org") then
 
                        forras_nev = "Wikimedia Commons"
                     -- --- ÚJ FORRÁS JELZŐ LOGIKA ---
                     else
                    -- Kiderítjük a forrás nevét (átadjuk az args[i]-t is, hogy lássa ha Commons volt)
                        forras_nev = kinyerForrasNev(kepAdat.path)
                    local forras_nev = kinyerForrasNev(kepAdat.path, rendezett_args[i])
                     end
                     local forras_link = string.format('<br/><span class="galeria-forras-jelzo" style="font-size:0.85em; color:#72777d; display:block; margin-top:4px;">Forrás: <a href="%s" target="_blank" rel="noopener noreferrer" style="color:#3366cc; text-decoration:underline;">%s</a> ↗</span>', biztonsagos_path, forras_nev)
 
                    -- Hozzáfűzzük a forrás linket a felirathoz, így a LightGallery is megkapja automatikusan
                    local vegleges_felirat = tiszta_felirat .. forras_link
                    -- ------------------------------


                     tartalom = string.format('<div class="kulso-url-doboz" data-src="%s"><span class="url-link-szoveg">Külső kép:<br/>[Link]</span><div class="galeria-felirat">%s</div></div>', biztonsagos_path, vegleges_felirat)
                    -- BIZTONSÁGOS GENERÁLÁS: Csak tiszta adatok attribútumokban, nincs <img> tag, amit a böngésző letilthatna!
                 else -- HELYI
                    -- A CSS fog neki adni egy elegáns és egyedi placeholder kinézetet a MediaWiki:Common.css-ből.
                     if kepAdat.felirat and kepAdat.felirat ~= "" then
                     tartalom = string.format('<div class="kulso-url-doboz" data-src="%s" data-forras-nev="%s"><div class="kulso-link-ikon">🌐</div><span class="galeria-felirat">%s</span><br><small class="forras-felirat">%s</small></div>',
                         tartalom = string.format('[[Fájl:%s|thumb|180px|%s]]', kepAdat.path, tiszta_felirat)
                                                kepAdat.path,
                                                forras_nev,
                                                felirat_resz,
                                                forras_nev)
                 else
                    -- HELYI WIKI KÉP
                     if felirat_resz ~= "" then
                         tartalom = string.format('[[Fájl:%s|thumb|200x200px|%s]]', kepAdat.path, felirat_resz)
                     else
                     else
                         tartalom = string.format('[[Fájl:%s|thumb|180px]]', kepAdat.path)
                         tartalom = string.format('[[Fájl:%s|thumb|200x200px]]', kepAdat.path)
                     end
                     end
                 end
                 end

A lap jelenlegi, 2026. június 19., 07:58-kori változata

A modult a Modul:Galeria/doc lapon tudod dokumentálni

local p = {}

-- =============================================================================
-- SEGÉDFÜGGVÉNYEK
-- =============================================================================

local function megtisztitString(s)
    if not s then return "" end
    s = tostring(s)
    s = s:gsub("^%s*(.-)%s*$", "%1")
    s = s:gsub("[\n\r]", "")
    return s
end

local function detektalKepTipus(nyers_bemenet)
    if not nyers_bemenet or nyers_bemenet == "" then return nil end
    
    local s = megtisztitString(nyers_bemenet)
    
    if s:lower():find("^commons:") then
        local tiszta_nev = s:sub(9)
        if not tiszta_nev:lower():find("^file:") and not tiszta_nev:lower():find("^fájl:") then
            tiszta_nev = "File:" .. tiszta_nev
        end
        local url_nev = tiszta_nev:gsub(" ", "_")
        return {
            tipus = "URL",
            path = "https://commons.wikimedia.org/wiki/Special:FilePath/" .. url_nev
        }
    end
    
    if s:find("^https?://") or s:find("^encrypted%-tbn") or s:find("gstatic%.com") then
        return {
            tipus = "URL",
            path = s
        }
    end
    
    return {
        tipus = "WIKI",
        path = s
    }
end

local function isKepFormatum(szoveg)
    if not szoveg or szoveg == "" then return false end
    local s = megtisztitString(szoveg):lower()
    
    if s:find("^https?://") or s:find("^encrypted%-tbn") or s:find("gstatic%.com") or s:find("^commons:") then
        return true
    end
    
    if s:find("%.jpg$") or s:find("%.jpeg$") or s:find("%.png$") or s:find("%.gif$") or s:find("%.svg$") or s:find("%.webp$") or s:find("%.jpg[^%%a]") or s:find("%.jpeg[^%%a]") then
        return true
    end
    
    return false
end

local function kinyerForrasNev(url)
    if not url or url == "" then return "Külső forrás" end
    
    if url:find("google%.com") or url:find("gstatic%.com") or url:find("^encrypted%-tbn") then
        return "Google Cache"
    end
    
    local domain = url:match("^https?://([^/]+)")
    if domain then
        domain = domain:gsub("^www%.", "")
        return domain
    end
    
    return "Külső link"
end

-- =============================================================================
-- FŐ FUNKCIÓ: GALÉRIA GENERÁLÁSA
-- =============================================================================
function p.generalGaleria(frame)
    local args = {}
    if type(frame) == "table" and type(frame.getParent) == "function" then
        args = frame:getParent().args
        if not args or (not args[1] and not args['k1']) then
            args = frame.args
        end
    else
        args = frame
    end

    -- 1. Kigyűjtjük a törött Google linkeket
    local elrontott_google_linkek = {}
    for k, v in pairs(args) do
        if type(k) == "string" then
            local tiszta_kulcs = megtisztitString(k)
            if tiszta_kulcs:find("^https?://") or tiszta_kulcs:find("^encrypted%-tbn") or tiszta_kulcs:find("gstatic%.com") then
                local teljes_url = tiszta_kulcs .. "=" .. megtisztitString(v)
                table.insert(elrott_google_linkek, teljes_url)
            end
        end
    end

    -- 2. Lineáris lista másolása
    local max_index = 0
    for k, v in pairs(args) do
        if type(k) == "number" and k > max_index then max_index = k end
    end

    local ideiglenes_lista = {}
    for i = 1, max_index do
        if args[i] then
            table.insert(ideiglenes_lista, megtisztitString(args[i]))
        end
    end

    -- 3. Rekonstrukció eltolással
    local rendezett_args = {}
    local google_idx = 1

    local idx = 1
    while ideiglenes_lista[idx] do
        local aktualis = ideiglenes_lista[idx]

        if elrontott_google_linkek[google_idx] and not isKepFormatum(aktualis) then
            local utolso_rendezett = rendezett_args[#rendezett_args]
            if not utolso_rendezett or not isKepFormatum(utolso_rendezett) then
                table.insert(rendezett_args, elrontott_google_linkek[google_idx])
                google_idx = google_idx + 1
            end
        end

        table.insert(rendezett_args, aktualis)
        idx = idx + 1
    end

    while elrontott_google_linkek[google_idx] do
        table.insert(rendezett_args, elrontott_google_linkek[google_idx])
        google_idx = google_idx + 1
    end

    -- 4. FŐ RENDERELŐ CIKLUS
    local html = {}
    table.insert(html, '<div class="egyedi-galeria-container">')

    local i = 1
    while rendezett_args[i] do
        local v = rendezett_args[i]

        if v ~= "" and isKepFormatum(v) then
            local kepAdat = detektalKepTipus(v)

            if kepAdat then
                local felirat_resz = ""
                if rendezett_args[i+1] then
                    local kovetkezo = rendezett_args[i+1]
                    if kovetkezo ~= "" and not isKepFormatum(kovetkezo) then
                        felirat_resz = kovetkezo
                        i = i + 1
                    end
                end

                local tartalom = ""

                if kepAdat.tipus == "URL" then
                    local forras_nev = ""
                    if kepAdat.path:find("commons%.wikimedia%.org") then
                        forras_nev = "Wikimedia Commons"
                    else
                        forras_nev = kinyerForrasNev(kepAdat.path)
                    end

                    -- BIZTONSÁGOS GENERÁLÁS: Csak tiszta adatok attribútumokban, nincs <img> tag, amit a böngésző letilthatna!
                    -- A CSS fog neki adni egy elegáns és egyedi placeholder kinézetet a MediaWiki:Common.css-ből.
                    tartalom = string.format('<div class="kulso-url-doboz" data-src="%s" data-forras-nev="%s"><div class="kulso-link-ikon">🌐</div><span class="galeria-felirat">%s</span><br><small class="forras-felirat">%s</small></div>',
                                                kepAdat.path,
                                                forras_nev,
                                                felirat_resz,
                                                forras_nev)
                else
                    -- HELYI WIKI KÉP
                    if felirat_resz ~= "" then
                        tartalom = string.format('[[Fájl:%s|thumb|200x200px|%s]]', kepAdat.path, felirat_resz)
                    else
                        tartalom = string.format('[[Fájl:%s|thumb|200x200px]]', kepAdat.path)
                    end
                end

                table.insert(html, '  <div class="galeria-elem">')
                table.insert(html, '    ' .. tartalom)
                table.insert(html, '  </div>')
            end
        end

        i = i + 1
    end

    table.insert(html, '</div>')

    local vegleges_html = table.concat(html, "\n")
    return frame:preprocess(vegleges_html)
end

return p