repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/principal/list.go
app/api/handler/principal/list.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 serviceaccount import ( "net/http" "github.com/harness/gitness/app/api/controller/principal" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleList(principalCtrl principal.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) principalFilter := request.ParsePrincipalFilter(r) principalInfos, err := principalCtrl.List(ctx, session, principalFilter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, principalInfos) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/get_branch.go
app/api/handler/repo/get_branch.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleGetBranch returns a given branch. func HandleGetBranch(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } branchName, err := request.GetRemainderFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } options, err := request.ParseBranchMetadataOptions(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } branch, err := repoCtrl.GetBranch(ctx, session, repoRef, branchName, options) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, branch) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_value_define.go
app/api/handler/repo/label_value_define.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleDefineLabelValue(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.DefineValueInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } label, err := repoCtrl.DefineLabelValue(ctx, session, repoRef, key, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/blame.go
app/api/handler/repo/blame.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleBlame returns the git blame output for a file. func HandleBlame(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } path := request.GetOptionalRemainderFromPath(r) // line_from is optional, skipped if set to 0 lineFrom, err := request.QueryParamAsPositiveInt64OrDefault(r, request.QueryParamLineFrom, 0) if err != nil { render.TranslatedUserError(ctx, w, err) return } // line_to is optional, skipped if set to 0 lineTo, err := request.QueryParamAsPositiveInt64OrDefault(r, request.QueryParamLineTo, 0) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") stream, err := repoCtrl.Blame(ctx, session, repoRef, gitRef, path, int(lineFrom), int(lineTo)) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSONArrayDynamic(ctx, w, stream) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/squash.go
app/api/handler/repo/squash.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleSquash(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.SquashInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } result, violation, err := repoCtrl.Squash(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violation != nil { render.Unprocessable(w, violation) return } render.JSON(w, http.StatusOK, result) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/linked_create.go
app/api/handler/repo/linked_create.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleLinkedCreate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(repo.LinkedCreateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } repo, err := repoCtrl.LinkedCreate(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_value_delete.go
app/api/handler/repo/label_value_delete.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleDeleteLabelValue(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } value, err := request.GetLabelValueFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = repoCtrl.DeleteLabelValue(ctx, session, repoRef, key, value) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/upload_file.go
app/api/handler/repo/upload_file.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 repo
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/commit.go
app/api/handler/repo/commit.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCommitFiles creates or modify file in repository. func HandleCommitFiles(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.CommitFilesOptions) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } response, violations, err := repoCtrl.CommitFiles(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violations != nil { render.Violations(w, violations) return } render.JSON(w, http.StatusOK, response) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/create.go
app/api/handler/repo/create.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreate returns a http.HandlerFunc that creates a new repository. func HandleCreate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(repo.CreateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } repo, err := repoCtrl.Create(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_update.go
app/api/handler/repo/label_update.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleUpdateLabel(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.UpdateLabelInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := repoCtrl.UpdateLabel(ctx, session, repoRef, key, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/pipeline_generate.go
app/api/handler/repo/pipeline_generate.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandlePipelineGenerate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } yaml, err := repoCtrl.PipelineGenerate(ctx, session, repoRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } w.Header().Set("Content-Type", "text/yaml; charset=utf-8") w.WriteHeader(http.StatusOK) _, _ = w.Write(yaml) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_pipelines.go
app/api/handler/repo/list_pipelines.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListPipelines(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter, err := request.ParseListPipelinesFilterFromRequest(r) if err != nil { render.TranslatedUserError(ctx, w, err) } pipelines, totalCount, err := repoCtrl.ListPipelines(ctx, session, repoRef, &filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(totalCount)) render.JSON(w, http.StatusOK, pipelines) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/archive.go
app/api/handler/repo/archive.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 repo import ( "fmt" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/git/api" ) func HandleArchive(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } params, filename, err := request.ParseArchiveParams(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } var contentType string switch params.Format { case api.ArchiveFormatTar: contentType = "application/tar" case api.ArchiveFormatZip: contentType = "application/zip" case api.ArchiveFormatTarGz, api.ArchiveFormatTgz: contentType = "application/gzip" default: contentType = "application/zip" } w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s", filename)) w.Header().Set("Content-Type", contentType) err = repoCtrl.Archive(ctx, session, repoRef, params, w) if err != nil { render.TranslatedUserError(ctx, w, err) return } } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rule_find.go
app/api/handler/repo/rule_find.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleRuleFind finds a protection rule of a repository. func HandleRuleFind(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ruleIdentifier, err := request.GetRuleIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } rule, err := repoCtrl.RuleFind(ctx, session, repoRef, ruleIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, rule) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_value_update.go
app/api/handler/repo/label_value_update.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleUpdateLabelValue(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } value, err := request.GetLabelValueFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.UpdateValueInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := repoCtrl.UpdateLabelValue( ctx, session, repoRef, key, value, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/restore.go
app/api/handler/repo/restore.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleRestore(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } deletedAt, err := request.GetDeletedAtFromQueryOrError(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.RestoreInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } repo, err := repoCtrl.Restore(ctx, session, repoRef, deletedAt, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/move.go
app/api/handler/repo/move.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleMove moves an existing repo. func HandleMove(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.MoveInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } repo, err := repoCtrl.Move(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/get_commit.go
app/api/handler/repo/get_commit.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Gets a given commit. */ func HandleGetCommit(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } commitSHA, err := request.GetCommitSHAFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } commit, err := repoCtrl.GetCommit(ctx, session, repoRef, commitSHA) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, commit) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/summary.go
app/api/handler/repo/summary.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleSummary writes json-encoded repository summary information to the http response body. func HandleSummary(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } summary, err := repoCtrl.Summary(ctx, session, repoRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, summary) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/create_branch.go
app/api/handler/repo/create_branch.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreateBranch writes json-encoded branch information to the http response body. func HandleCreateBranch(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.CreateBranchInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } out, violations, err := repoCtrl.CreateBranch(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violations != nil { render.Violations(w, violations) return } if in.DryRunRules { render.JSON(w, http.StatusOK, out) return } render.JSON(w, http.StatusCreated, out) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_value_list.go
app/api/handler/repo/label_value_list.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListLabelValues(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseListQueryFilterFromRequest(r) labels, count, err := repoCtrl.ListLabelValues(ctx, session, repoRef, key, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(count)) render.JSON(w, http.StatusOK, labels) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_branches.go
app/api/handler/repo/list_branches.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleListBranches writes json-encoded branch list to the http response body. func HandleListBranches(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter, err := request.ParseBranchFilter(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } branches, err := repoCtrl.ListBranches(ctx, session, repoRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } // TODO: get last page indicator explicitly - current check is wrong in case len % pageSize == 0 isLastPage := len(branches) < filter.Size render.PaginationNoTotal(r, w, filter.Page, filter.Size, isLastPage) render.JSON(w, http.StatusOK, branches) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/create_commit_tag.go
app/api/handler/repo/create_commit_tag.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleCreateCommitTag(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.CreateCommitTagInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } out, violations, err := repoCtrl.CreateCommitTag(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violations != nil { render.Violations(w, violations) return } if in.DryRunRules { render.JSON(w, http.StatusOK, out) return } render.JSON(w, http.StatusCreated, out) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/soft_delete.go
app/api/handler/repo/soft_delete.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Soft Deletes a repository. */ func HandleSoftDelete(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } softDeleteResponse, err := repoCtrl.SoftDelete(ctx, session, repoRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, softDeleteResponse) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/delete_commit_tag.go
app/api/handler/repo/delete_commit_tag.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleDeleteCommitTag(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } tagName, err := request.GetRemainderFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } bypassRules, err := request.ParseBypassRulesFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } dryRunRules, err := request.ParseDryRunRulesFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } out, violations, err := repoCtrl.DeleteCommitTag(ctx, session, repoRef, tagName, bypassRules, dryRunRules) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violations != nil { render.Violations(w, violations) return } render.JSON(w, http.StatusOK, out) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/purge.go
app/api/handler/repo/purge.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandlePurge(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } deletedAt, err := request.GetDeletedAtFromQueryOrError(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = repoCtrl.Purge(ctx, session, repoRef, deletedAt) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rule_create.go
app/api/handler/repo/rule_create.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/services/rules" ) // HandleRuleCreate adds a new protection rule to a repository. func HandleRuleCreate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(rules.CreateInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } rule, err := repoCtrl.RuleCreate(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, rule) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/git_info_refs.go
app/api/handler/repo/git_info_refs.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 repo import ( "context" "fmt" "net/http" apiauth "github.com/harness/gitness/app/api/auth" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/api/usererror" "github.com/harness/gitness/app/url" "github.com/harness/gitness/errors" "github.com/harness/gitness/git/api" ) // HandleGitInfoRefs handles the info refs part of git's smart http protocol. func HandleGitInfoRefs(repoCtrl *repo.Controller, urlProvider url.Provider) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { w.WriteHeader(http.StatusNotFound) pktError(ctx, w, err) return } gitProtocol := request.GetGitProtocolFromHeadersOrDefault(r, "") service, err := request.GetGitServiceTypeFromQuery(r) if err != nil { pktError(ctx, w, err) return } // Clients MUST NOT reuse or revalidate a cached response. // Servers MUST include sufficient Cache-Control headers to prevent caching of the response. // https://git-scm.com/docs/http-protocol render.NoCache(w) w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-advertisement", service)) err = repoCtrl.GitInfoRefs(ctx, session, repoRef, service, gitProtocol, w) if errors.Is(err, apiauth.ErrUnauthorized) { render.GitBasicAuth(ctx, w, urlProvider) return } if err != nil { pktError(ctx, w, err) return } } } func pktError(ctx context.Context, w http.ResponseWriter, err error) { terr := usererror.Translate(ctx, err) w.WriteHeader(terr.Status) api.PktError(w, terr) }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/default_branch.go
app/api/handler/repo/default_branch.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleUpdateDefaultBranch(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.UpdateDefaultBranchInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.TranslatedUserError(ctx, w, err) return } repo, err := repoCtrl.UpdateDefaultBranch(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/find.go
app/api/handler/repo/find.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleFind writes json-encoded repository information to the http response body. func HandleFind(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repo, err := repoCtrl.Find(ctx, session, repoRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/linked_sync.go
app/api/handler/repo/linked_sync.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleLinkedSync(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.LinkedSyncInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } result, err := repoCtrl.LinkedSync(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, result) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_find.go
app/api/handler/repo/label_find.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleFindLabel(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } includeValues, err := request.ParseIncludeValuesFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } label, err := repoCtrl.FindLabel(ctx, session, repoRef, key, includeValues) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_commits.go
app/api/handler/repo/list_commits.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Writes json-encoded commit information to the http response body. */ func HandleListCommits(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") filter, err := request.ParseCommitFilter(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } list, err := repoCtrl.ListCommits(ctx, session, repoRef, gitRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } // TODO: get last page indicator explicitly - current check is wrong in case len % limit == 0 isLastPage := len(list.Commits) < filter.Limit render.PaginationNoTotal(r, w, filter.Page, filter.Limit, isLastPage) render.JSON(w, http.StatusOK, list) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/content_get.go
app/api/handler/repo/content_get.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleGetContent handles the get content HTTP API. func HandleGetContent(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") includeCommit, err := request.GetIncludeCommitFromQueryOrDefault(r, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } flattenDirectories, err := request.GetFlattenDirectoriesFromQueryOrDefault(r, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoPath := request.GetOptionalRemainderFromPath(r) resp, err := repoCtrl.GetContent(ctx, session, repoRef, gitRef, repoPath, includeCommit, flattenDirectories) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, resp) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/calculate_commit_divergence.go
app/api/handler/repo/calculate_commit_divergence.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Writes json-encoded branch information to the http response body. */ func HandleCalculateCommitDivergence(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.GetCommitDivergencesInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } divergences, err := repoCtrl.GetCommitDivergences(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, divergences) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/fork_sync.go
app/api/handler/repo/fork_sync.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleForkSync(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.ForkSyncInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } result, err := repoCtrl.ForkSync(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, result) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rebase.go
app/api/handler/repo/rebase.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleRebase(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.RebaseInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } result, violation, err := repoCtrl.Rebase(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violation != nil { render.Unprocessable(w, violation) return } render.JSON(w, http.StatusOK, result) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rule_list.go
app/api/handler/repo/rule_list.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleRuleList lists rotection rules of a repository. func HandleRuleList(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseRuleFilter(r) inherited, err := request.ParseInheritedFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) } rules, rulesCount, err := repoCtrl.RuleList(ctx, session, repoRef, inherited, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(rulesCount)) render.JSON(w, http.StatusOK, rules) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_list.go
app/api/handler/repo/label_list.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListLabels(labelCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter, err := request.ParseLabelFilter(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } labels, total, err := labelCtrl.ListLabels(ctx, session, repoRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(total)) render.JSON(w, http.StatusOK, labels) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_delete.go
app/api/handler/repo/label_delete.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleDeleteLabel(labelCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = labelCtrl.DeleteLabel(ctx, session, repoRef, key) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_save.go
app/api/handler/repo/label_save.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleSaveLabel(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.SaveInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := repoCtrl.SaveLabel(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/diff.go
app/api/handler/repo/diff.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 repo import ( "encoding/json" "io" "net/http" "strings" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/api/usererror" "github.com/harness/gitness/errors" gittypes "github.com/harness/gitness/git/api" ) // HandleDiff returns the diff between two commits, branches or tags. func HandleDiff(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } path := request.GetOptionalRemainderFromPath(r) files := gittypes.FileDiffRequests{} switch r.Method { case http.MethodPost: if err = json.NewDecoder(r.Body).Decode(&files); err != nil && !errors.Is(err, io.EOF) { render.TranslatedUserError(ctx, w, err) return } case http.MethodGet: // TBD: this will be removed in future because of URL limit in browser to 2048 chars. files = request.GetFileDiffFromQuery(r) } ignoreWhitespace, err := request.QueryParamAsBoolOrDefault(r, request.QueryParamIgnoreWhitespace, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } if strings.HasPrefix(r.Header.Get("Accept"), "text/plain") { err := repoCtrl.RawDiff( ctx, w, session, repoRef, path, ignoreWhitespace, files..., ) if err != nil { http.Error(w, err.Error(), http.StatusOK) } return } includePatch, err := request.QueryParamAsBoolOrDefault(r, request.QueryParamIncludePatch, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } stream, err := repoCtrl.Diff( ctx, session, repoRef, path, includePatch, ignoreWhitespace, files..., ) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSONArrayDynamic(ctx, w, stream) } } // HandleCommitDiff returns the diff between two commits, branches or tags. func HandleCommitDiff(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } commitSHA, err := request.GetCommitSHAFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ignoreWhitespace, err := request.QueryParamAsBoolOrDefault(r, request.QueryParamIgnoreWhitespace, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = repoCtrl.CommitDiff( ctx, session, repoRef, commitSHA, ignoreWhitespace, w, ) if err != nil { render.TranslatedUserError(ctx, w, err) return } } } // HandleDiffStats how diff statistics of two commits, branches or tags. func HandleDiffStats(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } path := request.GetOptionalRemainderFromPath(r) ignoreWhitespace, err := request.QueryParamAsBoolOrDefault(r, request.QueryParamIgnoreWhitespace, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } output, err := repoCtrl.DiffStats( ctx, session, repoRef, path, ignoreWhitespace, ) if uErr := gittypes.AsUnrelatedHistoriesError(err); uErr != nil { render.JSON(w, http.StatusOK, &usererror.Error{ Message: uErr.Error(), Values: uErr.Map(), }) return } if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, output) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rule_delete.go
app/api/handler/repo/rule_delete.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleRuleDelete deletes a protection rule of a repository. func HandleRuleDelete(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ruleIdentifier, err := request.GetRuleIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = repoCtrl.RuleDelete(ctx, session, repoRef, ruleIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/delete_branch.go
app/api/handler/repo/delete_branch.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleDeleteBranch deletes a given branch. func HandleDeleteBranch(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } branchName, err := request.GetRemainderFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } bypassRules, err := request.ParseBypassRulesFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } dryRunRules, err := request.ParseDryRunRulesFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } out, violations, err := repoCtrl.DeleteBranch(ctx, session, repoRef, branchName, bypassRules, dryRunRules) if err != nil { render.TranslatedUserError(ctx, w, err) return } if violations != nil { render.Violations(w, violations) return } render.JSON(w, http.StatusOK, out) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_commit_tags.go
app/api/handler/repo/list_commit_tags.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListCommitTags(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } includeCommit, err := request.GetIncludeCommitFromQueryOrDefault(r, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseTagFilter(r) tags, err := repoCtrl.ListCommitTags(ctx, session, repoRef, includeCommit, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } // TODO: get last page indicator explicitly - current check is wrong in case len % pageSize == 0 isLastPage := len(tags) < filter.Size render.PaginationNoTotal(r, w, filter.Page, filter.Size, isLastPage) render.JSON(w, http.StatusOK, tags) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_paths.go
app/api/handler/repo/list_paths.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListPaths(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") includeDirectories, err := request.GetIncludeDirectoriesFromQueryOrDefault(r, false) if err != nil { render.TranslatedUserError(ctx, w, err) return } out, err := repoCtrl.ListPaths(ctx, session, repoRef, gitRef, includeDirectories) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, out) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/find_redirect.go
app/api/handler/repo/find_redirect.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 repo import ( "net/http" "strconv" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/url" ) // HandleGitRedirect redirects from the vanilla git clone URL to the repo UI page. func HandleGitRedirect(urlProvider url.Provider) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } // Explicitly return error in case the user is trying to use the repoID for redirect. if _, err := strconv.ParseInt(repoRef, 10, 64); err == nil { render.BadRequestf(ctx, w, "Endpoint only supports repo path.") return } // Always use the raw, user-provided path to generate the redirect URL. // NOTE: // Technically, we could find the repo first and use repo.Path. // However, the auth cookie isn't available in case of custom git domains, and thus the auth would fail. repoURL := urlProvider.GenerateUIRepoURL(ctx, repoRef) http.Redirect( w, r, repoURL, http.StatusMovedPermanently, ) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/merge_check.go
app/api/handler/repo/merge_check.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleMergeCheck checks if two branches are mergeable. func HandleMergeCheck(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } path := request.GetOptionalRemainderFromPath(r) output, err := repoCtrl.MergeCheck(ctx, session, repoRef, path) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, output) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/list_service_accounts.go
app/api/handler/repo/list_service_accounts.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Writes json-encoded service account information to the http response body. */ func HandleListServiceAccounts(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParsePrincipalFilter(r) inherited, err := request.ParseInheritedFromQuery(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } serviceAccountInfos, count, err := repoCtrl.ListServiceAccounts( ctx, session, repoRef, inherited, filter, ) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(count)) render.JSON(w, http.StatusOK, serviceAccountInfos) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/content_paths_details.go
app/api/handler/repo/content_paths_details.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandlePathsDetails handles get file or directory details HTTP API. func HandlePathsDetails(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") var in repo.PathsDetailsInput err = json.NewDecoder(r.Body).Decode(&in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } resp, err := repoCtrl.PathsDetails(ctx, session, repoRef, gitRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, resp) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/update_public_access.go
app/api/handler/repo/update_public_access.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleUpdatePublicAccess(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.UpdatePublicAccessInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } res, err := repoCtrl.UpdatePublicAccess(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, res) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/label_define.go
app/api/handler/repo/label_define.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleDefineLabel(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.DefineLabelInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := repoCtrl.DefineLabel(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/create_fork.go
app/api/handler/repo/create_fork.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleCreateFork(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.CreateForkInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } output, err := repoCtrl.CreateFork(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, output) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/raw.go
app/api/handler/repo/raw.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 repo import ( "bytes" "fmt" "io" "net/http" "regexp" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" "github.com/rs/zerolog/log" ) // HandleRaw returns the raw content of a file. func HandleRaw(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } gitRef := request.GetGitRefFromQueryOrDefault(r, "") path := request.GetOptionalRemainderFromPath(r) resp, err := repoCtrl.Raw(ctx, session, repoRef, gitRef, path) if err != nil { render.TranslatedUserError(ctx, w, err) return } defer func() { if err := resp.Data.Close(); err != nil { log.Ctx(ctx).Warn().Err(err).Msgf("failed to close blob content reader.") } }() ifNoneMatch, ok := request.GetIfNoneMatchFromHeader(r) if ok && ifNoneMatch == resp.SHA.String() { w.WriteHeader(http.StatusNotModified) return } w.Header().Add("Content-Length", fmt.Sprint(resp.Size)) w.Header().Add(request.HeaderETag, resp.SHA.String()) // http package hasnt implemented svg mime type detection // https://github.com/golang/go/blob/master/src/net/http/sniff.go#L66 if resp.Size > 0 { buf := make([]byte, 512) // 512 bytes is standard for MIME detection n, err := io.ReadFull(resp.Data, buf) if err == nil || err == io.EOF || err == io.ErrUnexpectedEOF { contentType := detectContentType(buf[:n]) w.Header().Set("Content-Type", contentType) resp.Data = &types.MultiReadCloser{ Reader: io.MultiReader(bytes.NewReader(buf[:n]), resp.Data), CloseFunc: resp.Data.Close, } } } render.Reader(ctx, w, http.StatusOK, resp.Data) } } // xmlPrefixRegex is used to detect XML declarations in a case-insensitive way. var xmlPrefixRegex = regexp.MustCompile(`(?i)^<\?xml`) // svgPrefixRegex is used to detect SVG tag openers in a case-insensitive way. var svgPrefixRegex = regexp.MustCompile(`(?i)^<svg`) // svgTagRegex is used to detect SVG tags anywhere in the content. var svgTagRegex = regexp.MustCompile(`(?i)<svg`) // detectContentType enhances Go's standard http.DetectContentType with SVG support // following the WHATWG MIME Sniffing Standard https://mimesniff.spec.whatwg.org/ func detectContentType(data []byte) string { if len(data) > 5 { if xmlPrefixRegex.Match(data) || svgPrefixRegex.Match(data) { if svgTagRegex.Match(data) { return "image/svg+xml" } } } return http.DetectContentType(data) }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/import_progress.go
app/api/handler/repo/import_progress.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleImportProgress(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } progress, err := repoCtrl.ImportProgress(ctx, session, repoRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, progress) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/rule_update.go
app/api/handler/repo/rule_update.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/services/rules" ) // HandleRuleUpdate updates a protection rule of a repository. func HandleRuleUpdate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ruleIdentifier, err := request.GetRuleIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(rules.UpdateInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } rule, err := repoCtrl.RuleUpdate(ctx, session, repoRef, ruleIdentifier, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, rule) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/update.go
app/api/handler/repo/update.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Updates an existing repository. */ func HandleUpdate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(repo.UpdateInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } repo, err := repoCtrl.Update(ctx, session, repoRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/import.go
app/api/handler/repo/import.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 repo import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleImport(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(repo.ImportInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } repo, err := repoCtrl.Import(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, repo) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/git_service_pack.go
app/api/handler/repo/git_service_pack.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 repo import ( "compress/gzip" "fmt" "net/http" apiauth "github.com/harness/gitness/app/api/auth" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/url" "github.com/harness/gitness/errors" "github.com/harness/gitness/git/api" "github.com/harness/gitness/types/enum" "github.com/rs/zerolog/log" ) // HandleGitServicePack handles the service pack part of git's smart http protocol (receive-/upload-pack). func HandleGitServicePack( service enum.GitServiceType, repoCtrl *repo.Controller, urlProvider url.Provider, ) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { pktError(ctx, w, err) return } contentEncoding := request.GetContentEncodingFromHeadersOrDefault(r, "") gitProtocol := request.GetGitProtocolFromHeadersOrDefault(r, "") // Handle GZIP. dataReader := r.Body if contentEncoding == "gzip" { gzipReader, err := gzip.NewReader(dataReader) if err != nil { pktError(ctx, w, fmt.Errorf("failed to create new gzip reader: %w", err)) return } defer func() { if cErr := gzipReader.Close(); cErr != nil { log.Ctx(ctx).Warn().Err(cErr).Msg("failed to close the gzip reader") } }() dataReader = gzipReader } // Clients MUST NOT reuse or revalidate a cached response. // Servers MUST include sufficient Cache-Control headers to prevent caching of the response. // https://git-scm.com/docs/http-protocol render.NoCache(w) w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-result", service)) err = repoCtrl.GitServicePack(ctx, session, repoRef, api.ServicePackOptions{ Service: service, StatelessRPC: true, Stdout: w, Stdin: dataReader, Protocol: gitProtocol, }) if errors.Is(err, apiauth.ErrUnauthorized) { render.GitBasicAuth(ctx, w, urlProvider) return } if err != nil { pktError(ctx, w, err) return } } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/repo/codeowner_validate.go
app/api/handler/repo/codeowner_validate.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 repo import ( "net/http" "github.com/harness/gitness/app/api/controller/repo" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleCodeOwnersValidate(repoCtrl *repo.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ref := request.GetGitRefFromQueryOrDefault(r, "") violations, err := repoCtrl.CodeOwnersValidate(ctx, session, repoRef, ref) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, violations) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/infraprovider/create.go
app/api/handler/infraprovider/create.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 infraprovider import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/infraprovider" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreateConfig returns a http.HandlerFunc that creates a new InfraProviderConfig with its resources. func HandleCreateConfig(infraProviderCtrl *infraprovider.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(infraprovider.ConfigInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } infraProviderConfig, err := infraProviderCtrl.CreateConfig(ctx, *session, *in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, infraProviderConfig) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/infraprovider/delete.go
app/api/handler/infraprovider/delete.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 infraprovider import ( "net/http" "github.com/harness/gitness/app/api/controller/infraprovider" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/paths" ) func HandleDelete(infraProviderCtrl *infraprovider.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) infraProviderRefFromPath, err := request.GetInfraProviderRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } spaceRef, infraProviderIdentifier, err := paths.DisectLeaf(infraProviderRefFromPath) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = infraProviderCtrl.DeleteConfig(ctx, session, spaceRef, infraProviderIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/infraprovider/find.go
app/api/handler/infraprovider/find.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 infraprovider import ( "net/http" "github.com/harness/gitness/app/api/controller/infraprovider" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/app/paths" ) func HandleFind(infraProviderCtrl *infraprovider.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) infraProviderRefFromPath, err := request.GetInfraProviderRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } spaceRef, infraProviderIdentifier, err := paths.DisectLeaf(infraProviderRefFromPath) if err != nil { render.TranslatedUserError(ctx, w, err) return } infraProviderConfig, err := infraProviderCtrl.Find(ctx, session, spaceRef, infraProviderIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, infraProviderConfig) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/create.go
app/api/handler/users/create.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 users import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/user" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreate returns an http.HandlerFunc that processes an http.Request // to create the named user account in the system. func HandleCreate(userCtrl *user.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(user.CreateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } usr, err := userCtrl.Create(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, usr) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/delete.go
app/api/handler/users/delete.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 users import ( "net/http" "github.com/harness/gitness/app/api/controller/user" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleDelete returns an http.HandlerFunc that processes an http.Request // to delete the named user account from the system. func HandleDelete(userCtrl *user.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) userUID, err := request.GetUserUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = userCtrl.Delete(ctx, session, userUID) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/create_test.go
app/api/handler/users/create_test.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 users
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/delete_test.go
app/api/handler/users/delete_test.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 users
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/find_test.go
app/api/handler/users/find_test.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 users
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/update_test.go
app/api/handler/users/update_test.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 users
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/find.go
app/api/handler/users/find.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 users import ( "net/http" "github.com/harness/gitness/app/api/controller/user" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleFind returns an http.HandlerFunc that writes json-encoded // user account information to the response body. func HandleFind(userCtrl *user.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) userUID, err := request.GetUserUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } usr, err := userCtrl.Find(ctx, session, userUID) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, usr) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/list_test.go
app/api/handler/users/list_test.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 users
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/list.go
app/api/handler/users/list.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 users import ( "net/http" "github.com/harness/gitness/app/api/controller/user" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types/enum" ) // HandleList returns an http.HandlerFunc that writes a json-encoded // list of all registered system users to the response body. func HandleList(userCtrl *user.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) filter := request.ParseUserFilter(r) if filter.Order == enum.OrderDefault { filter.Order = enum.OrderAsc } list, totalCount, err := userCtrl.List(ctx, session, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(totalCount)) render.JSON(w, http.StatusOK, list) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/users/update.go
app/api/handler/users/update.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 users import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/user" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleUpdate returns a http.HandlerFunc that processes an http.Request // to update a user account. func HandleUpdate(userCtrl *user.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) userUID, err := request.GetUserUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(user.UpdateInput) if err = json.NewDecoder(r.Body).Decode(in); err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } usr, err := userCtrl.Update(ctx, session, userUID, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, usr) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/create.go
app/api/handler/serviceaccount/create.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 serviceaccount import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Creates a new service account and writes json-encoded service account to the http response body. */ func HandleCreate(saCtrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(serviceaccount.CreateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } sa, err := saCtrl.Create(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, sa) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/delete.go
app/api/handler/serviceaccount/delete.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 serviceaccount import ( "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) /* * Deletes a service account. */ func HandleDelete(saCrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) saUID, err := request.GetServiceAccountUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = saCrl.Delete(ctx, session, saUID) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/find.go
app/api/handler/serviceaccount/find.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 serviceaccount import ( "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleFind returns an http.HandlerFunc that writes json-encoded // service account information to the http response body. func HandleFind(saCrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) saUID, err := request.GetServiceAccountUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } sa, err := saCrl.Find(ctx, session, saUID) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, sa) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/create_token.go
app/api/handler/serviceaccount/create_token.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 serviceaccount import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreateToken returns an http.HandlerFunc that creates a new SAT and // writes a json-encoded TokenResponse to the http.Response body. func HandleCreateToken(saCrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) saUID, err := request.GetServiceAccountUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(serviceaccount.CreateTokenInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } tokenResponse, err := saCrl.CreateToken(ctx, session, saUID, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, tokenResponse) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/delete_token.go
app/api/handler/serviceaccount/delete_token.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 serviceaccount import ( "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleDeleteToken returns an http.HandlerFunc that // deletes a SAT token of a service account. func HandleDeleteToken(saCrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) saUID, err := request.GetServiceAccountUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } tokentokenIdentifier, err := request.GetTokenIdentifierFromPath(r) if err != nil { render.BadRequest(ctx, w) return } err = saCrl.DeleteToken(ctx, session, saUID, tokentokenIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/serviceaccount/list_tokens.go
app/api/handler/serviceaccount/list_tokens.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 serviceaccount import ( "net/http" "github.com/harness/gitness/app/api/controller/serviceaccount" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleListTokens returns an http.HandlerFunc that // writes a json-encoded list of Tokens to the http.Response body. func HandleListTokens(saCrl *serviceaccount.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) saUID, err := request.GetServiceAccountUIDFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } res, err := saCrl.ListTokens(ctx, session, saUID) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, res) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/trigger/create.go
app/api/handler/trigger/create.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 trigger import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/trigger" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleCreate(triggerCtrl *trigger.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) pipelineIdentifier, err := request.GetPipelineIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(trigger.CreateInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } trigger, err := triggerCtrl.Create(ctx, session, repoRef, pipelineIdentifier, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, trigger) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/trigger/delete.go
app/api/handler/trigger/delete.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 trigger import ( "net/http" "github.com/harness/gitness/app/api/controller/trigger" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleDelete(triggerCtrl *trigger.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) pipelineIdentifier, err := request.GetPipelineIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } triggerIdentifier, err := request.GetTriggerIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = triggerCtrl.Delete(ctx, session, repoRef, pipelineIdentifier, triggerIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/trigger/find.go
app/api/handler/trigger/find.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 trigger import ( "net/http" "github.com/harness/gitness/app/api/controller/trigger" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleFind(triggerCtrl *trigger.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) pipelineIdentifier, err := request.GetPipelineIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } triggerIdentifier, err := request.GetTriggerIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } trigger, err := triggerCtrl.Find(ctx, session, repoRef, pipelineIdentifier, triggerIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, trigger) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/trigger/list.go
app/api/handler/trigger/list.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 trigger import ( "net/http" "github.com/harness/gitness/app/api/controller/trigger" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleList(triggerCtrl *trigger.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) pipelineIdentifier, err := request.GetPipelineIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseListQueryFilterFromRequest(r) repos, totalCount, err := triggerCtrl.List(ctx, session, repoRef, pipelineIdentifier, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(totalCount)) render.JSON(w, http.StatusOK, repos) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/trigger/update.go
app/api/handler/trigger/update.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 trigger import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/trigger" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleUpdate(triggerCtrl *trigger.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(trigger.UpdateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } pipelineIdentifier, err := request.GetPipelineIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } repoRef, err := request.GetRepoRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } triggerIdentifier, err := request.GetTriggerIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } pipeline, err := triggerCtrl.Update(ctx, session, repoRef, pipelineIdentifier, triggerIdentifier, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, pipeline) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/label_value_define.go
app/api/handler/space/label_value_define.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleDefineLabelValue(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.DefineValueInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } label, err := spaceCtrl.DefineLabelValue(ctx, session, spaceRef, key, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/import_repositories.go
app/api/handler/space/import_repositories.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleImportRepositories(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(space.ImportRepositoriesInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid Request Body: %s.", err) return } repos, err := spaceCtrl.ImportRepositories(ctx, session, spaceRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, repos) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/label_value_delete.go
app/api/handler/space/label_value_delete.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleDeleteLabelValue(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } value, err := request.GetLabelValueFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = spaceCtrl.DeleteLabelValue(ctx, session, spaceRef, key, value) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/create.go
app/api/handler/space/create.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleCreate returns an http.HandlerFunc that creates a new space. func HandleCreate(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) in := new(space.CreateInput) err := json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } space, err := spaceCtrl.Create(ctx, session, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusCreated, space) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/label_update.go
app/api/handler/space/label_update.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleUpdateLabel(labelCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.UpdateLabelInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := labelCtrl.UpdateLabel(ctx, session, spaceRef, key, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/list_connectors.go
app/api/handler/space/list_connectors.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListConnectors(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseListQueryFilterFromRequest(r) ret, totalCount, err := spaceCtrl.ListConnectors(ctx, session, spaceRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(totalCount)) render.JSON(w, http.StatusOK, ret) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/list_pipelines.go
app/api/handler/space/list_pipelines.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListPipelines(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter, err := request.ParseListPipelinesFilterFromRequest(r) if err != nil { render.TranslatedUserError(ctx, w, err) } pipelines, totalCount, err := spaceCtrl.ListPipelines(ctx, session, spaceRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(totalCount)) render.JSON(w, http.StatusOK, pipelines) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/rule_find.go
app/api/handler/space/rule_find.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleRuleFind finds a protection rule of a space. func HandleRuleFind(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } ruleIdentifier, err := request.GetRuleIdentifierFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } rule, err := spaceCtrl.RuleFind(ctx, session, spaceRef, ruleIdentifier) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, rule) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/label_value_update.go
app/api/handler/space/label_value_update.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" "github.com/harness/gitness/types" ) func HandleUpdateLabelValue(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } value, err := request.GetLabelValueFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(types.UpdateValueInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } label, err := spaceCtrl.UpdateLabelValue( ctx, session, spaceRef, key, value, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, label) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/restore.go
app/api/handler/space/restore.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleRestore handles the restore of soft deleted space HTTP API. func HandleRestore(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } deletedAt, err := request.GetDeletedAtFromQueryOrError(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(space.RestoreInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } space, err := spaceCtrl.Restore(ctx, session, spaceRef, deletedAt, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, space) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/move.go
app/api/handler/space/move.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 space import ( "encoding/json" "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleMove moves an existing space. func HandleMove(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } in := new(space.MoveInput) err = json.NewDecoder(r.Body).Decode(in) if err != nil { render.BadRequestf(ctx, w, "Invalid request body: %s.", err) return } res, err := spaceCtrl.Move(ctx, session, spaceRef, in) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, res) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/label_value_list.go
app/api/handler/space/label_value_list.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) func HandleListLabelValues(labelValueCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } key, err := request.GetLabelKeyFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter := request.ParseListQueryFilterFromRequest(r) labels, count, err := labelValueCtrl.ListLabelValues( ctx, session, spaceRef, key, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(count)) render.JSON(w, http.StatusOK, labels) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/soft_delete.go
app/api/handler/space/soft_delete.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleSoftDelete handles the soft delete space HTTP API. func HandleSoftDelete(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } res, err := spaceCtrl.SoftDelete(ctx, session, spaceRef) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.JSON(w, http.StatusOK, res) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/purge.go
app/api/handler/space/purge.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandlePurge handles the purge delete space HTTP API. func HandlePurge(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } deletedAt, err := request.GetDeletedAtFromQueryOrError(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } err = spaceCtrl.Purge(ctx, session, spaceRef, deletedAt) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.DeleteSuccessful(w) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false
harness/harness
https://github.com/harness/harness/blob/a087eef054a8fc8317f4fda02d3c7ee599b71fec/app/api/handler/space/list_repos.go
app/api/handler/space/list_repos.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 space import ( "net/http" "github.com/harness/gitness/app/api/controller/space" "github.com/harness/gitness/app/api/render" "github.com/harness/gitness/app/api/request" ) // HandleListRepos writes json-encoded list of repos in the request body. func HandleListRepos(spaceCtrl *space.Controller) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { ctx := r.Context() session, _ := request.AuthSessionFrom(ctx) spaceRef, err := request.GetSpaceRefFromPath(r) if err != nil { render.TranslatedUserError(ctx, w, err) return } filter, err := request.ParseRepoFilter(r, session) if err != nil { render.TranslatedUserError(ctx, w, err) return } repos, count, err := spaceCtrl.ListRepositories( ctx, session, spaceRef, filter) if err != nil { render.TranslatedUserError(ctx, w, err) return } render.Pagination(r, w, filter.Page, filter.Size, int(count)) render.JSON(w, http.StatusOK, repos) } }
go
Apache-2.0
a087eef054a8fc8317f4fda02d3c7ee599b71fec
2026-01-07T08:36:08.091982Z
false