-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui: Change Run Job availability based on ACLs (#5944)
This builds on API changes in #6017 and #6021 to conditionally turn off the “Run Job” button based on the current token’s capabilities, or the capabilities of the anonymous policy if no token is present. If you try to visit the job-run route directly, it redirects to the job list.
- Loading branch information
Showing
25 changed files
with
514 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import { Ability } from 'ember-can'; | ||
import { inject as service } from '@ember/service'; | ||
import { computed, get } from '@ember/object'; | ||
import { equal, or } from '@ember/object/computed'; | ||
|
||
export default Ability.extend({ | ||
system: service(), | ||
token: service(), | ||
|
||
canRun: or('selfTokenIsManagement', 'policiesSupportRunning'), | ||
|
||
selfTokenIsManagement: equal('token.selfToken.type', 'management'), | ||
|
||
activeNamespace: computed('system.activeNamespace.name', function() { | ||
return this.get('system.activeNamespace.name') || 'default'; | ||
}), | ||
|
||
rulesForActiveNamespace: computed('activeNamespace', 'token.selfTokenPolicies.[]', function() { | ||
let activeNamespace = this.activeNamespace; | ||
|
||
return (this.get('token.selfTokenPolicies') || []).toArray().reduce((rules, policy) => { | ||
let policyNamespaces = get(policy, 'rulesJSON.Namespaces') || []; | ||
|
||
let matchingNamespace = this._findMatchingNamespace(policyNamespaces, activeNamespace); | ||
|
||
if (matchingNamespace) { | ||
rules.push(policyNamespaces.find(namespace => namespace.Name === matchingNamespace)); | ||
} | ||
|
||
return rules; | ||
}, []); | ||
}), | ||
|
||
policiesSupportRunning: computed('[email protected]', function() { | ||
return this.rulesForActiveNamespace.some(rules => { | ||
let capabilities = get(rules, 'Capabilities') || []; | ||
return capabilities.includes('submit-job'); | ||
}); | ||
}), | ||
|
||
// Chooses the closest namespace as described at the bottom here: | ||
// https://www.nomadproject.io/guides/security/acl.html#namespace-rules | ||
_findMatchingNamespace(policyNamespaces, activeNamespace) { | ||
let namespaceNames = policyNamespaces.mapBy('Name'); | ||
|
||
if (namespaceNames.includes(activeNamespace)) { | ||
return activeNamespace; | ||
} | ||
|
||
let globNamespaceNames = namespaceNames.filter(namespaceName => namespaceName.includes('*')); | ||
|
||
let matchingNamespaceName = globNamespaceNames.reduce( | ||
(mostMatching, namespaceName) => { | ||
// Convert * wildcards to .* for regex matching | ||
let namespaceNameRegExp = new RegExp(namespaceName.replace(/\*/g, '.*')); | ||
let characterDifference = activeNamespace.length - namespaceName.length; | ||
|
||
if ( | ||
characterDifference < mostMatching.mostMatchingCharacterDifference && | ||
activeNamespace.match(namespaceNameRegExp) | ||
) { | ||
return { | ||
mostMatchingNamespaceName: namespaceName, | ||
mostMatchingCharacterDifference: characterDifference, | ||
}; | ||
} else { | ||
return mostMatching; | ||
} | ||
}, | ||
{ mostMatchingNamespaceName: null, mostMatchingCharacterDifference: Number.MAX_SAFE_INTEGER } | ||
).mostMatchingNamespaceName; | ||
|
||
if (matchingNamespaceName) { | ||
return matchingNamespaceName; | ||
} else if (namespaceNames.includes('default')) { | ||
return 'default'; | ||
} | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.