woodpecker/server/forge/gitlab/helper.go

57 lines
2 KiB
Go
Raw Normal View History

// Copyright 2022 Woodpecker Authors
2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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 (
"crypto/tls"
"net/http"
2015-07-25 08:49:39 +00:00
"github.com/xanzy/go-gitlab"
2015-07-25 08:49:39 +00:00
)
2016-01-31 23:49:52 +00:00
const (
gravatarBase = "https://www.gravatar.com/avatar"
)
// newClient is a helper function that returns a new GitHub
2015-07-25 08:49:39 +00:00
// 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,
},
}))
2015-07-25 08:49:39 +00:00
}
// isRead is a helper function that returns true if the
2015-07-25 08:49:39 +00:00
// user has Read-only access to the repository.
func isRead(proj *gitlab.Project, projectMember *gitlab.ProjectMember) bool {
return proj.Public || projectMember != nil && projectMember.AccessLevel >= gitlab.ReporterPermissions
2015-07-25 08:49:39 +00:00
}
// isWrite is a helper function that returns true if the
2015-07-25 08:49:39 +00:00
// user has Read-Write access to the repository.
func isWrite(projectMember *gitlab.ProjectMember) bool {
return projectMember != nil && projectMember.AccessLevel >= gitlab.DeveloperPermissions
2015-07-25 08:49:39 +00:00
}
// isAdmin is a helper function that returns true if the
2015-07-25 08:49:39 +00:00
// user has Admin access to the repository.
func isAdmin(projectMember *gitlab.ProjectMember) bool {
return projectMember != nil && projectMember.AccessLevel >= gitlab.MaintainerPermissions
2015-07-25 08:49:39 +00:00
}