aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/controllers/SkypeEndpoint.java
blob: 6b16b3bd193a97e8320d2ebc45ca8b77a5cc77b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.juick.api.controllers;

import org.apache.commons.io.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
import java.nio.charset.StandardCharsets;

/**
 * Created by vitalyster on 18.07.2016.
 */
@RestController
public class SkypeEndpoint {
    private static final Logger logger = LoggerFactory.getLogger(SkypeEndpoint.class);
    @RequestMapping(value = "/skypebotendpoint", method = RequestMethod.POST)
    @ResponseStatus(value = HttpStatus.OK)
    public void doPost(HttpServletRequest req) throws IOException {
        String data = IOUtils.toString(req.getInputStream(), StandardCharsets.UTF_8);
        logger.info("got data: {}", data);
    }
}