Files
vikunja/pkg/cmd/repair_orphan_positions.go
kolaente b6155d525c feat(cli): reorganize repair commands under unified 'vikunja repair' parent (#2300)
Consolidate four scattered repair/maintenance CLI commands into a unified `vikunja repair` parent command with subcommands.
2026-02-25 11:50:09 +00:00

81 lines
2.4 KiB
Go

// Vikunja is a to-do list application to facilitate your life.
// Copyright 2018-present Vikunja and contributors. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package cmd
import (
"code.vikunja.io/api/pkg/db"
"code.vikunja.io/api/pkg/initialize"
"code.vikunja.io/api/pkg/log"
"code.vikunja.io/api/pkg/models"
"github.com/spf13/cobra"
)
func init() {
repairOrphanPositionsCmd.Flags().Bool("dry-run", false, "Preview repairs without making changes")
repairCmd.AddCommand(repairOrphanPositionsCmd)
}
var repairOrphanPositionsCmd = &cobra.Command{
Use: "orphan-positions",
Short: "Remove orphaned task position records for deleted tasks or views",
Long: `Removes all task position records that reference tasks or project views
which no longer exist in the database.
This can happen when tasks or views are deleted but their position records
are not fully cleaned up.
Use --dry-run to preview what would be deleted without making changes.`,
PreRun: func(_ *cobra.Command, _ []string) {
initialize.FullInitWithoutAsync()
},
Run: func(cmd *cobra.Command, _ []string) {
dryRun, _ := cmd.Flags().GetBool("dry-run")
s := db.NewSession()
defer s.Close()
if dryRun {
log.Infof("Running in dry-run mode - no changes will be made")
}
count, err := models.DeleteOrphanedTaskPositions(s, dryRun)
if err != nil {
log.Errorf("Could not delete orphaned task positions: %s", err)
return
}
if !dryRun {
if err := s.Commit(); err != nil {
log.Errorf("Could not commit orphaned task position deletion: %s", err)
return
}
}
if count == 0 {
log.Infof("No orphaned task positions found.")
return
}
if dryRun {
log.Infof("Would delete %d orphaned task positions.", count)
} else {
log.Infof("Successfully deleted %d orphaned task positions.", count)
}
},
}