// PUT: /work/{id} -> status update func (cr *WorkController) Update(id string, cx *goweb.Context) { // Log Request and check for Auth LogRequest(cx.Request) // Gather query params query := &Query{Li: cx.Request.URL.Query()} if query.Has("status") && query.Has("client") { //notify execution result: "done" or "fail" notice := core.Notice{WorkId: id, Status: query.Value("status"), ClientId: query.Value("client"), Notes: ""} if query.Has("report") { // if "report" is specified in query, parse performance statistics or errlog if _, files, err := ParseMultipartForm(cx.Request); err == nil { if _, ok := files["perf"]; ok { core.QMgr.FinalizeWorkPerf(id, files["perf"].Path) } if _, ok := files["notes"]; ok { if notes, err := ioutil.ReadFile(files["notes"].Path); err == nil { notice.Notes = string(notes) } } } } core.QMgr.NotifyWorkStatus(notice) } cx.RespondWithData("ok") return }
// PUT: /work/{id} -> status update func (cr *WorkController) Update(id string, cx *goweb.Context) { LogRequest(cx.Request) // Gather query params query := &Query{Li: cx.Request.URL.Query()} if !query.Has("client") { cx.RespondWithErrorMessage("This request type requires the client=clientid parameter.", http.StatusBadRequest) return } // Check auth cg, err := request.AuthenticateClientGroup(cx.Request) if err != nil { if err.Error() == e.NoAuth || err.Error() == e.UnAuth || err.Error() == e.InvalidAuth { if conf.CLIENT_AUTH_REQ == true { cx.RespondWithError(http.StatusUnauthorized) return } } else { logger.Error("Err@AuthenticateClientGroup: " + err.Error()) cx.RespondWithError(http.StatusInternalServerError) return } } // check that clientgroup auth token matches group of client clientid := query.Value("client") client, ok := core.QMgr.GetClient(clientid) if !ok { cx.RespondWithErrorMessage(e.ClientNotFound, http.StatusBadRequest) return } if cg != nil && client.Group != cg.Name { cx.RespondWithErrorMessage("Clientgroup name in token does not match that in the client configuration.", http.StatusBadRequest) return } if query.Has("status") && query.Has("client") { //notify execution result: "done" or "fail" notice := core.Notice{WorkId: id, Status: query.Value("status"), ClientId: query.Value("client"), Notes: ""} if query.Has("computetime") { if comptime, err := strconv.Atoi(query.Value("computetime")); err == nil { notice.ComputeTime = comptime } } if query.Has("report") { // if "report" is specified in query, parse performance statistics or errlog if _, files, err := ParseMultipartForm(cx.Request); err == nil { if _, ok := files["perf"]; ok { core.QMgr.FinalizeWorkPerf(id, files["perf"].Path) } if _, ok := files["notes"]; ok { if notes, err := ioutil.ReadFile(files["notes"].Path); err == nil { notice.Notes = string(notes) } } for _, log := range conf.WORKUNIT_LOGS { if _, ok := files[log]; ok { core.QMgr.SaveStdLog(id, log, files[log].Path) } } } } core.QMgr.NotifyWorkStatus(notice) } cx.RespondWithData("ok") return }