blob: 6a7d4f737d6a696678411e1f831b63ec8c0804af [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.s2graph.rest.play.controllers
import org.apache.kafka.clients.producer.ProducerRecord
import org.apache.s2graph.core.ExceptionHandler
import org.apache.s2graph.rest.play.config.Config
import play.api.mvc._
import scala.concurrent.Future
object PublishController extends Controller {
import ApplicationController._
import ExceptionHandler._
import play.api.libs.concurrent.Execution.Implicits._
/**
* never check validation on string. just redirect strings to kafka.
*/
val serviceNotExistException = new RuntimeException(s"service is not created in s2graph. create service first.")
private val walLogHandler: ExceptionHandler = org.apache.s2graph.rest.play.Global.wallLogHandler
// private def toService(topic: String): String = {
// Service.findByName(topic).map(service => s"${service.serviceName}-${Config.PHASE}").getOrElse(throw serviceNotExistException)
// }
def publishOnly(topic: String) = withHeaderAsync(parse.text) { request =>
if (!Config.IS_WRITE_SERVER) Future.successful(UNAUTHORIZED)
// val kafkaTopic = toService(topic)
val strs = request.body.split("\n")
strs.foreach(str => {
val keyedMessage = new ProducerRecord[Key, Val](Config.KAFKA_LOG_TOPIC, str)
// val keyedMessage = new ProducerRecord[Key, Val](kafkaTopic, s"$str")
// logger.debug(s"$kafkaTopic, $str")
walLogHandler.enqueue(KafkaMessage(keyedMessage))
})
Future.successful(
Ok("publish success.\n").withHeaders(CONNECTION -> "Keep-Alive", "Keep-Alive" -> "timeout=10, max=10")
)
// try {
//
// } catch {
// case e: Exception => Future.successful(BadRequest(e.getMessage))
// }
}
def publish(topic: String) = publishOnly(topic)
}