organizer/handle_file.go

104 lines
2.5 KiB
Go
Raw Normal View History

2023-01-13 19:23:36 +01:00
package main
import (
"fmt"
2023-01-14 09:45:21 +01:00
"log"
2023-01-13 19:23:36 +01:00
"path/filepath"
"git.milar.in/nyaanime/logic"
"git.milar.in/nyaanime/model"
"git.milar.in/nyaanime/parsers"
2023-01-14 10:33:29 +01:00
"github.com/fatih/color"
2023-01-13 19:23:36 +01:00
)
2023-01-14 10:33:29 +01:00
func HandleFile(path string) {
color.Magenta("\nfile found: %s\n", filepath.Base(path))
2023-01-13 19:23:36 +01:00
for _, parser := range parsers.Parsers {
parsedFile, ok := parser.FileParser(&parser, path)
if !ok {
2023-01-14 10:33:29 +01:00
color.Red("\tnot parsable with parser '%s'\n", parser.Identity)
2023-01-13 19:23:36 +01:00
continue
}
2023-01-14 10:33:29 +01:00
color.Green("\tparsable with parser '%s'\n", parser.Identity)
2023-01-13 19:23:36 +01:00
anime, err := logic.SearchAnimeByTitle(parsedFile.OriginalAnimeTitle)
if err != nil {
2023-01-14 10:33:29 +01:00
color.Red("\tanime not found: '%s'\n", parsedFile.OriginalAnimeTitle)
2023-01-13 19:23:36 +01:00
continue
}
parsedFile.Anime = anime
HandleParsedFile(parsedFile)
2023-01-14 10:33:29 +01:00
return
2023-01-13 19:23:36 +01:00
}
}
func HandleParsedFile(parsedFile *model.ParsedFile) {
newFilePrio := logic.NewFilePriority(parsedFile)
oldFilePrio, animeEpNotExistLocally := logic.GetAnimeEpProps(parsedFile.AnimeEpisode())
if !animeEpNotExistLocally || newFilePrio.Priority > oldFilePrio.Priority {
2023-01-14 10:33:29 +01:00
fmt.Println("\tmove file")
// go func(parsedFile *model.ParsedFile) {
// if err := OrganizeAnimeEpisode(parsedFile); err != nil {
// adverr.Println(err)
// }
// }(parsedFile)
2023-01-13 19:23:36 +01:00
}
}
func OrganizeAnimeEpisode(parsedFile *model.ParsedFile) error {
oldFile := filepath.Join(DownloadPath, parsedFile.File)
newFile := logic.GetAnimeEpFilepath(parsedFile.AnimeEpisode(), filepath.Ext(parsedFile.File))
2023-01-14 10:33:29 +01:00
//lockFile := logic.GetAnimeEpFilepath(parsedFile.AnimeEpisode(), "lock")
2023-01-13 19:23:36 +01:00
2023-01-14 09:45:21 +01:00
log.Printf("move file '%s' to '%s'\n", oldFile, newFile)
2023-01-13 19:23:36 +01:00
2023-01-14 10:33:29 +01:00
// if err := os.MkdirAll(filepath.Dir(newFile), os.ModePerm); err != nil {
// return err
// }
// if err := os.Chown(filepath.Dir(newFile), Uid, Gid); err != nil {
// return err
// }
// if _, err := os.Stat(newFile); !errors.Is(err, os.ErrNotExist) {
// fmt.Fprintln(os.Stderr, "file already exists:", newFile)
// return err
// }
// inputFile, err := os.Open(oldFile)
// if err != nil {
// return err
// }
// defer inputFile.Close()
// outputFile, err := os.Create(newFile)
// if err != nil {
// return err
// }
// defer outputFile.Close()
// if err := os.Chown(newFile, Uid, Gid); err != nil {
// return err
// }
// _, err = io.Copy(outputFile, inputFile)
// if err != nil {
// return err
// }
// if err = os.Remove(oldFile); err != nil {
// return err
// }
// if err = os.Remove(lockFile); err != nil {
// return err
// }
2023-01-13 19:23:36 +01:00
2023-01-14 09:45:21 +01:00
log.Printf("file '%s' moved\n", newFile)
2023-01-13 19:23:36 +01:00
return nil
}