2020-01-24 17:02:50 +00:00
|
|
|
package workflows
|
|
|
|
|
|
|
|
import (
|
2020-02-07 23:51:17 +00:00
|
|
|
res "../resources"
|
2020-01-24 17:02:50 +00:00
|
|
|
utils "../utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CanUseDownloadBatchFile - Check's if DownloadBatchFile can be used
|
|
|
|
func CanUseDownloadBatchFile(batchFilePath string) bool {
|
|
|
|
return batchFilePath != ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// DownloadBatchFile - Download items from batch file
|
|
|
|
func DownloadBatchFile(batchFilePath string) {
|
|
|
|
if !utils.CheckIfExists(batchFilePath) {
|
2020-02-07 23:51:17 +00:00
|
|
|
utils.LogFatal(res.ErrorPathNotFound, batchFilePath)
|
2020-01-24 17:02:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
utils.ReadFileLineByLine(batchFilePath, downloadItem)
|
|
|
|
}
|
|
|
|
|
|
|
|
func downloadItem(batchItem string) {
|
|
|
|
if batchItem[0] == '#' {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-01-26 17:44:25 +00:00
|
|
|
StartWorkflowByParameter(batchItem)
|
2020-01-24 17:02:50 +00:00
|
|
|
}
|