mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 19:48:04 +00:00
e3499f610d
* pass context down to remote clients * make tests work * add ctx to Refresh() and use it * bitbucketserver * code format * plugin interface: add todo context * solve todo * RM TODO by using context.WithTimeout * refactor & fix * Apply suggestions from code review Co-authored-by: Anbraten <anton@ju60.de> * go fmt * Update server/remote/coding/coding.go Co-authored-by: Anbraten <anton@ju60.de> Co-authored-by: Anbraten <anton@ju60.de>
170 lines
6.3 KiB
Go
170 lines
6.3 KiB
Go
// 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 remote
|
|
|
|
//go:generate mockery -name Remote -output mocks -case=underscore
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
// TODO: use pagination
|
|
// TODO: add Driver() who return source forge back
|
|
|
|
type Remote interface {
|
|
// Login authenticates the session and returns the
|
|
// remote user details.
|
|
Login(ctx context.Context, w http.ResponseWriter, r *http.Request) (*model.User, error)
|
|
|
|
// Auth authenticates the session and returns the remote user
|
|
// login for the given token and secret
|
|
Auth(ctx context.Context, token, secret string) (string, error)
|
|
|
|
// Teams fetches a list of team memberships from the remote system.
|
|
Teams(ctx context.Context, u *model.User) ([]*model.Team, error)
|
|
|
|
// Repo fetches the named repository from the remote system.
|
|
Repo(ctx context.Context, u *model.User, owner, name string) (*model.Repo, error)
|
|
|
|
// Repos fetches a list of repos from the remote system.
|
|
Repos(ctx context.Context, u *model.User) ([]*model.Repo, error)
|
|
|
|
// Perm fetches the named repository permissions from
|
|
// the remote system for the specified user.
|
|
Perm(ctx context.Context, u *model.User, owner, repo string) (*model.Perm, error)
|
|
|
|
// File fetches a file from the remote repository and returns in string
|
|
// format.
|
|
File(ctx context.Context, u *model.User, r *model.Repo, b *model.Build, f string) ([]byte, error)
|
|
|
|
// Dir fetches a folder from the remote repository
|
|
Dir(ctx context.Context, u *model.User, r *model.Repo, b *model.Build, f string) ([]*FileMeta, error)
|
|
|
|
// Status sends the commit status to the remote system.
|
|
// An example would be the GitHub pull request status.
|
|
Status(ctx context.Context, u *model.User, r *model.Repo, b *model.Build, link string, proc *model.Proc) error
|
|
|
|
// Netrc returns a .netrc file that can be used to clone
|
|
// private repositories from a remote system.
|
|
Netrc(u *model.User, r *model.Repo) (*model.Netrc, error)
|
|
|
|
// Activate activates a repository by creating the post-commit hook.
|
|
Activate(ctx context.Context, u *model.User, r *model.Repo, link string) error
|
|
|
|
// Deactivate deactivates a repository by removing all previously created
|
|
// post-commit hooks matching the given link.
|
|
Deactivate(ctx context.Context, u *model.User, r *model.Repo, link string) error
|
|
|
|
// Hook parses the post-commit hook from the Request body and returns the
|
|
// required data in a standard format.
|
|
Hook(r *http.Request) (*model.Repo, *model.Build, error)
|
|
}
|
|
|
|
// FileMeta represents a file in version control
|
|
type FileMeta struct {
|
|
Name string
|
|
Data []byte
|
|
}
|
|
|
|
type ByName []*FileMeta
|
|
|
|
func (a ByName) Len() int { return len(a) }
|
|
func (a ByName) Less(i, j int) bool { return a[i].Name < a[j].Name }
|
|
func (a ByName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
|
|
|
// Refresher refreshes an oauth token and expiration for the given user. It
|
|
// returns true if the token was refreshed, false if the token was not refreshed,
|
|
// and error if it failed to refersh.
|
|
type Refresher interface {
|
|
Refresh(context.Context, *model.User) (bool, error)
|
|
}
|
|
|
|
// Login authenticates the session and returns the
|
|
// remote user details.
|
|
func Login(c context.Context, w http.ResponseWriter, r *http.Request) (*model.User, error) {
|
|
return FromContext(c).Login(c, w, r)
|
|
}
|
|
|
|
// Auth authenticates the session and returns the remote user
|
|
// login for the given token and secret
|
|
func Auth(c context.Context, token, secret string) (string, error) {
|
|
return FromContext(c).Auth(c, token, secret)
|
|
}
|
|
|
|
// Teams fetches a list of team memberships from the remote system.
|
|
func Teams(c context.Context, u *model.User) ([]*model.Team, error) {
|
|
return FromContext(c).Teams(c, u)
|
|
}
|
|
|
|
// Repo fetches the named repository from the remote system.
|
|
func Repo(c context.Context, u *model.User, owner, repo string) (*model.Repo, error) {
|
|
return FromContext(c).Repo(c, u, owner, repo)
|
|
}
|
|
|
|
// Repos fetches a list of repos from the remote system.
|
|
func Repos(c context.Context, u *model.User) ([]*model.Repo, error) {
|
|
return FromContext(c).Repos(c, u)
|
|
}
|
|
|
|
// Perm fetches the named repository permissions from
|
|
// the remote system for the specified user.
|
|
func Perm(c context.Context, u *model.User, owner, repo string) (*model.Perm, error) {
|
|
return FromContext(c).Perm(c, u, owner, repo)
|
|
}
|
|
|
|
// Status sends the commit status to the remote system.
|
|
// An example would be the GitHub pull request status.
|
|
func Status(c context.Context, u *model.User, r *model.Repo, b *model.Build, link string, proc *model.Proc) error {
|
|
return FromContext(c).Status(c, u, r, b, link, proc)
|
|
}
|
|
|
|
// Netrc returns a .netrc file that can be used to clone
|
|
// private repositories from a remote system.
|
|
func Netrc(c context.Context, u *model.User, r *model.Repo) (*model.Netrc, error) {
|
|
return FromContext(c).Netrc(u, r)
|
|
}
|
|
|
|
// Activate activates a repository by creating the post-commit hook and
|
|
// adding the SSH deploy key, if applicable.
|
|
func Activate(c context.Context, u *model.User, r *model.Repo, link string) error {
|
|
return FromContext(c).Activate(c, u, r, link)
|
|
}
|
|
|
|
// Deactivate removes a repository by removing all the post-commit hooks
|
|
// which are equal to link and removing the SSH deploy key.
|
|
func Deactivate(c context.Context, u *model.User, r *model.Repo, link string) error {
|
|
return FromContext(c).Deactivate(c, u, r, link)
|
|
}
|
|
|
|
// Hook parses the post-commit hook from the Request body
|
|
// and returns the required data in a standard format.
|
|
func Hook(c context.Context, r *http.Request) (*model.Repo, *model.Build, error) {
|
|
return FromContext(c).Hook(r)
|
|
}
|
|
|
|
// Refresh refreshes an oauth token and expiration for the given
|
|
// user. It returns true if the token was refreshed, false if the
|
|
// token was not refreshed, and error if it failed to refersh.
|
|
func Refresh(c context.Context, u *model.User) (bool, error) {
|
|
remote := FromContext(c)
|
|
refresher, ok := remote.(Refresher)
|
|
if !ok {
|
|
return false, nil
|
|
}
|
|
return refresher.Refresh(c, u)
|
|
}
|