Документација модула[прикажи] [уреди] [историја] [освежи]

This module is used to retrieve and manage Wiktionary's various language families and the information associated with them. See Викиречник:Families for more information.

This module provides access to other modules. To access the information from within a template, see Модул:families/templates.

The information itself is stored in Модул:families/data. This module should not be used directly by any other module, the data should only be accessed through the functions provided by Module:families.

Finding and retrieving families

уреди

The module exports a number of functions that are used to find families.

getByCode

уреди

getByCode(code)

Finds the family whose code matches the one provided. If it exists, it returns a Family object representing the family. Otherwise, it returns nil.

getByCanonicalName

уреди

getByCanonicalName(name)

Looks for the family whose canonical name (the name used to represent that language on Wiktionary) matches the one provided. If it exists, it returns a Family object representing the family. Otherwise, it returns nil. The canonical name of families should always be unique (it is an error for two families on Wiktionary to share the same canonical name), so this is guaranteed to give at most one result.

Family objects

уреди

A Family object is returned from one of the functions above. It is a Lua representation of a family and the data associated with it. It has a number of methods that can be called on it, using the : syntax. For example:

local m_families = require("Модул:families")
local fam = m_families.getByCode("ine")
local name = fam:getCanonicalName()
-- "name" will now be "Indo-European"

Family:getCode

уреди

:getCode()

Returns the family code of the family. Example: "ine" for the Indo-European languages.

Family:getCanonicalName

уреди

:getCanonicalName()

Returns the canonical name of the family. This is the name used to represent that language family on Wiktionary, and is guaranteed to be unique to that family alone. Example: "Indo-European" for the Indo-European languages.

Family:getAllNames

уреди

:getAllNames()

Returns a table of all names that the family is known by, including the canonical name. The names are not guaranteed to be unique, sometimes more than one family is known by the same name. Example: {"Slavic", "Slavonic"} for the Slavic languages.

Family:getFamily

уреди

:getFamily()

Returns a Family object for the parent family that the family is a part of.

Family:getProtoLanguage

уреди

:getProtoLanguage()

Returns a Language object (see Модул:languages) for the proto-language of this family, if one exists.

Family:getCategoryName

уреди

:getCategoryName()

Returns the name of the main category of that family. Пример: "Германски језици" for the Germanic languages, whose category is at Категорија:Германски језици.

Family:getWikidataItem

уреди

:getWikidataItem()

Returns the Wikidata item of that family.

Family:getWikipediaArticle

уреди

:getWikipediaArticle()

Returns the Wikipedia article of that family, usually derived from :getWikidataItem().

local export = {}

local Family = {}


function Family:getCode()
	return self._code
end


function Family:getCanonicalName()
	return self._rawData.canonicalName
end


function Family:getDisplayForm()
	return self:getCategoryName("nocap")
end


function Family:getOtherNames(onlyOtherNames)
	return require("Модул:language-like").getOtherNames(self, onlyOtherNames)
end


function Family:getAliases()
	return self._rawData.aliases or {}
end


function Family:getVarieties(flatten)
	return require("Модул:language-like").getVarieties(self, flatten)
end


--function Family:getAllNames()
--	return self._rawData.names
--end


function Family:getType()
	return "family"
end


function Family:getFamily()
	if self._rawData.family and not self._familyObject then
		self._familyObject = export.getByCode(self._rawData.family)
	end

	return self._familyObject
end


function Family:getProtoLanguage()
	if not self._protoLanguage then
		self._protoLanguage = require("Модул:languages").getByCode(self._rawData.protoLanguage or self._code .. "-pro")
	end

	return self._protoLanguage
end


function Family:getCategoryName(nocap)
	local name = self._rawData.canonicalName

	-- If the name already has "languages" in it, don't add it.
	if not name:find("[Јј]езици$") then
		name = name .. " језици"
	end
	if not nocap then
		name = mw.getContentLanguage():ucfirst(name)
	end
	return name
end


function Family:makeCategoryLink()
	return "[[:Категорија:" .. self:getCategoryName() .. "|" .. self:getDisplayForm() .. "]]"
end


function Family:getWikidataItem()
	local item = self._rawData.wikidata_item

	if type(item) == "number" then
		return "Q" .. item
	else
		return item
	end
end


function Family:getWikipediaArticle()
	return (self:getWikidataItem() and mw.wikibase and mw.wikibase.sitelink(self:getWikidataItem(), 'enwiki')) or
		self:getCategoryName()
end


function Family:makeWikipediaLink()
	return "[[w:" .. self:getWikipediaArticle() .. "|" .. self:getCanonicalName() .. "]]"
end


function Family:toJSON()
	local ret = {
		canonicalName = self:getCanonicalName(),
		categoryName = self:getCategoryName("nocap"),
		code = self._code,
		family = self._rawData.family,
		protoLanguage = self._rawData.protoLanguage,
		otherNames = self:getOtherNames(true),
		aliases = self:getAliases(),
		varieties = self:getVarieties(),
		type = self:getType(),
		wikidataItem = self:getWikidataItem(),
		}

	return require("Модул:JSON").toJSON(ret)
end


function Family:getRawData()
	return self._rawData
end


Family.__index = Family


function export.makeObject(code, data)
	return data and setmetatable({ _rawData = data, _code = code }, Family) or nil
end


function export.getByCode(code)
	-- FIXME! Remove this when we've tracked down all uses.
	if code == 'kdo' then
		require('Модул:debug').track('Kordofanian')
	end

	return export.makeObject(code, mw.loadData("Модул:families/data")[code])
end


function export.getByCanonicalName(name)
	local code = mw.loadData("Модул:families/by name")[name]

	if not code then
		return nil
	end

	return export.makeObject(code, mw.loadData("Модул:families/data")[code])
end


return export