Module:Official website/sandbox: Difference between revisions

Content deleted Content added
No edit summary
update to use new mw.wikibase API changes
 
(49 intermediate revisions by 7 users not shown)
Line 29:
-- Finds whether a Wikidata property is qualified as being in English.
local function isEnglish(prop)
local langret = quickPcall(function ()
returnfor i, lang in ipairs(prop.qualifiers.P2439.datavalue.value['numeric-id']P407) do
if lang.datavalue.value['numeric-id'] == 1860 then
return true
end
end
return false
end)
return langret == 1860true
end
 
Line 40 ⟶ 45:
-- Get objects for all official sites on Wikidata.
local websites = quickPcall(function ()
return mw.wikibase.getEntityObjectgetAllStatements()mw.claimswikibase.getEntityIdForCurrentPage(), 'P856')
end)
 
Line 66 ⟶ 71:
return e1
end
return ws1._index < ws2._index
end)
local url = quickPcall(function ()
Line 82 ⟶ 87:
-- Render the URL link, plus other visible output.
local function renderUrl(options)
if not options.url and not options.wikidataurl then
local qid = mw.wikibase.getEntityIdForCurrentPage()
returnlocal result = '<strong class="error">' ..
'No URL found. Please specify a URL here or add one to Wikidata.' ..
'</strong>'
if qid then
result = result.. ' [[File:OOjs UI icon edit-ltr-progressive.svg |frameless |text-top |10px |alt=Edit this at Wikidata |link=https://www.wikidata.org/wiki/' .. qid .. '#P856|Edit this at Wikidata]]'
end
return result
end
local ret = {}
ret[#ret + 1] = string.format(
'<span class="official-website">%s</span>',
makeUrl(options.url or options.wikidataurl, options.display)
)
if options.wikidataurl and not options.url then
local qid = mw.wikibase.getEntityIdForCurrentPage()
if qid then
ret[#ret + 1] = '[[File:OOjs UI icon edit-ltr-progressive.svg |frameless |text-top |10px |alt=Edit this at Wikidata |link=https://www.wikidata.org/wiki/' .. qid .. '#P856|Edit this at Wikidata]]'
end
end
if options.format == 'flash' then
ret[#ret + 1] = mw.getCurrentFrame():expandTemplate{
title = 'Link noteColor',
args = {note ='#505050', '(Requires [[Adobe Flash Player]])'}
}
end
Line 101 ⟶ 117:
ret[#ret + 1] = '(' .. makeUrl(options.mobile, 'Mobile') .. ')'
end
if options.archiveurl then
if not archivedate then
ret[#ret + 1] = '(' .. makeUrl(options.archiveurl, 'archived') .. ')'
else
ret[#ret + 1] = '(' .. makeUrl(options.archiveurl, 'archived') .. ' on ' .. options.archivedate .. ')'
end
end
return table.concat(ret, ' ')
end
 
-- Render the tracking category.
local function renderTrackingCategory(url, wikidataurl)
if mw.title.getCurrentTitle().namespace ~= 0 then
return ''
end
local category
if not url and not wikidataurl then
category = 'Official website missing URL'
elseif fetchWikidataUrl()not url and wikidataurl then
return ''
if url and url ~= fetchWikidataUrl() then
elseif url and wikidataurl then
if url:gsub('/%s*$', '') ~= wikidataurl:gsub('/%s*$', '') then
category = 'Official website different in Wikidata and Wikipedia'
end
Line 130 ⟶ 141:
 
function p._main(args)
local url = args[1] or args.___URL or args.url
local orwikidataurl = fetchWikidataUrl()
local formattedUrl = renderUrl{
url = url,
wikidataurl = wikidataurl,
display = args[2] or args.name or 'Official website',
mobile = args.mobile,
format = args.format,
mobile = args.mobile,
archiveurl = args.archiveurl,
archivedate = args.archivedate
}
return formattedUrl .. renderTrackingCategory(url, wikidataurl)
end