「モジュール:Maintenance/isShow」の版間の差分

提供:AcPubWiki
編集の要約なし
(動くはず)
1行目: 1行目:
local tbl = {}
local rtn = {}
-- メンテナンス予定jsonファイル読み込み
-- メンテナンス予定jsonファイル読み込み
maintenancedata = mw.loadJsonData("利用者:龍太郎/sandbox/テンプレート:メンテナンス/data.json")
maintenancedata = mw.loadJsonData("利用者:龍太郎/sandbox/テンプレート:メンテナンス/data.json")
25行目: 25行目:
if endtime ~= 0 then
if endtime ~= 0 then
if ( os.difftime(os.time(), endtime) ) > 0 then  
if ( os.difftime(os.time(), endtime) ) > 0 then  
rtn = "true"
rtn[1] = "true"
else
else
rtn = "false"
rtn[1] = "false"
end
end
elseif start ~= 0 then
elseif start ~= 0 then
if ( os.difftime(os.time()+86400, starttime) ) > 0 then  
if ( os.difftime(os.time()+86400, starttime) ) > 0 then  
rtn = "true"
rtn[1] = "true"
end
end
else
else
rtn = "false"
rtn[1] = "false"
end
end


return rtn
mw.log(rtn)

2023年4月22日 (土) 14:00時点における版

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

local rtn = {}
-- メンテナンス予定jsonファイル読み込み
maintenancedata = mw.loadJsonData("利用者:龍太郎/sandbox/テンプレート:メンテナンス/data.json")

-- 開始時間について定義
if maintenancedata.maintenance[1].start == "near" then
	start = "0"
else
	start = os.date("!%Y-%m-%d %T",maintenancedata.maintenance[1].start)
end

-- 終了時間について定義
if maintenancedata.maintenance[1].time == "few" then
	endtime = "0"
elseif maintenancedata.maintenance[1].time == "intermittent" then
	endtime = "0"
elseif maintenancedata.maintenance[1].time == "observation" then
	endtime = "0"
else
	endtime = maintenancedata.maintenance[1].time
end


--メンテナンスが終わってるか判定
if endtime ~= 0 then
	if ( os.difftime(os.time(), endtime) ) > 0 then 
		rtn[1] = "true"
	else
		rtn[1] = "false"
	end
elseif start ~= 0 then
	if ( os.difftime(os.time()+86400, starttime) ) > 0 then 
		rtn[1] = "true"
	end
else
	rtn[1] = "false"
end

mw.log(rtn)