aboutsummaryrefslogblamecommitdiff
path: root/core-init/src/main/scala/xyz/driver/core/init/Platform.scala
blob: 2daa2c8d3bba15cb91764ab0dc0be9a4478e4695 (plain) (tree)
1
2
3
4
5
6
7
8
                       

            



                                                       
                     




                                                                                      
                                                  

                                            
                                  













                                                                                            
package xyz.driver.core
package init

import java.nio.file.{Files, Path, Paths}

import com.google.auth.oauth2.ServiceAccountCredentials

sealed trait Platform
object Platform {
  case class GoogleCloud(keyfile: Path, namespace: String) extends Platform {
    def credentials: ServiceAccountCredentials = ServiceAccountCredentials.fromStream(
      Files.newInputStream(keyfile)
    )
    def project: String = credentials.getProjectId
  }
  // case object AliCloud   extends Platform
  case object Dev extends Platform

  lazy val fromEnv: Platform = {
    def isGoogle = sys.env.get("GOOGLE_APPLICATION_CREDENTIALS").map { value =>
      val keyfile = Paths.get(value)
      require(Files.isReadable(keyfile), s"Google credentials file $value is not readable.")
      val namespace = sys.env.getOrElse("SERVICE_NAMESPACE", sys.error("Namespace not set"))
      GoogleCloud(keyfile, namespace)
    }
    isGoogle.getOrElse(Dev)
  }

  def current: Platform = fromEnv

}