Modul:Redirect hatnote

Vikipediya, ochiq ensiklopediya

Bu modul uchun Modul:Redirect hatnote/doc nomli hujjat sahifasini yaratishingiz mumkin

local mHatnote = require('Module:Hatnote')
local mHatList = require('Module:Hatnote list')
local mArguments --lazily initialize
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local checkTypeMulti = libraryUtil.checkTypeMulti

local p = {}

--------------------------------------------------------------------------------
-- Yordamchi funksiyalar
--------------------------------------------------------------------------------

local function getTitle(...)
	 
	local success, titleObj = pcall(mw.title.new, ...)
	return success and titleObj or nil
end

--------------------------------------------------------------------------------
-- Asosiy funksiyalar
--------------------------------------------------------------------------------

function p.redirect(frame)
	mArguments = require('Module:Arguments')
	local args = mArguments.getArgs(frame, {parentOnly=true})
	--Get number of redirects
	local numRedirects = tonumber(frame.args[1]) or 1
	-- Create the options table.
	local options = {}
	options.selfref = args.selfref
	return p._redirect(args, numRedirects, options)
end

function p._redirect(args, numRedirects, options, currentTitle, redirectTitle, targetTitle)
	 
	checkType('_redirect', 1, args, 'table')
	checkType('_redirect', 2, numRedirects, 'number', true)
	numRedirects = numRedirects or 1
	checkType('_redirect', 3, options, 'table', true)
	options = options or {}
	currentTitle = currentTitle or mw.title.getCurrentTitle()
	 
	local redirect = {}
	for i = 1, numRedirects do
		 
		if not args[i] then
			return mHatnote.makeWikitextError(
				'missing redirect parameter',
				'Andoza:Yoʻnaltirish#Errors',
				args.category
			)
		end
		redirect[i] = args[i]
	end
	-- Matn
	local formattedRedirect = {}
	for k,v in pairs(redirect) do
		formattedRedirect[k] = '„' .. v .. '“'
	end
	local text = {
		mHatList.andList(formattedRedirect) .. ' soʻrovi bu yerga ' .. (#redirect == 1 and 'yoʻnaltiriladi' or 'yoʻnaltiriladi') .. '.',
		mHatList._forSee(args, #redirect + 1, {title = redirect[1], extratext = args.text})
	}
	text = table.concat(text, ' ')
	 
	local categoryTable = {}
	local function addCategory(cat)
		if cat and cat ~= '' then
			 
			categoryTable[string.format('[[Turkum:%s]]', cat)] = true
		end
	end
	 
	local mhOptions = {}
	local redirTitle
	for k,v in pairs(redirect) do
		 
		if not v:find('^REDIRECT%d*$') and v ~= 'TERM' -- 
			and currentTitle.namespace == 0 or currentTitle.namespace == 14
		then
			redirTitle = redirectTitle or getTitle(v)
			if not redirTitle or not redirTitle.exists then
				addCategory('Missing redirects')
			elseif not redirTitle.isRedirect then
				if string.find(redirTitle:getContent(), '#invoke:RfD') then
					addCategory('')
				else
					addCategory('')
				end
			else
				local target = targetTitle or redirTitle.redirectTarget
				if target and target ~= currentTitle then
					addCategory('')
				end
			end
		end

		if currentTitle.namespace == 0 and not mhOptions.selfref
			and redirTitle and redirTitle.namespace ~= 0
		then

			mhOptions.selfref = true
		else
			mhOptions.selfref = options.selfref
		end
	end

	local category = ''
	for k,v in pairs(categoryTable) do
		category = category .. k
	end

	return mHatnote._hatnote(text, mhOptions) .. category
end
 
return p