the-algorithm/follow-recommendations-service/common/src/main/scala/com/twitter/follow_recommendations/common/candidate_sources/base/StratoFetcherSource.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

28 lines
923 B
Scala

package com.twitter.follow_recommendations.common.candidate_sources.base
import com.twitter.follow_recommendations.common.models.CandidateUser
import com.twitter.product_mixer.core.functional_component.candidate_source.CandidateSource
import com.twitter.product_mixer.core.model.common.identifier.CandidateSourceIdentifier
import com.twitter.stitch.Stitch
import com.twitter.strato.client.Fetcher
abstract class StratoFetcherSource[K, U, V](
fetcher: Fetcher[K, U, V],
view: U,
override val identifier: CandidateSourceIdentifier)
extends CandidateSource[K, CandidateUser] {
def map(user: K, v: V): Seq[CandidateUser]
override def apply(target: K): Stitch[Seq[CandidateUser]] = {
fetcher
.fetch(target, view)
.map { result =>
result.v
.map { candidates => map(target, candidates) }
.getOrElse(Nil)
.map(_.withCandidateSource(identifier))
}
}
}