Files
gitlab.nvim/cmd/description.go
Harrison (Harry) Cramer 844e093294 Add/Remove Reviewers and Assignees (#38)
Adds APIs for the ability to add or remove reviewers and assignees to a merge request. The eligible reviewers and assignees are pulled from the current members of a project.
2023-08-16 21:42:53 -04:00

69 lines
1.6 KiB
Go

package main
import (
"encoding/json"
"errors"
"io"
"net/http"
"github.com/xanzy/go-gitlab"
)
type DescriptionUpdateRequest struct {
Description string `json:"description"`
}
type DescriptionUpdateResponse struct {
SuccessResponse
MergeRequest *gitlab.MergeRequest `json:"mr"`
}
func DescriptionHandler(w http.ResponseWriter, r *http.Request) {
c := r.Context().Value("client").(Client)
w.Header().Set("Content-Type", "application/json")
if r.Method != http.MethodPut {
c.handleError(w, errors.New("Invalid request type"), "That request type is not allowed", http.StatusMethodNotAllowed)
return
}
body, err := io.ReadAll(r.Body)
if err != nil {
c.handleError(w, err, "Could not read request body", http.StatusBadRequest)
return
}
defer r.Body.Close()
var DescriptionUpdateRequest DescriptionUpdateRequest
err = json.Unmarshal(body, &DescriptionUpdateRequest)
if err != nil {
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
return
}
mr, res, err := c.git.MergeRequests.UpdateMergeRequest(c.projectId, c.mergeId, &gitlab.UpdateMergeRequestOptions{Description: &DescriptionUpdateRequest.Description})
if err != nil {
c.handleError(w, err, "Could not edit merge request description", http.StatusBadRequest)
return
}
if res.StatusCode != http.StatusOK {
c.handleError(w, err, "Could not edit merge request description", http.StatusBadRequest)
return
}
w.WriteHeader(http.StatusOK)
response := DescriptionUpdateResponse{
SuccessResponse: SuccessResponse{
Message: "Description updated",
Status: http.StatusOK,
},
MergeRequest: mr,
}
json.NewEncoder(w).Encode(response)
}