protected route
This commit is contained in:
parent
72c957f8dc
commit
eb1a8bb6e3
41 changed files with 56 additions and 43 deletions
|
@ -3,23 +3,23 @@
|
||||||
{{site-logo}}
|
{{site-logo}}
|
||||||
{{#if session.isAuthenticated}}
|
{{#if session.isAuthenticated}}
|
||||||
<ul>
|
<ul>
|
||||||
{{#link-to 'compare' tagName='li' href=false}}
|
{{#link-to 'protected.compare' tagName='li' href=false}}
|
||||||
{{link-to 'Compare' 'compare'}}
|
{{link-to 'Compare' 'protected.compare'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#link-to 'measurements' tagName='li' href=false}}
|
{{#link-to 'protected.measurements' tagName='li' href=false}}
|
||||||
{{link-to 'Measurements' 'measurements'}}
|
{{link-to 'Measurements' 'protected.measurements'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#link-to 'characteristics' tagName='li' href=false}}
|
{{#link-to 'protected.characteristics' tagName='li' href=false}}
|
||||||
{{link-to 'Characteristics' 'characteristics'}}
|
{{link-to 'Characteristics' 'protected.characteristics'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#link-to 'species' tagName='li' href=false}}
|
{{#link-to 'protected.species' tagName='li' href=false}}
|
||||||
{{link-to 'Species' 'species'}}
|
{{link-to 'Species' 'protected.species'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#link-to 'strains' tagName='li' href=false}}
|
{{#link-to 'protected.strains' tagName='li' href=false}}
|
||||||
{{link-to 'Strains' 'strains'}}
|
{{link-to 'Strains' 'protected.strains'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{#link-to 'about' tagName='li' href=false}}
|
{{#link-to 'protected.about' tagName='li' href=false}}
|
||||||
{{link-to 'About' 'about'}}
|
{{link-to 'About' 'protected.about'}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</ul>
|
</ul>
|
||||||
<p class="foot">
|
<p class="foot">
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<label>Strains</label>
|
<label>Strains</label>
|
||||||
{{#each species.strains as |strain index|}}
|
{{#each species.strains as |strain index|}}
|
||||||
{{if index ","}}
|
{{if index ","}}
|
||||||
{{#link-to 'strains.show' strain.id}}
|
{{#link-to 'protected.strains.show' strain.id}}
|
||||||
{{{strain.strainNameMU}}}
|
{{{strain.strainNameMU}}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
{{#link-to 'index' class='logo'}}
|
{{#link-to 'protected.index' class='logo'}}
|
||||||
<h2>{{globals.genus}}.info</h2>
|
<h2>{{globals.genus}}.info</h2>
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend({
|
||||||
resetController: function(controller, isExiting /*, transition*/) {
|
resetController: function(controller, isExiting /*, transition*/) {
|
||||||
if (isExiting) {
|
if (isExiting) {
|
||||||
controller.set('data', null);
|
controller.set('data', null);
|
|
@ -19,7 +19,7 @@
|
||||||
<th>Characteristic</th>
|
<th>Characteristic</th>
|
||||||
{{#each strains as |strain|}}
|
{{#each strains as |strain|}}
|
||||||
<th>
|
<th>
|
||||||
{{#link-to 'strains.show' strain.id classBinding="data.typeStrain:type-strain"}}
|
{{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}}
|
||||||
{{strain.fullNameMU}}
|
{{strain.fullNameMU}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</th>
|
</th>
|
|
@ -4,6 +4,6 @@ import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixi
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
beforeModel: function(transition) {
|
beforeModel: function(transition) {
|
||||||
this._super(transition);
|
this._super(transition);
|
||||||
this.transitionTo('compare');
|
this.transitionTo('protected.compare');
|
||||||
}
|
}
|
||||||
});
|
});
|
|
@ -3,6 +3,7 @@ import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixi
|
||||||
|
|
||||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
model: function() {
|
model: function() {
|
||||||
return this.store.findAll('species');
|
let user = this.get('session.secure.currentUser');
|
||||||
|
console.log(user);
|
||||||
}
|
}
|
||||||
});
|
});
|
7
app/pods/protected/species/index/route.js
Normal file
7
app/pods/protected/species/index/route.js
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Route.extend({
|
||||||
|
model: function() {
|
||||||
|
return this.store.findAll('species');
|
||||||
|
}
|
||||||
|
});
|
|
@ -1,7 +1,7 @@
|
||||||
<h2>{{genus-name}} Species</h2>
|
<h2>{{genus-name}} Species</h2>
|
||||||
<h3>Total species: {{model.length}}</h3>
|
<h3>Total species: {{model.length}}</h3>
|
||||||
|
|
||||||
{{add-button label="Add Species" link="species.new" canAdd=metaData.canAdd}}
|
{{add-button label="Add Species" link="protected.species.new" canAdd=metaData.canAdd}}
|
||||||
|
|
||||||
<table class="flakes-table">
|
<table class="flakes-table">
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<em>
|
<em>
|
||||||
{{#link-to 'species.show' species}}
|
{{#link-to 'protected.species.show' species}}
|
||||||
{{species.speciesName}}
|
{{species.speciesName}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</em>
|
</em>
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
<td>
|
<td>
|
||||||
{{#each species.strains as |strain index|}}
|
{{#each species.strains as |strain index|}}
|
||||||
{{if index ","}}
|
{{if index ","}}
|
||||||
{{#link-to 'strains.show' strain.id}}
|
{{#link-to 'protected.strains.show' strain.id}}
|
||||||
{{{strain.strainNameMU}}}
|
{{{strain.strainNameMU}}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/each}}
|
{{/each}}
|
|
@ -13,7 +13,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
{{#each model.strains as |strain index|}}
|
{{#each model.strains as |strain index|}}
|
||||||
<li>
|
<li>
|
||||||
{{#link-to 'strains.show' strain.id}}
|
{{#link-to 'protected.strains.show' strain.id}}
|
||||||
{{{strain.strainNameMU}}}
|
{{{strain.strainNameMU}}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</li>
|
</li>
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
</div>
|
</div>
|
||||||
{{#if model.canEdit}}
|
{{#if model.canEdit}}
|
||||||
<br>
|
<br>
|
||||||
{{#link-to 'species.edit' model class="button-gray smaller"}}
|
{{#link-to 'protected.species.edit' model class="button-gray smaller"}}
|
||||||
Edit
|
Edit
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/if}}
|
{{/if}}
|
|
@ -14,7 +14,7 @@
|
||||||
{{#each sortedStrains as |row|}}
|
{{#each sortedStrains as |row|}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{#link-to 'strains.show' row.id classBinding="data.typeStrain:type-strain"}}
|
{{#link-to 'protected.strains.show' row.id classBinding="data.typeStrain:type-strain"}}
|
||||||
{{row.fullNameMU}}
|
{{row.fullNameMU}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</td>
|
</td>
|
|
@ -9,7 +9,7 @@
|
||||||
<dl class="span-1">
|
<dl class="span-1">
|
||||||
<dt>Species</dt>
|
<dt>Species</dt>
|
||||||
<dd>
|
<dd>
|
||||||
{{#link-to 'species.show' model.species.id}}
|
{{#link-to 'protected.species.show' model.species.id}}
|
||||||
<em>{{model.species.speciesNameMU}}</em>
|
<em>{{model.species.speciesNameMU}}</em>
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</dd>
|
</dd>
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
</div>
|
</div>
|
||||||
{{#if model.canEdit}}
|
{{#if model.canEdit}}
|
||||||
<br>
|
<br>
|
||||||
{{#link-to 'species.edit' model class="button-gray smaller"}}
|
{{#link-to 'protected.species.edit' model class="button-gray smaller"}}
|
||||||
Edit
|
Edit
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/if}}
|
{{/if}}
|
|
@ -7,6 +7,16 @@ var Router = Ember.Router.extend({
|
||||||
|
|
||||||
Router.map(function() {
|
Router.map(function() {
|
||||||
this.route('login');
|
this.route('login');
|
||||||
|
|
||||||
|
this.route('users', function() {
|
||||||
|
this.route('new', function() {
|
||||||
|
this.route('fail');
|
||||||
|
this.route('success');
|
||||||
|
this.route('verify', { path: ':nonce' });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
this.route('protected', { path: '/' }, function() {
|
||||||
this.route('about');
|
this.route('about');
|
||||||
this.route('characteristics');
|
this.route('characteristics');
|
||||||
this.route('measurements');
|
this.route('measurements');
|
||||||
|
@ -24,13 +34,8 @@ Router.map(function() {
|
||||||
this.route('edit', { path: ':strain_id/edit' });
|
this.route('edit', { path: ':strain_id/edit' });
|
||||||
});
|
});
|
||||||
|
|
||||||
this.route('users', function() {
|
|
||||||
this.route('new', function() {
|
|
||||||
this.route('fail');
|
|
||||||
this.route('success');
|
|
||||||
this.route('verify', { path: ':nonce' });
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Router;
|
export default Router;
|
||||||
|
|
|
@ -19,6 +19,7 @@ module.exports = function(environment) {
|
||||||
session: 'session:custom',
|
session: 'session:custom',
|
||||||
authorizer: 'simple-auth-authorizer:token',
|
authorizer: 'simple-auth-authorizer:token',
|
||||||
store: 'simple-auth-session-store:local-storage',
|
store: 'simple-auth-session-store:local-storage',
|
||||||
|
routeAfterAuthentication: 'protected.index',
|
||||||
},
|
},
|
||||||
'simple-auth-token': {
|
'simple-auth-token': {
|
||||||
identificationField: 'email',
|
identificationField: 'email',
|
||||||
|
|
Reference in a new issue