2017-01-15 19:09:57 +00:00
|
|
|
(function () {
|
|
|
|
|
|
|
|
var laroute = (function () {
|
|
|
|
|
|
|
|
var routes = {
|
|
|
|
|
|
|
|
absolute: false,
|
|
|
|
rootUrl: 'http://pterodactyl.app',
|
2017-10-28 02:42:53 +00:00
|
|
|
routes : [{"host":null,"methods":["GET","HEAD"],"uri":"\/","name":"index","action":"Pterodactyl\Http\Controllers\Base\IndexController@getIndex"},{"host":null,"methods":["GET","HEAD"],"uri":"status\/{server}","name":"index.status","action":"Pterodactyl\Http\Controllers\Base\IndexController@status"},{"host":null,"methods":["GET","HEAD"],"uri":"account","name":"account","action":"Pterodactyl\Http\Controllers\Base\AccountController@index"},{"host":null,"methods":["POST"],"uri":"account","name":null,"action":"Pterodactyl\Http\Controllers\Base\AccountController@update"},{"host":null,"methods":["GET","HEAD"],"uri":"account\/api","name":"account.api","action":"Pterodactyl\Http\Controllers\Base\APIController@index"},{"host":null,"methods":["GET","HEAD"],"uri":"account\/api\/new","name":"account.api.new","action":"Pterodactyl\Http\Controllers\Base\APIController@create"},{"host":null,"methods":["POST"],"uri":"account\/api\/new","name":null,"action":"Pterodactyl\Http\Controllers\Base\APIController@store"},{"host":null,"methods":["DELETE"],"uri":"account\/api\/revoke\/{key}","name":"account.api.revoke","action":"Pterodactyl\Http\Controllers\Base\APIController@revoke"},{"host":null,"methods":["GET","HEAD"],"uri":"account\/security","name":"account.security","action":"Pterodactyl\Http\Controllers\Base\SecurityController@index"},{"host":null,"methods":["GET","HEAD"],"uri":"account\/security\/revoke\/{id}","name":"account.security.revoke","action":"Pterodactyl\Http\Controllers\Base\SecurityController@revoke"},{"host":null,"methods":["PUT"],"uri":"account\/security\/totp","name":"account.security.totp","action":"Pterodactyl\Http\Controllers\Base\SecurityController@generateTotp"},{"host":null,"methods":["POST"],"uri":"account\/security\/totp","name":"account.security.totp.set","action":"Pterodactyl\Http\Controllers\Base\SecurityController@setTotp"},{"host":null,"methods":["DELETE"],"uri":"account\/security\/totp","name":"account.security.totp.disable","action":"Pterodactyl\Http\Controllers\Base\SecurityController@disableTotp"},{"host":null,"methods":["GET","HEAD"],"uri":"admin","name":"admin.index","action":"Pterodactyl\Http\Controllers\Admin\BaseController@getIndex"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/locations","name":"admin.locations","action":"Pterodactyl\Http\Controllers\Admin\LocationController@index"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/locations\/view\/{location}","name":"admin.locations.view","action":"Pterodactyl\Http\Controllers\Admin\LocationController@view"},{"host":null,"methods":["POST"],"uri":"admin\/locations","name":null,"action":"Pterodactyl\Http\Controllers\Admin\LocationController@create"},{"host":null,"methods":["PATCH"],"uri":"admin\/locations\/view\/{location}","name":null,"action":"Pterodactyl\Http\Controllers\Admin\LocationController@update"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/databases","name":"admin.databases","action":"Pterodactyl\Http\Controllers\Admin\DatabaseController@index"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/databases\/view\/{host}","name":"admin.databases.view","action":"Pterodactyl\Http\Controllers\Admin\DatabaseController@view"},{"host":null,"methods":["POST"],"uri":"admin\/databases","name":null,"action":"Pterodactyl\Http\Controllers\Admin\DatabaseController@create"},{"host":null,"methods":["PATCH"],"uri":"admin\/databases\/view\/{host}","name":null,"action":"Pterodactyl\Http\Controllers\Admin\DatabaseController@update"},{"host":null,"methods":["DELETE"],"uri":"admin\/databases\/view\/{host}","name":null,"action":"Pterodactyl\Http\Controllers\Admin\DatabaseController@delete"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/settings","name":"admin.settings","action":"Pterodactyl\Http\Controllers\Admin\BaseController@getSettings"},{"host":null,"methods":["POST"],"uri":"admin\/settings","name":null,"action":"Pterodactyl\Http\Controllers\Admin\BaseController@postSettings"},{"host":null,"methods":["GET","HEAD"],"uri":"admin\/users","name":"admin.users","action":"Pterodactyl\Http\Controllers\Admin\UserController@index"},{"ho
|
2017-01-15 19:09:57 +00:00
|
|
|
prefix: '',
|
|
|
|
|
|
|
|
route : function (name, parameters, route) {
|
|
|
|
route = route || this.getByName(name);
|
|
|
|
|
|
|
|
if ( ! route ) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.toRoute(route, parameters);
|
|
|
|
},
|
|
|
|
|
|
|
|
url: function (url, parameters) {
|
|
|
|
parameters = parameters || [];
|
|
|
|
|
|
|
|
var uri = url + '/' + parameters.join('/');
|
|
|
|
|
|
|
|
return this.getCorrectUrl(uri);
|
|
|
|
},
|
|
|
|
|
|
|
|
toRoute : function (route, parameters) {
|
|
|
|
var uri = this.replaceNamedParameters(route.uri, parameters);
|
|
|
|
var qs = this.getRouteQueryString(parameters);
|
|
|
|
|
2017-04-15 21:18:12 +00:00
|
|
|
if (this.absolute && this.isOtherHost(route)){
|
|
|
|
return "//" + route.host + "/" + uri + qs;
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:09:57 +00:00
|
|
|
return this.getCorrectUrl(uri + qs);
|
|
|
|
},
|
|
|
|
|
2017-04-15 21:18:12 +00:00
|
|
|
isOtherHost: function (route){
|
|
|
|
return route.host && route.host != window.location.hostname;
|
|
|
|
},
|
|
|
|
|
2017-01-15 19:09:57 +00:00
|
|
|
replaceNamedParameters : function (uri, parameters) {
|
|
|
|
uri = uri.replace(/\{(.*?)\??\}/g, function(match, key) {
|
|
|
|
if (parameters.hasOwnProperty(key)) {
|
|
|
|
var value = parameters[key];
|
|
|
|
delete parameters[key];
|
|
|
|
return value;
|
|
|
|
} else {
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Strip out any optional parameters that were not given
|
|
|
|
uri = uri.replace(/\/\{.*?\?\}/g, '');
|
|
|
|
|
|
|
|
return uri;
|
|
|
|
},
|
|
|
|
|
|
|
|
getRouteQueryString : function (parameters) {
|
|
|
|
var qs = [];
|
|
|
|
for (var key in parameters) {
|
|
|
|
if (parameters.hasOwnProperty(key)) {
|
|
|
|
qs.push(key + '=' + parameters[key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qs.length < 1) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return '?' + qs.join('&');
|
|
|
|
},
|
|
|
|
|
|
|
|
getByName : function (name) {
|
|
|
|
for (var key in this.routes) {
|
|
|
|
if (this.routes.hasOwnProperty(key) && this.routes[key].name === name) {
|
|
|
|
return this.routes[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getByAction : function(action) {
|
|
|
|
for (var key in this.routes) {
|
|
|
|
if (this.routes.hasOwnProperty(key) && this.routes[key].action === action) {
|
|
|
|
return this.routes[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
getCorrectUrl: function (uri) {
|
|
|
|
var url = this.prefix + '/' + uri.replace(/^\/?/, '');
|
|
|
|
|
2017-04-15 21:18:12 +00:00
|
|
|
if ( ! this.absolute) {
|
2017-01-15 19:09:57 +00:00
|
|
|
return url;
|
2017-04-15 21:18:12 +00:00
|
|
|
}
|
2017-01-15 19:09:57 +00:00
|
|
|
|
|
|
|
return this.rootUrl.replace('/\/?$/', '') + url;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var getLinkAttributes = function(attributes) {
|
|
|
|
if ( ! attributes) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
var attrs = [];
|
|
|
|
for (var key in attributes) {
|
|
|
|
if (attributes.hasOwnProperty(key)) {
|
|
|
|
attrs.push(key + '="' + attributes[key] + '"');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return attrs.join(' ');
|
|
|
|
};
|
|
|
|
|
|
|
|
var getHtmlLink = function (url, title, attributes) {
|
|
|
|
title = title || url;
|
|
|
|
attributes = getLinkAttributes(attributes);
|
|
|
|
|
|
|
|
return '<a href="' + url + '" ' + attributes + '>' + title + '</a>';
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
// Generate a url for a given controller action.
|
|
|
|
// Router.action('HomeController@getIndex', [params = {}])
|
|
|
|
action : function (name, parameters) {
|
|
|
|
parameters = parameters || {};
|
|
|
|
|
|
|
|
return routes.route(name, parameters, routes.getByAction(name));
|
|
|
|
},
|
|
|
|
|
|
|
|
// Generate a url for a given named route.
|
|
|
|
// Router.route('routeName', [params = {}])
|
|
|
|
route : function (route, parameters) {
|
|
|
|
parameters = parameters || {};
|
|
|
|
|
|
|
|
return routes.route(route, parameters);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Generate a fully qualified URL to the given path.
|
|
|
|
// Router.route('url', [params = {}])
|
|
|
|
url : function (route, parameters) {
|
|
|
|
parameters = parameters || {};
|
|
|
|
|
|
|
|
return routes.url(route, parameters);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Generate a html link to the given url.
|
|
|
|
// Router.link_to('foo/bar', [title = url], [attributes = {}])
|
|
|
|
link_to : function (url, title, attributes) {
|
|
|
|
url = this.url(url);
|
|
|
|
|
|
|
|
return getHtmlLink(url, title, attributes);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Generate a html link to the given route.
|
|
|
|
// Router.link_to_route('route.name', [title=url], [parameters = {}], [attributes = {}])
|
|
|
|
link_to_route : function (route, title, parameters, attributes) {
|
|
|
|
var url = this.route(route, parameters);
|
|
|
|
|
|
|
|
return getHtmlLink(url, title, attributes);
|
|
|
|
},
|
|
|
|
|
|
|
|
// Generate a html link to the given controller action.
|
|
|
|
// Router.link_to_action('HomeController@getIndex', [title=url], [parameters = {}], [attributes = {}])
|
|
|
|
link_to_action : function(action, title, parameters, attributes) {
|
|
|
|
var url = this.action(action, parameters);
|
|
|
|
|
|
|
|
return getHtmlLink(url, title, attributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expose the class either via AMD, CommonJS or the global object
|
|
|
|
*/
|
|
|
|
if (typeof define === 'function' && define.amd) {
|
|
|
|
define(function () {
|
|
|
|
return laroute;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else if (typeof module === 'object' && module.exports){
|
|
|
|
module.exports = laroute;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
window.Router = laroute;
|
|
|
|
}
|
|
|
|
|
|
|
|
}).call(this);
|
|
|
|
|