モジュール:17live

提供:エケペディア
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:17live/doc に作成できます

local p = {};

local function setProperty(t_name)
	
	-- メイン空間のみ
	if not mw.title.getCurrentTitle().namespace == 0 then
		return true;
	end
	
	if not mw.smw then
        return true;
    end
    
    local dataStore = {}
    dataStore['17liveアカウント'] = t_name

    local result = mw.smw.set( dataStore )

    if result == true then
        -- everything ok
    else
        -- error message to be found in result.error
    end
end	

function p.main( frame )
	local args = require( 'Module:Arguments' ).getArgs( frame, { wrappers = 'Template:17live', removeBlanks = false, parentFirst = true });

	--  ID
	local t_name = args[1] or args.id or '';
	
	--  URL
	local formatterURL = "https://17.live/profile/r/$1";
	local url = mw.ustring.gsub(formatterURL, "\$1", t_name);
	
	-- 表示名
	local name = args[2] or args.name or '';
	
	-- SemanticMediaWiki
	if not args.nosmw then
		setProperty(t_name);
	end


	-- 表示名デフォルト
	if name == '' then
		name = "17liveアカウント";
	end

	local t_name2 = '(@' .. t_name  ..')';
	if mw.ustring.match(name, '%(' .. t_name .. '%)$') then
		t_name2 = '';
	end

	return '[' ..url ..' ' ..name ..'] ' ..t_name2 ..' - [[17LIVE]]';
end

return p;