]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/helpers/permissions.js
sticky schedule group headings
[alttp.git] / resources / js / helpers / permissions.js
index cde0d05d7fd293f7114b6d7553ffb1144a9ffaa6..835af24787585f620f935a4c23834166d1e430a9 100644 (file)
@@ -7,6 +7,33 @@ export const isAdmin = user => user && user.role === 'admin';
 
 export const isSameUser = (user, subject) => user && subject && user.id === subject.id;
 
+// Channels
+
+export const isChannelAdmin = (user, channel) =>
+       user && channel && user.channel_crews &&
+               user.channel_crews.find(c => c.role === 'admin' && c.channel_id === channel.id);
+
+// Episodes
+
+export const episodeHasChannel = (episode, channel) =>
+       episode && channel && episode.channels && episode.channels.find(c => c.id === channel.id);
+
+export const mayRestreamEpisodes = user =>
+       user && user.channel_crews && user.channel_crews.find(c => c.role === 'admin');
+
+export const mayEditRestream = (user, episode, channel) =>
+       episodeHasChannel(episode, channel) && isChannelAdmin(user, channel);
+
+export const canRestreamEpisode = (user, episode) => {
+       if (!user || !episode || !mayRestreamEpisodes(user)) return false;
+       const available_channels = user.channel_crews
+               .filter(c => c.role === 'admin')
+               .map(c => c.channel_id);
+       const claimed_channels = ((episode && episode.channels) || []).map(c => c.id);
+       const remaining_channels = available_channels.filter(id => !claimed_channels.includes(id));
+       return remaining_channels.length > 0;
+};
+
 // Tournaments
 
 export const isApplicant = (user, tournament) => {
@@ -58,6 +85,18 @@ export const mayApply = (user, tournament) =>
        user && tournament && tournament.accept_applications &&
                !isRunner(user, tournament) && !isApplicant(user, tournament);
 
+export const mayHandleApplications = (user, tournament) =>
+       tournament && tournament.accept_applications && isTournamentAdmin(user, tournament);
+
+export const mayReportResult = (user, tournament) => {
+       if (!user || !tournament) return false;
+       if (tournament.type === 'open-async') return true;
+       return isRunner(user, tournament);
+};
+
+export const mayEditRound = (user, tournament) =>
+       !tournament.locked && isTournamentAdmin(user, tournament);
+
 export const mayLockRound = (user, tournament) =>
        !tournament.locked && isTournamentAdmin(user, tournament);
 
@@ -65,6 +104,9 @@ export const maySetSeed = (user, tournament, round) =>
        !round.locked &&
                (isRunner(user, tournament) || isTournamentAdmin(user, tournament));
 
+export const mayUpdateTournament = (user, tournament) =>
+       isAdmin(user) || isTournamentAdmin(user, tournament);
+
 export const mayViewProtocol = (user, tournament) =>
        isTournamentCrew(user, tournament);
 
@@ -72,7 +114,6 @@ export const maySeeResults = (user, tournament, round) =>
        round.locked ||
        hasFinished(user, round) ||
        isTournamentMonitor(user, tournament) ||
-       (isTournamentAdmin(user, tournament) && !isRunner(user, tournament)) ||
        Round.isComplete(tournament, round);
 
 // Users