woodpecker/remote/gitlab/helper.go

140 lines
3.4 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
//
// 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.
2015-07-25 08:49:39 +00:00
package gitlab
import (
2016-01-31 23:49:52 +00:00
"crypto/md5"
"encoding/hex"
2015-07-25 08:49:39 +00:00
"fmt"
"net/url"
"strconv"
2016-02-22 20:43:54 +00:00
"strings"
2015-07-25 08:49:39 +00:00
2015-12-12 12:20:01 +00:00
"github.com/drone/drone/remote/gitlab/client"
2015-07-25 08:49:39 +00:00
)
2016-01-31 23:49:52 +00:00
const (
gravatarBase = "https://www.gravatar.com/avatar"
)
2015-07-25 08:49:39 +00:00
// NewClient is a helper function that returns a new GitHub
// client using the provided OAuth token.
2015-12-12 12:20:01 +00:00
func NewClient(url, accessToken string, skipVerify bool) *client.Client {
2017-08-10 06:24:35 +00:00
client := client.New(url, "/api/v4", accessToken, skipVerify)
2015-07-25 08:49:39 +00:00
return client
}
// IsRead is a helper function that returns true if the
// user has Read-only access to the repository.
2015-12-12 12:20:01 +00:00
func IsRead(proj *client.Project) bool {
2015-07-25 08:49:39 +00:00
var user = proj.Permissions.ProjectAccess
var group = proj.Permissions.GroupAccess
switch {
case proj.Public:
return true
case user != nil && user.AccessLevel >= 20:
return true
case group != nil && group.AccessLevel >= 20:
return true
default:
return false
}
}
// IsWrite is a helper function that returns true if the
// user has Read-Write access to the repository.
2015-12-12 12:20:01 +00:00
func IsWrite(proj *client.Project) bool {
2015-07-25 08:49:39 +00:00
var user = proj.Permissions.ProjectAccess
var group = proj.Permissions.GroupAccess
switch {
case user != nil && user.AccessLevel >= 30:
return true
case group != nil && group.AccessLevel >= 30:
return true
default:
return false
}
}
// IsAdmin is a helper function that returns true if the
// user has Admin access to the repository.
2015-12-12 12:20:01 +00:00
func IsAdmin(proj *client.Project) bool {
2015-07-25 08:49:39 +00:00
var user = proj.Permissions.ProjectAccess
var group = proj.Permissions.GroupAccess
switch {
case user != nil && user.AccessLevel >= 40:
return true
case group != nil && group.AccessLevel >= 40:
return true
default:
return false
}
}
// GetKeyTitle is a helper function that generates a title for the
// RSA public key based on the username and domain name.
func GetKeyTitle(rawurl string) (string, error) {
var uri, err = url.Parse(rawurl)
if err != nil {
return "", err
}
return fmt.Sprintf("drone@%s", uri.Host), nil
}
func ns(owner, name string) string {
return fmt.Sprintf("%s%%2F%s", owner, name)
}
2016-01-31 23:49:52 +00:00
func GetUserAvatar(email string) string {
hasher := md5.New()
hasher.Write([]byte(email))
return fmt.Sprintf(
"%s/%v.jpg?s=%s",
gravatarBase,
hex.EncodeToString(hasher.Sum(nil)),
"128",
)
}
2016-02-22 20:43:54 +00:00
func ExtractFromPath(str string) (string, string, error) {
s := strings.Split(str, "/")
if len(s) < 2 {
return "", "", fmt.Errorf("Minimum match not found")
}
return s[0], s[1], nil
}
2015-12-12 12:20:01 +00:00
func GetUserEmail(c *client.Client, defaultURL string) (*client.Client, error) {
return c, nil
2015-07-25 08:49:39 +00:00
}
2015-12-12 12:20:01 +00:00
func GetProjectId(r *Gitlab, c *client.Client, owner, name string) (projectId string, err error) {
if r.Search {
2015-12-12 12:20:01 +00:00
_projectId, err := c.SearchProjectId(owner, name)
if err != nil || _projectId == 0 {
return "", err
}
projectId := strconv.Itoa(_projectId)
return projectId, nil
} else {
projectId := ns(owner, name)
return projectId, nil
}
}