Module:Official website/sandbox: Difference between revisions

Content deleted Content added
No edit summary
update to use new mw.wikibase API changes
 
(34 intermediate revisions by 6 users not shown)
Line 30:
local function isEnglish(prop)
local ret = quickPcall(function ()
for i, lang in ipairs(prop.qualifiers.P2439P407) do
if lang.datavalue.value['numeric-id'] == 1860 then
return true
Line 45:
-- Get objects for all official sites on Wikidata.
local websites = quickPcall(function ()
return mw.wikibase.getEntityObjectgetAllStatements()mw.claimswikibase.getEntityIdForCurrentPage(), 'P856')
end)
 
Line 71:
return e1
end
return ws1._index < ws2._index
end)
local url = quickPcall(function ()
Line 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(
local out = makeUrl(options.url, options.display)
if string.find(out, "%>%&%#39%;%<") then
ret[#ret + 1] = "[" .. options.url .. " " .. options.display .. "]"
else
ret[#ret + 1] = string.format(
'<span class="official-website">%s</span>',
local out = makeUrl(options.url or options.wikidataurl, options.display)
out
)
if options.wikidataurl and not options.url then
end
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 122 ⟶ 128:
if not url and not wikidataurl then
category = 'Official website missing URL'
elseif not url and wikidataurl then
return ''
elseif url and wikidataurl then
Line 135 ⟶ 141:
 
function p._main(args)
local url = args[1] or args.___URL or args.url or wikidataurl
local wikidataurl = fetchWikidataUrl()
local url = args[1] or args.___URL or args.url or wikidataurl
local formattedUrl = renderUrl{
url = url,
wikidataurl = wikidataurl,
display = args[2] or args.name or 'Official website',
mobileformat = args.mobileformat,
formatmobile = args.formatmobile
}
return formattedUrl .. renderTrackingCategory(url, wikidataurl)