From b75258ee5ed84510579050b5dba1edb904a09dfa Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 12 Nov 2016 21:39:19 +0300 Subject: initial babbler-based xmpp bot --- .../components/controllers/StatusController.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 juick-xmpp-bot/src/main/java/com/juick/components/controllers/StatusController.java (limited to 'juick-xmpp-bot/src/main/java/com/juick/components/controllers/StatusController.java') diff --git a/juick-xmpp-bot/src/main/java/com/juick/components/controllers/StatusController.java b/juick-xmpp-bot/src/main/java/com/juick/components/controllers/StatusController.java new file mode 100644 index 00000000..d30a906d --- /dev/null +++ b/juick-xmpp-bot/src/main/java/com/juick/components/controllers/StatusController.java @@ -0,0 +1,30 @@ +package com.juick.components.controllers; + +import com.juick.components.XMPPBot; +import com.juick.server.helpers.Status; +import org.springframework.http.MediaType; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; + +import javax.inject.Inject; + +/** + * Created by vitalyster on 24.10.2016. + */ +@Controller +@ResponseBody +public class StatusController { + @Inject + XMPPBot xmpp; + + @RequestMapping(method = RequestMethod.GET, value = "/", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) + public Status status() { + if (xmpp != null) { + String status = "OK"; + return new Status(status); + } + return new Status("Error"); + } +} -- cgit v1.2.3