the-algorithm/product-mixer/component-library/src/main/scala/com/twitter/product_mixer/component_library/gate/NonEmptyAdsQueryStringGate.scala
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

17 lines
758 B
Scala

package com.twitter.product_mixer.component_library.gate
import com.twitter.product_mixer.component_library.model.query.ads.AdsQuery
import com.twitter.product_mixer.core.functional_component.gate.Gate
import com.twitter.product_mixer.core.model.common.identifier.GateIdentifier
import com.twitter.product_mixer.core.pipeline.PipelineQuery
import com.twitter.stitch.Stitch
object NonEmptyAdsQueryStringGate extends Gate[PipelineQuery with AdsQuery] {
override val identifier: GateIdentifier = GateIdentifier("NonEmptyAdsQueryString")
override def shouldContinue(query: PipelineQuery with AdsQuery): Stitch[Boolean] = {
val queryString = query.searchRequestContext.flatMap(_.queryString)
Stitch.value(queryString.exists(_.trim.nonEmpty))
}
}