116 lines
3.1 KiB
Go
116 lines
3.1 KiB
Go
// Copyright 2019 Sorint.lab
|
|
//
|
|
// 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 api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
gitsource "agola.io/agola/internal/gitsources"
|
|
csapi "agola.io/agola/internal/services/configstore/api"
|
|
"agola.io/agola/internal/services/gateway/action"
|
|
"agola.io/agola/internal/services/types"
|
|
"agola.io/agola/internal/util"
|
|
|
|
"github.com/gorilla/mux"
|
|
"go.uber.org/zap"
|
|
errors "golang.org/x/xerrors"
|
|
)
|
|
|
|
type RemoteRepoResponse struct {
|
|
ID string `json:"id,omitempty"`
|
|
Path string `json:"path,omitempty"`
|
|
}
|
|
|
|
func createRemoteRepoResponse(r *gitsource.RepoInfo) *RemoteRepoResponse {
|
|
rr := &RemoteRepoResponse{
|
|
ID: r.ID,
|
|
Path: r.Path,
|
|
}
|
|
|
|
return rr
|
|
}
|
|
|
|
type UserRemoteReposHandler struct {
|
|
log *zap.SugaredLogger
|
|
ah *action.ActionHandler
|
|
configstoreClient *csapi.Client
|
|
}
|
|
|
|
func NewUserRemoteReposHandler(logger *zap.Logger, ah *action.ActionHandler, configstoreClient *csapi.Client) *UserRemoteReposHandler {
|
|
return &UserRemoteReposHandler{log: logger.Sugar(), ah: ah, configstoreClient: configstoreClient}
|
|
}
|
|
|
|
func (h *UserRemoteReposHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
vars := mux.Vars(r)
|
|
remoteSourceRef := vars["remotesourceref"]
|
|
|
|
userIDVal := ctx.Value("userid")
|
|
if userIDVal == nil {
|
|
httpError(w, util.NewErrBadRequest(errors.Errorf("user not authenticated")))
|
|
return
|
|
}
|
|
userID := userIDVal.(string)
|
|
|
|
user, resp, err := h.configstoreClient.GetUser(ctx, userID)
|
|
if httpErrorFromRemote(w, resp, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
rs, resp, err := h.configstoreClient.GetRemoteSource(ctx, remoteSourceRef)
|
|
if httpErrorFromRemote(w, resp, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
var la *types.LinkedAccount
|
|
for _, v := range user.LinkedAccounts {
|
|
if v.RemoteSourceID == rs.ID {
|
|
la = v
|
|
break
|
|
}
|
|
}
|
|
if la == nil {
|
|
err := util.NewErrBadRequest(errors.Errorf("user doesn't have a linked account for remote source %q", rs.Name))
|
|
httpError(w, err)
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
gitsource, err := h.ah.GetGitSource(ctx, rs, user.Name, la)
|
|
if err != nil {
|
|
httpError(w, err)
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
remoteRepos, err := gitsource.ListUserRepos()
|
|
if err != nil {
|
|
err := util.NewErrBadRequest(errors.Errorf("failed to get user repositories from git source: %w", err))
|
|
httpError(w, err)
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
repos := make([]*RemoteRepoResponse, len(remoteRepos))
|
|
for i, r := range remoteRepos {
|
|
repos[i] = createRemoteRepoResponse(r)
|
|
}
|
|
if err := httpResponse(w, http.StatusOK, repos); err != nil {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
}
|