You've already forked jenkins-lib
forked from jenkins/jenkins-lib
заменил http на isvalidurl
This commit is contained in:
@@ -72,7 +72,7 @@ class GetExtensions implements Serializable {
|
|||||||
String pathToExtension = "$env.WORKSPACE/${EXTENSIONS_OUT_DIR}/${extension.name}.cfe"
|
String pathToExtension = "$env.WORKSPACE/${EXTENSIONS_OUT_DIR}/${extension.name}.cfe"
|
||||||
FilePath localPathToExtension = FileUtils.getFilePath(pathToExtension)
|
FilePath localPathToExtension = FileUtils.getFilePath(pathToExtension)
|
||||||
|
|
||||||
if (extension.path.startsWith("http")) {
|
if (isValidUrl(extension.path)) {
|
||||||
// If the path is a URL, download the file
|
// If the path is a URL, download the file
|
||||||
localPathToExtension.copyFrom(new URL(extension.path))
|
localPathToExtension.copyFrom(new URL(extension.path))
|
||||||
} else {
|
} else {
|
||||||
@@ -103,4 +103,13 @@ class GetExtensions implements Serializable {
|
|||||||
steps.unzip(sourceDirName, EdtToDesignerFormatTransformation.EXTENSION_ZIP)
|
steps.unzip(sourceDirName, EdtToDesignerFormatTransformation.EXTENSION_ZIP)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isValidUrl(String url) {
|
||||||
|
try {
|
||||||
|
new URL(url)
|
||||||
|
return true
|
||||||
|
} catch (MalformedURLException e) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user