2019-05-11 09:29:17 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-11 09:29:17 -06:00
|
|
|
|
2022-05-08 10:46:32 -06:00
|
|
|
package repository
|
2019-05-11 09:29:17 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-08-11 14:05:34 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-05-11 09:29:17 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// LocalCopyPath returns the local repository temporary copy path.
|
|
|
|
func LocalCopyPath() string {
|
|
|
|
if filepath.IsAbs(setting.Repository.Local.LocalCopyPath) {
|
|
|
|
return setting.Repository.Local.LocalCopyPath
|
|
|
|
}
|
|
|
|
return path.Join(setting.AppDataPath, setting.Repository.Local.LocalCopyPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateTemporaryPath creates a temporary path
|
|
|
|
func CreateTemporaryPath(prefix string) (string, error) {
|
2019-12-13 15:21:06 -07:00
|
|
|
if err := os.MkdirAll(LocalCopyPath(), os.ModePerm); err != nil {
|
|
|
|
log.Error("Unable to create localcopypath directory: %s (%v)", LocalCopyPath(), err)
|
2022-10-24 13:29:17 -06:00
|
|
|
return "", fmt.Errorf("Failed to create localcopypath directory %s: %w", LocalCopyPath(), err)
|
2019-12-13 15:21:06 -07:00
|
|
|
}
|
2021-09-21 23:38:34 -06:00
|
|
|
basePath, err := os.MkdirTemp(LocalCopyPath(), prefix+".git")
|
2019-12-13 15:21:06 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Error("Unable to create temporary directory: %s-*.git (%v)", prefix, err)
|
2022-10-24 13:29:17 -06:00
|
|
|
return "", fmt.Errorf("Failed to create dir %s-*.git: %w", prefix, err)
|
2019-12-13 15:21:06 -07:00
|
|
|
|
2019-05-11 09:29:17 -06:00
|
|
|
}
|
|
|
|
return basePath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveTemporaryPath removes the temporary path
|
|
|
|
func RemoveTemporaryPath(basePath string) error {
|
|
|
|
if _, err := os.Stat(basePath); !os.IsNotExist(err) {
|
2020-08-11 14:05:34 -06:00
|
|
|
return util.RemoveAll(basePath)
|
2019-05-11 09:29:17 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|