diff options
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/migrations/v15.go | 5 | ||||
-rw-r--r-- | internal/db/pull.go | 3 | ||||
-rw-r--r-- | internal/db/repo.go | 9 | ||||
-rw-r--r-- | internal/db/repo_editor.go | 7 |
4 files changed, 14 insertions, 10 deletions
diff --git a/internal/db/migrations/v15.go b/internal/db/migrations/v15.go index 7f3b9504..d9c913df 100644 --- a/internal/db/migrations/v15.go +++ b/internal/db/migrations/v15.go @@ -12,9 +12,10 @@ import ( "strings" "github.com/unknwon/com" - "xorm.io/xorm" log "gopkg.in/clog.v1" + "xorm.io/xorm" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/setting" ) @@ -80,7 +81,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) { // Gogs didn't allow user to set custom update hook thus no migration for it. // In case user runs this migration multiple times, and custom hook exists, // we assume it's been migrated already. - if hookName != "update" && com.IsFile(oldHookPath) && !com.IsExist(customHookDir) { + if hookName != "update" && osutil.IsFile(oldHookPath) && !com.IsExist(customHookDir) { os.MkdirAll(customHookDir, os.ModePerm) if err = os.Rename(oldHookPath, newHookPath); err != nil { return fmt.Errorf("move hook file to custom directory '%s' -> '%s': %v", oldHookPath, newHookPath, err) diff --git a/internal/db/pull.go b/internal/db/pull.go index 30179eb2..ccc46231 100644 --- a/internal/db/pull.go +++ b/internal/db/pull.go @@ -19,6 +19,7 @@ import ( api "github.com/gogs/go-gogs-client" "gogs.io/gogs/internal/db/errors" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/process" "gogs.io/gogs/internal/setting" "gogs.io/gogs/internal/sync" @@ -406,7 +407,7 @@ func (pr *PullRequest) testPatch() (err error) { } // Fast fail if patch does not exist, this assumes data is cruppted. - if !com.IsFile(patchPath) { + if !osutil.IsFile(patchPath) { log.Trace("PullRequest[%d].testPatch: ignored cruppted data", pr.ID) return nil } diff --git a/internal/db/repo.go b/internal/db/repo.go index 3195e5dd..6d3c8689 100644 --- a/internal/db/repo.go +++ b/internal/db/repo.go @@ -30,10 +30,11 @@ import ( "github.com/gogs/git-module" api "github.com/gogs/go-gogs-client" + "gogs.io/gogs/internal/assets/conf" "gogs.io/gogs/internal/avatar" - "gogs.io/gogs/internal/bindata" "gogs.io/gogs/internal/db/errors" "gogs.io/gogs/internal/markup" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/process" "gogs.io/gogs/internal/setting" "gogs.io/gogs/internal/sync" @@ -56,7 +57,7 @@ func LoadRepoConfig() { types := []string{"gitignore", "license", "readme", "label"} typeFiles := make([][]string, 4) for i, t := range types { - files, err := bindata.AssetDir("conf/" + t) + files, err := conf.AssetDir("conf/" + t) if err != nil { log.Fatal(4, "Fail to get %s files: %v", t, err) } @@ -929,10 +930,10 @@ func getRepoInitFile(tp, name string) ([]byte, error) { // Use custom file when available. customPath := path.Join(setting.CustomPath, relPath) - if com.IsFile(customPath) { + if osutil.IsFile(customPath) { return ioutil.ReadFile(customPath) } - return bindata.Asset(relPath) + return conf.Asset(relPath) } func prepareRepoCommit(repo *Repository, tmpDir, repoPath string, opts CreateRepoOptions) error { diff --git a/internal/db/repo_editor.go b/internal/db/repo_editor.go index f224ac49..ebd4be47 100644 --- a/internal/db/repo_editor.go +++ b/internal/db/repo_editor.go @@ -22,6 +22,7 @@ import ( "github.com/gogs/git-module" "gogs.io/gogs/internal/db/errors" + "gogs.io/gogs/internal/osutil" "gogs.io/gogs/internal/process" "gogs.io/gogs/internal/setting" "gogs.io/gogs/internal/tool" @@ -165,7 +166,7 @@ func (repo *Repository) UpdateRepoFile(doer *User, opts UpdateRepoFileOptions) ( // Ignore move step if it's a new file under a directory. // Otherwise, move the file when name changed. - if com.IsFile(oldFilePath) && opts.OldTreeName != opts.NewTreeName { + if osutil.IsFile(oldFilePath) && opts.OldTreeName != opts.NewTreeName { if err = git.MoveFile(localPath, opts.OldTreeName, opts.NewTreeName); err != nil { return fmt.Errorf("git mv %q %q: %v", opts.OldTreeName, opts.NewTreeName, err) } @@ -402,7 +403,7 @@ func DeleteUploads(uploads ...*Upload) (err error) { for _, upload := range uploads { localPath := upload.LocalPath() - if !com.IsFile(localPath) { + if !osutil.IsFile(localPath) { continue } @@ -480,7 +481,7 @@ func (repo *Repository) UploadRepoFiles(doer *User, opts UploadRepoFileOptions) // Copy uploaded files into repository for _, upload := range uploads { tmpPath := upload.LocalPath() - if !com.IsFile(tmpPath) { + if !osutil.IsFile(tmpPath) { continue } |