X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fhelpers%2Fpermissions.js;h=18d03bffce1c6be3f56d04de783b42d734578588;hb=68d65789e2b64cd32d778c1e69a346521d2e38d6;hp=b7d7cfdd616b72ba5a0f271805e87e19d708d61d;hpb=a907ef7c6676fef11f42933b2d79bdd496b20122;p=alttp.git diff --git a/resources/js/helpers/permissions.js b/resources/js/helpers/permissions.js index b7d7cfd..18d03bf 100644 --- a/resources/js/helpers/permissions.js +++ b/resources/js/helpers/permissions.js @@ -9,22 +9,79 @@ export const isSameUser = (user, subject) => user && subject && user.id === subj // Tournaments +export const isApplicant = (user, tournament) => { + if (!user || !tournament || !tournament.applications) { + return false; + } + return tournament.applications.find(p => p.user && p.user.id == user.id); +}; + +export const isDeniedApplicant = (user, tournament) => { + if (!user || !tournament || !tournament.applications) { + return false; + } + const applicant = tournament.applications.find(p => p.user && p.user.id == user.id); + return applicant && applicant.denied; +}; + export const isParticipant = (user, tournament) => user && tournament && tournament.participants && tournament.participants.find(p => p.user && p.user.id == user.id); +export const isRunner = (user, tournament) => { + const p = isParticipant(user, tournament); + return p && p.roles && p.roles.includes('runner'); +}; + +export const isTournamentAdmin = (user, tournament) => { + const p = isParticipant(user, tournament); + return p && p.roles && p.roles.includes('admin'); +}; + +export const isTournamentCrew = (user, tournament) => + isTournamentAdmin(user, tournament) || isTournamentMonitor(user, tournament); + +export const isTournamentMonitor = (user, tournament) => { + const p = isParticipant(user, tournament); + return p && p.roles && p.roles.includes('monitor'); +}; + export const hasFinished = (user, round) => user && round && round.results && round.results.find(r => r.user_id == user.id && r.has_finished); export const mayAddRounds = (user, tournament) => - isAdmin(user) || isParticipant(user, tournament); + !tournament.locked && + (isRunner(user, tournament) || isTournamentAdmin(user, tournament)); -export const maySetSeed = (user, tournament) => - isAdmin(user) || isParticipant(user, tournament); +export const mayApply = (user, tournament) => + user && tournament && tournament.accept_applications && + !isRunner(user, tournament) && !isApplicant(user, tournament); -export const mayViewProtocol = user => - isAdmin(user); +export const mayHandleApplications = (user, tournament) => + tournament && tournament.accept_applications && isTournamentAdmin(user, tournament); + +export const mayLockRound = (user, tournament) => + !tournament.locked && isTournamentAdmin(user, tournament); + +export const maySetSeed = (user, tournament, round) => + !round.locked && + (isRunner(user, tournament) || isTournamentAdmin(user, tournament)); + +export const mayViewProtocol = (user, tournament) => + isTournamentCrew(user, tournament); export const maySeeResults = (user, tournament, round) => - isAdmin(user) || hasFinished(user, round) || Round.isComplete(tournament, round); + round.locked || + hasFinished(user, round) || + isTournamentMonitor(user, tournament) || + (isTournamentAdmin(user, tournament) && !isRunner(user, tournament)) || + Round.isComplete(tournament, round); + +// Users + +export const mayEditNickname = (user, subject) => + isSameUser(user, subject); + +export const mayEditStreamLink = (user, subject) => + isSameUser(user, subject);