2018-04-22 19:10:29 +00:00
|
|
|
/*
|
|
|
|
* Wazuh app - Module for getting URL path
|
|
|
|
* Copyright (C) 2018 Wazuh, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Find more information about this on the LICENSE file.
|
|
|
|
*/
|
2018-04-21 10:09:55 +00:00
|
|
|
export default config => {
|
2018-04-12 13:50:32 +00:00
|
|
|
let path = config.url;
|
2017-10-27 07:22:10 +00:00
|
|
|
let protocol;
|
2018-04-12 13:50:32 +00:00
|
|
|
if (config.url.startsWith("https://")) {
|
2017-10-27 07:22:10 +00:00
|
|
|
protocol = "https://";
|
2018-04-12 13:50:32 +00:00
|
|
|
} else if (config.url.startsWith("http://")) {
|
2017-10-27 07:22:10 +00:00
|
|
|
protocol = "http://";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path.lastIndexOf("/") > protocol.length) {
|
|
|
|
path = path.substr(0, path.substr(protocol.length).indexOf("/") + protocol.length) +
|
2018-04-22 19:10:29 +00:00
|
|
|
":" + config.port +
|
|
|
|
path.substr(path.substr(protocol.length).indexOf("/") + protocol.length);
|
2017-10-27 07:22:10 +00:00
|
|
|
} else {
|
2018-04-12 13:50:32 +00:00
|
|
|
path = `${config.url}:${config.port}`;
|
2017-10-27 07:22:10 +00:00
|
|
|
}
|
|
|
|
return path;
|
2018-04-22 19:10:29 +00:00
|
|
|
};
|