Skip to content

Commit dcfba4c

Browse files
zachomediasylus
zachomedia
andcommitted
feat(endpoint): Add update notebook start / stop endpoint
Co-authored-by: William Hearn <[email protected]> Signed-off-by: zachomedia <[email protected]>
1 parent dfa205f commit dcfba4c

File tree

3 files changed

+84
-1
lines changed

3 files changed

+84
-1
lines changed

httputils.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ import (
99
// APIResponse contains the basic fields of a response from the APIs.
1010
type APIResponse struct {
1111
Success bool `json:"success"`
12-
Log string `json:"log"`
12+
Status int `json:"status"`
13+
Log string `json:"log,omitempty"`
14+
User string `json:"user"`
1315
}
1416

1517
// respond response returns a JSON response to the client.

main.go

+14
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ func main() {
157157
},
158158
},
159159
}, s.GetNamespaces)).Methods("GET")
160+
160161
router.HandleFunc("/api/namespaces/{namespace}/notebooks", s.checkAccess(authorizationv1.SubjectAccessReview{
161162
Spec: authorizationv1.SubjectAccessReviewSpec{
162163
ResourceAttributes: &authorizationv1.ResourceAttributes{
@@ -167,6 +168,7 @@ func main() {
167168
},
168169
},
169170
}, s.GetNotebooks)).Methods("GET")
171+
170172
router.HandleFunc("/api/namespaces/{namespace}/notebooks", s.checkAccess(authorizationv1.SubjectAccessReview{
171173
Spec: authorizationv1.SubjectAccessReviewSpec{
172174
ResourceAttributes: &authorizationv1.ResourceAttributes{
@@ -177,6 +179,18 @@ func main() {
177179
},
178180
},
179181
}, s.NewNotebook)).Headers("Content-Type", "application/json").Methods("POST")
182+
183+
router.HandleFunc("/api/namespaces/{namespace}/notebooks/{notebook}", s.checkAccess(authorizationv1.SubjectAccessReview{
184+
Spec: authorizationv1.SubjectAccessReviewSpec{
185+
ResourceAttributes: &authorizationv1.ResourceAttributes{
186+
Group: kubeflowv1.SchemeGroupVersion.Group,
187+
Verb: "update",
188+
Resource: "notebooks",
189+
Version: kubeflowv1.SchemeGroupVersion.Version,
190+
},
191+
},
192+
}, s.UpdateNotebook)).Methods("PATCH")
193+
180194
router.HandleFunc("/api/namespaces/{namespace}/notebooks/{notebook}", s.checkAccess(authorizationv1.SubjectAccessReview{
181195
Spec: authorizationv1.SubjectAccessReviewSpec{
182196
ResourceAttributes: &authorizationv1.ResourceAttributes{

notebooks.go

+67
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"regexp"
1212
"sort"
1313
"strings"
14+
"time"
1415

1516
kubeflowv1 "github.com/StatCan/kubeflow-controller/pkg/apis/kubeflowcontroller/v1"
1617
"github.com/andanhm/go-prettytime"
@@ -34,6 +35,9 @@ const SharedMemoryVolumePath string = "/dev/shm"
3435
// EnvKfLanguage String.
3536
const EnvKfLanguage string = "KF_LANG"
3637

38+
// StoppedAnnotation String.
39+
const StoppedAnnotation string = "stopped"
40+
3741
type volumetype string
3842

3943
const (
@@ -96,6 +100,10 @@ type notebooksresponse struct {
96100
Notebooks []notebookresponse `json:"notebooks"`
97101
}
98102

103+
type updatenotebookrequest struct {
104+
Stopped bool `json:"stopped"`
105+
}
106+
99107
//
100108
// EVENT_TYPE_NORMAL = "Normal"
101109
// EVENT_TYPE_WARNING = "Warning"
@@ -558,3 +566,62 @@ func (s *server) DeleteNotebook(w http.ResponseWriter, r *http.Request) {
558566
Success: true,
559567
})
560568
}
569+
570+
func (s *server) UpdateNotebook(w http.ResponseWriter, r *http.Request) {
571+
vars := mux.Vars(r)
572+
namespaceName := vars["namespace"]
573+
notebookName := vars["notebook"]
574+
575+
log.Printf("deleting notebook %q for %q", notebookName, namespaceName)
576+
577+
// Read the incoming notebook
578+
body, err := ioutil.ReadAll(r.Body)
579+
if err != nil {
580+
s.error(w, r, err)
581+
return
582+
}
583+
defer r.Body.Close()
584+
585+
var req updatenotebookrequest
586+
err = json.Unmarshal(body, &req)
587+
if err != nil {
588+
s.error(w, r, err)
589+
return
590+
}
591+
592+
// Read existing notebook
593+
notebook, err := s.listers.notebooks.Notebooks(namespaceName).Get(notebookName)
594+
if err != nil {
595+
s.error(w, r, err)
596+
return
597+
}
598+
599+
update := false
600+
updatedNotebook := notebook.DeepCopy()
601+
602+
// Compare start/stopped state
603+
if _, ok := notebook.Annotations[StoppedAnnotation]; ok != req.Stopped {
604+
update = true
605+
606+
if req.Stopped {
607+
// Set the stopped annotation
608+
updatedNotebook.Annotations[StoppedAnnotation] = time.Now().Format(time.RFC3339)
609+
} else {
610+
// Remove the stopped annotation
611+
delete(updatedNotebook.Annotations, StoppedAnnotation)
612+
}
613+
}
614+
615+
if update {
616+
_, err = s.clientsets.kubeflow.KubeflowV1().Notebooks(namespaceName).Update(r.Context(), updatedNotebook, v1.UpdateOptions{})
617+
if err != nil {
618+
s.error(w, r, err)
619+
return
620+
}
621+
}
622+
623+
s.respond(w, r, APIResponse{
624+
Success: true,
625+
Status: http.StatusOK,
626+
})
627+
}

0 commit comments

Comments
 (0)