-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split Repository Based On Entities #104
Open
mallikarjun-b-r
wants to merge
1
commit into
clamp-orchestrator:master
Choose a base branch
from
mallikarjun-b-r:Split-Repositories
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+328
−210
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package repository | ||
|
||
import ( | ||
"clamp-core/config" | ||
"clamp-core/models" | ||
|
||
"github.com/google/uuid" | ||
) | ||
|
||
// DBInterface provides a collection of method signatures that needs to be implemented for a specific database. | ||
type ServiceRequestRepository interface { | ||
SaveServiceRequest(*models.ServiceRequest) (*models.ServiceRequest, error) | ||
FindServiceRequestByID(uuid.UUID) (*models.ServiceRequest, error) | ||
FindServiceRequestsByWorkflowName(workflowName string, pageNumber int, pageSize int) ([]*models.ServiceRequest, error) | ||
} | ||
|
||
var serviceRequestRepository ServiceRequestRepository | ||
|
||
func init() { | ||
switch config.ENV.DBDriver { | ||
case "postgres": | ||
serviceRequestRepository = &servicerequestrepositorypostgres{} | ||
} | ||
} | ||
|
||
// GetDB returns the initialized database implementations. Currently only postgres is implemented. | ||
func GetServiceRequestRepository() ServiceRequestRepository { | ||
return serviceRequestRepository | ||
} | ||
|
||
// SetDB is used to update the db object with custom implementations. | ||
// It is used in tests to override the actual db implementations with mock implementations | ||
func SetServiceRequestRepository(serviceRequestRepositoryImpl ServiceRequestRepository) { | ||
serviceRequestRepository = serviceRequestRepositoryImpl | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package repository | ||
|
||
import ( | ||
"clamp-core/models" | ||
|
||
"github.com/google/uuid" | ||
"github.com/prometheus/common/log" | ||
) | ||
|
||
type servicerequestrepositorypostgres struct { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can move postgres specific implementation to under |
||
} | ||
|
||
func (servicerequestrepository *servicerequestrepositorypostgres) SaveServiceRequest(serviceReq *models.ServiceRequest) (*models.ServiceRequest, error) { | ||
pgServReq := serviceReq.ToPgServiceRequest() | ||
db := pgDB.GetDB() | ||
err := db.Insert(pgServReq) | ||
return pgServReq.ToServiceRequest(), err | ||
} | ||
|
||
func (servicerequestrepository *servicerequestrepositorypostgres) FindServiceRequestsByWorkflowName(workflowName string, pageNumber int, pageSize int) ([]*models.ServiceRequest, error) { | ||
var pgServiceRequests []models.PGServiceRequest | ||
err := pgDB.GetDB().Model(&pgServiceRequests). | ||
Where("WORKFLOW_NAME = ?", workflowName). | ||
Offset(pageSize * pageNumber). | ||
Limit(pageSize). | ||
Select() | ||
var workflows []*models.ServiceRequest | ||
log.Info("workflow name %s %v", workflowName, pgServiceRequests) | ||
|
||
if err == nil { | ||
for _, pgServiceRequest := range pgServiceRequests { | ||
workflows = append(workflows, pgServiceRequest.ToServiceRequest()) | ||
} | ||
} | ||
return workflows, err | ||
} | ||
|
||
func (servicerequestrepository *servicerequestrepositorypostgres) FindServiceRequestByID(serviceRequestID uuid.UUID) (*models.ServiceRequest, error) { | ||
pgServiceRequest := &models.PGServiceRequest{ID: serviceRequestID} | ||
err := pgDB.GetDB().Select(pgServiceRequest) | ||
if err != nil { | ||
panic(err) | ||
} | ||
return pgServiceRequest.ToServiceRequest(), err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package repository | ||
|
||
import ( | ||
"clamp-core/config" | ||
"clamp-core/models" | ||
|
||
"github.com/google/uuid" | ||
) | ||
|
||
// DBInterface provides a collection of method signatures that needs to be implemented for a specific database. | ||
type StepStatusRepository interface { | ||
SaveStepStatus(*models.StepsStatus) (*models.StepsStatus, error) | ||
FindStepStatusByServiceRequestID(serviceRequestID uuid.UUID) ([]*models.StepsStatus, error) | ||
FindStepStatusByServiceRequestIDAndStatus(serviceRequestID uuid.UUID, status models.Status) ([]*models.StepsStatus, error) | ||
FindStepStatusByServiceRequestIDAndStepIDAndStatus( | ||
serviceRequestID uuid.UUID, stepID int, status models.Status) (*models.StepsStatus, error) | ||
FindAllStepStatusByServiceRequestIDAndStepID(serviceRequestID uuid.UUID, stepID int) ([]*models.StepsStatus, error) | ||
} | ||
|
||
var stepStatusRepository StepStatusRepository | ||
|
||
func init() { | ||
switch config.ENV.DBDriver { | ||
case "postgres": | ||
stepStatusRepository = &stepstatusrepositorypostgres{} | ||
} | ||
} | ||
|
||
// GetDB returns the initialized database implementations. Currently only postgres is implemented. | ||
func GetStepStatusRepository() StepStatusRepository { | ||
return stepStatusRepository | ||
} | ||
|
||
// SetDB is used to update the db object with custom implementations. | ||
// It is used in tests to override the actual db implementations with mock implementations | ||
func SetStepStatusRepository(stepStatusRepository StepStatusRepository) { | ||
stepStatusRepository = stepStatusRepository | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can name the file as just
service_request.go
. the wordrepository
is already part of the package name.