2019-02-21 16:58:25 +00:00
|
|
|
// 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 (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
2019-04-09 12:53:00 +00:00
|
|
|
"github.com/pkg/errors"
|
2019-02-21 16:58:25 +00:00
|
|
|
csapi "github.com/sorintlab/agola/internal/services/configstore/api"
|
2019-04-09 12:53:00 +00:00
|
|
|
"github.com/sorintlab/agola/internal/services/gateway/command"
|
2019-02-21 16:58:25 +00:00
|
|
|
"github.com/sorintlab/agola/internal/services/types"
|
|
|
|
"github.com/sorintlab/agola/internal/util"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CreateRemoteSourceRequest struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
APIURL string `json:"apiurl"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
AuthType string `json:"auth_type"`
|
|
|
|
Oauth2ClientID string `json:"oauth_2_client_id"`
|
|
|
|
Oauth2ClientSecret string `json:"oauth_2_client_secret"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateRemoteSourceHandler struct {
|
2019-04-09 12:53:00 +00:00
|
|
|
log *zap.SugaredLogger
|
|
|
|
ch *command.CommandHandler
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 12:53:00 +00:00
|
|
|
func NewCreateRemoteSourceHandler(logger *zap.Logger, ch *command.CommandHandler) *CreateRemoteSourceHandler {
|
|
|
|
return &CreateRemoteSourceHandler{log: logger.Sugar(), ch: ch}
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *CreateRemoteSourceHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := r.Context()
|
|
|
|
|
|
|
|
var req CreateRemoteSourceRequest
|
|
|
|
d := json.NewDecoder(r.Body)
|
|
|
|
if err := d.Decode(&req); err != nil {
|
2019-04-09 12:53:00 +00:00
|
|
|
httpError(w, util.NewErrBadRequest(err))
|
2019-02-21 16:58:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-09 12:53:00 +00:00
|
|
|
creq := &command.CreateRemoteSourceRequest{
|
2019-02-21 16:58:25 +00:00
|
|
|
Name: req.Name,
|
|
|
|
APIURL: req.APIURL,
|
2019-04-09 12:53:00 +00:00
|
|
|
Type: req.Type,
|
|
|
|
AuthType: req.AuthType,
|
2019-02-21 16:58:25 +00:00
|
|
|
Oauth2ClientID: req.Oauth2ClientID,
|
|
|
|
Oauth2ClientSecret: req.Oauth2ClientSecret,
|
|
|
|
}
|
2019-04-09 12:53:00 +00:00
|
|
|
rs, err := h.ch.CreateRemoteSource(ctx, creq)
|
|
|
|
if httpError(w, err) {
|
|
|
|
h.log.Errorf("err: %+v", err)
|
|
|
|
return
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 12:53:00 +00:00
|
|
|
res := createRemoteSourceResponse(rs)
|
|
|
|
if err := httpResponse(w, http.StatusCreated, res); err != nil {
|
|
|
|
h.log.Errorf("err: %+v", err)
|
|
|
|
}
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RemoteSourceResponse struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
AuthType string `json:"auth_type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func createRemoteSourceResponse(r *types.RemoteSource) *RemoteSourceResponse {
|
|
|
|
rs := &RemoteSourceResponse{
|
|
|
|
ID: r.ID,
|
|
|
|
Name: r.Name,
|
|
|
|
AuthType: string(r.AuthType),
|
|
|
|
}
|
|
|
|
return rs
|
|
|
|
}
|
|
|
|
|
|
|
|
type RemoteSourceHandler struct {
|
|
|
|
log *zap.SugaredLogger
|
|
|
|
configstoreClient *csapi.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRemoteSourceHandler(logger *zap.Logger, configstoreClient *csapi.Client) *RemoteSourceHandler {
|
|
|
|
return &RemoteSourceHandler{log: logger.Sugar(), configstoreClient: configstoreClient}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *RemoteSourceHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
2019-05-03 09:07:53 +00:00
|
|
|
rsRef := vars["remotesourceref"]
|
2019-02-21 16:58:25 +00:00
|
|
|
|
2019-05-03 09:07:53 +00:00
|
|
|
rs, resp, err := h.configstoreClient.GetRemoteSource(ctx, rsRef)
|
2019-04-09 12:53:00 +00:00
|
|
|
if httpErrorFromRemote(w, resp, err) {
|
2019-04-05 14:33:00 +00:00
|
|
|
h.log.Errorf("err: %+v", err)
|
2019-02-21 16:58:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res := createRemoteSourceResponse(rs)
|
2019-04-08 09:35:45 +00:00
|
|
|
if err := httpResponse(w, http.StatusOK, res); err != nil {
|
2019-04-05 14:33:00 +00:00
|
|
|
h.log.Errorf("err: %+v", err)
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type RemoteSourcesHandler struct {
|
|
|
|
log *zap.SugaredLogger
|
|
|
|
configstoreClient *csapi.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRemoteSourcesHandler(logger *zap.Logger, configstoreClient *csapi.Client) *RemoteSourcesHandler {
|
|
|
|
return &RemoteSourcesHandler{log: logger.Sugar(), configstoreClient: configstoreClient}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *RemoteSourcesHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := r.Context()
|
|
|
|
|
|
|
|
query := r.URL.Query()
|
|
|
|
|
|
|
|
limitS := query.Get("limit")
|
|
|
|
limit := DefaultRunsLimit
|
|
|
|
if limitS != "" {
|
|
|
|
var err error
|
|
|
|
limit, err = strconv.Atoi(limitS)
|
|
|
|
if err != nil {
|
2019-04-09 12:53:00 +00:00
|
|
|
httpError(w, util.NewErrBadRequest(errors.Wrapf(err, "cannot parse limit")))
|
2019-02-21 16:58:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if limit < 0 {
|
2019-04-09 12:53:00 +00:00
|
|
|
httpError(w, util.NewErrBadRequest(errors.Errorf("limit must be greater or equal than 0")))
|
2019-02-21 16:58:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if limit > MaxRunsLimit {
|
|
|
|
limit = MaxRunsLimit
|
|
|
|
}
|
|
|
|
asc := false
|
|
|
|
if _, ok := query["asc"]; ok {
|
|
|
|
asc = true
|
|
|
|
}
|
|
|
|
|
|
|
|
start := query.Get("start")
|
|
|
|
|
|
|
|
csRemoteSources, resp, err := h.configstoreClient.GetRemoteSources(ctx, start, limit, asc)
|
2019-04-09 12:53:00 +00:00
|
|
|
if httpErrorFromRemote(w, resp, err) {
|
2019-04-05 14:33:00 +00:00
|
|
|
h.log.Errorf("err: %+v", err)
|
2019-02-21 16:58:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
remoteSources := make([]*RemoteSourceResponse, len(csRemoteSources))
|
|
|
|
for i, rs := range csRemoteSources {
|
|
|
|
remoteSources[i] = createRemoteSourceResponse(rs)
|
|
|
|
}
|
|
|
|
|
2019-04-08 09:35:45 +00:00
|
|
|
if err := httpResponse(w, http.StatusOK, remoteSources); err != nil {
|
2019-04-05 14:33:00 +00:00
|
|
|
h.log.Errorf("err: %+v", err)
|
2019-02-21 16:58:25 +00:00
|
|
|
}
|
|
|
|
}
|