2022-12-02 20:40:58 -07:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
2022-12-03 23:33:27 -07:00
|
|
|
"context"
|
2022-12-02 20:40:58 -07:00
|
|
|
"fmt"
|
|
|
|
"github.com/fastenhealth/fasten-sources/clients/factory"
|
|
|
|
sourceModels "github.com/fastenhealth/fasten-sources/clients/models"
|
|
|
|
sourcePkg "github.com/fastenhealth/fasten-sources/pkg"
|
2023-01-10 20:23:47 -07:00
|
|
|
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
|
2022-12-02 20:40:58 -07:00
|
|
|
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
|
|
|
|
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
func CreateSource(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
sourceCred := models.SourceCredential{}
|
|
|
|
if err := c.ShouldBindJSON(&sourceCred); err != nil {
|
|
|
|
logger.Errorln("An error occurred while parsing posted source credential", err)
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Infof("Parsed Create SourceCredential Credentials Payload: %v", sourceCred)
|
|
|
|
|
|
|
|
err := databaseRepo.CreateSource(c, &sourceCred)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while storing source credential", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// after creating the source, we should do a bulk import
|
2022-12-03 23:33:27 -07:00
|
|
|
summary, err := SyncSourceResources(c, logger, databaseRepo, sourceCred)
|
2022-12-02 20:40:58 -07:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "source": sourceCred, "data": summary})
|
|
|
|
}
|
|
|
|
|
|
|
|
func SourceSync(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
logger.Infof("Get SourceCredential Credentials: %v", c.Param("sourceId"))
|
|
|
|
|
|
|
|
sourceCred, err := databaseRepo.GetSource(c, c.Param("sourceId"))
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while retrieving source credential", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// after creating the source, we should do a bulk import
|
2022-12-03 23:33:27 -07:00
|
|
|
summary, err := SyncSourceResources(c, logger, databaseRepo, *sourceCred)
|
2022-12-02 20:40:58 -07:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "source": sourceCred, "data": summary})
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateManualSource(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
// single file
|
|
|
|
file, err := c.FormFile("file")
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not extract file from form"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Printf("Uploaded filename: %s", file.Filename)
|
|
|
|
|
|
|
|
// create a temporary file to store this uploaded file
|
|
|
|
bundleFile, err := ioutil.TempFile("", file.Filename)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not create temp file"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Upload the file to specific bundleFile.
|
|
|
|
err = c.SaveUploadedFile(file, bundleFile.Name())
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not save temp file"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// We cannot save the "SourceCredential" object yet, as we do not know the patientID
|
|
|
|
|
|
|
|
// create a "manual" client, which we can use to parse the
|
|
|
|
manualSourceCredential := models.SourceCredential{
|
|
|
|
SourceType: sourcePkg.SourceTypeManual,
|
|
|
|
}
|
2023-01-03 12:11:04 -07:00
|
|
|
tempSourceClient, _, err := factory.GetSourceClient(sourcePkg.GetFastenLighthouseEnv(), sourcePkg.SourceTypeManual, c, logger, manualSourceCredential)
|
2022-12-02 20:40:58 -07:00
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while initializing hub client using manual source without credentials", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
patientId, bundleType, err := tempSourceClient.ExtractPatientId(bundleFile)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while extracting patient id", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
manualSourceCredential.Patient = patientId
|
|
|
|
|
|
|
|
//store the manualSourceCredential
|
|
|
|
err = databaseRepo.CreateSource(c, &manualSourceCredential)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while creating manual source", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-03 12:11:04 -07:00
|
|
|
manualSourceClient, _, err := factory.GetSourceClient(sourcePkg.GetFastenLighthouseEnv(), sourcePkg.SourceTypeManual, c, logger, manualSourceCredential)
|
2022-12-02 20:40:58 -07:00
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while initializing hub client using manual source with credential", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
summary, err := manualSourceClient.SyncAllBundle(databaseRepo, bundleFile, bundleType)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while processing bundle", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-10 20:23:47 -07:00
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "data": summary, "source": manualSourceCredential})
|
2022-12-02 20:40:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetSource(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
sourceCred, err := databaseRepo.GetSource(c, c.Param("sourceId"))
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while retrieving source credential", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCred})
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSourceSummary(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
sourceSummary, err := databaseRepo.GetSourceSummary(c, c.Param("sourceId"))
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while retrieving source summary", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceSummary})
|
|
|
|
}
|
|
|
|
|
|
|
|
func ListSource(c *gin.Context) {
|
2023-01-10 20:23:47 -07:00
|
|
|
logger := c.MustGet(pkg.ContextKeyTypeLogger).(*logrus.Entry)
|
|
|
|
databaseRepo := c.MustGet(pkg.ContextKeyTypeDatabase).(database.DatabaseRepository)
|
2022-12-02 20:40:58 -07:00
|
|
|
|
|
|
|
sourceCreds, err := databaseRepo.GetSources(c)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while listing source credentials", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCreds})
|
|
|
|
}
|
|
|
|
|
2022-12-03 23:33:27 -07:00
|
|
|
func SyncSourceResources(c context.Context, logger *logrus.Entry, databaseRepo database.DatabaseRepository, sourceCred models.SourceCredential) (sourceModels.UpsertSummary, error) {
|
2022-12-02 20:40:58 -07:00
|
|
|
// after creating the source, we should do a bulk import
|
2023-01-03 12:11:04 -07:00
|
|
|
sourceClient, updatedSource, err := factory.GetSourceClient(sourcePkg.GetFastenLighthouseEnv(), sourceCred.SourceType, c, logger, sourceCred)
|
2022-12-02 20:40:58 -07:00
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while initializing hub client using source credential", err)
|
|
|
|
return sourceModels.UpsertSummary{}, err
|
|
|
|
}
|
|
|
|
//TODO: update source
|
|
|
|
if updatedSource != nil {
|
|
|
|
logger.Warnf("TODO: source credential has been updated, we should store it in the database: %v", updatedSource)
|
|
|
|
//err := databaseRepo.CreateSource(c, updatedSource)
|
|
|
|
//if err != nil {
|
|
|
|
// logger.Errorln("An error occurred while updating source credential", err)
|
|
|
|
// return err
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
|
|
|
|
summary, err := sourceClient.SyncAll(databaseRepo)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorln("An error occurred while bulk import of resources from source", err)
|
|
|
|
return summary, err
|
|
|
|
}
|
|
|
|
return summary, nil
|
|
|
|
}
|