Modul:PageUtil: Unterschied zwischen den Versionen

Aus FreeWiki
Wechseln zu: Navigation, Suche
te>PerfektesChaos
(fix)
K (12 Versionen importiert)
 
(9 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
--[=[ 2014-12-25
+
local PageUtil = { suite  = "PageUtil",
 +
                  serial = "2018-10-19",
 +
                  item  = 0 }
 +
--[=[
 
PageUtil
 
PageUtil
* merge()
 
 
]=]
 
]=]
  
  
  
-- table for export
+
PageUtil.maxPages = 200
local PageUtil = {}
 
  
  
Zeile 14: Zeile 15:
 
     -- Format message with class="error"
 
     -- Format message with class="error"
 
     --    alert  -- string, with message
 
     --    alert  -- string, with message
     --    frame  -- object
+
     --    frame  -- object, if known
 
     -- Returns message with markup
 
     -- Returns message with markup
     local r = alert
+
     local scream = alert
 
     if frame then
 
     if frame then
         r = string.format( "%s * %s", frame:getTitle(), r )
+
         scream = string.format( "%s * %s", frame:getTitle(), scream )
 
     end
 
     end
     r = string.format( "<span class=\"error\">ERROR * %s</span>", r )
+
     return tostring( mw.html.create( "span" )
    return r
+
                            :addClass( "error" )
 +
                            :wikitext( scream ) )
 
end -- fault()
 
end -- fault()
  
Zeile 37: Zeile 39:
 
         shift  = v[ 2 ]
 
         shift  = v[ 2 ]
 
         source = ":?" .. source:gsub( " ", "[_ ]+" )
 
         source = ":?" .. source:gsub( " ", "[_ ]+" )
         seek  = "%[%[%s*" .. source .. "%s*(#[^%[|%]]*%]%])"
+
                              :gsub( "[%.%(%)%*%?%+%-]", "%1" )
 +
                      .. "%s*"
 +
         seek  = "%[%[%s*" .. source .. "(#[^%]]*%]%])"
 
         subst  = "[[%1"
 
         subst  = "[[%1"
 
         r = r:gsub( seek, subst )
 
         r = r:gsub( seek, subst )
         seek  = "%[%[%s*" .. source .. "%s*(|[^%[%]]*%]%])"
+
         seek  = "%[%[%s*" .. source .. "(%|[^%]]*%]%])"
 
         subst = "[[#" .. shift .. "%1"
 
         subst = "[[#" .. shift .. "%1"
 
         r = r:gsub( seek, subst )
 
         r = r:gsub( seek, subst )
         seek  = "%[%[%s*(" .. source .. "%s*%]%])"
+
         seek  = "%[%[%s*(" .. source .. "%]%])"
 
         subst = "[[#" .. shift .. "|%1"
 
         subst = "[[#" .. shift .. "|%1"
 
         r = r:gsub( seek, subst )
 
         r = r:gsub( seek, subst )
Zeile 57: Zeile 61:
 
     --    frame  -- object
 
     --    frame  -- object
 
     -- Returns content, or false
 
     -- Returns content, or false
 +
    -- Uses:
 +
    --    mw.title.new() .exists
 
     local r
 
     local r
 
     local seek = "^(#lstx?):%s*%[%[([^%[|%]\n]+)%]%]%s*(%S.*)%s*$"
 
     local seek = "^(#lstx?):%s*%[%[([^%[|%]\n]+)%]%]%s*(%S.*)%s*$"
Zeile 62: Zeile 68:
 
     if source then
 
     if source then
 
         local page = mw.title.new( source )
 
         local page = mw.title.new( source )
 +
        source = page.prefixedText
 
         if page.exists then
 
         if page.exists then
 
             section = mw.text.trim( section )
 
             section = mw.text.trim( section )
Zeile 70: Zeile 77:
 
             end
 
             end
 
         else
 
         else
             r = string.format( "<div class=\"error\">%s</div>",
+
             r = tostring( mw.html.create( "div" )
                              page.prefixedText )
+
                                :addClass( "error" )
 +
                                :wikitext( source ) )
 
         end
 
         end
 
     end
 
     end
Zeile 86: Zeile 94:
 
     --    assembly  -- table, with page infos
 
     --    assembly  -- table, with page infos
 
     -- Returns string with content, or nil
 
     -- Returns string with content, or nil
 +
    -- Uses:
 +
    --    mw.title.new() .exists
 
     local page = mw.title.new( access )
 
     local page = mw.title.new( access )
 
     local r
 
     local r
     if page.exists then
+
     if page then
        local source  = page.prefixedText
+
        if page.exists then
        local segment = string.format( "PageUtilMerge-%d", alias )
+
            local source  = page.prefixedText
        local seed
+
            local segment = string.format( "PageUtilMerge-%d", alias )
        if page.namespace == 0 then
+
            local seed
             seed = ":" .. source
+
            if page.namespace == 0 then
 +
                seed = ":" .. source
 +
             else
 +
                seed = source
 +
            end
 +
            r = string.format( "%s\n%s",
 +
                              tostring( mw.html.create( "span" )
 +
                                                :attr( "id", segment ) ),
 +
                              frame:expandTemplate( { title = seed } ) )
 +
            table.insert( assembly,  { source, segment } )
 
         else
 
         else
             seed = source
+
             r = tostring( mw.html.create( "div" )
 +
                                :addClass( "error" )
 +
                                :wikitext( page.prefixedText ) )
 
         end
 
         end
        r = frame:expandTemplate( { title = seed } )
 
        r = string.format( "<span id='%s'></span>\n%s", segment, r )
 
        table.insert( assembly,  { source, segment } )
 
 
     else
 
     else
         r = string.format( "<div class=\"error\">%s</div>",
+
         r = string.format( "%s '%s'", "Unknown page", access )
                          page.prefixedText )
+
        r = tostring( mw.html.create( "div" )
 +
                            :addClass( "error" )
 +
                            :wikitext( r ) )
 
     end
 
     end
 
     return r
 
     return r
 
end -- full()
 
end -- full()
 +
 +
 +
 +
PageUtil.failsafe = function ( assert )
 +
    -- Retrieve versioning and check for compliance
 +
    -- Precondition:
 +
    --    assert  -- string, with required version or "wikidata",
 +
    --                or false
 +
    -- Postcondition:
 +
    --    Returns  string with appropriate version, or false
 +
    local since = assert
 +
    local r
 +
    if since == "wikidata" then
 +
        local item = PageUtil.item
 +
        since = false
 +
        if type( item ) == "number"  and  item > 0 then
 +
            local ent = mw.wikibase.getEntity( string.format( "Q%d",
 +
                                                              item ) )
 +
            if type( ent ) == "table" then
 +
                local vsn = ent:formatPropertyValues( "P348" )
 +
                if type( vsn ) == "table"  and
 +
                  type( vsn.value ) == "string" and
 +
                  vsn.value ~= "" then
 +
                    r = vsn.value
 +
                end
 +
            end
 +
        end
 +
    end
 +
    if not r then
 +
        if not since  or  since <= PageUtil.serial then
 +
            r = PageUtil.serial
 +
        else
 +
            r = false
 +
        end
 +
    end
 +
    return r
 +
end -- PageUtil.failsafe()
 +
 +
 +
 +
PageUtil.getProtection = function ( access, action )
 +
    -- Retrieve protection
 +
    --    access  -- string or title or nil, with page, default: current
 +
    --    action  -- string or nil, with action, default: edit
 +
    -- Returns number: One of: 0, 0.5, 0.75, 1
 +
    local t = type( access )
 +
    local r = 0
 +
    local p
 +
    if t == "string" then
 +
        t = mw.title.new( access )
 +
    elseif t == "table" then
 +
        t = access
 +
    else
 +
        t = mw.title.getCurrentTitle()
 +
    end
 +
    p = t.protectionLevels
 +
    if type( p ) == "table" then
 +
        local s
 +
        if type( action ) == "string" then
 +
            s = mw.text.trim( action )
 +
            if s == "" then
 +
                s = false
 +
            end
 +
        end
 +
        p = p[ s or "edit" ]
 +
        if type( p ) == "table" then
 +
            for k, v in pairs( p ) do
 +
                if v == "autoconfirmed" then
 +
                    r = 0.5
 +
                elseif v == "editeditorprotected" then
 +
                    r = 0.75
 +
                elseif v == "sysop" then
 +
                    r = 1
 +
                end
 +
            end -- for k, v
 +
        end
 +
    end
 +
    return r
 +
end -- PageUtil.getProtection()
  
  
Zeile 123: Zeile 222:
 
     end -- for k, v
 
     end -- for k, v
 
     if max > 0 then
 
     if max > 0 then
 +
        local n    = 0
 
         local pages = {  { mw.title.getCurrentTitle().prefixedText,
 
         local pages = {  { mw.title.getCurrentTitle().prefixedText,
 
                           "" }  }
 
                           "" }  }
Zeile 135: Zeile 235:
 
                 if swallow then
 
                 if swallow then
 
                     s = fraction( swallow, frame )
 
                     s = fraction( swallow, frame )
 +
                    n = n + 1
 
                 else
 
                 else
 
                     swallow = s:match( "^%s*%[%[([^%[|%]\n]+)%]%]%s*$" )
 
                     swallow = s:match( "^%s*%[%[([^%[|%]\n]+)%]%]%s*$" )
 
                     if swallow then
 
                     if swallow then
 
                         s = full( swallow, frame, i, pages )
 
                         s = full( swallow, frame, i, pages )
 +
                        n = n + 1
 
                     end
 
                     end
 
                 end
 
                 end
 
                 if s then
 
                 if s then
                     r = r .. s
+
                     r = r .. mw.text.trim( s )
 +
                end
 +
                if n > PageUtil.maxPages then
 +
                    s = string.format( "'''Too many pages (max. %d)'''",
 +
                                      PageUtil.maxPages )
 +
                    r = string.format( "%s\n\n%s",
 +
                                      r,
 +
                                      fault( s, frame ) )
 +
                    break -- for i
 
                 end
 
                 end
 
             end
 
             end
Zeile 155: Zeile 265:
 
-- Export
 
-- Export
 
local p = { }
 
local p = { }
 +
 +
p.getProtection = function ( frame )
 +
    local n = PageUtil.getProtection( frame.args[ 1 ], frame.args[ 2 ] )
 +
    local t = { [ 0 ]    = "",
 +
                [ 0.5 ]  = mw.ustring.char( 189 ),
 +
                [ 0.75 ] = mw.ustring.char( 190 ),
 +
                [ 1 ]    = "1" }
 +
    return t[ n ]
 +
end -- p.getProtection
 +
 +
function p.isRedirect()
 +
    return mw.title.getCurrentTitle().isRedirect and "1"  or  ""
 +
end -- p.isRedirect
  
 
p.merge = function ( frame )
 
p.merge = function ( frame )
Zeile 162: Zeile 285:
 
     end
 
     end
 
     return r
 
     return r
end
+
end -- p.merge
 +
 
 +
p.failsafe = function ( frame )
 +
    -- Versioning interface
 +
    local s = type( frame )
 +
    local since
 +
    if s == "table" then
 +
        since = frame.args[ 1 ]
 +
    elseif s == "string" then
 +
        since = frame
 +
    end
 +
    if since then
 +
        since = mw.text.trim( since )
 +
        if since == "" then
 +
            since = false
 +
        end
 +
    end
 +
    return PageUtil.failsafe( since )  or  ""
 +
end -- p.failsafe()
  
 
function p.PageUtil()
 
function p.PageUtil()

Aktuelle Version vom 6. September 2019, 13:26 Uhr

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

local PageUtil = { suite  = "PageUtil",
                   serial = "2018-10-19",
                   item   = 0 }
--[=[
PageUtil
]=]



PageUtil.maxPages = 200



local function fault( alert, frame )
    -- Format message with class="error"
    --     alert  -- string, with message
    --     frame  -- object, if known
    -- Returns message with markup
    local scream = alert
    if frame then
        scream = string.format( "%s * %s", frame:getTitle(), scream )
    end
    return tostring( mw.html.create( "span" )
                            :addClass( "error" )
                            :wikitext( scream ) )
end -- fault()



local function flat( adjust, assembly )
    -- Replace links to pages by inner links
    --     adjust    -- string, with text
    --     assembly  -- table, with page infos
    -- Returns adjusted string
    local r = adjust
    local seek, shift, source, subst
    for k, v in pairs( assembly ) do
        source = v[ 1 ]
        shift  = v[ 2 ]
        source = ":?" .. source:gsub( " ", "[_ ]+" )
                               :gsub( "[%.%(%)%*%?%+%-]", "%1" )
                      .. "%s*"
        seek   = "%[%[%s*" .. source .. "(#[^%]]*%]%])"
        subst  = "[[%1"
        r = r:gsub( seek, subst )
        seek  = "%[%[%s*" .. source .. "(%|[^%]]*%]%])"
        subst = "[[#" .. shift .. "%1"
        r = r:gsub( seek, subst )
        seek  = "%[%[%s*(" .. source .. "%]%])"
        subst = "[[#" .. shift .. "|%1"
        r = r:gsub( seek, subst )
    end -- for k, v
    return r
end -- flat()



local function fraction( access, frame )
    -- Retrieve text from section
    --     access  -- string, with request
    --     frame   -- object
    -- Returns content, or false
    -- Uses:
    --     mw.title.new() .exists
    local r
    local seek = "^(#lstx?):%s*%[%[([^%[|%]\n]+)%]%]%s*(%S.*)%s*$"
    local scope, source, section = access:match( seek )
    if source then
        local page = mw.title.new( source )
        source = page.prefixedText
        if page.exists then
            section = mw.text.trim( section )
            if section ~= "" then
                r = frame:callParserFunction{ name = scope,
                                              args = { source,
                                                       section } }
            end
        else
            r = tostring( mw.html.create( "div" )
                                 :addClass( "error" )
                                 :wikitext( source ) )
        end
    end
    return r
end -- fraction()



local function full( access, frame, alias, assembly )
    -- Retrieve text from page
    --     access    -- string, with page name
    --     frame     -- object
    --     alias     -- number, unique
    --     assembly  -- table, with page infos
    -- Returns string with content, or nil
    -- Uses:
    --     mw.title.new() .exists
    local page = mw.title.new( access )
    local r
    if page then
        if page.exists then
            local source  = page.prefixedText
            local segment = string.format( "PageUtilMerge-%d", alias )
            local seed
            if page.namespace == 0 then
                seed = ":" .. source
            else
                seed = source
            end
            r = string.format( "%s\n%s",
                               tostring( mw.html.create( "span" )
                                                :attr( "id", segment ) ),
                               frame:expandTemplate( { title = seed } ) )
            table.insert( assembly,  { source, segment } )
        else
            r = tostring( mw.html.create( "div" )
                                 :addClass( "error" )
                                 :wikitext( page.prefixedText ) )
        end
    else
        r = string.format( "%s '%s'", "Unknown page", access )
        r = tostring( mw.html.create( "div" )
                             :addClass( "error" )
                             :wikitext( r ) )
    end
    return r
end -- full()



PageUtil.failsafe = function ( assert )
    -- Retrieve versioning and check for compliance
    -- Precondition:
    --     assert  -- string, with required version or "wikidata",
    --                or false
    -- Postcondition:
    --     Returns  string with appropriate version, or false
    local since = assert
    local r
    if since == "wikidata" then
        local item = PageUtil.item
        since = false
        if type( item ) == "number"  and  item > 0 then
            local ent = mw.wikibase.getEntity( string.format( "Q%d",
                                                              item ) )
            if type( ent ) == "table" then
                local vsn = ent:formatPropertyValues( "P348" )
                if type( vsn ) == "table"  and
                   type( vsn.value ) == "string" and
                   vsn.value ~= "" then
                    r = vsn.value
                end
            end
        end
    end
    if not r then
        if not since  or  since <= PageUtil.serial then
            r = PageUtil.serial
        else
            r = false
        end
    end
    return r
end -- PageUtil.failsafe()



PageUtil.getProtection = function ( access, action )
    -- Retrieve protection
    --     access  -- string or title or nil, with page, default: current
    --     action  -- string or nil, with action, default: edit
    -- Returns number: One of: 0, 0.5, 0.75, 1
    local t = type( access )
    local r = 0
    local p
    if t == "string" then
        t = mw.title.new( access )
    elseif t == "table" then
        t = access
    else
        t = mw.title.getCurrentTitle()
    end
    p = t.protectionLevels
    if type( p ) == "table" then
        local s
        if type( action ) == "string" then
            s = mw.text.trim( action )
            if s == "" then
                s = false
            end
        end
        p = p[ s or "edit" ]
        if type( p ) == "table" then
            for k, v in pairs( p ) do
                if v == "autoconfirmed" then
                    r = 0.5
                elseif v == "editeditorprotected" then
                    r = 0.75
                elseif v == "sysop" then
                    r = 1
                end
            end -- for k, v
        end
    end
    return r
end -- PageUtil.getProtection()



PageUtil.merge = function ( args, frame )
    -- Retrieve text
    --     args   -- table, with request
    --     frame  -- object, if available
    -- Returns string, with content
    local max = 0
    local r   = ""
    for k, v in pairs( args ) do
        if type( k ) == "number"  and
           k > max then
            max = k
        end
    end -- for k, v
    if max > 0 then
        local n     = 0
        local pages = {  { mw.title.getCurrentTitle().prefixedText,
                           "" }  }
        local mode, s, section, swallow
        if not frame then
            frame = mw.getCurrentFrame()
        end
        for i = 1, max do
            s = args[ i ]
            if s then
                swallow = s:match( "^%s*(#lstx?:[^\n]*%S)%s*$" )
                if swallow then
                    s = fraction( swallow, frame )
                    n = n + 1
                else
                    swallow = s:match( "^%s*%[%[([^%[|%]\n]+)%]%]%s*$" )
                    if swallow then
                        s = full( swallow, frame, i, pages )
                        n = n + 1
                    end
                end
                if s then
                    r = r .. mw.text.trim( s )
                end
                if n > PageUtil.maxPages then
                    s = string.format( "'''Too many pages (max. %d)'''",
                                       PageUtil.maxPages )
                    r = string.format( "%s\n\n%s",
                                       r,
                                       fault( s, frame ) )
                    break -- for i
                end
            end
        end -- for i
        r = flat( r, pages )
    end
    return r
end -- .merge()



-- Export
local p = { }

p.getProtection = function ( frame )
    local n = PageUtil.getProtection( frame.args[ 1 ], frame.args[ 2 ] )
    local t = { [ 0 ]    = "",
                [ 0.5 ]  = mw.ustring.char( 189 ),
                [ 0.75 ] = mw.ustring.char( 190 ),
                [ 1 ]    = "1" }
    return t[ n ]
end -- p.getProtection

function p.isRedirect()
    return mw.title.getCurrentTitle().isRedirect and "1"  or  ""
end -- p.isRedirect

p.merge = function ( frame )
    local lucky, r = pcall( PageUtil.merge, frame.args, frame )
    if not lucky then
        r = fault( r, frame )
    end
    return r
end -- p.merge

p.failsafe = function ( frame )
    -- Versioning interface
    local s = type( frame )
    local since
    if s == "table" then
        since = frame.args[ 1 ]
    elseif s == "string" then
        since = frame
    end
    if since then
        since = mw.text.trim( since )
        if since == "" then
            since = false
        end
    end
    return PageUtil.failsafe( since )  or  ""
end -- p.failsafe()

function p.PageUtil()
    return PageUtil
end

return p