-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(v2): copy v1 code to v2 folder and update package path
- Loading branch information
Showing
31 changed files
with
4,106 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright 2019 Google Inc. All Rights Reserved. | ||
// | ||
// 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 main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"os" | ||
|
||
"github.com/google/go-licenses/v2/licenses" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ( | ||
checkCmd = &cobra.Command{ | ||
Use: "check <package>", | ||
Short: "Checks whether licenses for a package are not Forbidden.", | ||
Args: cobra.MinimumNArgs(1), | ||
RunE: checkMain, | ||
} | ||
) | ||
|
||
func init() { | ||
rootCmd.AddCommand(checkCmd) | ||
} | ||
|
||
func checkMain(_ *cobra.Command, args []string) error { | ||
classifier, err := licenses.NewClassifier(confidenceThreshold) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
libs, err := licenses.Libraries(context.Background(), classifier, args...) | ||
if err != nil { | ||
return err | ||
} | ||
for _, lib := range libs { | ||
licenseName, licenseType, err := classifier.Identify(lib.LicensePath) | ||
if err != nil { | ||
return err | ||
} | ||
if licenseType == licenses.Forbidden { | ||
fmt.Fprintf(os.Stderr, "Forbidden license type %s for library %v\n", licenseName, lib) | ||
os.Exit(1) | ||
} | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// Copyright 2019 Google Inc. All Rights Reserved. | ||
// | ||
// 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 main | ||
|
||
import ( | ||
"context" | ||
"encoding/csv" | ||
"os" | ||
"strings" | ||
|
||
"github.com/golang/glog" | ||
"github.com/google/go-licenses/v2/licenses" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ( | ||
csvCmd = &cobra.Command{ | ||
Use: "csv <package>", | ||
Short: "Prints all licenses that apply to a Go package and its dependencies", | ||
Args: cobra.MinimumNArgs(1), | ||
RunE: csvMain, | ||
} | ||
|
||
gitRemotes []string | ||
) | ||
|
||
func init() { | ||
csvCmd.Flags().StringArrayVar(&gitRemotes, "git_remote", []string{"origin", "upstream"}, "Remote Git repositories to try") | ||
|
||
rootCmd.AddCommand(csvCmd) | ||
} | ||
|
||
func csvMain(_ *cobra.Command, args []string) error { | ||
writer := csv.NewWriter(os.Stdout) | ||
|
||
classifier, err := licenses.NewClassifier(confidenceThreshold) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
libs, err := licenses.Libraries(context.Background(), classifier, args...) | ||
if err != nil { | ||
return err | ||
} | ||
for _, lib := range libs { | ||
licenseURL := "Unknown" | ||
licenseName := "Unknown" | ||
if lib.LicensePath != "" { | ||
// Find a URL for the license file, based on the URL of a remote for the Git repository. | ||
var errs []string | ||
repo, err := licenses.FindGitRepo(lib.LicensePath) | ||
if err != nil { | ||
// Can't find Git repo (possibly a Go Module?) - derive URL from lib name instead. | ||
lURL, err := lib.FileURL(lib.LicensePath) | ||
if err != nil { | ||
errs = append(errs, err.Error()) | ||
} else { | ||
licenseURL = lURL.String() | ||
} | ||
} else { | ||
for _, remote := range gitRemotes { | ||
url, err := repo.FileURL(lib.LicensePath, remote) | ||
if err != nil { | ||
errs = append(errs, err.Error()) | ||
continue | ||
} | ||
licenseURL = url.String() | ||
break | ||
} | ||
} | ||
if licenseURL == "Unknown" { | ||
glog.Errorf("Error discovering URL for %q:\n- %s", lib.LicensePath, strings.Join(errs, "\n- ")) | ||
} | ||
licenseName, _, err = classifier.Identify(lib.LicensePath) | ||
if err != nil { | ||
glog.Errorf("Error identifying license in %q: %v", lib.LicensePath, err) | ||
licenseName = "Unknown" | ||
} | ||
} | ||
// Remove the "*/vendor/" prefix from the library name for conciseness. | ||
if err := writer.Write([]string{unvendor(lib.Name()), licenseURL, licenseName}); err != nil { | ||
return err | ||
} | ||
} | ||
writer.Flush() | ||
return writer.Error() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.