|
| 1 | +// Copyright Project Harbor Authors |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | +package artifactscan |
| 15 | + |
| 16 | +import ( |
| 17 | + "github.com/goharbor/harbor-cli/pkg/prompt" |
| 18 | + "github.com/goharbor/harbor-cli/pkg/utils" |
| 19 | + "github.com/spf13/cobra" |
| 20 | +) |
| 21 | + |
| 22 | +func ScanArtifactCommand() *cobra.Command { |
| 23 | + cmd := &cobra.Command{ |
| 24 | + Use: "scan", |
| 25 | + Short: "Scan an artifact", |
| 26 | + Long: `Scan an artifact in Harbor Repository`, |
| 27 | + Example: `harbor artifact scan start <project>/<repository>/<reference>`, |
| 28 | + } |
| 29 | + |
| 30 | + cmd.AddCommand( |
| 31 | + StartScanArtifactCommand(), |
| 32 | + StopScanArtifactCommand(), |
| 33 | + // LogScanArtifactCommand(), |
| 34 | + ) |
| 35 | + |
| 36 | + return cmd |
| 37 | +} |
| 38 | + |
| 39 | +func parseArgs(args []string) (string, string, string, error) { |
| 40 | + if len(args) > 0 { |
| 41 | + return utils.ParseProjectRepoReference(args[0]) |
| 42 | + } else { |
| 43 | + projectName, err := prompt.GetProjectNameFromUser() |
| 44 | + if err != nil { |
| 45 | + return "", "", "", err |
| 46 | + } |
| 47 | + repoName := prompt.GetRepoNameFromUser(projectName) |
| 48 | + reference := prompt.GetReferenceFromUser(repoName, projectName) |
| 49 | + |
| 50 | + return projectName, repoName, reference, nil |
| 51 | + } |
| 52 | +} |
0 commit comments