Moving authorization to utils
This commit is contained in:
parent
1c47941413
commit
cdc825cc6a
7 changed files with 38 additions and 13 deletions
|
@ -1,8 +1,9 @@
|
|||
import Ember from 'ember';
|
||||
import userCanAdd from '../../../utils/user-can-add';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
canAdd: function() {
|
||||
let role = this.get('session.currentUser.role');
|
||||
return (role === 'W') || (role === 'A');
|
||||
}.property('session.currentUser.role')
|
||||
let user_role = this.get('session.currentUser.role');
|
||||
return userCanAdd(user_role);
|
||||
}.property('session.currentUser.role').readOnly(),
|
||||
});
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
import Ember from 'ember';
|
||||
import userCanEdit from '../../../utils/user-can-edit';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNames: ['grid-1'],
|
||||
isEditing: false,
|
||||
|
||||
canEdit: function() {
|
||||
let role = this.get('session.currentUser.role');
|
||||
let id = this.get('session.currentUser.id');
|
||||
let author = this.get('species.createdBy');
|
||||
return (role === 'W' && (+id === author)) || (role === 'A');
|
||||
}.property('session.currentUser.role', 'session.currentUser.id', 'species.createdBy'),
|
||||
return userCanEdit(this.get('session.currentUser'), this.get('species.createdBy'));
|
||||
}.property('session.currentUser', 'species.createdBy').readOnly(),
|
||||
|
||||
actions: {
|
||||
save: function() {
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
import Ember from 'ember';
|
||||
import userCanEdit from '../../../utils/user-can-edit';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
classNames: ['grid-1'],
|
||||
isEditing: false,
|
||||
|
||||
canEdit: function() {
|
||||
let role = this.get('session.currentUser.role');
|
||||
let id = this.get('session.currentUser.id');
|
||||
let author = this.get('strain.createdBy');
|
||||
return (role === 'W' && (+id === author)) || (role === 'A');
|
||||
}.property('session.currentUser.role', 'session.currentUser.id', 'strain.createdBy'),
|
||||
return userCanEdit(this.get('session.currentUser'), this.get('strain.createdBy'));
|
||||
}.property('session.currentUser', 'strain.createdBy').readOnly(),
|
||||
|
||||
actions: {
|
||||
save: function() {
|
||||
|
|
3
app/utils/user-can-add.js
Normal file
3
app/utils/user-can-add.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
export default function userCanAdd(role) {
|
||||
return (role === 'W') || (role === 'A');
|
||||
}
|
5
app/utils/user-can-edit.js
Normal file
5
app/utils/user-can-edit.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
export default function userCanEdit(currentUser, author) {
|
||||
let id = currentUser.id;
|
||||
let role = currentUser.role;
|
||||
return (role === 'W' && (+id === author)) || (role === 'A');
|
||||
}
|
10
tests/unit/utils/user-can-add-test.js
Normal file
10
tests/unit/utils/user-can-add-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import userCanAdd from '../../../utils/user-can-add';
|
||||
import { module, test } from 'qunit';
|
||||
|
||||
module('Unit | Utility | user can add');
|
||||
|
||||
// Replace this with your real tests.
|
||||
test('it works', function(assert) {
|
||||
var result = userCanAdd();
|
||||
assert.ok(result);
|
||||
});
|
10
tests/unit/utils/user-can-edit-test.js
Normal file
10
tests/unit/utils/user-can-edit-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import userCanEdit from '../../../utils/user-can-edit';
|
||||
import { module, test } from 'qunit';
|
||||
|
||||
module('Unit | Utility | user can edit');
|
||||
|
||||
// Replace this with your real tests.
|
||||
test('it works', function(assert) {
|
||||
var result = userCanEdit();
|
||||
assert.ok(result);
|
||||
});
|
Reference in a new issue