2017-12-15 21:39:18 +00:00
|
|
|
import EmberRouter from '@ember/routing/router';
|
2017-09-19 14:47:10 +00:00
|
|
|
import config from './config/environment';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
class Router extends EmberRouter {
|
|
|
|
location = config.locationType;
|
|
|
|
rootURL = config.rootURL;
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
Router.map(function() {
|
2020-03-24 23:22:16 +00:00
|
|
|
this.route('exec', { path: '/exec/:job_name' }, function() {
|
|
|
|
this.route('task-group', { path: '/:task_group_name' }, function() {
|
|
|
|
this.route('task', { path: '/:task_name' });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
this.route('jobs', function() {
|
2018-08-14 19:54:54 +00:00
|
|
|
this.route('run');
|
2017-10-23 17:27:22 +00:00
|
|
|
this.route('job', { path: '/:job_name' }, function() {
|
2017-09-19 14:47:10 +00:00
|
|
|
this.route('task-group', { path: '/:name' });
|
|
|
|
this.route('definition');
|
|
|
|
this.route('versions');
|
|
|
|
this.route('deployments');
|
2018-07-06 23:41:09 +00:00
|
|
|
this.route('evaluations');
|
2018-07-19 23:57:44 +00:00
|
|
|
this.route('allocations');
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-10-28 01:23:41 +00:00
|
|
|
this.route('clients', function() {
|
2020-06-13 03:59:33 +00:00
|
|
|
this.route('client', { path: '/:node_id' }, function() {
|
|
|
|
this.route('monitor');
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.route('servers', function() {
|
2020-06-16 03:06:27 +00:00
|
|
|
this.route('server', { path: '/:agent_id' }, function() {
|
|
|
|
this.route('monitor');
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
2020-03-25 12:51:26 +00:00
|
|
|
this.route('csi', function() {
|
|
|
|
this.route('volumes', function() {
|
|
|
|
this.route('volume', { path: '/:volume_name' });
|
|
|
|
});
|
2020-05-02 06:38:55 +00:00
|
|
|
|
|
|
|
this.route('plugins', function() {
|
2020-05-19 05:37:54 +00:00
|
|
|
this.route('plugin', { path: '/:plugin_name' }, function() {
|
|
|
|
this.route('allocations');
|
|
|
|
});
|
2020-05-02 06:38:55 +00:00
|
|
|
});
|
2020-03-25 12:51:26 +00:00
|
|
|
});
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
this.route('allocations', function() {
|
2017-10-30 20:39:15 +00:00
|
|
|
this.route('allocation', { path: '/:allocation_id' }, function() {
|
2020-06-01 13:15:59 +00:00
|
|
|
this.route('fs-root', { path: '/fs' });
|
|
|
|
this.route('fs', { path: '/fs/*path' });
|
|
|
|
|
2017-10-30 20:39:15 +00:00
|
|
|
this.route('task', { path: '/:name' }, function() {
|
|
|
|
this.route('logs');
|
2019-07-02 21:42:38 +00:00
|
|
|
this.route('fs-root', { path: '/fs' });
|
|
|
|
this.route('fs', { path: '/fs/*path' });
|
2017-10-30 20:39:15 +00:00
|
|
|
});
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.route('settings', function() {
|
|
|
|
this.route('tokens');
|
|
|
|
});
|
|
|
|
|
2017-09-29 00:18:28 +00:00
|
|
|
this.route('not-found', { path: '/*' });
|
2017-09-19 14:47:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default Router;
|