mirror of
https://github.com/harness/drone.git
synced 2025-05-04 20:10:44 +08:00
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
// Copyright 2022 Harness Inc. All rights reserved.
|
|
// Use of this source code is governed by the Polyform Free Trial License
|
|
// that can be found in the LICENSE.md file for this repository.
|
|
|
|
package cron
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
|
|
"github.com/harness/gitness/gitrpc/server"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// cleanupRepoGraveyard cleanups repository graveyard.
|
|
func cleanupRepoGraveyard(ctx context.Context, graveyardpath string) error {
|
|
logger := log.Ctx(ctx)
|
|
repolist, err := os.ReadDir(graveyardpath)
|
|
if err != nil {
|
|
logger.Warn().Err(err).Msgf("failed to read repos graveyard directory %s", graveyardpath)
|
|
return err
|
|
}
|
|
for _, repo := range repolist {
|
|
// exit early if context is cancelled
|
|
if ctx.Err() != nil {
|
|
return ctx.Err()
|
|
}
|
|
if err := os.RemoveAll(path.Join(graveyardpath, repo.Name())); err != nil {
|
|
logger.Error().Err(err).Msgf("failed to remove repository %s from graveyard", repo.Name())
|
|
} else {
|
|
logger.Info().Msgf("repository %s removed from graveyard", repo.Name())
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func AddAllGitRPCCronJobs(cm *Manager, gitrpcconfig server.Config) error {
|
|
// periodic repository graveyard cleanup
|
|
graveyardpath := filepath.Join(gitrpcconfig.GitRoot, server.ReposGraveyardSubdirName)
|
|
err := cm.NewCronTask(Nightly, func(ctx context.Context) error { return cleanupRepoGraveyard(ctx, graveyardpath) })
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|