handle github enterprise not supporting verified / primary emails
This commit is contained in:
parent
2cca926a06
commit
1ff56ef51c
1 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,7 @@ import (
|
|||
"io/ioutil"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"strings"
|
||||
|
||||
"github.com/drone/drone/plugin/remote/github/oauth"
|
||||
"github.com/google/go-github/github"
|
||||
|
@ -35,6 +36,16 @@ func GetUserEmail(client *github.Client) (*github.User, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// WARNING, HACK
|
||||
// for out-of-date github enterprise editions the primary
|
||||
// and verified fields won't exist.
|
||||
if !strings.HasPrefix(*user.HTMLURL, DefaultURL) && len(emails) != 0 && emails[0].Primary == nil {
|
||||
user.Email = emails[0].Email
|
||||
return user, nil
|
||||
}
|
||||
|
||||
// else we should iterate through the list
|
||||
for _, email := range emails {
|
||||
if *email.Primary && *email.Verified {
|
||||
user.Email = email.Email
|
||||
|
|
Loading…
Reference in a new issue