Module:RecentMatches: Difference between revisions

From TwogPedia
(Created page with "local getArgs = require('Module:Arguments').getArgs local cargo = mw.ext.cargo local Func = require('Module:Functions') local getTeamLogo = Func.getTeamLogo local stringifyDate = Func.stringifyDate local p = {} function p.team(frame) local args = getArgs(frame) local currentPage = mw.title.getCurrentTitle().text local game = mw.text.split(currentPage, '/')[1] local tables = 'AllMatches' local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, besto...")
 
mNo edit summary
Line 3: Line 3:
local Func = require('Module:Functions')
local Func = require('Module:Functions')
local getTeamLogo = Func.getTeamLogo
local getTeamLogo = Func.getTeamLogo
local makeFlag = require('Module:Person/Flag').makeFlag
local stringifyDate = Func.stringifyDate
local stringifyDate = Func.stringifyDate
local prizeToString = Func.prizeToString


local p = {}
local p = {}
Line 11: Line 13:
local currentPage = mw.title.getCurrentTitle().text
local currentPage = mw.title.getCurrentTitle().text


local game = mw.text.split(currentPage, '/')[1]
    -- RECENT MATCHES
local tables = 'AllMatches'
local tables = 'AllMatches'
local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
Line 22: Line 24:
local results = cargo.query(tables, fields, cargoArgs)
local results = cargo.query(tables, fields, cargoArgs)
local container = mw.html.create('div')
local types = 0
local recentMatches = nil
if #results > 0 then
types = types + 1
end
-- Tournament placements
tables = 'Prizes, Tournaments'
fields = 'Prizes.prize=prize, Prizes.placement=placement, Tournaments._pageName=_pageName, Tournaments.type=type, Tournaments.start=start, Tournaments.end=end, Tournaments.country=country, Tournaments.participants=participants, Tournaments.formatFilter=formatFilter, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'
cargoArgs = {
join = 'Prizes._pageName=Tournaments._pageName',
where = 'Prizes.teams HOLDS "' .. currentPage .. '" and Prizes.placement IS NOT NULL',
orderBy = 'Tournaments.end desc'
}
tResults = cargo.query(tables, fields, cargoArgs)
local tournaments = nil
if #tResults > 0 then
types = types + 1
end
if #results > 0 then
if #results > 0 then
local tournamentTh = mw.html.create('th'):wikitext('Tournament')
recentMatches = matchesHtml(results, currentPage, true)
local dateTh = mw.html.create('th'):wikitext('Date')
end
local typeTh = mw.html.create('th'):wikitext('Type')
local scoreTh = mw.html.create('th'):wikitext('Score')
if #tResults > 0 then
local vsTh = mw.html.create('th'):wikitext('Opponent')
tournaments = tournamentResults(tResults, args)
local vodTh = mw.html.create('th'):wikitext('VODs')
end
local headerRow = mw.html.create('tr'):addClass('headerRow'):node(dateTh):node(tournamentTh):node(typeTh):node(scoreTh):node(vsTh):node(vodTh)
local tbl = mw.html.create('table'):addClass('striped-table'):node(headerRow)
if types > 1 then
local str = '<tabber>'
if recentMatches then
str = str .. '|-|Recent matches=' .. tostring(recentMatches)
end
if tournaments then
str = str .. '|-|Tournament results=' .. tostring(tournaments)
end
str = str .. '</tabber>'
container:node(frame:preprocess(str))
else
if recentMatches then
container:node(mw.html.create('h2'):wikitext('Recent matches')):node(recentMatches)
end
if tournaments then
container:node(mw.html.create('h2'):wikitext('Tournament results')):node(tournaments)
end
end
if types > 0 then return container end
end
 
function p.person(frame)
local args = getArgs(frame)
local currentPage = mw.title.getCurrentTitle().text
-- MATCHES IN 1v1
local tables = 'AllMatches'
local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
local cargoArgs = {
where = '(p1 = "' .. currentPage .. '" OR p2="' .. currentPage .. '") AND winner IS NOT NULL AND winner != "0"',
limit = args.limit or 1000,
orderBy = 'date desc'
}
local results = cargo.query(tables, fields, cargoArgs)
local types = 0
 
local container = mw.html.create('div')
local soloMatches = nil
if #results > 0 then
types = types + 1
soloMatches = matchesHtml(results, currentPage)
end
-- MATCHES AS PART OF A TEAM
tables = 'Participants, Tournaments'
fields = 'Participants._pageName=_pageName, Participants.team=team'
cargoArgs = {
join = 'Participants._pageName=Tournaments._pageName',
where = 'players HOLDS "' .. currentPage .. '"',
orderBy = 'Tournaments.end DESC, Tournaments.start DESC'
}
results = cargo.query(tables, fields, cargoArgs)
local teamMatches = nil
if #results > 0 then
types = types + 1
local team = results[1].team
local tournamentsStr = '('
for i = 1, #results do
if i > 1 then tournamentStr = tournamentStr .. ' OR ' end
tournamentsStr = tournamentsStr .. '_pageName LIKE "%' .. results[i]._pageName .. '%"'
end
tournamentsStr = tournamentsStr .. ') AND '
tables = 'AllMatches'
fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
local whereStr = '(p1 = "' .. team .. '" OR p2="' .. team .. '") AND winner IS NOT NULL AND winner != "0"'
 
cargoArgs = {
where = tournamentsStr .. whereStr,
limit = args.limit or 1000,
orderBy = 'date desc'
}
local matchResults = cargo.query(tables, fields, cargoArgs)
if #matchResults > 0 then
teamMatches = matchesHtml(matchResults, currentPage, true)
end
 
end
-- AS CASTERS
tables = 'AllMatches'
fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
cargoArgs = {
where = 'casters HOLDS "' .. currentPage .. '" AND winner IS NOT NULL AND winner != "0"',
limit = args.limit or 1000,
orderBy = 'date desc'
}
local casterResults = cargo.query(tables, fields, cargoArgs)
 
local casterMatches = nil
if #casterResults > 0 then
types = types + 1
casterMatches = matchesHtml(casterResults, currentPage, true, true)
end
-- AS OBSERVER
tables = 'AllMatches'
fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
cargoArgs = {
where = 'observers HOLDS "' .. currentPage .. '" AND winner IS NOT NULL AND winner != "0"',
limit = args.limit or 1000,
orderBy = 'date desc'
}
local observerResults = cargo.query(tables, fields, cargoArgs)
 
local observerMatches = nil
if #observerResults > 0 then
types = types + 1
observerMatches = matchesHtml(observerResults, currentPage, true, true)
end
-- TOURNAMENTS AS TALENT
tables = 'Talent, Tournaments'
fields = 'Talent.role=role, Talent.lang=lang, Tournaments.prize=prize, Tournaments._pageName=_pageName, Tournaments.type=type, Tournaments.start=start, Tournaments.end=end, Tournaments.country=country, Tournaments.participants=participants, Tournaments.formatFilter=formatFilter, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'
cargoArgs = {
join = 'Talent._pageName=Tournaments._pageName',
where = 'Talent.people HOLDS "' .. currentPage .. '"',
orderBy = 'Tournaments.end desc'
}
local talentResults = cargo.query(tables, fields, cargoArgs)
local talentTournaments = nil
if #talentResults > 0 then
types = types + 1
talentTournaments = tournamentResults(talentResults, true)
end
 
if types > 1 then
local str = '<tabber>'
if soloMatches then
str = str .. '|-|Solo matches=' .. tostring(soloMatches)
end
if teamMatches then
str = str .. '|-|Team matches=' .. tostring(teamMatches)
end
if casterMatches then
str = str .. '|-|Commentated matches=' .. tostring(casterMatches)
end
if observerMatches then
str = str .. '|-|Observed matches=' .. tostring(observerMatches)
end
if observerMatches then
str = str .. '|-|Talent at tournaments=' .. tostring(talentTournaments)
end
str = str .. '</tabber>'
container:node(frame:preprocess(str))
else
if soloMatches then
container:node(mw.html.create('h2'):wikitext('Solo matches')):node(soloMatches)
end
if teamMatches then
container:node(mw.html.create('h2'):wikitext('Team matches')):node(teamMatches)
end
if casterMatches then
container:node(mw.html.create('h2'):wikitext('Commentated matches')):node(casterMatches)
end
if observerMatches then
container:node(mw.html.create('h2'):wikitext('Observed matches')):node(observerMatches)
end
if talentTournaments then
container:node(mw.html.create('h2'):wikitext('Talent at tournaments')):node(talentTournaments)
end
end
if types > 0 then return container end
end
 
function matchesHtml(results, currentPage, team, talent)
local game = mw.text.split(results[1]._pageName, '/')[1]
local tournamentTh = mw.html.create('th'):wikitext('Tournament')
local dateTh = mw.html.create('th'):wikitext('Date')
local typeTh = mw.html.create('th'):wikitext('Type')
local scoreTh = mw.html.create('th'):wikitext('Score')
local vsTh = mw.html.create('th'):wikitext('Opponent')
local vodTh = mw.html.create('th'):wikitext('VODs')
local headerRow = mw.html.create('tr'):addClass('headerRow'):node(dateTh):node(tournamentTh):node(typeTh):node(scoreTh)
if not talent then headerRow:node(vsTh) end
headerRow:node(vodTh)
local tbl = mw.html.create('table'):addClass('striped-table'):node(headerRow)
local container = mw.html.create('div')
container:node(tbl)
for i = 1, #results do
local result = results[i]
local opponent
local score
local opponentScore
if result.p1 == currentPage then
score = result.p1score
opponentScore = result.p2score
opponent = result.p2
else
score = result.p2score
opponentScore = result.p1score
opponent = result.p1
end
tables = 'Tournaments'
fields = '_pageName, type, logoAll, logoLight, logoDark, iconAll, iconLight, iconDark'
cargoArgs = {
where = '(_pageName = "' .. result._pageName  .. '" OR _pageName = "' .. removeLastPart(result._pageName) .. '")'
}
tournaments = cargo.query(tables, fields, cargoArgs)
 
local dateTd = mw.html.create('td'):wikitext(stringifyDate(result.date) .. ' '):node(mw.html.create('abbr'):attr('title', 'Coordinated Universal Time'):wikitext('UTC'))
local tournamentTd = mw.html.create('td')
local typeTd = mw.html.create('td')
local scoreTd = mw.html.create('td'):addClass('tc')
-- If caster or observer, then show both teams and score
if talent then
scoreTd:node(mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;'):node(getTeamLogo(result.p1, game, '20x20px')):wikitext('[[' .. result.p1 .. ']]')):wikitext(' ' .. result.p1score .. ':' .. result.p2score .. ' '):node(mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;'):node(getTeamLogo(result.p2, game, '20x20px')):wikitext('[[' .. result.p2 .. ']]'))
else
scoreTd:wikitext(score .. ':' .. opponentScore)
end
local opponentTd = mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;')
local vsTd = mw.html.create('td'):node(opponentTd)
if team then
opponentTd:node(getTeamLogo(opponent, game, '20x20px')):wikitext('[[' .. opponent .. ']]')
else
opponentTd:wikitext(makeFlag(nil, opponent)):wikitext('[[' .. opponent .. ']]')
end
 
local vodTd = mw.html.create('td')
local resultRow = mw.html.create('tr'):addClass('bodyRow'):node(dateTd):node(tournamentTd):node(typeTd):node(scoreTd)
if not talent then resultRow:node(vsTd) end
resultRow:node(vodTd)
if #tournaments > 0 then
local tournament = tournaments[1]
local icon = tournament.iconAll or tournament.iconLight or tournament.iconDark or tournament.logoAll or tournament.logoDark or tournament.logoLight or 'Tournament_placeholder.png'
tournamentTd:wikitext('[[File:' .. icon .. '|25x25px]]'):wikitext('[[' .. result._pageName .. ']]')
typeTd:wikitext(tournament.type)
end
local container = mw.html.create('div')
-- Get VODs
if args.title then container:node(mw.html.create('h2'):wikitext(args.title)) end
if game == 'Dota2' then
container:node(tbl)
tables = 'Maps_Dota'
fields = 'yt, vod'
cargoArgs = {
where = 'matchID ="' .. result._ID .. '"',
orderBy = 'map'
}
local vods = cargo.query(tables, fields, cargoArgs)
if #vods > 0 then
for j = 1, #vods do
local vod = vods[j]
if vod.yt then
vodTd:wikitext('[[File:Youtube.png|20x20px|https://www.youtube.com/watch?v=' .. vod.yt .. '|Map ' .. j .. ']]')
end
end
end
end
tbl:node(resultRow)
end
tbl:node(mw.html.create('tr'):node(mw.html.create('td'):addClass('tc'):attr('colspan', 10):wikitext('[[' .. currentPage .. '/Results|All results]]')))
return container
end
function tournamentResults(results, talent)
local container = mw.html.create('div')
if #results > 0 then
local monthNames = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
local typeTh = mw.html.create('th'):wikitext('Type')
local nameTh = mw.html.create('th'):wikitext('Name')
local dateTh = mw.html.create('th'):wikitext('Date')
local prizeTh = mw.html.create('th'):wikitext(talent and 'Prize' or 'Winnings')
local placementTh = mw.html.create('th'):wikitext(talent and 'Winner' or 'Placement')
local tableHeader = mw.html.create('tr'):addClass('tournament__header'):node(typeTh):node(nameTh):node(dateTh):node(prizeTh):node(placementTh)
local listTable = mw.html.create('table'):addClass('tournament__table'):attr('style', 'width: -webkit-fill-available;'):node(tableHeader)
container:node(listTable)
for i = 1, #results do
for i = 1, #results do
local result = results[i]
local result = results[i]
local opponent
local icon = result.iconAll ~= '' and result.iconAll or result.iconLight ~= '' and result.iconLight or result.iconDark ~= '' and result.iconDark or result.logoAll ~= '' and result.logoAll or result.logoDark ~= '' and result.logoDark or result.logoLight ~= '' and result.logoLight
local score
if not icon then icon = 'Tournament_placeholder.png' end
local opponentScore
if result.p1 == currentPage then  
local typeTd = mw.html.create('td')
score = result.p1score
local nameTd = mw.html.create('td'):node(mw.html.create('div'):addClass('tournament__name'):wikitext('[[File:' .. icon .. '|25px]]'):wikitext('[[' .. result._pageName .. ']]'))
opponentScore = result.p2score
local dateTd = mw.html.create('td')
opponent = result.p2
local prizeTd = mw.html.create('td'):wikitext('$' .. prizeToString(result.prize))
else  
local placementTd = mw.html.create('td'):addClass('tc')
score = result.p2score
opponentScore = result.p1score
if talent then
opponent = result.p1
tables = "Prizes"
    fields = "teams"
    cargoArgs = {
    where = 'placement="1" AND _pageName="' .. result._pageName .. '"'
    }
    local prizeResults = cargo.query(tables, fields, cargoArgs)
   
    if #prizeResults > 0 then
    placementTd:node(getTeamLogo(prizeResults[1].teams, mw.text.split(result._pageName, '/')[1], '30x30px'))
else
placementTd:wikitext('TBD')
    end
else
placementTd:wikitext(result.placement)
end
local tournamentType = result.type and mw.text.split(result.type, ',')
for j = 1, #tournamentType do
typeTd:node(mw.html.create('div'):wikitext(tournamentType[j]))
end
end
tables = 'Tournaments'
fields = '_pageName, type, logoAll, logoLight, logoDark, iconAll, iconLight, iconDark'
cargoArgs = {
where = '(_pageName = "' .. result._pageName  .. '" OR _pageName = "' .. removeLastPart(result._pageName) .. '")'
}
tournaments = cargo.query(tables, fields, cargoArgs)
local dateTd = mw.html.create('td'):wikitext(stringifyDate(result.date) .. ' '):node(mw.html.create('abbr'):attr('title', 'Coordinated Universal Time'):wikitext('UTC'))
local startDate = 'TBD'
local tournamentTd = mw.html.create('td')
if result.start then
local typeTd = mw.html.create('td')
local year, month, day = result.start:match("(%d+)-(%d+)-(%d+)")
local scoreTd = mw.html.create('td'):addClass('tc'):wikitext(score .. ':' .. opponentScore)
local monthName = monthNames[tonumber(month)]
local vsTd = mw.html.create('td'):node(mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;'):node(getTeamLogo(opponent, game, '20x20px')):wikitext('[[' .. opponent .. ']]'))
startDate = monthName .. " " .. day .. ", " .. year
local vodTd = mw.html.create('td')
end
local resultRow = mw.html.create('tr'):addClass('bodyRow'):node(dateTd):node(tournamentTd):node(typeTd):node(scoreTd):node(vsTd):node(vodTd)
local endDate = 'TBD'
if #tournaments > 0 then
if result['end'] then
local tournament = tournaments[1]
year, month, day = result['end']:match("(%d+)-(%d+)-(%d+)")
local icon = tournament.iconAll or tournament.iconLight or tournament.iconDark or tournament.logoAll or tournament.logoDark or tournament.logoLight
monthName = monthNames[tonumber(month)]
tournamentTd:wikitext('[[File:' .. icon .. '|25x25px]]'):wikitext('[[' .. result._pageName .. ']]')
endDate = monthName .. " " .. day .. ", " .. year
typeTd:wikitext(tournament.type)
end
end
dateTd:node(mw.html.create('div'):wikitext(startDate)):node(mw.html.create('div'):wikitext('-')):node(mw.html.create('div'):wikitext(endDate))
-- Get VODs
local tournamentRow = mw.html.create('tr'):node(typeTd):node(nameTd):node(dateTd):node(prizeTd):node(placementTd)
if game == 'Dota2' then
tables = 'Maps_Dota'
local currentTime = os.time()
fields = 'yt, vod'
cargoArgs = {
local startTime = nil
where = 'matchID ="' .. result._ID .. '"',
if result.start then
orderBy = 'map'
startTime = mw.ustring.gsub(result.start, '(%d+)-(%d+)-(%d+)', function(year, month, day)
}
    return os.time({year=tonumber(year), month=tonumber(month), day=tonumber(day)})
end)
local vods = cargo.query(tables, fields, cargoArgs)
end
if #vods > 0 then
local endTime = nil
for j = 1, #vods do
if result['end'] then
local vod = vods[j]
endTime = mw.ustring.gsub(result['end'], '(%d+)-(%d+)-(%d+)', function(year, month, day)
if vod.yt then
    return os.time({year=tonumber(year), month=tonumber(month), day=tonumber(day)})
vodTd:wikitext('[[File:Youtube.png|20x20px|https://www.youtube.com/watch?v=' .. vod.yt .. '|Map ' .. j .. ']]')
end)
end
end
end
 
local date = mw.html.create('div')
-- If live
if (startTime ~= nil and os.difftime(currentTime, startTime) > 0) and (endTime == nil or os.difftime(currentTime, endTime) <= 0) then
date:wikitext('LIVE')
else
local startDate = 'TBD'
if result.start then
local year, month, day = result.start:match("(%d+)-(%d+)-(%d+)")
local monthName = monthNames[tonumber(month)]
startDate = monthName .. " " .. day .. ", " .. year
end
local endDate = 'TBD'
if result['end'] then
year, month, day = result['end']:match("(%d+)-(%d+)-(%d+)")
monthName = monthNames[tonumber(month)]
endDate = monthName .. " " .. day .. ", " .. year
end
end
date:wikitext(startDate .. ' - ' .. endDate)
end
end
   
tbl:node(resultRow)
listTable:node(tournamentRow)
end
end
tbl:node(mw.html.create('tr'):node(mw.html.create('td'):addClass('tc'):attr('colspan', 10):wikitext('[[' .. currentPage .. '/Results|All results]]')))
return container
return container
end
end

Revision as of 23:31, 6 November 2023

Documentation for this module may be created at Module:RecentMatches/doc

local getArgs = require('Module:Arguments').getArgs
local cargo = mw.ext.cargo
local Func = require('Module:Functions')
local getTeamLogo = Func.getTeamLogo
local makeFlag = require('Module:Person/Flag').makeFlag
local stringifyDate = Func.stringifyDate
local prizeToString = Func.prizeToString

local p = {}

function p.team(frame)
	local args = getArgs(frame)
	local currentPage = mw.title.getCurrentTitle().text

    -- RECENT MATCHES
	local tables = 'AllMatches'
	local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
	local cargoArgs = {
		where = '(p1 = "' .. currentPage .. '" OR p2="' .. currentPage .. '") AND winner IS NOT NULL AND winner != "0"',
		limit = args.limit or 1000,
		orderBy = 'date desc'
	}
	
	local results = cargo.query(tables, fields, cargoArgs)
	
	local container = mw.html.create('div')
	local types = 0

	local recentMatches = nil
	if #results > 0 then
		types = types + 1
	end
	
	-- Tournament placements
	tables = 'Prizes, Tournaments'
	fields = 'Prizes.prize=prize, Prizes.placement=placement, Tournaments._pageName=_pageName, Tournaments.type=type, Tournaments.start=start, Tournaments.end=end, Tournaments.country=country, Tournaments.participants=participants, Tournaments.formatFilter=formatFilter, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'
	cargoArgs = {
		join = 'Prizes._pageName=Tournaments._pageName',
		where = 'Prizes.teams HOLDS "' .. currentPage .. '" and Prizes.placement IS NOT NULL',
		orderBy = 'Tournaments.end desc'
	}
	tResults = cargo.query(tables, fields, cargoArgs)

	local tournaments = nil
	if #tResults > 0 then
		types = types + 1
	end

	if #results > 0 then
		recentMatches =	matchesHtml(results, currentPage, true)	
	end
	
	if #tResults > 0 then
		tournaments = tournamentResults(tResults, args)	
	end
	
	if types > 1 then
		local str = '<tabber>'
		if recentMatches then
			str = str .. '|-|Recent matches=' .. tostring(recentMatches)
		end
		if tournaments then
			str = str .. '|-|Tournament results=' .. tostring(tournaments)
		end
		str = str .. '</tabber>'
		container:node(frame:preprocess(str))
	else
		if recentMatches then
			container:node(mw.html.create('h2'):wikitext('Recent matches')):node(recentMatches)
		end
		if tournaments then
			container:node(mw.html.create('h2'):wikitext('Tournament results')):node(tournaments)
		end
	end
	
	if types > 0 then return container end
end

function p.person(frame)
	local args = getArgs(frame)
	local currentPage = mw.title.getCurrentTitle().text
	
	-- MATCHES IN 1v1
	local tables = 'AllMatches'
	local fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
	local cargoArgs = {
		where = '(p1 = "' .. currentPage .. '" OR p2="' .. currentPage .. '") AND winner IS NOT NULL AND winner != "0"',
		limit = args.limit or 1000,
		orderBy = 'date desc'
	}
	
	local results = cargo.query(tables, fields, cargoArgs)
	local types = 0

	local container = mw.html.create('div')
	local soloMatches = nil
	if #results > 0 then
		types = types + 1
		soloMatches = matchesHtml(results, currentPage)
	end
	
	-- MATCHES AS PART OF A TEAM
	tables = 'Participants, Tournaments'
	fields = 'Participants._pageName=_pageName, Participants.team=team'
	cargoArgs = {
		join = 'Participants._pageName=Tournaments._pageName',
		where = 'players HOLDS "' .. currentPage .. '"',
		orderBy = 'Tournaments.end DESC, Tournaments.start DESC'
	}
	results = cargo.query(tables, fields, cargoArgs)
	
	local teamMatches = nil 
	if #results > 0 then
		types = types + 1
		local team = results[1].team
		local tournamentsStr = '('
		for i = 1, #results do
			if i > 1 then tournamentStr = tournamentStr .. ' OR ' end
			tournamentsStr = tournamentsStr .. '_pageName LIKE "%' .. results[i]._pageName .. '%"'
		end
		tournamentsStr = tournamentsStr .. ') AND '
		tables = 'AllMatches'
		fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
		local whereStr = '(p1 = "' .. team .. '" OR p2="' .. team .. '") AND winner IS NOT NULL AND winner != "0"'

		cargoArgs = {
			where = tournamentsStr .. whereStr,
			limit = args.limit or 1000,
			orderBy = 'date desc'
		}
		local matchResults = cargo.query(tables, fields, cargoArgs)
		
		if #matchResults > 0 then
			teamMatches = matchesHtml(matchResults, currentPage, true)
		end

	end
	
	-- AS CASTERS
	tables = 'AllMatches'
	fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
	cargoArgs = {
		where = 'casters HOLDS "' .. currentPage .. '" AND winner IS NOT NULL AND winner != "0"',
		limit = args.limit or 1000,
		orderBy = 'date desc'
	}
	local casterResults = cargo.query(tables, fields, cargoArgs)

	local casterMatches = nil
	if #casterResults > 0 then
		types = types + 1
		casterMatches = matchesHtml(casterResults, currentPage, true, true)
	end
	
	-- AS OBSERVER
	tables = 'AllMatches'
	fields = '_ID, _pageName, p1, p2, p1score, p2score, winner, date, bestof, stage'
	cargoArgs = {
		where = 'observers HOLDS "' .. currentPage .. '" AND winner IS NOT NULL AND winner != "0"',
		limit = args.limit or 1000,
		orderBy = 'date desc'
	}
	local observerResults = cargo.query(tables, fields, cargoArgs)

	local observerMatches = nil
	if #observerResults > 0 then
		types = types + 1
		observerMatches = matchesHtml(observerResults, currentPage, true, true)
	end
	
	-- TOURNAMENTS AS TALENT
	tables = 'Talent, Tournaments'
	fields = 'Talent.role=role, Talent.lang=lang, Tournaments.prize=prize, Tournaments._pageName=_pageName, Tournaments.type=type, Tournaments.start=start, Tournaments.end=end, Tournaments.country=country, Tournaments.participants=participants, Tournaments.formatFilter=formatFilter, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'
	cargoArgs = {
		join = 'Talent._pageName=Tournaments._pageName',
		where = 'Talent.people HOLDS "' .. currentPage .. '"',
		orderBy = 'Tournaments.end desc'
	}
	local talentResults = cargo.query(tables, fields, cargoArgs)
	
	local talentTournaments = nil
	if #talentResults > 0 then
		types = types + 1
		talentTournaments = tournamentResults(talentResults, true)
	end

	if types > 1 then
		local str = '<tabber>'
		if soloMatches then
			str = str .. '|-|Solo matches=' .. tostring(soloMatches)
		end
		if teamMatches then
			str = str .. '|-|Team matches=' .. tostring(teamMatches)
		end
		if casterMatches then
			str = str .. '|-|Commentated matches=' .. tostring(casterMatches)
		end
		if observerMatches then
			str = str .. '|-|Observed matches=' .. tostring(observerMatches)
		end
		if observerMatches then
			str = str .. '|-|Talent at tournaments=' .. tostring(talentTournaments)
		end
		str = str .. '</tabber>'
		container:node(frame:preprocess(str))
	else
		if soloMatches then
			container:node(mw.html.create('h2'):wikitext('Solo matches')):node(soloMatches)
		end
		if teamMatches then
			container:node(mw.html.create('h2'):wikitext('Team matches')):node(teamMatches)
		end
		if casterMatches then
			container:node(mw.html.create('h2'):wikitext('Commentated matches')):node(casterMatches)
		end
		if observerMatches then
			container:node(mw.html.create('h2'):wikitext('Observed matches')):node(observerMatches)
		end
		if talentTournaments then
			container:node(mw.html.create('h2'):wikitext('Talent at tournaments')):node(talentTournaments)
		end
	end
	
	
	if types > 0 then return container end
end

function matchesHtml(results, currentPage, team, talent)
	local game = mw.text.split(results[1]._pageName, '/')[1]
	local tournamentTh = mw.html.create('th'):wikitext('Tournament')
	local dateTh = mw.html.create('th'):wikitext('Date')
	local typeTh = mw.html.create('th'):wikitext('Type')
	local scoreTh = mw.html.create('th'):wikitext('Score')
	local vsTh = mw.html.create('th'):wikitext('Opponent')
	local vodTh = mw.html.create('th'):wikitext('VODs')
	local headerRow = mw.html.create('tr'):addClass('headerRow'):node(dateTh):node(tournamentTh):node(typeTh):node(scoreTh)
	if not talent then headerRow:node(vsTh) end
	headerRow:node(vodTh)
	local tbl = mw.html.create('table'):addClass('striped-table'):node(headerRow)
	
	local container = mw.html.create('div')
	container:node(tbl)
	
	for i = 1, #results do
		local result = results[i]
		local opponent
		local score
		local opponentScore
		if result.p1 == currentPage then 
			score = result.p1score
			opponentScore = result.p2score
			opponent = result.p2
		else 
			score = result.p2score
			opponentScore = result.p1score
			opponent = result.p1
		end
		tables = 'Tournaments'
		fields = '_pageName, type, logoAll, logoLight, logoDark, iconAll, iconLight, iconDark'
		cargoArgs = {
			where = '(_pageName = "' .. result._pageName  .. '" OR _pageName = "' .. removeLastPart(result._pageName) .. '")'
		}
		tournaments = cargo.query(tables, fields, cargoArgs)

		local dateTd = mw.html.create('td'):wikitext(stringifyDate(result.date) .. ' '):node(mw.html.create('abbr'):attr('title', 'Coordinated Universal Time'):wikitext('UTC'))
		local tournamentTd = mw.html.create('td')
		local typeTd = mw.html.create('td')
		local scoreTd = mw.html.create('td'):addClass('tc')
		-- If caster or observer, then show both teams and score
		if talent then
			scoreTd:node(mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;'):node(getTeamLogo(result.p1, game, '20x20px')):wikitext('[[' .. result.p1 .. ']]')):wikitext(' ' .. result.p1score .. ':' .. result.p2score .. ' '):node(mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;'):node(getTeamLogo(result.p2, game, '20x20px')):wikitext('[[' .. result.p2 .. ']]'))
		else
			scoreTd:wikitext(score .. ':' .. opponentScore)
		end
	
		local opponentTd = mw.html.create('div'):attr('style', 'display: flex; gap: 0.2rem; align-items: center;')
		local vsTd = mw.html.create('td'):node(opponentTd)
		
		if team then
			opponentTd:node(getTeamLogo(opponent, game, '20x20px')):wikitext('[[' .. opponent .. ']]')
		else
			opponentTd:wikitext(makeFlag(nil, opponent)):wikitext('[[' .. opponent .. ']]')
		end

		local vodTd = mw.html.create('td')
		local resultRow = mw.html.create('tr'):addClass('bodyRow'):node(dateTd):node(tournamentTd):node(typeTd):node(scoreTd)
		if not talent then resultRow:node(vsTd) end 
		resultRow:node(vodTd)
		if #tournaments > 0 then
			local tournament = tournaments[1]
			local icon = tournament.iconAll or tournament.iconLight or tournament.iconDark or tournament.logoAll or tournament.logoDark or tournament.logoLight or 'Tournament_placeholder.png'
			tournamentTd:wikitext('[[File:' .. icon .. '|25x25px]]'):wikitext('[[' .. result._pageName .. ']]')
			typeTd:wikitext(tournament.type)
		end
		
		-- Get VODs
		if game == 'Dota2' then
			tables = 'Maps_Dota'
			fields = 'yt, vod'
			cargoArgs = {
				where = 'matchID ="' .. result._ID .. '"',
				orderBy = 'map'
			}
			
			local vods = cargo.query(tables, fields, cargoArgs)
			if #vods > 0 then
				for j = 1, #vods do
					local vod = vods[j]
					if vod.yt then
						vodTd:wikitext('[[File:Youtube.png|20x20px|https://www.youtube.com/watch?v=' .. vod.yt .. '|Map ' .. j .. ']]')
					end
				end
			end
		end
		
		tbl:node(resultRow)
	end
	tbl:node(mw.html.create('tr'):node(mw.html.create('td'):addClass('tc'):attr('colspan', 10):wikitext('[[' .. currentPage .. '/Results|All results]]')))
	
	return container
end

function tournamentResults(results, talent)
	local container = mw.html.create('div')

	if #results > 0 then
		local monthNames = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
		
		local typeTh = mw.html.create('th'):wikitext('Type')
		local nameTh = mw.html.create('th'):wikitext('Name')
		local dateTh = mw.html.create('th'):wikitext('Date')
		local prizeTh = mw.html.create('th'):wikitext(talent and 'Prize' or 'Winnings')
		local placementTh = mw.html.create('th'):wikitext(talent and 'Winner' or 'Placement')
		local tableHeader = mw.html.create('tr'):addClass('tournament__header'):node(typeTh):node(nameTh):node(dateTh):node(prizeTh):node(placementTh)
		local listTable = mw.html.create('table'):addClass('tournament__table'):attr('style', 'width: -webkit-fill-available;'):node(tableHeader)
		container:node(listTable)

		for i = 1, #results do
			local result = results[i]
			local icon = result.iconAll ~= '' and result.iconAll or result.iconLight ~= '' and result.iconLight or result.iconDark ~= '' and result.iconDark or result.logoAll ~= '' and result.logoAll or result.logoDark ~= '' and result.logoDark or result.logoLight ~= '' and result.logoLight
			if not icon then icon = 'Tournament_placeholder.png' end
			
			local typeTd = mw.html.create('td')
			local nameTd = mw.html.create('td'):node(mw.html.create('div'):addClass('tournament__name'):wikitext('[[File:' .. icon .. '|25px]]'):wikitext('[[' .. result._pageName .. ']]'))
			local dateTd = mw.html.create('td')
			local prizeTd = mw.html.create('td'):wikitext('$' .. prizeToString(result.prize))
			local placementTd = mw.html.create('td'):addClass('tc')
			
			if talent then
				tables = "Prizes"
			    fields = "teams"
			    cargoArgs = {
			    	where = 'placement="1" AND _pageName="' .. result._pageName .. '"'
			    }
			    local prizeResults = cargo.query(tables, fields, cargoArgs)
			    
			    if #prizeResults > 0 then
			    	placementTd:node(getTeamLogo(prizeResults[1].teams, mw.text.split(result._pageName, '/')[1], '30x30px'))
				else
					placementTd:wikitext('TBD')	
			    end
			else
				placementTd:wikitext(result.placement)
			end
			
			
			
			local tournamentType = result.type and mw.text.split(result.type, ',')
			for j = 1, #tournamentType do
				typeTd:node(mw.html.create('div'):wikitext(tournamentType[j]))
			end
			
			local startDate = 'TBD'
			if result.start then
				local year, month, day = result.start:match("(%d+)-(%d+)-(%d+)")
				local monthName = monthNames[tonumber(month)]
				startDate = monthName .. " " .. day .. ", " .. year
			end
			local endDate = 'TBD'
			if result['end'] then
				year, month, day = result['end']:match("(%d+)-(%d+)-(%d+)")
				monthName = monthNames[tonumber(month)]
				endDate = monthName .. " " .. day .. ", " .. year
			end
			dateTd:node(mw.html.create('div'):wikitext(startDate)):node(mw.html.create('div'):wikitext('-')):node(mw.html.create('div'):wikitext(endDate))
			
			local tournamentRow = mw.html.create('tr'):node(typeTd):node(nameTd):node(dateTd):node(prizeTd):node(placementTd)
			
			local currentTime = os.time()
			
			local startTime = nil
			if result.start then
				startTime = mw.ustring.gsub(result.start, '(%d+)-(%d+)-(%d+)', function(year, month, day)
				    return os.time({year=tonumber(year), month=tonumber(month), day=tonumber(day)})
				end)	
			end
			local endTime = nil
			if result['end'] then
				endTime = mw.ustring.gsub(result['end'], '(%d+)-(%d+)-(%d+)', function(year, month, day)
				    return os.time({year=tonumber(year), month=tonumber(month), day=tonumber(day)})
				end)
			end

			local date = mw.html.create('div')
			-- If live
			if (startTime ~= nil and os.difftime(currentTime, startTime) > 0) and (endTime == nil or os.difftime(currentTime, endTime) <= 0) then
				date:wikitext('LIVE')
			else 
				local startDate = 'TBD'
				if result.start then
					local year, month, day = result.start:match("(%d+)-(%d+)-(%d+)")
					local monthName = monthNames[tonumber(month)]
					startDate = monthName .. " " .. day .. ", " .. year
				end
				local endDate = 'TBD'
				if result['end'] then
					year, month, day = result['end']:match("(%d+)-(%d+)-(%d+)")
					monthName = monthNames[tonumber(month)]
					endDate = monthName .. " " .. day .. ", " .. year
				end
				date:wikitext(startDate .. ' - ' .. endDate)
			end
		    
			listTable:node(tournamentRow)
		end
		
		return container
	end
end

function removeLastPart(str)
	local parts = {}

	for part in str:gmatch("[^/]+") do
	    table.insert(parts, part)
	end
	
	table.remove(parts)
	
	return table.concat(parts, "/")
end

return p