aboutsummaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-09-23 16:45:36 +0100
committerGitHub <noreply@github.com>2021-09-23 23:45:36 +0800
commit9302eba971611601c3ebf6024e22a11c63f4e151 (patch)
treea3e5583986161ef62e7affc694098279ecf2217d /services
parentb22be7f594401d7bd81196750456ce52185bd391 (diff)
downloadgitea-9302eba971611601c3ebf6024e22a11c63f4e151.tar.gz
gitea-9302eba971611601c3ebf6024e22a11c63f4e151.zip
DBContext is just a Context (#17100)
* DBContext is just a Context This PR removes some of the specialness from the DBContext and makes it context This allows us to simplify the GetEngine code to wrap around any context in future and means that we can change our loadRepo(e Engine) functions to simply take contexts. Signed-off-by: Andrew Thornton <art27@cantab.net> * fix unit tests Signed-off-by: Andrew Thornton <art27@cantab.net> * another place that needs to set the initial context Signed-off-by: Andrew Thornton <art27@cantab.net> * avoid race Signed-off-by: Andrew Thornton <art27@cantab.net> * change attachment error Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'services')
-rw-r--r--services/attachment/attachment.go3
-rw-r--r--services/comments/comments.go2
-rw-r--r--services/issue/issue.go2
-rw-r--r--services/mirror/mirror_pull.go2
-rw-r--r--services/pull/pull.go2
-rw-r--r--services/pull/review.go4
-rw-r--r--services/release/release.go4
-rw-r--r--services/repository/generate.go4
-rw-r--r--services/repository/push.go2
9 files changed, 14 insertions, 11 deletions
diff --git a/services/attachment/attachment.go b/services/attachment/attachment.go
index 06f79be01b..7500a8ac3a 100644
--- a/services/attachment/attachment.go
+++ b/services/attachment/attachment.go
@@ -6,6 +6,7 @@ package attachment
import (
"bytes"
+ "context"
"fmt"
"io"
@@ -23,7 +24,7 @@ func NewAttachment(attach *models.Attachment, file io.Reader) (*models.Attachmen
return nil, fmt.Errorf("attachment %s should belong to a repository", attach.Name)
}
- err := db.WithTx(func(ctx *db.Context) error {
+ err := db.WithTx(func(ctx context.Context) error {
attach.UUID = uuid.New().String()
size, err := storage.Attachments.Save(attach.RelativePath(), file, -1)
if err != nil {
diff --git a/services/comments/comments.go b/services/comments/comments.go
index 901b82e380..d65c66aef2 100644
--- a/services/comments/comments.go
+++ b/services/comments/comments.go
@@ -23,7 +23,7 @@ func CreateIssueComment(doer *models.User, repo *models.Repository, issue *model
if err != nil {
return nil, err
}
- mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext(), doer, comment.Content)
+ mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext, doer, comment.Content)
if err != nil {
return nil, err
}
diff --git a/services/issue/issue.go b/services/issue/issue.go
index b2ac24e088..e3571bd396 100644
--- a/services/issue/issue.go
+++ b/services/issue/issue.go
@@ -24,7 +24,7 @@ func NewIssue(repo *models.Repository, issue *models.Issue, labelIDs []int64, uu
}
}
- mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext(), issue.Poster, issue.Content)
+ mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext, issue.Poster, issue.Content)
if err != nil {
return err
}
diff --git a/services/mirror/mirror_pull.go b/services/mirror/mirror_pull.go
index 1c0bf2b595..c2b413131d 100644
--- a/services/mirror/mirror_pull.go
+++ b/services/mirror/mirror_pull.go
@@ -204,7 +204,7 @@ func runSync(ctx context.Context, m *models.Mirror) ([]*mirrorSyncResult, bool)
gitRepo.Close()
log.Trace("SyncMirrors [repo: %-v]: updating size of repository", m.Repo)
- if err := m.Repo.UpdateSize(db.DefaultContext()); err != nil {
+ if err := m.Repo.UpdateSize(db.DefaultContext); err != nil {
log.Error("Failed to update size for mirror repository: %v", err)
}
diff --git a/services/pull/pull.go b/services/pull/pull.go
index d78d9b1bd0..bd5551b6dc 100644
--- a/services/pull/pull.go
+++ b/services/pull/pull.go
@@ -59,7 +59,7 @@ func NewPullRequest(repo *models.Repository, pull *models.Issue, labelIDs []int6
return err
}
- mentions, err := pull.FindAndUpdateIssueMentions(db.DefaultContext(), pull.Poster, pull.Content)
+ mentions, err := pull.FindAndUpdateIssueMentions(db.DefaultContext, pull.Poster, pull.Content)
if err != nil {
return err
}
diff --git a/services/pull/review.go b/services/pull/review.go
index ce34cc59df..f65314c45d 100644
--- a/services/pull/review.go
+++ b/services/pull/review.go
@@ -59,7 +59,7 @@ func CreateCodeComment(doer *models.User, gitRepo *git.Repository, issue *models
return nil, err
}
- mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext(), doer, comment.Content)
+ mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext, doer, comment.Content)
if err != nil {
return nil, err
}
@@ -246,7 +246,7 @@ func SubmitReview(doer *models.User, gitRepo *git.Repository, issue *models.Issu
return nil, nil, err
}
- ctx := db.DefaultContext()
+ ctx := db.DefaultContext
mentions, err := issue.FindAndUpdateIssueMentions(ctx, doer, comm.Content)
if err != nil {
return nil, nil, err
diff --git a/services/release/release.go b/services/release/release.go
index a9181398b5..f6f456e8fa 100644
--- a/services/release/release.go
+++ b/services/release/release.go
@@ -123,7 +123,7 @@ func CreateRelease(gitRepo *git.Repository, rel *models.Release, attachmentUUIDs
return err
}
- if err = models.AddReleaseAttachments(db.DefaultContext(), rel.ID, attachmentUUIDs); err != nil {
+ if err = models.AddReleaseAttachments(db.DefaultContext, rel.ID, attachmentUUIDs); err != nil {
return err
}
@@ -311,7 +311,7 @@ func DeleteReleaseByID(id int64, doer *models.User, delTag bool) error {
} else {
rel.IsTag = true
- if err = models.UpdateRelease(db.DefaultContext(), rel); err != nil {
+ if err = models.UpdateRelease(db.DefaultContext, rel); err != nil {
return fmt.Errorf("Update: %v", err)
}
}
diff --git a/services/repository/generate.go b/services/repository/generate.go
index 5a9f6aa658..fe38723dea 100644
--- a/services/repository/generate.go
+++ b/services/repository/generate.go
@@ -5,6 +5,8 @@
package repository
import (
+ "context"
+
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/modules/log"
@@ -21,7 +23,7 @@ func GenerateRepository(doer, owner *models.User, templateRepo *models.Repositor
}
var generateRepo *models.Repository
- if err = db.WithTx(func(ctx *db.Context) error {
+ if err = db.WithTx(func(ctx context.Context) error {
generateRepo, err = repo_module.GenerateRepository(ctx, doer, owner, templateRepo, opts)
if err != nil {
return err
diff --git a/services/repository/push.go b/services/repository/push.go
index f7590d5787..4d86667539 100644
--- a/services/repository/push.go
+++ b/services/repository/push.go
@@ -83,7 +83,7 @@ func pushUpdates(optsList []*repo_module.PushUpdateOptions) error {
}
defer gitRepo.Close()
- if err = repo.UpdateSize(db.DefaultContext()); err != nil {
+ if err = repo.UpdateSize(db.DefaultContext); err != nil {
log.Error("Failed to update size for repository: %v", err)
}