]> git.localhorst.tv Git - alttp.git/blob - resources/js/helpers/permissions.js
lock tournaments
[alttp.git] / resources / js / helpers / permissions.js
1 /// NOTE: These permissions are for UI cosmetics only!
2 /// They should be in sync with the backend Policies.
3
4 import Round from './Round';
5
6 export const isAdmin = user => user && user.role === 'admin';
7
8 export const isSameUser = (user, subject) => user && subject && user.id === subject.id;
9
10 // Tournaments
11
12 export const isParticipant = (user, tournament) =>
13         user && tournament && tournament.participants &&
14         tournament.participants.find(p => p.user && p.user.id == user.id);
15
16 export const hasFinished = (user, round) =>
17         user && round && round.results &&
18         round.results.find(r => r.user_id == user.id && r.has_finished);
19
20 export const mayAddRounds = (user, tournament) =>
21         isAdmin(user) || (!tournament.locked && isParticipant(user, tournament));
22
23 export const maySetSeed = (user, tournament) =>
24         isAdmin(user) || isParticipant(user, tournament);
25
26 export const mayViewProtocol = user =>
27         isAdmin(user);
28
29 export const maySeeResults = (user, tournament, round) =>
30         isAdmin(user) || hasFinished(user, round) || Round.isComplete(tournament, round);