Jump to content

Module:ResolveEntityId: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
resolve redirects
frame.args[2]
Line 1: Line 1:
local p = {}
local p = {}

function p.getEntity(frame)
local z=mw.wikibase.getEntity(frame.args[1])
end


function p._entityid(frame,id)
function p._entityid(frame,id)
Line 10: Line 6:
if mw.ustring.match(id,'^Q%d+$') then
if mw.ustring.match(id,'^Q%d+$') then
-- id is in the proper format for a Wikidata entity
-- id is in the proper format for a Wikidata entity
if mw.wikibase.isValidEntityId(id) then
if frame:preprocess("{{#iferror:{{#invoke:ResolveEntityId|getEntity|".. id .. "}}|error}}") ~= "error" then
-- getEntity(id) doesn't return an error
-- id is valid
return mw.wikibase.getEntity(id).id
id = mw.wikibase.getEntity(id)
if id then
-- entity exists
return id.id
end
end
end
else
else
Line 26: Line 26:
end
end
end
end
return nil
return frame.args[2] or nil
end
end



Revision as of 17:42, 16 April 2018

local p = {}

function p._entityid(frame,id)
	if type(id) == 'string' then
		id = mw.ustring.upper(mw.ustring.sub(id,1,1))..mw.ustring.sub(id,2)
		if mw.ustring.match(id,'^Q%d+$') then
			-- id is in the proper format for a Wikidata entity
			if mw.wikibase.isValidEntityId(id) then
				-- id is valid
				id = mw.wikibase.getEntity(id)
				if id then
					-- entity exists
					return id.id
				end
			end
		else
			id = mw.wikibase.getEntityIdForTitle(id)
			if id then
				-- id is a title that matches a Wikidata entity
				local instanceOf = mw.wikibase.getBestStatements(id, 'P31')[1]
				if instanceOf and instanceOf.mainsnak.datavalue.value.id ~= 'Q4167410' then
					-- not disambiguation
					return mw.wikibase.getEntity(id).id
				end
			end
		end
	end
	return frame.args[2] or nil
end

function p.entityid(frame)
	return p._entityid(frame, frame.args[1])
end

return p