UI initial implementation.
[validation.git] / ui / src / main / java / org / akraino / validation / ui / controller / JenkinsJobNotificationController.java
1 /*
2  * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.akraino.validation.ui.controller;
17
18 import org.akraino.validation.ui.data.JnksJobNotify;
19 import org.akraino.validation.ui.service.JenkinsJobNotificationService;
20 import org.apache.log4j.Logger;
21 import org.springframework.beans.factory.annotation.Autowired;
22 import org.springframework.http.HttpStatus;
23 import org.springframework.http.ResponseEntity;
24 import org.springframework.web.bind.annotation.PostMapping;
25 import org.springframework.web.bind.annotation.RequestBody;
26 import org.springframework.web.bind.annotation.RequestMapping;
27 import org.springframework.web.bind.annotation.RestController;
28
29 @RestController
30 @RequestMapping("/api/jenkinsJobNotification")
31 public class JenkinsJobNotificationController {
32
33     @Autowired
34     JenkinsJobNotificationService service;
35
36     private static final Logger LOGGER = Logger.getLogger(JenkinsJobNotificationController.class);
37
38     @PostMapping("/")
39     public ResponseEntity<Void> handle(@RequestBody JnksJobNotify jnksJobNotify) {
40         try {
41             service.handle(jnksJobNotify);
42             return new ResponseEntity<Void>(HttpStatus.OK);
43         } catch (Exception e) {
44             LOGGER.error(e);
45         }
46         return new ResponseEntity<Void>(HttpStatus.INTERNAL_SERVER_ERROR);
47     }
48
49 }