fasten-onprem/backend/pkg/web/handler/source.go

183 lines
6.0 KiB
Go
Raw Normal View History

2022-08-25 19:26:29 -06:00
package handler
import (
"fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
2022-08-25 19:26:29 -06:00
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
2022-09-08 22:14:03 -06:00
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub"
2022-08-25 19:26:29 -06:00
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
"io/ioutil"
2022-08-25 19:26:29 -06:00
"net/http"
"strings"
2022-08-25 19:26:29 -06:00
)
func CreateSource(c *gin.Context) {
2022-08-25 19:26:29 -06:00
logger := c.MustGet("LOGGER").(*logrus.Entry)
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
sourceCred := models.Source{}
if err := c.ShouldBindJSON(&sourceCred); err != nil {
logger.Errorln("An error occurred while parsing posted source credential", err)
2022-08-25 19:26:29 -06:00
c.JSON(http.StatusBadRequest, gin.H{"success": false})
return
}
logger.Infof("Parsed Create Source Credentials Payload: %v", sourceCred)
err := databaseRepo.CreateSource(c, &sourceCred)
2022-08-25 19:26:29 -06:00
if err != nil {
logger.Errorln("An error occurred while storing source credential", err)
2022-08-25 19:26:29 -06:00
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
2022-09-08 22:14:03 -06:00
// after creating the source, we should do a bulk import
sourceClient, updatedSource, err := hub.NewClient(sourceCred.SourceType, c, nil, logger, sourceCred)
2022-09-08 22:14:03 -06:00
if err != nil {
logger.Errorln("An error occurred while initializing hub client using source credential", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
if updatedSource != nil {
err := databaseRepo.CreateSource(c, updatedSource)
if err != nil {
logger.Errorln("An error occurred while updating source credential", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
}
2022-09-08 22:14:03 -06:00
err = sourceClient.SyncAll(databaseRepo)
if err != nil {
logger.Errorln("An error occurred while bulk import of resources from source", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCred})
2022-08-25 19:26:29 -06:00
}
2022-08-27 20:34:48 -06:00
func CreateManualSource(c *gin.Context) {
logger := c.MustGet("LOGGER").(*logrus.Entry)
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
// 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 "Source" object yet, as we do not know the patientID
// create a "manual" client, which we can use to parse the
manualSourceClient, _, err := hub.NewClient(pkg.SourceTypeManual, c, nil, logger, models.Source{})
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
}
err = manualSourceClient.SyncAllBundle(databaseRepo, bundleFile)
if err != nil {
logger.Errorln("An error occurred while processing bundle", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
return
}
c.JSON(http.StatusOK, gin.H{"success": true, "data": fmt.Sprintf("'%s' uploaded!", file.Filename)})
}
func GetSource(c *gin.Context) {
logger := c.MustGet("LOGGER").(*logrus.Entry)
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
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 ListSource(c *gin.Context) {
2022-08-27 20:34:48 -06:00
logger := c.MustGet("LOGGER").(*logrus.Entry)
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
sourceCreds, err := databaseRepo.GetSources(c)
2022-08-27 20:34:48 -06:00
if err != nil {
logger.Errorln("An error occurred while listing source credentials", err)
2022-08-27 20:34:48 -06:00
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCreds})
2022-08-27 20:34:48 -06:00
}
func RawRequestSource(c *gin.Context) {
logger := c.MustGet("LOGGER").(*logrus.Entry)
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
sources, err := databaseRepo.GetSources(c)
if err != nil {
logger.Errorln("An error occurred while storing source credential", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
var foundSource *models.Source
for _, source := range sources {
if source.SourceType == pkg.SourceType(c.Param("sourceType")) {
foundSource = &source
break
}
}
if foundSource == nil {
logger.Errorf("Did not source credentials for %s", c.Param("sourceType"))
c.JSON(http.StatusNotFound, gin.H{"success": false})
return
}
client, updatedSource, err := hub.NewClient(pkg.SourceType(c.Param("sourceType")), c, nil, logger, *foundSource)
if err != nil {
logger.Errorf("Could not initialize source client", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
if updatedSource != nil {
err := databaseRepo.CreateSource(c, updatedSource)
if err != nil {
logger.Errorln("An error occurred while updating source credential", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
}
var resp map[string]interface{}
err = client.GetRequest(strings.TrimSuffix(c.Param("path"), "/"), &resp)
if err != nil {
logger.Errorf("Error making raw request", err)
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
return
}
c.JSON(http.StatusOK, gin.H{"success": true, "data": resp})
}