mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
3372d1a87c
As of #745 Co-authored-by: Anbraten <anton@ju60.de>
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
// 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.
|
|
|
|
package gitlab
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
|
|
"github.com/xanzy/go-gitlab"
|
|
)
|
|
|
|
const (
|
|
gravatarBase = "https://www.gravatar.com/avatar"
|
|
)
|
|
|
|
// newClient is a helper function that returns a new GitHub
|
|
// client using the provided OAuth token.
|
|
func newClient(url, accessToken string, skipVerify bool) (*gitlab.Client, error) {
|
|
return gitlab.NewOAuthClient(accessToken, gitlab.WithBaseURL(url), gitlab.WithHTTPClient(&http.Client{
|
|
Transport: &http.Transport{
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: skipVerify},
|
|
Proxy: http.ProxyFromEnvironment,
|
|
},
|
|
}))
|
|
}
|
|
|
|
// isRead is a helper function that returns true if the
|
|
// user has Read-only access to the repository.
|
|
func isRead(proj *gitlab.Project) bool {
|
|
user := proj.Permissions.ProjectAccess
|
|
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.
|
|
func isWrite(proj *gitlab.Project) bool {
|
|
user := proj.Permissions.ProjectAccess
|
|
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.
|
|
func isAdmin(proj *gitlab.Project) bool {
|
|
user := proj.Permissions.ProjectAccess
|
|
group := proj.Permissions.GroupAccess
|
|
|
|
switch {
|
|
case user != nil && user.AccessLevel >= 40:
|
|
return true
|
|
case group != nil && group.AccessLevel >= 40:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|