summaryrefslogtreecommitdiff
path: root/server/job_creator_handler.go
diff options
context:
space:
mode:
authorAlexander Mazuruk <a.mazuruk@samsung.com>2018-05-24 05:06:13 +0200
committerAlexander Mazuruk <a.mazuruk@samsung.com>2018-07-25 13:29:16 +0200
commit1827397514b6e9e4aa69f34643a2e8ba927c6aef (patch)
tree897c55813366737e308bfe8ebd1086fbecf009f1 /server/job_creator_handler.go
parenta2f2add7a22bb814fda53cdb69f40f8561f13751 (diff)
downloadweles-1827397514b6e9e4aa69f34643a2e8ba927c6aef.tar.gz
weles-1827397514b6e9e4aa69f34643a2e8ba927c6aef.tar.bz2
weles-1827397514b6e9e4aa69f34643a2e8ba927c6aef.zip
Add create job path to API
The following files were edited manually: - swagger.yml - job_id_string.go - server/configure_weles.go - server/job_creator_handler.go - server/job_creator_handler_test.go - server/managers.go - server/server_suite_test.go - server/test_sample.yml - cmd/weles-server/main.go Please note that documentation served with weles server is now preceded by the basePath specified in the swagger.yml file. To check documentation served alongside API you need to go to: http://{host:port}/api/v1/docs Change-Id: I6ae33208eea35834127e5c6ff0dda2d1e11f79cf Signed-off-by: Alexander Mazuruk <a.mazuruk@samsung.com>
Diffstat (limited to 'server/job_creator_handler.go')
-rw-r--r--server/job_creator_handler.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/server/job_creator_handler.go b/server/job_creator_handler.go
new file mode 100644
index 0000000..9d6e886
--- /dev/null
+++ b/server/job_creator_handler.go
@@ -0,0 +1,38 @@
+// Copyright (c) 2017-2018 Samsung Electronics Co., Ltd All Rights Reserved
+//
+// 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 server
+
+import (
+ "git.tizen.org/tools/weles"
+ "git.tizen.org/tools/weles/server/operations/jobs"
+ middleware "github.com/go-openapi/runtime/middleware"
+
+ "io/ioutil"
+)
+
+// JobCreator is a handler which passes yaml file with job description to jobmanager.
+func (m *Managers) JobCreator(params jobs.JobCreatorParams) middleware.Responder {
+ byteContainer, err := ioutil.ReadAll(params.Yamlfile)
+ if err != nil {
+ return jobs.NewJobCreatorUnprocessableEntity().WithPayload(&weles.ErrResponse{Message: err.Error(), Type: ""})
+ }
+
+ jobID, err := m.JM.CreateJob(byteContainer)
+ if err != nil {
+ return jobs.NewJobCreatorInternalServerError().WithPayload(&weles.ErrResponse{Message: err.Error(), Type: ""})
+ }
+
+ return jobs.NewJobCreatorCreated().WithPayload(jobID)
+}