aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/db/repo_editor.go22
-rw-r--r--internal/route/repo/editor.go15
2 files changed, 17 insertions, 20 deletions
diff --git a/internal/db/repo_editor.go b/internal/db/repo_editor.go
index 98065d43..63c88b76 100644
--- a/internal/db/repo_editor.go
+++ b/internal/db/repo_editor.go
@@ -7,7 +7,6 @@ package db
import (
"fmt"
"io"
- "io/ioutil"
"mime/multipart"
"os"
"os/exec"
@@ -109,14 +108,13 @@ func (repo *Repository) CheckoutNewBranch(oldBranch, newBranch string) error {
}
type UpdateRepoFileOptions struct {
- LastCommitID string
- OldBranch string
- NewBranch string
- OldTreeName string
- NewTreeName string
- Message string
- Content string
- IsNewFile bool
+ OldBranch string
+ NewBranch string
+ OldTreeName string
+ NewTreeName string
+ Message string
+ Content string
+ IsNewFile bool
}
// UpdateRepoFile adds or updates a file in repository.
@@ -179,7 +177,7 @@ func (repo *Repository) UpdateRepoFile(doer *User, opts UpdateRepoFileOptions) (
}
}
- if err = ioutil.WriteFile(filePath, []byte(opts.Content), 0666); err != nil {
+ if err = os.WriteFile(filePath, []byte(opts.Content), 0600); err != nil {
return fmt.Errorf("write file: %v", err)
}
@@ -225,7 +223,7 @@ func (repo *Repository) GetDiffPreview(branch, treePath, content string) (diff *
if err = os.MkdirAll(filepath.Dir(filePath), os.ModePerm); err != nil {
return nil, err
}
- if err = ioutil.WriteFile(filePath, []byte(content), 0666); err != nil {
+ if err = os.WriteFile(filePath, []byte(content), 0600); err != nil {
return nil, fmt.Errorf("write file: %v", err)
}
@@ -365,7 +363,7 @@ func NewUpload(name string, buf []byte, file multipart.File) (_ *Upload, err err
if err != nil {
return nil, fmt.Errorf("create: %v", err)
}
- defer fw.Close()
+ defer func() { _ = fw.Close() }()
if _, err = fw.Write(buf); err != nil {
return nil, fmt.Errorf("write: %v", err)
diff --git a/internal/route/repo/editor.go b/internal/route/repo/editor.go
index 58536f5b..bc9e30de 100644
--- a/internal/route/repo/editor.go
+++ b/internal/route/repo/editor.go
@@ -262,14 +262,13 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) {
}
if err := c.Repo.Repository.UpdateRepoFile(c.User, db.UpdateRepoFileOptions{
- LastCommitID: lastCommit,
- OldBranch: oldBranchName,
- NewBranch: branchName,
- OldTreeName: oldTreePath,
- NewTreeName: f.TreePath,
- Message: message,
- Content: strings.ReplaceAll(f.Content, "\r", ""),
- IsNewFile: isNewFile,
+ OldBranch: oldBranchName,
+ NewBranch: branchName,
+ OldTreeName: oldTreePath,
+ NewTreeName: f.TreePath,
+ Message: message,
+ Content: strings.ReplaceAll(f.Content, "\r", ""),
+ IsNewFile: isNewFile,
}); err != nil {
log.Error("Failed to update repo file: %v", err)
c.FormErr("TreePath")