Modul:Wikidata utilities: Unterschied zwischen den Versionen

(erweitert)
(Anfang vereinfachung)
Zeile 2: Zeile 2:


function fw.checkId( id )
function fw.checkId( id )
if (not id) or (id == '') then return '' end
if ( not id ) or ( id == '' ) then return '' end
local i = id:upper()
local i = id:upper()
if mw.ustring.match( i, '^Q[%d]+$') == nil then
if mw.ustring.match( i, '^Q[%d]+$') == nil then
Zeile 44: Zeile 44:


return ar
return ar
end
function fw.getValue( entity, p )
if ( not entity ) or ( entity == '' ) then
return ''
end
local value
if type( entity ) == 'string' then
value = getFirstValue( mw.wikibase.getBestStatements( entity, p ) )
else
value = getFirstValue( entity:getBestStatements( p ) )
end
if value then
return value
end
return ''
end
function fw.getId( entity, p )
if ( not entity ) or ( entity == '' ) then
return ''
end
local value
if type( entity ) == 'string' then
value = getFirstValue( mw.wikibase.getBestStatements( entity, p ) )
else
value = getFirstValue( entity:getBestStatements( p ) )
end
if value then
return value.id
end
return ''
end
end


Zeile 96: Zeile 132:


return ''
return ''
end
function fw.getValues( entity, p, count )
if ( not entity ) or ( entity == '' ) then
return ''
end
local statements
if type( entity ) == 'string' then
statements = mw.wikibase.getBestStatements( entity, p )
else
statements = entity:getBestStatements( p )
end
return getNValues( statements, count or #statements )
end
end


Zeile 116: Zeile 167:
end
end


function fw.typeSearch( p31, poi, limit )
function fw.typeSearch( p31, list, limit )
-- p31: array of Wikidata values
-- p31: array of Wikidata values
-- poi: array of q id - types relations
-- list: array of q id - types relations
-- limit: maximum levels to analyse
-- limit: maximum levels to analyse
if (not p31) or (#p31 == 0) then return 'error' end
if (not p31) or (#p31 == 0) then return 'error' end
Zeile 125: Zeile 176:
for i = 1, #p31, 1 do
for i = 1, #p31, 1 do
id = p31[i].id
id = p31[i].id
aType = poi[id]
aType = list[id]


if aType then
if aType then
Zeile 134: Zeile 185:
id = fw.getWDid( id, 'P279' )
id = fw.getWDid( id, 'P279' )
if id ~= '' then
if id ~= '' then
aType = poi[id]
aType = list[id]
if aType then return aType end
if aType then return aType end
end
end