aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala b/src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala
deleted file mode 100644
index 192512f..0000000
--- a/src/main/scala/xyz/driver/pdsuidomain/storage/MedicalRecordDocumentStorage.scala
+++ /dev/null
@@ -1,26 +0,0 @@
-package xyz.driver.pdsuidomain.storage
-
-import com.google.cloud.storage.StorageOptions
-import com.typesafe.scalalogging.StrictLogging
-import xyz.driver.pdsuidomain.entities.MedicalRecord.PdfSource
-
-import scala.concurrent.{ExecutionContext, Future, blocking}
-
-object MedicalRecordDocumentStorage extends StrictLogging {
- private val storage = StorageOptions.getDefaultInstance.getService
-
- def fetchPdf(bucket: String, path: String)(implicit ec: ExecutionContext): Future[PdfSource] = {
- logger.trace(s"fetchPdf(bucket=$bucket, path=$path)")
- Future {
- blocking {
- Option(storage.get(bucket, path)) match {
- case Some(blob) =>
- PdfSource.Channel(() => blob.reader())
- case None =>
- logger.error(s"Failed to find the pdf file $path in bucket: $bucket")
- PdfSource.Empty
- }
- }
- }
- }
-}