func prepareLicenseFile(filepath string, overrideFile bool) (err error) { if filepath == "" { return } var dir bool dir, err = ioutils.IsDir(filepath) if err != nil { return } if dir { err = cliutils.CheckError(errors.New(filepath + " is a directory.")) if err != nil { return } } var exists bool exists, err = ioutils.IsFileExists(filepath) if err != nil { return } if !overrideFile && exists { err = cliutils.CheckError(errors.New("File already exist, in case you wish to override the file use --override flag")) if err != nil { return } } _, directory := ioutils.GetFileAndDirFromPath(filepath) isPathExists := ioutils.IsPathExists(directory) if !isPathExists { os.MkdirAll(directory, 0700) } err = ioutil.WriteFile(filepath, nil, 0777) err = cliutils.CheckError(err) return }
func loadCertificates(caCertPool *x509.CertPool) error { securityDir, err := getJfrogSecurityDir() if err != nil { return err } if !ioutils.IsPathExists(securityDir) { return nil } files, err := ioutil.ReadDir(securityDir) err = cliutils.CheckError(err) if err != nil { return err } for _, file := range files { caCert, err := ioutil.ReadFile(securityDir + file.Name()) err = cliutils.CheckError(err) if err != nil { return err } caCertPool.AppendCertsFromPEM(caCert) } return nil }
func getFilesToUpload(localPath, targetPath, packageName string, flags *UploadFlags) ([]cliutils.Artifact, error) { var debianDefaultPath string if targetPath == "" && flags.Deb != "" { debianDefaultPath = getDebianDefaultPath(flags.Deb, packageName) } rootPath := cliutils.GetRootPathForUpload(localPath, flags.UseRegExp) if !ioutils.IsPathExists(rootPath) { err := cliutils.CheckError(errors.New("Path does not exist: " + rootPath)) if err != nil { return nil, err } } localPath = cliutils.PrepareLocalPathForUpload(localPath, flags.UseRegExp) artifacts := []cliutils.Artifact{} // If the path is a single file then return it dir, err := ioutils.IsDir(rootPath) if err != nil { return nil, err } if !dir { artifact := getSingleFileToUpload(rootPath, targetPath, debianDefaultPath, flags.Flat) return append(artifacts, artifact), nil } r, err := regexp.Compile(localPath) err = cliutils.CheckError(err) if err != nil { return nil, err } spinner := cliutils.NewSpinner("[Info] Collecting files for upload:", time.Second) spinner.Start() var paths []string if flags.Recursive { paths, err = ioutils.ListFilesRecursive(rootPath) } else { paths, err = ioutils.ListFiles(rootPath) } if err != nil { return nil, err } for _, path := range paths { dir, err := ioutils.IsDir(path) if err != nil { return nil, err } if dir { continue } groups := r.FindStringSubmatch(path) size := len(groups) target := targetPath if size > 0 { for i := 1; i < size; i++ { group := strings.Replace(groups[i], "\\", "/", -1) target = strings.Replace(target, "{"+strconv.Itoa(i)+"}", group, -1) } if target == "" || strings.HasSuffix(target, "/") { if target == "" { target = debianDefaultPath } if flags.Flat { fileName, _ := ioutils.GetFileAndDirFromPath(path) target += fileName } else { uploadPath := cliutils.TrimPath(path) target += uploadPath } } artifacts = append(artifacts, cliutils.Artifact{path, target}) } } spinner.Stop() return artifacts, nil }