Module:Availability: Difference between revisions
MusikAnimal (talk | contribs) No edit summary |
MusikAnimal (talk | contribs) m (Protected "Module:Availability": high-risk module ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Delete=Allow only administrators] (indefinite))) |
(No difference)
|
Revision as of 03:10, 15 December 2020
This module implements the {{availability}} template, which is placed on every song page. This generates the "Availability" and "Tour stats" sections, as applicable.
local p = {}
local cargo = mw.ext.cargo
local function pairsByKeys (t, f)
local a = {}
for n in pairs(t) do table.insert(a, n) end
table.sort(a, f)
local i = 0 -- iterator variable
local iter = function () -- iterator function
i = i + 1
if a[i] == nil then return nil
else return a[i], t[a[i]]
end
end
return iter
end
local function dateFormat(str, precision)
if precision == '2' then
return string.sub(str, 0, -3) .. 'XX'
elseif precision == '3' then
return string.sub(str, 0, -6) .. 'XX-XX'
else
return str
end
end
local function typeFormat(str)
local ret = ''
for t in string.gmatch(str, "[^,]+") do
if t == 'ep' then
t = 'EP'
else
t = t:gsub("^%l", string.upper)
end
ret = ret .. t .. ' • '
end
if string.sub(ret, -8) == ' • ' then
ret = string.sub(ret, 0, -9)
end
return ret
end
function p._main(song)
local albums = cargo.query(
'track_listings, albums, releases',
"track_listings._pageName=title, releases.release_date=date, release_date__precision=precision, albums.type=type, track_listings.listing_id=listing_id, headline",
{
where = "releases.release_date != '' AND song_page_title = \"" .. song .. '"',
join = 'track_listings._pageName=albums._pageName,albums._pageName=releases._pageName',
groupBy = 'track_listings.work',
orderBy = 'releases.release_date ASC'
}
)
local songs = cargo.query(
'track_listings, songs, releases',
"track_listings._pageName=title, releases.release_date=date, release_date__precision=precision, songs.type=type, track_listings.listing_id=listing_id, headline",
{
where = "releases.release_date != '' AND song_page_title = \"" .. song .. '"',
join = 'track_listings._pageName=songs._pageName,songs.name=releases.work',
groupBy = 'track_listings.work',
orderBy = 'releases.release_date ASC'
}
)
if next(albums) == nil and next(songs) == nil then
return ''
end
local releasesByDate = {}
local has_headline = false
for r = 1, #songs do
releasesByDate[songs[r]['date'] .. r] = songs[r]
if songs[r]['headline'] ~= '' then
has_headline = true
end
end
for r = 1, #albums do
releasesByDate[albums[r]['date'] .. r] = albums[r]
if albums[r]['headline'] ~= '' then
has_headline = true
end
end
local has_result = false
local root = mw.html.create()
local tableRoot = root:tag('table')
tableRoot:addClass('wikitable sortable')
local headerRow = tableRoot:tag('tr')
headerRow:tag('th')
:addClass('headerSort')
:wikitext('Title')
if has_headline then
headerRow:tag('th')
:wikitext('Notes')
end
-- headerRow:tag('th')
-- :addClass('headerSort')
-- :wikitext('Release date')
headerRow:tag('th')
:addClass('headerSort')
:wikitext('Type')
for _date, release in pairsByKeys(releasesByDate) do
has_result = true
local row = tableRoot:tag('tr')
row:tag('td'):wikitext('[[' .. release['title'] .. '#track-listing-' .. release['listing_id'] .. '|' .. release['title'] .. ']]')
if has_headline then
row:tag('td'):wikitext(release['headline'])
end
-- row:tag('td'):wikitext(dateFormat(release['date'], release['precision']))
row:tag('td'):wikitext(typeFormat(release['type']))
end
if has_result then
return '== Availability ==\n' .. tostring(root)
end
return '[[Category:Songs with no availability]]'
end
function p.main(frame)
local song = frame.args[1]
return p._main(song)
end
local function fetchShow(song, firstShow, fullShow)
local order = 'ASC'
local fullSongSql = ''
if firstShow == false then
order = 'DESC'
end
if fullShow == true then
fullSongSql = ' AND tease = 0 AND abandoned = 0'
end
return cargo.query(
'live_songs, shows',
'shows._pageName=page_name, shows.artist=artist, shows.featuring_artist=featuring_artist, shows.date=date, shows.venue=venue, ' ..
'shows.location=location, live_songs.tease=tease, live_songs.abandoned=abandoned, live_songs.soundcheck=soundcheck',
{
where = 'name = "' .. song .. '"' .. fullSongSql,
join = 'live_songs._pageName = shows._pageName',
groupBy = 'page_name',
orderBy = 'date ' .. order,
limit = 1
}
)
end
local function createRowForShow(ulRoot, data, label)
local showRow = ulRoot:tag('li')
showRow:tag('b'):wikitext(label .. ': ')
local showStr = '[[' .. data['page_name'] .. '|' .. data['artist'] .. ' ' .. data['date'] .. ']] '
if data['featuring_artist'] ~= '' and data['featuring_artist'] ~= data['artist'] then
mw.logObject(data)
showStr = showStr .. '(featuring [[' .. data['featuring_artist'] .. ']]) '
end
if data['venue'] ~= '' then
showStr = showStr .. 'at ' .. data['venue']
if data['location'] ~= '' then
showStr = showStr .. ', '
else
showStr = showStr .. ' '
end
end
if data['location'] ~= '' then
showStr = showStr .. data['location']
end
showRow:tag('span'):wikitext(showStr .. ' ')
if data['soundcheck'] == '1' then
showRow:tag('span'):css('color', 'gray'):wikitext('(soundcheck) ')
end
if data['tease'] == '1' then
showRow:tag('span'):css('color', 'gray'):wikitext('(tease) ')
end
if data['abandoned'] == '1' then
showRow:tag('span'):css('color', 'gray'):wikitext('(abandoned) ')
end
end
function p._tour_history(song)
local root = mw.html.create()
local counts = cargo.query(
'live_songs',
"COUNT(_ID)=total, SUM(tease)=teases, SUM(abandoned)=abandons, SUM(soundcheck)=soundchecks",
{
where = 'live_songs.name = "' .. song .. '"'
}
)[1]
if counts['total'] == '0' then
return ''
end
local statsRoot = root:tag('ul')
-- Totals
local totalPlays = tonumber(counts['total'])
local teases = tonumber(counts['teases'])
local abandons = tonumber(counts['abandons'])
local soundchecks = tonumber(counts['soundchecks'])
local totalsRow = statsRoot:tag('li')
totalsRow:tag('b'):wikitext('Total plays: ')
local totalsStr = "'''[https://spcodex.wiki/wiki/Special:CargoQuery?title=Special%3ACargoQuery&tables=live_songs%2C+shows&fields=live_songs._pageName%3Dpage_name%2C+shows.date%3Ddate%2C+shows.artist%3Dartist%2C+shows.featuring_artist%3Dfeaturing_artist%2C+shows.venue%3Dvenue%2C+shows.location%3Dlocation%2C+shows.festival%3Dfestival%2C+shows.notes%3Dnotes%2C+live_songs.tease%3Dtease%2C+live_songs.abandoned%3Dabandoned%2C+live_songs.soundcheck%3Dsoundcheck&where=live_songs.name+%3D+%22" ..
mw.uri.encode(song) .. '%22&join_on=shows._pageName+%3D+live_songs._pageName&group_by=shows._pageName&having=&order_by%5B0%5D=shows.date+ASC&order_by_options%5B0%5D=ASC&limit=1000&format=template&template=Live+show+row&named+args=yes ' .. totalPlays .. " plays]''' "
if teases + abandons + soundchecks > 0 then
local subcounts = {}
if teases > 0 then
table.insert(subcounts, teases .. ' tease')
end
if abandons > 0 then
table.insert(subcounts, abandons .. ' abandoned')
end
if soundchecks > 0 then
table.insert(subcounts, soundchecks .. ' soundcheck')
end
totalsStr = totalsStr .. '(' .. (totalPlays - teases - abandons) .. ' full, ' .. table.concat(subcounts, ', ') .. ')'
end
totalsRow:tag('span')
:addClass('plainlinks')
:wikitext(totalsStr)
-- First show
local firstShow = fetchShow(song, true)[1]
createRowForShow(statsRoot, firstShow, 'First performance')
if firstShow['tease'] == '1' or firstShow['abandoned'] == '1' then
local firstFullShow = fetchShow(song, true, true)
if next(firstFullShow) ~= nil then
createRowForShow(statsRoot, firstFullShow[1], 'First full performance')
end
end
-- Last show
local lastShow = fetchShow(song, false)[1]
createRowForShow(statsRoot, lastShow, 'Last performance')
if lastShow['tease'] == '1' or lastShow['abandoned'] == '1' then
local lastFullShow = fetchShow(song, false, true)
if next(lastFullShow) ~= nil then
createRowForShow(statsRoot, lastFullShow[1], 'Last full performance')
end
end
return '== Tour stats ==\n' .. tostring(root)
end
function p.tour_history(frame)
local song = frame.args[1]
return p._tour_history(song)
end
function p._all(song)
local availability = p._main(song)
local tour_history = p._tour_history(song)
if availability ~= '' then
if tour_history ~= '' then
return availability .. "\n" .. tour_history
end
return availability
end
return tour_history
end
function p.all(frame)
local song = frame.args[1]
return p._all(song)
end
return p