Modul:Wikidata utilities: Unterschied zwischen den Versionen

Aus skandinavien-wiki.net
Keine Bearbeitungszusammenfassung
(nicht mehr benötigte Funktionen entfernt)
Zeile 127: Zeile 127:
if value then
if value then
return value.id
return value.id
end
return ''
end
function fw.getEntWDid( anEntity, p )
if anEntity == nil then
return ''
end
local value = getFirstValue( anEntity:getBestStatements( p ) )
if value then
return value.id
end
return ''
end
function fw.getEntWDvalue( anEntity, p )
if anEntity == nil then
return ''
end
local value = getFirstValue( anEntity:getBestStatements( p ) )
if value then
return value
end
return ''
end
function fw.getWDid( id, p )
if not id or id == '' then
return ''
end
local value = getFirstValue( mw.wikibase.getBestStatements( id, p ) )
if value then
return value.id
end
return ''
end
function fw.getWDvalue( id, p )
if not id or id == '' then
return ''
end
local value = getFirstValue( mw.wikibase.getBestStatements( id, p ) )
if value then
return value
end
end


Zeile 196: Zeile 144:
end
end


return getNValues( statements, count or #statements )
end
function fw.getEntWDvalues( anEntity, p, count )
if anEntity == nil then
return {}
end
local statements = anEntity:getBestStatements( p )
return getNValues( statements, count or #statements )
end
function fw.getWDvalues( id, p, count )
if not id or id == '' then
return {}
end
local statements = mw.wikibase.getBestStatements( id, p )
return getNValues( statements, count or #statements )
return getNValues( statements, count or #statements )
end
end

Version vom 18. März 2018, 11:05 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Wikidata utilities/doc erstellt werden

local fw = {}

function fw.checkId( id ) -- only syntax check
	if ( not id ) or ( type( id ) ~= 'string' ) or ( id == '' ) then
		return ''
	end
	local i = id:upper()
	if mw.ustring.match( i, '^Q[%d]+$') == nil then
		if mw.ustring.match( i, '^[%d]+$') ~= nil then -- only number
			return 'Q' .. i
		else -- invalid id
			return ''
		end
	end
	return i
end

function fw.getEntity( id )
	local wrongQualifier = false
	local entity = nil

	local i = fw.checkId( id )
	if i ~= '' then
		-- expensive function call
		entity = mw.wikibase.getEntity( i )
		if not entity then
			i = ''
			wrongQualifier = true
		end
	else
		if id ~= '' then wrongQualifier = true end
	end
	return i, entity, wrongQualifier
end

local function getFirstValue( statements )
	if #statements == 0 then
		return nil
	end

	for i = 1, #statements, 1 do
		if statements[i].mainsnak.snaktype == 'value' then
			return statements[i].mainsnak.datavalue.value
		end
	end

	return nil
end

local function getNValues( statements, count )
	local ar = {}
	if count > #statements then count = #statements end
	if ( #statements == 0 ) or ( count <= 0 ) then
		return ar
	end

	local i = 0
	repeat
		i = i + 1
		if statements[i].mainsnak.snaktype == 'value' then
			table.insert( ar, statements[i].mainsnak.datavalue.value )
		end
	until ( i >= #statements ) or ( #ar >= count )

	return ar
end

function fw.getNStatements( 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

	local ar = {}
	count = count or #statements
	if count > #statements then count = #statements end
	if ( #statements == 0 ) or ( count <= 0 ) then
		return ar
	end

	local i = 0
	repeat
		i = i + 1
		if statements[i].mainsnak.snaktype == 'value' then
			table.insert( ar, statements[i] )
		end
	until ( i >= #statements ) or ( #ar >= count )

	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

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

function fw.typeSearch( p31, list, limit )
	-- p31: array of Wikidata values
	-- list: array of q id - types relations
	-- limit: maximum levels to analyse
	if (not p31) or (#p31 == 0) then return 'error' end
	local aType, i, id, j

	for i = 1, #p31, 1 do
		id = p31[i].id
		aType = list[id]

		if aType then
			return aType
		else
			j = 0
			repeat
				id = fw.getId( id, 'P279' )
				if id ~= '' then
					aType = list[id]
					if aType then return aType end
				end
				j = j + 1
			until (j >= limit) or (id == '')
		end
	end
	return 'error'
end

return fw