fixing module name (fasten-onprem vs fastenhealth-onprem)

This commit is contained in:
Jason Kulatunga 2023-08-27 17:09:46 -07:00
parent 011cfa37e6
commit 0a9eb88b1b
No known key found for this signature in database
92 changed files with 180 additions and 180 deletions

View File

@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/tmp/lock,sharing=locked \
######################################################################################################### #########################################################################################################
FROM golang:1.18 as backend-build FROM golang:1.18 as backend-build
WORKDIR /go/src/github.com/fastenhealth/fastenhealth-onprem WORKDIR /go/src/github.com/fastenhealth/fasten-onprem
COPY . . COPY . .
RUN --mount=type=cache,target=/tmp/lock,sharing=locked \ RUN --mount=type=cache,target=/tmp/lock,sharing=locked \

View File

@ -4,10 +4,10 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/analogj/go-util/utils" "github.com/analogj/go-util/utils"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/errors" "github.com/fastenhealth/fasten-onprem/backend/pkg/errors"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/version" "github.com/fastenhealth/fasten-onprem/backend/pkg/version"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/web" "github.com/fastenhealth/fasten-onprem/backend/pkg/web"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
"io" "io"
@ -48,7 +48,7 @@ func main() {
}, },
Before: func(c *cli.Context) error { Before: func(c *cli.Context) error {
packagrUrl := "github.com/fastenhealth/fastenhealth-onprem" packagrUrl := "github.com/fastenhealth/fasten-onprem"
versionInfo := fmt.Sprintf("%s.%s-%s", goos, goarch, version.VERSION) versionInfo := fmt.Sprintf("%s.%s-%s", goos, goarch, version.VERSION)

View File

@ -3,7 +3,7 @@ package auth
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/golang-jwt/jwt/v4" "github.com/golang-jwt/jwt/v4"
"strings" "strings"
"time" "time"

View File

@ -1,8 +1,8 @@
package auth_test package auth_test
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth" "github.com/fastenhealth/fasten-onprem/backend/pkg/auth"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
) )

View File

@ -3,7 +3,7 @@ package config
import ( import (
"fmt" "fmt"
"github.com/analogj/go-util/utils" "github.com/analogj/go-util/utils"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/errors" "github.com/fastenhealth/fasten-onprem/backend/pkg/errors"
"github.com/spf13/viper" "github.com/spf13/viper"
"log" "log"
"os" "os"

View File

@ -2,9 +2,9 @@ package database
import ( import (
"context" "context"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
sourcePkg "github.com/fastenhealth/fasten-sources/clients/models" sourcePkg "github.com/fastenhealth/fasten-sources/clients/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/google/uuid" "github.com/google/uuid"
) )

View File

@ -8,9 +8,9 @@ import (
context "context" context "context"
reflect "reflect" reflect "reflect"
models "github.com/fastenhealth/fasten-sources/clients/models" pkg "github.com/fastenhealth/fasten-onprem/backend/pkg"
pkg "github.com/fastenhealth/fastenhealth-onprem/backend/pkg" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
models0 "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models0 "github.com/fastenhealth/fasten-sources/clients/models"
gomock "github.com/golang/mock/gomock" gomock "github.com/golang/mock/gomock"
uuid "github.com/google/uuid" uuid "github.com/google/uuid"
) )
@ -39,7 +39,7 @@ func (m *MockDatabaseRepository) EXPECT() *MockDatabaseRepositoryMockRecorder {
} }
// AddResourceAssociation mocks base method. // AddResourceAssociation mocks base method.
func (m *MockDatabaseRepository) AddResourceAssociation(ctx context.Context, source *models0.SourceCredential, resourceType, resourceId string, relatedSource *models0.SourceCredential, relatedResourceType, relatedResourceId string) error { func (m *MockDatabaseRepository) AddResourceAssociation(ctx context.Context, source *models.SourceCredential, resourceType, resourceId string, relatedSource *models.SourceCredential, relatedResourceType, relatedResourceId string) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AddResourceAssociation", ctx, source, resourceType, resourceId, relatedSource, relatedResourceType, relatedResourceId) ret := m.ctrl.Call(m, "AddResourceAssociation", ctx, source, resourceType, resourceId, relatedSource, relatedResourceType, relatedResourceId)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -53,7 +53,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) AddResourceAssociation(ctx, source
} }
// AddResourceComposition mocks base method. // AddResourceComposition mocks base method.
func (m *MockDatabaseRepository) AddResourceComposition(ctx context.Context, compositionTitle string, resources []*models0.ResourceBase) error { func (m *MockDatabaseRepository) AddResourceComposition(ctx context.Context, compositionTitle string, resources []*models.ResourceBase) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AddResourceComposition", ctx, compositionTitle, resources) ret := m.ctrl.Call(m, "AddResourceComposition", ctx, compositionTitle, resources)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -81,7 +81,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) Close() *gomock.Call {
} }
// CreateGlossaryEntry mocks base method. // CreateGlossaryEntry mocks base method.
func (m *MockDatabaseRepository) CreateGlossaryEntry(ctx context.Context, glossaryEntry *models0.Glossary) error { func (m *MockDatabaseRepository) CreateGlossaryEntry(ctx context.Context, glossaryEntry *models.Glossary) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateGlossaryEntry", ctx, glossaryEntry) ret := m.ctrl.Call(m, "CreateGlossaryEntry", ctx, glossaryEntry)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -95,7 +95,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) CreateGlossaryEntry(ctx, glossaryE
} }
// CreateSource mocks base method. // CreateSource mocks base method.
func (m *MockDatabaseRepository) CreateSource(arg0 context.Context, arg1 *models0.SourceCredential) error { func (m *MockDatabaseRepository) CreateSource(arg0 context.Context, arg1 *models.SourceCredential) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateSource", arg0, arg1) ret := m.ctrl.Call(m, "CreateSource", arg0, arg1)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -109,7 +109,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) CreateSource(arg0, arg1 interface{
} }
// CreateUser mocks base method. // CreateUser mocks base method.
func (m *MockDatabaseRepository) CreateUser(arg0 context.Context, arg1 *models0.User) error { func (m *MockDatabaseRepository) CreateUser(arg0 context.Context, arg1 *models.User) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CreateUser", arg0, arg1) ret := m.ctrl.Call(m, "CreateUser", arg0, arg1)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -123,10 +123,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) CreateUser(arg0, arg1 interface{})
} }
// FindResourceAssociationsByTypeAndId mocks base method. // FindResourceAssociationsByTypeAndId mocks base method.
func (m *MockDatabaseRepository) FindResourceAssociationsByTypeAndId(ctx context.Context, source *models0.SourceCredential, resourceType, resourceId string) ([]models0.RelatedResource, error) { func (m *MockDatabaseRepository) FindResourceAssociationsByTypeAndId(ctx context.Context, source *models.SourceCredential, resourceType, resourceId string) ([]models.RelatedResource, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "FindResourceAssociationsByTypeAndId", ctx, source, resourceType, resourceId) ret := m.ctrl.Call(m, "FindResourceAssociationsByTypeAndId", ctx, source, resourceType, resourceId)
ret0, _ := ret[0].([]models0.RelatedResource) ret0, _ := ret[0].([]models.RelatedResource)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -138,10 +138,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) FindResourceAssociationsByTypeAndI
} }
// GetCurrentUser mocks base method. // GetCurrentUser mocks base method.
func (m *MockDatabaseRepository) GetCurrentUser(ctx context.Context) (*models0.User, error) { func (m *MockDatabaseRepository) GetCurrentUser(ctx context.Context) (*models.User, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetCurrentUser", ctx) ret := m.ctrl.Call(m, "GetCurrentUser", ctx)
ret0, _ := ret[0].(*models0.User) ret0, _ := ret[0].(*models.User)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -153,10 +153,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetCurrentUser(ctx interface{}) *g
} }
// GetFlattenedResourceGraph mocks base method. // GetFlattenedResourceGraph mocks base method.
func (m *MockDatabaseRepository) GetFlattenedResourceGraph(ctx context.Context, graphType pkg.ResourceGraphType) (map[string][]*models0.ResourceBase, error) { func (m *MockDatabaseRepository) GetFlattenedResourceGraph(ctx context.Context, graphType pkg.ResourceGraphType) (map[string][]*models.ResourceBase, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetFlattenedResourceGraph", ctx, graphType) ret := m.ctrl.Call(m, "GetFlattenedResourceGraph", ctx, graphType)
ret0, _ := ret[0].(map[string][]*models0.ResourceBase) ret0, _ := ret[0].(map[string][]*models.ResourceBase)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -168,10 +168,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetFlattenedResourceGraph(ctx, gra
} }
// GetGlossaryEntry mocks base method. // GetGlossaryEntry mocks base method.
func (m *MockDatabaseRepository) GetGlossaryEntry(ctx context.Context, code, codeSystem string) (*models0.Glossary, error) { func (m *MockDatabaseRepository) GetGlossaryEntry(ctx context.Context, code, codeSystem string) (*models.Glossary, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetGlossaryEntry", ctx, code, codeSystem) ret := m.ctrl.Call(m, "GetGlossaryEntry", ctx, code, codeSystem)
ret0, _ := ret[0].(*models0.Glossary) ret0, _ := ret[0].(*models.Glossary)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -183,10 +183,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetGlossaryEntry(ctx, code, codeSy
} }
// GetPatientForSources mocks base method. // GetPatientForSources mocks base method.
func (m *MockDatabaseRepository) GetPatientForSources(ctx context.Context) ([]models0.ResourceBase, error) { func (m *MockDatabaseRepository) GetPatientForSources(ctx context.Context) ([]models.ResourceBase, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetPatientForSources", ctx) ret := m.ctrl.Call(m, "GetPatientForSources", ctx)
ret0, _ := ret[0].([]models0.ResourceBase) ret0, _ := ret[0].([]models.ResourceBase)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -198,10 +198,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetPatientForSources(ctx interface
} }
// GetResourceByResourceTypeAndId mocks base method. // GetResourceByResourceTypeAndId mocks base method.
func (m *MockDatabaseRepository) GetResourceByResourceTypeAndId(arg0 context.Context, arg1, arg2 string) (*models0.ResourceBase, error) { func (m *MockDatabaseRepository) GetResourceByResourceTypeAndId(arg0 context.Context, arg1, arg2 string) (*models.ResourceBase, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetResourceByResourceTypeAndId", arg0, arg1, arg2) ret := m.ctrl.Call(m, "GetResourceByResourceTypeAndId", arg0, arg1, arg2)
ret0, _ := ret[0].(*models0.ResourceBase) ret0, _ := ret[0].(*models.ResourceBase)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -213,10 +213,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetResourceByResourceTypeAndId(arg
} }
// GetResourceBySourceId mocks base method. // GetResourceBySourceId mocks base method.
func (m *MockDatabaseRepository) GetResourceBySourceId(arg0 context.Context, arg1, arg2 string) (*models0.ResourceBase, error) { func (m *MockDatabaseRepository) GetResourceBySourceId(arg0 context.Context, arg1, arg2 string) (*models.ResourceBase, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetResourceBySourceId", arg0, arg1, arg2) ret := m.ctrl.Call(m, "GetResourceBySourceId", arg0, arg1, arg2)
ret0, _ := ret[0].(*models0.ResourceBase) ret0, _ := ret[0].(*models.ResourceBase)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -228,10 +228,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetResourceBySourceId(arg0, arg1,
} }
// GetSource mocks base method. // GetSource mocks base method.
func (m *MockDatabaseRepository) GetSource(arg0 context.Context, arg1 string) (*models0.SourceCredential, error) { func (m *MockDatabaseRepository) GetSource(arg0 context.Context, arg1 string) (*models.SourceCredential, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetSource", arg0, arg1) ret := m.ctrl.Call(m, "GetSource", arg0, arg1)
ret0, _ := ret[0].(*models0.SourceCredential) ret0, _ := ret[0].(*models.SourceCredential)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -243,10 +243,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetSource(arg0, arg1 interface{})
} }
// GetSourceSummary mocks base method. // GetSourceSummary mocks base method.
func (m *MockDatabaseRepository) GetSourceSummary(arg0 context.Context, arg1 string) (*models0.SourceSummary, error) { func (m *MockDatabaseRepository) GetSourceSummary(arg0 context.Context, arg1 string) (*models.SourceSummary, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetSourceSummary", arg0, arg1) ret := m.ctrl.Call(m, "GetSourceSummary", arg0, arg1)
ret0, _ := ret[0].(*models0.SourceSummary) ret0, _ := ret[0].(*models.SourceSummary)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -258,10 +258,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetSourceSummary(arg0, arg1 interf
} }
// GetSources mocks base method. // GetSources mocks base method.
func (m *MockDatabaseRepository) GetSources(arg0 context.Context) ([]models0.SourceCredential, error) { func (m *MockDatabaseRepository) GetSources(arg0 context.Context) ([]models.SourceCredential, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetSources", arg0) ret := m.ctrl.Call(m, "GetSources", arg0)
ret0, _ := ret[0].([]models0.SourceCredential) ret0, _ := ret[0].([]models.SourceCredential)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -273,10 +273,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetSources(arg0 interface{}) *gomo
} }
// GetSummary mocks base method. // GetSummary mocks base method.
func (m *MockDatabaseRepository) GetSummary(ctx context.Context) (*models0.Summary, error) { func (m *MockDatabaseRepository) GetSummary(ctx context.Context) (*models.Summary, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetSummary", ctx) ret := m.ctrl.Call(m, "GetSummary", ctx)
ret0, _ := ret[0].(*models0.Summary) ret0, _ := ret[0].(*models.Summary)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -288,10 +288,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetSummary(ctx interface{}) *gomoc
} }
// GetUserByUsername mocks base method. // GetUserByUsername mocks base method.
func (m *MockDatabaseRepository) GetUserByUsername(arg0 context.Context, arg1 string) (*models0.User, error) { func (m *MockDatabaseRepository) GetUserByUsername(arg0 context.Context, arg1 string) (*models.User, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetUserByUsername", arg0, arg1) ret := m.ctrl.Call(m, "GetUserByUsername", arg0, arg1)
ret0, _ := ret[0].(*models0.User) ret0, _ := ret[0].(*models.User)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -303,10 +303,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) GetUserByUsername(arg0, arg1 inter
} }
// ListResources mocks base method. // ListResources mocks base method.
func (m *MockDatabaseRepository) ListResources(arg0 context.Context, arg1 models0.ListResourceQueryOptions) ([]models0.ResourceBase, error) { func (m *MockDatabaseRepository) ListResources(arg0 context.Context, arg1 models.ListResourceQueryOptions) ([]models.ResourceBase, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ListResources", arg0, arg1) ret := m.ctrl.Call(m, "ListResources", arg0, arg1)
ret0, _ := ret[0].([]models0.ResourceBase) ret0, _ := ret[0].([]models.ResourceBase)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -318,10 +318,10 @@ func (mr *MockDatabaseRepositoryMockRecorder) ListResources(arg0, arg1 interface
} }
// LoadUserSettings mocks base method. // LoadUserSettings mocks base method.
func (m *MockDatabaseRepository) LoadUserSettings(ctx context.Context) (*models0.UserSettings, error) { func (m *MockDatabaseRepository) LoadUserSettings(ctx context.Context) (*models.UserSettings, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "LoadUserSettings", ctx) ret := m.ctrl.Call(m, "LoadUserSettings", ctx)
ret0, _ := ret[0].(*models0.UserSettings) ret0, _ := ret[0].(*models.UserSettings)
ret1, _ := ret[1].(error) ret1, _ := ret[1].(error)
return ret0, ret1 return ret0, ret1
} }
@ -361,7 +361,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) PopulateDefaultUserSettings(ctx, u
} }
// QueryResources mocks base method. // QueryResources mocks base method.
func (m *MockDatabaseRepository) QueryResources(ctx context.Context, query models0.QueryResource) (interface{}, error) { func (m *MockDatabaseRepository) QueryResources(ctx context.Context, query models.QueryResource) (interface{}, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "QueryResources", ctx, query) ret := m.ctrl.Call(m, "QueryResources", ctx, query)
ret0, _ := ret[0].(interface{}) ret0, _ := ret[0].(interface{})
@ -376,7 +376,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) QueryResources(ctx, query interfac
} }
// RemoveResourceAssociation mocks base method. // RemoveResourceAssociation mocks base method.
func (m *MockDatabaseRepository) RemoveResourceAssociation(ctx context.Context, source *models0.SourceCredential, resourceType, resourceId string, relatedSource *models0.SourceCredential, relatedResourceType, relatedResourceId string) error { func (m *MockDatabaseRepository) RemoveResourceAssociation(ctx context.Context, source *models.SourceCredential, resourceType, resourceId string, relatedSource *models.SourceCredential, relatedResourceType, relatedResourceId string) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "RemoveResourceAssociation", ctx, source, resourceType, resourceId, relatedSource, relatedResourceType, relatedResourceId) ret := m.ctrl.Call(m, "RemoveResourceAssociation", ctx, source, resourceType, resourceId, relatedSource, relatedResourceType, relatedResourceId)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -390,7 +390,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) RemoveResourceAssociation(ctx, sou
} }
// SaveUserSettings mocks base method. // SaveUserSettings mocks base method.
func (m *MockDatabaseRepository) SaveUserSettings(arg0 context.Context, arg1 *models0.UserSettings) error { func (m *MockDatabaseRepository) SaveUserSettings(arg0 context.Context, arg1 *models.UserSettings) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "SaveUserSettings", arg0, arg1) ret := m.ctrl.Call(m, "SaveUserSettings", arg0, arg1)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -404,7 +404,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) SaveUserSettings(arg0, arg1 interf
} }
// UpdateSource mocks base method. // UpdateSource mocks base method.
func (m *MockDatabaseRepository) UpdateSource(ctx context.Context, sourceCreds *models0.SourceCredential) error { func (m *MockDatabaseRepository) UpdateSource(ctx context.Context, sourceCreds *models.SourceCredential) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "UpdateSource", ctx, sourceCreds) ret := m.ctrl.Call(m, "UpdateSource", ctx, sourceCreds)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)
@ -418,7 +418,7 @@ func (mr *MockDatabaseRepositoryMockRecorder) UpdateSource(ctx, sourceCreds inte
} }
// UpsertRawResource mocks base method. // UpsertRawResource mocks base method.
func (m *MockDatabaseRepository) UpsertRawResource(ctx context.Context, sourceCredentials models.SourceCredential, rawResource models.RawResourceFhir) (bool, error) { func (m *MockDatabaseRepository) UpsertRawResource(ctx context.Context, sourceCredentials models0.SourceCredential, rawResource models0.RawResourceFhir) (bool, error) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "UpsertRawResource", ctx, sourceCredentials, rawResource) ret := m.ctrl.Call(m, "UpsertRawResource", ctx, sourceCredentials, rawResource)
ret0, _ := ret[0].(bool) ret0, _ := ret[0].(bool)

View File

@ -5,12 +5,12 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
databaseModel "github.com/fastenhealth/fasten-onprem/backend/pkg/models/database"
"github.com/fastenhealth/fasten-onprem/backend/pkg/utils"
sourceModel "github.com/fastenhealth/fasten-sources/clients/models" sourceModel "github.com/fastenhealth/fasten-sources/clients/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
databaseModel "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/utils"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/glebarez/sqlite" "github.com/glebarez/sqlite"
"github.com/google/uuid" "github.com/google/uuid"

View File

@ -4,9 +4,9 @@ import (
"context" "context"
"fmt" "fmt"
"github.com/dominikbraun/graph" "github.com/dominikbraun/graph"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/utils" "github.com/fastenhealth/fasten-onprem/backend/pkg/utils"
"golang.org/x/exp/slices" "golang.org/x/exp/slices"
"log" "log"
"strings" "strings"

View File

@ -3,8 +3,8 @@ package database
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
databaseModel "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models/database" databaseModel "github.com/fastenhealth/fasten-onprem/backend/pkg/models/database"
"github.com/iancoleman/strcase" "github.com/iancoleman/strcase"
"github.com/samber/lo" "github.com/samber/lo"
"golang.org/x/exp/maps" "golang.org/x/exp/maps"

View File

@ -3,9 +3,9 @@ package database
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock" mock_config "github.com/fastenhealth/fasten-onprem/backend/pkg/config/mock"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/golang/mock/gomock" "github.com/golang/mock/gomock"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"

View File

@ -2,9 +2,9 @@ package database
import ( import (
"context" "context"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock" mock_config "github.com/fastenhealth/fasten-onprem/backend/pkg/config/mock"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"gorm.io/gorm" "gorm.io/gorm"

View File

@ -3,7 +3,7 @@ package database
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/google/uuid" "github.com/google/uuid"
) )

View File

@ -3,9 +3,9 @@ package database
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"

View File

@ -3,10 +3,10 @@ package database
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
mock_config "github.com/fastenhealth/fasten-onprem/backend/pkg/config/mock"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
sourceModels "github.com/fastenhealth/fasten-sources/clients/models" sourceModels "github.com/fastenhealth/fasten-sources/clients/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/fastenhealth/gofhir-models/fhir401" "github.com/fastenhealth/gofhir-models/fhir401"
fhirutils "github.com/fastenhealth/gofhir-models/fhir401/utils" fhirutils "github.com/fastenhealth/gofhir-models/fhir401/utils"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"

View File

@ -1,7 +1,7 @@
package errors_test package errors_test
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/errors" "github.com/fastenhealth/fasten-onprem/backend/pkg/errors"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
) )

View File

@ -1,7 +1,7 @@
package models_test package models_test
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -7,7 +7,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
goja "github.com/dop251/goja" goja "github.com/dop251/goja"
models "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" models "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
datatypes "gorm.io/datatypes" datatypes "gorm.io/datatypes"
"time" "time"
) )

View File

@ -158,7 +158,7 @@ func main() {
structName := "Fhir" + strings.Title(resourceName) structName := "Fhir" + strings.Title(resourceName)
file.Type().Id(structName).StructFunc(func(g *jen.Group) { file.Type().Id(structName).StructFunc(func(g *jen.Group) {
//Add the OriginBase embedded struct //Add the OriginBase embedded struct
g.Qual("github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models", "ResourceBase") g.Qual("github.com/fastenhealth/fasten-onprem/backend/pkg/models", "ResourceBase")
sort.Strings(keys) sort.Strings(keys)
for _, fieldName := range keys { for _, fieldName := range keys {

View File

@ -2,7 +2,7 @@ package database
import ( import (
"encoding/json" "encoding/json"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"gorm.io/datatypes" "gorm.io/datatypes"
"time" "time"
) )

View File

@ -3,8 +3,8 @@ package models
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg/jwk"
"github.com/fastenhealth/fasten-sources/pkg" "github.com/fastenhealth/fasten-sources/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/jwk"
"github.com/google/uuid" "github.com/google/uuid"
"github.com/lestrrat-go/jwx/v2/jwa" "github.com/lestrrat-go/jwx/v2/jwa"
"github.com/lestrrat-go/jwx/v2/jwt" "github.com/lestrrat-go/jwx/v2/jwt"

View File

@ -1,7 +1,7 @@
package models_test package models_test
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
) )

View File

@ -1,7 +1,7 @@
package utils package utils
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"sort" "sort"
) )

View File

@ -1,7 +1,7 @@
package utils package utils
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"
"time" "time"

View File

@ -2,11 +2,11 @@ package handler
import ( import (
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth" "github.com/fastenhealth/fasten-onprem/backend/pkg/auth"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"net/http" "net/http"
) )

View File

@ -5,8 +5,8 @@ import (
"embed" "embed"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/google/go-github/v54/github" "github.com/google/go-github/v54/github"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -4,9 +4,9 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/gofhir-models/fhir401" "github.com/fastenhealth/gofhir-models/fhir401"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -1,10 +1,10 @@
package handler package handler
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/utils" "github.com/fastenhealth/fasten-onprem/backend/pkg/utils"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"net/http" "net/http"

View File

@ -5,13 +5,13 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fasten-onprem/backend/pkg/jwk"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/fasten-sources/clients/factory" "github.com/fastenhealth/fasten-sources/clients/factory"
sourceModels "github.com/fastenhealth/fasten-sources/clients/models" sourceModels "github.com/fastenhealth/fasten-sources/clients/models"
sourcePkg "github.com/fastenhealth/fasten-sources/pkg" sourcePkg "github.com/fastenhealth/fasten-sources/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/jwk"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"io" "io"

View File

@ -5,10 +5,10 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock" mock_config "github.com/fastenhealth/fasten-onprem/backend/pkg/config/mock"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models" "github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/golang/mock/gomock" "github.com/golang/mock/gomock"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"

View File

@ -1,8 +1,8 @@
package handler package handler
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"net/http" "net/http"

View File

@ -2,12 +2,12 @@ package handler
import ( import (
"fmt" "fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/fasten-sources/clients/factory" "github.com/fastenhealth/fasten-sources/clients/factory"
sourcePkg "github.com/fastenhealth/fasten-sources/pkg" sourcePkg "github.com/fastenhealth/fasten-sources/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"net/http" "net/http"

View File

@ -1,8 +1,8 @@
package middleware package middleware
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )

View File

@ -1,9 +1,9 @@
package middleware package middleware
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database" "github.com/fastenhealth/fasten-onprem/backend/pkg/database"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -3,7 +3,7 @@ package middleware
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"io" "io"

View File

@ -1,9 +1,9 @@
package middleware package middleware
import ( import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg" "github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth" "github.com/fastenhealth/fasten-onprem/backend/pkg/auth"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"log" "log"
"net/http" "net/http"

View File

@ -2,9 +2,9 @@ package web
import ( import (
"fmt" "fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config" "github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/web/handler" "github.com/fastenhealth/fasten-onprem/backend/pkg/web/handler"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/web/middleware" "github.com/fastenhealth/fasten-onprem/backend/pkg/web/middleware"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"net/http" "net/http"

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/fastenhealth/fastenhealth-onprem module github.com/fastenhealth/fasten-onprem
go 1.18 go 1.18