-
Notifications
You must be signed in to change notification settings - Fork 554
fix: app update migration #5903
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
412619a
wip: adding app name check
iamayushm f1facf1
wip
iamayushm 7145c65
wip
iamayushm da4cb5b
wip
iamayushm 6927ace
moving migration to code
iamayushm faa6067
wip: adding app name in log
iamayushm 8b21723
wip: moving sql logic to code
iamayushm a3a2193
pg no rows handling
iamayushm b742af5
adding db migration call
iamayushm 4e74a4e
fixing fetch app query
iamayushm 8e56e2d
wip: adding pg multiple rows handling
iamayushm 771423f
Merge remote-tracking branch 'origin/main' into fix-app-update-query
iamayushm 28b6604
audit log update
iamayushm 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 hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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,61 @@ | ||
| package dbMigration | ||
|
|
||
| import ( | ||
| appRepository "github.com/devtron-labs/devtron/internal/sql/repository/app" | ||
| repository2 "github.com/devtron-labs/devtron/pkg/appStore/installedApp/repository" | ||
| "go.uber.org/zap" | ||
| "time" | ||
| ) | ||
|
|
||
| type DbMigration interface { | ||
| FixMultipleAppsForInstalledApp(appNameUniqueIdentifier string) (*appRepository.App, error) | ||
| } | ||
|
|
||
| type DbMigrationServiceImpl struct { | ||
| logger *zap.SugaredLogger | ||
| appRepository appRepository.AppRepository | ||
| installedAppRepository repository2.InstalledAppRepository | ||
| } | ||
|
|
||
| func NewDbMigrationServiceImpl( | ||
| logger *zap.SugaredLogger, appRepository appRepository.AppRepository, | ||
| installedAppRepository repository2.InstalledAppRepository, | ||
| ) *DbMigrationServiceImpl { | ||
| impl := &DbMigrationServiceImpl{ | ||
| logger: logger, | ||
| appRepository: appRepository, | ||
| installedAppRepository: installedAppRepository, | ||
| } | ||
| return impl | ||
| } | ||
|
|
||
| func (impl DbMigrationServiceImpl) FixMultipleAppsForInstalledApp(appNameUniqueIdentifier string) (*appRepository.App, error) { | ||
| installedApp, err := impl.installedAppRepository.GetInstalledAppByAppName(appNameUniqueIdentifier) | ||
| if err != nil { | ||
| impl.logger.Errorw("error in fetching installed app by unique identifier", "appNameUniqueIdentifier", appNameUniqueIdentifier, "err", err) | ||
| return nil, err | ||
| } | ||
| validAppId := installedApp.AppId | ||
| allActiveApps, err := impl.appRepository.FindAllActiveByName(appNameUniqueIdentifier) | ||
| if err != nil { | ||
| impl.logger.Errorw("error in fetching all active apps by name", "appName", appNameUniqueIdentifier, "err", err) | ||
| return nil, err | ||
| } | ||
| var validApp *appRepository.App | ||
| for _, activeApp := range allActiveApps { | ||
| if activeApp.Id != validAppId { | ||
| impl.logger.Info("duplicate entries found for app, marking app inactive ", "appName", appNameUniqueIdentifier) | ||
| activeApp.Active = false | ||
| activeApp.UpdatedOn = time.Now() | ||
| activeApp.UpdatedBy = 1 | ||
| err := impl.appRepository.Update(activeApp) | ||
| if err != nil { | ||
| impl.logger.Errorw("error in marking app inactive", "name", activeApp.AppName, "err", err) | ||
| return nil, err | ||
| } | ||
| } else { | ||
| validApp = activeApp | ||
| } | ||
| } | ||
| return validApp, nil | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.