mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 09:44:26 +00:00
722a7c902d
In investigating #7947 it has become clear that the storage component of go-git repositories needs closing. This PR adds this Close function and adds the Close functions as necessary. In TransferOwnership the ctx.Repo.GitRepo is closed if it is open to help prevent the risk of multiple open files. Fixes #7947
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/gitea/models"
|
|
"code.gitea.io/gitea/modules/git"
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
// ReleaseV39 describes the added field for Release
|
|
type ReleaseV39 struct {
|
|
IsTag bool `xorm:"NOT NULL DEFAULT false"`
|
|
}
|
|
|
|
// TableName will be invoked by XORM to customrize the table name
|
|
func (*ReleaseV39) TableName() string {
|
|
return "release"
|
|
}
|
|
|
|
func releaseAddColumnIsTagAndSyncTags(x *xorm.Engine) error {
|
|
if err := x.Sync2(new(ReleaseV39)); err != nil {
|
|
return fmt.Errorf("Sync2: %v", err)
|
|
}
|
|
|
|
// For the sake of SQLite3, we can't use x.Iterate here.
|
|
offset := 0
|
|
pageSize := models.RepositoryListDefaultPageSize
|
|
for {
|
|
repos := make([]*models.Repository, 0, pageSize)
|
|
if err := x.Table("repository").Cols("id", "name", "owner_id").Asc("id").Limit(pageSize, offset).Find(&repos); err != nil {
|
|
return fmt.Errorf("select repos [offset: %d]: %v", offset, err)
|
|
}
|
|
for _, repo := range repos {
|
|
gitRepo, err := git.OpenRepository(repo.RepoPath())
|
|
if err != nil {
|
|
log.Warn("OpenRepository: %v", err)
|
|
continue
|
|
}
|
|
|
|
if err = models.SyncReleasesWithTags(repo, gitRepo); err != nil {
|
|
log.Warn("SyncReleasesWithTags: %v", err)
|
|
}
|
|
gitRepo.Close()
|
|
}
|
|
if len(repos) < pageSize {
|
|
break
|
|
}
|
|
offset += pageSize
|
|
}
|
|
return nil
|
|
}
|