scorecard/repos/repo_url.go

76 lines
1.9 KiB
Go
Raw Normal View History

// Copyright 2020 Security Scorecard Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package repos
import (
"fmt"
"log"
"net/url"
"strings"
)
type RepoURL struct {
Host, Owner, Repo string
}
// Type method is needed so that this struct can be used as cmd flag.
func (r *RepoURL) Type() string {
return "repo"
}
2021-05-02 22:35:29 +03:00
func (r *RepoURL) URL() string {
return fmt.Sprintf("%s/%s/%s", r.Host, r.Owner, r.Repo)
}
func (r *RepoURL) String() string {
return fmt.Sprintf("%s-%s-%s", r.Host, r.Owner, r.Repo)
}
func (r *RepoURL) Set(s string) error {
// Allow skipping scheme for ease-of-use, default to https.
if !strings.Contains(s, "://") {
s = "https://" + s
}
u, e := url.Parse(s)
if e != nil {
return e
}
const splitLen = 2
split := strings.SplitN(strings.Trim(u.Path, "/"), "/", splitLen)
if len(split) != splitLen {
log.Fatalf("invalid repo flag: [%s], pass the full repository URL", s)
}
r.Host, r.Owner, r.Repo = u.Host, split[0], split[1]
return nil
}
2021-05-02 22:35:29 +03:00
func (r *RepoURL) ValidGitHubURL() error {
switch r.Host {
case "github.com":
break
default:
return fmt.Errorf("unsupported host: %s", r.Host)
}
if len(strings.TrimSpace(r.Owner)) == 0 || len(strings.TrimSpace(r.Repo)) == 0 {
2021-05-02 22:35:29 +03:00
//nolint:goerr113 // This is not passing an error as an argument.
return fmt.Errorf("invalid GitHub repo url: [%s], pass the full repository URL", r.URL())
}
return nil
}