blob: 3846c337b805c504cb56d528724d8a1386ce3496 [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.gearpump.services
import scala.concurrent.ExecutionContext
import akka.actor.ActorSystem
import akka.http.scaladsl.model.headers.CacheDirectives.{`max-age`, `no-cache`}
import akka.http.scaladsl.model.headers.`Cache-Control`
import akka.http.scaladsl.server.Directives._
import akka.http.scaladsl.server.Route
import akka.stream.Materializer
import org.apache.gearpump.util.{Constants, LogUtil}
// NOTE: This cannot be removed!!!
import org.apache.gearpump.services.util.UpickleUtil._
trait RouteService {
def route: Route
}
/**
* Wraps the cache behavior, and some common utils.
*/
trait BasicService extends RouteService {
implicit def system: ActorSystem
implicit def timeout: akka.util.Timeout = Constants.FUTURE_TIMEOUT
implicit def ec: ExecutionContext = system.dispatcher
protected def doRoute(implicit mat: Materializer): Route
protected def prefix = Slash ~ "api" / s"$REST_VERSION"
protected val LOG = LogUtil.getLogger(getClass)
protected def cache = false
private val noCacheHeader = `Cache-Control`(`no-cache`, `max-age`(0L))
def route: Route = encodeResponse {
extractMaterializer { implicit mat =>
rawPathPrefix(prefix) {
if (cache) {
doRoute(mat)
} else {
respondWithHeader(noCacheHeader) {
doRoute(mat)
}
}
}
}
}
}