From 9363cc1f0ecd82c2eddca6c0c8c7ae7f876f295a Mon Sep 17 00:00:00 2001 From: Akhil Gupta Date: Fri, 29 Jan 2021 11:38:09 +0530 Subject: [PATCH] move backups to config path --- .gitignore | 3 ++- service/fileService.go | 20 ++++++++++++++------ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 92a3977..649bb13 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ # Dependency directories (remove the comment below to include it) # vendor/ assets/* -keys/* \ No newline at end of file +keys/* +backups/* \ No newline at end of file diff --git a/service/fileService.go b/service/fileService.go index 40df737..2e16def 100644 --- a/service/fileService.go +++ b/service/fileService.go @@ -33,7 +33,7 @@ func Download(link string, episodeTitle string, podcastName string, prefix strin if prefix != "" { fileName = fmt.Sprintf("%s-%s", prefix, fileName) } - folder := createIfFoldeDoesntExist(podcastName) + folder := createDataFolderIfNotExists(podcastName) finalPath := path.Join(folder, fileName) if _, err := os.Stat(finalPath); !os.IsNotExist(err) { @@ -85,7 +85,7 @@ func FileExists(filePath string) bool { func GetAllBackupFiles() ([]string, error) { var files []string - folder := createIfFoldeDoesntExist("backups") + folder := createConfigFolderIfNotExists("backups") err := filepath.Walk(folder, func(path string, info os.FileInfo, err error) error { if !info.IsDir() { files = append(files, path) @@ -115,7 +115,7 @@ func deleteOldBackup() { func CreateBackup() (string, error) { backupFileName := "podgrab_backup_" + time.Now().Format("2006.01.02_150405") + ".tar.gz" - folder := createIfFoldeDoesntExist("backups") + folder := createConfigFolderIfNotExists("backups") configPath := os.Getenv("CONFIG") tarballFilePath := path.Join(folder, backupFileName) file, err := os.Create(tarballFilePath) @@ -184,11 +184,10 @@ func httpClient() *http.Client { return &client } -func createIfFoldeDoesntExist(folder string) string { +func createFolder(folder string, parent string) string { str := stringy.New(folder) folder = str.RemoveSpecialCharacter() - dataPath := os.Getenv("DATA") - folderPath := path.Join(dataPath, folder) + folderPath := path.Join(parent, folder) if _, err := os.Stat(folderPath); os.IsNotExist(err) { os.MkdirAll(folderPath, 0777) changeOwnership(folderPath) @@ -196,6 +195,15 @@ func createIfFoldeDoesntExist(folder string) string { return folderPath } +func createDataFolderIfNotExists(folder string) string { + dataPath := os.Getenv("DATA") + return createFolder(dataPath, folder) +} +func createConfigFolderIfNotExists(folder string) string { + dataPath := os.Getenv("CONFIG") + return createFolder(dataPath, folder) +} + func getFileName(link string, title string, defaultExtension string) string { fileUrl, err := url.Parse(link) checkError(err)