mirror of https://github.com/harness/drone.git
142 lines
6.3 KiB
Go
142 lines
6.3 KiB
Go
// Copyright 2023 Harness, 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 openapi
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/harness/gitness/app/api/controller/check"
|
|
"github.com/harness/gitness/app/api/request"
|
|
"github.com/harness/gitness/app/api/usererror"
|
|
"github.com/harness/gitness/types"
|
|
|
|
"github.com/gotidy/ptr"
|
|
"github.com/swaggest/openapi-go/openapi3"
|
|
)
|
|
|
|
var queryParameterStatusCheckQuery = openapi3.ParameterOrRef{
|
|
Parameter: &openapi3.Parameter{
|
|
Name: request.QueryParamQuery,
|
|
In: openapi3.ParameterInQuery,
|
|
Description: ptr.String("The substring which is used to filter the status checks by their Identifier."),
|
|
Required: ptr.Bool(false),
|
|
Schema: &openapi3.SchemaOrRef{
|
|
Schema: &openapi3.Schema{
|
|
Type: ptrSchemaType(openapi3.SchemaTypeString),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
var queryParameterStatusCheckSince = openapi3.ParameterOrRef{
|
|
Parameter: &openapi3.Parameter{
|
|
Name: request.QueryParamSince,
|
|
In: openapi3.ParameterInQuery,
|
|
Description: ptr.String("The timestamp (in Unix time millis) since the status checks have been run."),
|
|
Required: ptr.Bool(false),
|
|
Schema: &openapi3.SchemaOrRef{
|
|
Schema: &openapi3.Schema{
|
|
Type: ptrSchemaType(openapi3.SchemaTypeInteger),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
var QueryParameterRecursive = openapi3.ParameterOrRef{
|
|
Parameter: &openapi3.Parameter{
|
|
Name: request.QueryParamRecursive,
|
|
In: openapi3.ParameterInQuery,
|
|
Description: ptr.String("The result should include entities from child spaces."),
|
|
Required: ptr.Bool(false),
|
|
Schema: &openapi3.SchemaOrRef{
|
|
Schema: &openapi3.Schema{
|
|
Type: ptrSchemaType(openapi3.SchemaTypeBoolean),
|
|
Default: ptrptr(false),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
func checkOperations(reflector *openapi3.Reflector) {
|
|
const tag = "status_checks"
|
|
|
|
reportStatusCheckResults := openapi3.Operation{}
|
|
reportStatusCheckResults.WithTags(tag)
|
|
reportStatusCheckResults.WithMapOfAnything(map[string]interface{}{"operationId": "reportStatusCheckResults"})
|
|
_ = reflector.SetRequest(&reportStatusCheckResults, struct {
|
|
repoRequest
|
|
CommitSHA string `path:"commit_sha"`
|
|
check.ReportInput
|
|
}{}, http.MethodPut)
|
|
_ = reflector.SetJSONResponse(&reportStatusCheckResults, new(types.Check), http.StatusOK)
|
|
_ = reflector.SetJSONResponse(&reportStatusCheckResults, new(usererror.Error), http.StatusBadRequest)
|
|
_ = reflector.SetJSONResponse(&reportStatusCheckResults, new(usererror.Error), http.StatusInternalServerError)
|
|
_ = reflector.SetJSONResponse(&reportStatusCheckResults, new(usererror.Error), http.StatusUnauthorized)
|
|
_ = reflector.SetJSONResponse(&reportStatusCheckResults, new(usererror.Error), http.StatusForbidden)
|
|
_ = reflector.Spec.AddOperation(http.MethodPut, "/repos/{repo_ref}/checks/commits/{commit_sha}",
|
|
reportStatusCheckResults)
|
|
|
|
listStatusCheckResults := openapi3.Operation{}
|
|
listStatusCheckResults.WithTags(tag)
|
|
listStatusCheckResults.WithParameters(
|
|
QueryParameterPage, QueryParameterLimit, queryParameterStatusCheckQuery)
|
|
listStatusCheckResults.WithMapOfAnything(map[string]interface{}{"operationId": "listStatusCheckResults"})
|
|
_ = reflector.SetRequest(&listStatusCheckResults, struct {
|
|
repoRequest
|
|
CommitSHA string `path:"commit_sha"`
|
|
}{}, http.MethodGet)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckResults, new([]types.Check), http.StatusOK)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckResults, new(usererror.Error), http.StatusBadRequest)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckResults, new(usererror.Error), http.StatusInternalServerError)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckResults, new(usererror.Error), http.StatusUnauthorized)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckResults, new(usererror.Error), http.StatusForbidden)
|
|
_ = reflector.Spec.AddOperation(http.MethodGet, "/repos/{repo_ref}/checks/commits/{commit_sha}",
|
|
listStatusCheckResults)
|
|
|
|
listStatusCheckRecent := openapi3.Operation{}
|
|
listStatusCheckRecent.WithTags(tag)
|
|
listStatusCheckRecent.WithParameters(
|
|
queryParameterStatusCheckQuery, queryParameterStatusCheckSince)
|
|
listStatusCheckRecent.WithMapOfAnything(map[string]interface{}{"operationId": "listStatusCheckRecent"})
|
|
_ = reflector.SetRequest(&listStatusCheckRecent, struct {
|
|
repoRequest
|
|
Since int
|
|
}{}, http.MethodGet)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecent, new([]string), http.StatusOK)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecent, new(usererror.Error), http.StatusBadRequest)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecent, new(usererror.Error), http.StatusInternalServerError)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecent, new(usererror.Error), http.StatusUnauthorized)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecent, new(usererror.Error), http.StatusForbidden)
|
|
_ = reflector.Spec.AddOperation(http.MethodGet, "/repos/{repo_ref}/checks/recent",
|
|
listStatusCheckRecent)
|
|
|
|
listStatusCheckRecentSpace := openapi3.Operation{}
|
|
listStatusCheckRecentSpace.WithTags(tag)
|
|
listStatusCheckRecentSpace.WithParameters(
|
|
queryParameterStatusCheckQuery, queryParameterStatusCheckSince, QueryParameterRecursive)
|
|
listStatusCheckRecentSpace.WithMapOfAnything(map[string]interface{}{"operationId": "listStatusCheckRecentSpace"})
|
|
_ = reflector.SetRequest(&listStatusCheckRecentSpace, struct {
|
|
spaceRequest
|
|
Since int
|
|
}{}, http.MethodGet)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecentSpace, new([]string), http.StatusOK)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecentSpace, new(usererror.Error), http.StatusBadRequest)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecentSpace, new(usererror.Error), http.StatusInternalServerError)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecentSpace, new(usererror.Error), http.StatusUnauthorized)
|
|
_ = reflector.SetJSONResponse(&listStatusCheckRecentSpace, new(usererror.Error), http.StatusForbidden)
|
|
_ = reflector.Spec.AddOperation(http.MethodGet, "/spaces/{space_ref}/checks/recent",
|
|
listStatusCheckRecentSpace)
|
|
}
|