Lilian Jónsdóttir
cc973694e5
swap filepath.WalkDir for os.ReadDir I don't really know why I used WalkDir in the first place
319 lines
8 KiB
Go
319 lines
8 KiB
Go
package files
|
|
|
|
import (
|
|
"fmt"
|
|
"io/fs"
|
|
"math/rand"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"git.burning.moe/celediel/gt/internal/dirs"
|
|
"git.burning.moe/celediel/gt/internal/filter"
|
|
"git.burning.moe/celediel/gt/internal/prompt"
|
|
|
|
"github.com/charmbracelet/log"
|
|
"github.com/dustin/go-humanize"
|
|
"gitlab.com/tymonx/go-formatter/formatter"
|
|
"gopkg.in/ini.v1"
|
|
)
|
|
|
|
const (
|
|
executePerm = fs.FileMode(0755)
|
|
noExecuteUserPerm = fs.FileMode(0600)
|
|
randomStrLength int = 8
|
|
trashInfoExt string = ".trashinfo"
|
|
trashInfoSec string = "Trash Info"
|
|
trashInfoPath string = "Path"
|
|
trashInfoDate string = "DeletionDate"
|
|
trashInfoDateFmt string = "2006-01-02T15:04:05"
|
|
trashInfoTemplate string = `[Trash Info]
|
|
Path={path}
|
|
DeletionDate={date}
|
|
`
|
|
)
|
|
|
|
type TrashInfo struct {
|
|
name, ogpath string
|
|
path, trashinfo string
|
|
isdir bool
|
|
trashed time.Time
|
|
filesize int64
|
|
mode fs.FileMode
|
|
}
|
|
|
|
func (t TrashInfo) Name() string { return t.name }
|
|
func (t TrashInfo) TrashPath() string { return t.path }
|
|
func (t TrashInfo) Path() string { return t.ogpath }
|
|
func (t TrashInfo) TrashInfo() string { return t.trashinfo }
|
|
func (t TrashInfo) Date() time.Time { return t.trashed }
|
|
func (t TrashInfo) IsDir() bool { return t.isdir }
|
|
func (t TrashInfo) Mode() fs.FileMode { return t.mode }
|
|
func (t TrashInfo) Filesize() int64 {
|
|
if t.isdir {
|
|
return 0
|
|
}
|
|
return t.filesize
|
|
}
|
|
|
|
func (t TrashInfo) String() string {
|
|
return t.name + t.path + t.ogpath + t.trashinfo
|
|
}
|
|
|
|
func FindTrash(trashdir, ogdir string, fltr *filter.Filter) (Files, error) {
|
|
log.Debugf("searching for trashinfo files in %s", trashdir)
|
|
var files Files
|
|
|
|
infodir := filepath.Join(trashdir, "info")
|
|
dirs, err := os.ReadDir(infodir)
|
|
if err != nil {
|
|
return Files{}, err
|
|
}
|
|
|
|
for _, dir := range dirs {
|
|
if dir.IsDir() || filepath.Ext(dir.Name()) != trashInfoExt {
|
|
continue
|
|
}
|
|
|
|
path := filepath.Join(infodir, dir.Name())
|
|
|
|
// trashinfo is just an ini file, so
|
|
trashInfo, err := ini.Load(path)
|
|
if err != nil {
|
|
log.Errorf("error reading %s: %s", path, err)
|
|
continue
|
|
}
|
|
|
|
if section := trashInfo.Section(trashInfoSec); section != nil {
|
|
basepath := section.Key(trashInfoPath).String()
|
|
|
|
filename := filepath.Base(basepath)
|
|
trashedpath := strings.Replace(strings.Replace(path, "info", "files", 1), trashInfoExt, "", 1)
|
|
info, err := os.Lstat(trashedpath)
|
|
if err != nil {
|
|
log.Errorf("error reading '%s': %s", trashedpath, err)
|
|
continue
|
|
}
|
|
|
|
s := section.Key(trashInfoDate).Value()
|
|
date, err := time.ParseInLocation(trashInfoDateFmt, s, time.Local)
|
|
if err != nil {
|
|
log.Errorf("error parsing date '%s' in trashinfo file '%s': %s", s, path, err)
|
|
continue
|
|
}
|
|
|
|
if ogdir != "" && filepath.Dir(basepath) != ogdir {
|
|
continue
|
|
}
|
|
|
|
if fltr.Match(info) {
|
|
files = append(files, TrashInfo{
|
|
name: filename,
|
|
path: trashedpath,
|
|
ogpath: basepath,
|
|
trashinfo: path,
|
|
trashed: date,
|
|
isdir: info.IsDir(),
|
|
filesize: info.Size(),
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
return files, nil
|
|
}
|
|
|
|
func Restore(files Files) (restored int, err error) {
|
|
for _, maybeFile := range files {
|
|
file, ok := maybeFile.(TrashInfo)
|
|
if !ok {
|
|
return restored, fmt.Errorf("bad file?? %s", maybeFile.Name())
|
|
}
|
|
|
|
var cancel bool
|
|
outpath := dirs.UnEscape(file.ogpath)
|
|
log.Infof("restoring %s back to %s\n", file.name, outpath)
|
|
if _, e := os.Lstat(outpath); e == nil {
|
|
outpath, cancel = prompt.NewPath(outpath)
|
|
}
|
|
|
|
if cancel {
|
|
continue
|
|
}
|
|
|
|
basedir := filepath.Dir(outpath)
|
|
if _, e := os.Stat(basedir); e != nil {
|
|
if err = os.MkdirAll(basedir, executePerm); err != nil {
|
|
return restored, err
|
|
}
|
|
}
|
|
|
|
if err = os.Rename(file.path, outpath); err != nil {
|
|
return restored, err
|
|
}
|
|
|
|
if err = os.Remove(file.trashinfo); err != nil {
|
|
return restored, err
|
|
}
|
|
|
|
restored++
|
|
}
|
|
return restored, err
|
|
}
|
|
|
|
func ConfirmRestore(confirm bool, fs Files) error {
|
|
if !confirm || prompt.YesNo(fmt.Sprintf("restore %d selected files?", len(fs))) {
|
|
log.Info("doing the thing")
|
|
restored, err := Restore(fs)
|
|
if err != nil {
|
|
return fmt.Errorf("restored %d files before error %w", restored, err)
|
|
}
|
|
fmt.Fprintf(os.Stdout, "restored %d files\n", restored)
|
|
} else {
|
|
fmt.Fprintf(os.Stdout, "not doing anything\n")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Remove(files Files) (removed int, err error) {
|
|
for _, maybeFile := range files {
|
|
file, ok := maybeFile.(TrashInfo)
|
|
if !ok {
|
|
return removed, fmt.Errorf("bad file?? %s", maybeFile.Name())
|
|
}
|
|
|
|
if err = os.Remove(file.path); err != nil {
|
|
if i, e := os.Lstat(file.path); e == nil && i.IsDir() {
|
|
err = os.RemoveAll(file.path)
|
|
if err != nil {
|
|
return removed, err
|
|
}
|
|
} else {
|
|
return removed, err
|
|
}
|
|
}
|
|
if err = os.Remove(file.trashinfo); err != nil {
|
|
return removed, err
|
|
}
|
|
removed++
|
|
}
|
|
return removed, err
|
|
}
|
|
|
|
func ConfirmClean(confirm bool, fs Files) error {
|
|
if prompt.YesNo(fmt.Sprintf("remove %d selected files permanently from the trash?", len(fs))) &&
|
|
(!confirm || prompt.YesNo(fmt.Sprintf("really remove all these %d selected files permanently from the trash forever??", len(fs)))) {
|
|
removed, err := Remove(fs)
|
|
if err != nil {
|
|
return fmt.Errorf("removed %d files before error %w", removed, err)
|
|
}
|
|
fmt.Fprintf(os.Stdout, "removed %d files\n", removed)
|
|
} else {
|
|
fmt.Fprintf(os.Stdout, "not doing anything\n")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func TrashFile(trashDir, name string) error {
|
|
trashinfoFilename, outPath := ensureUniqueName(filepath.Base(name), trashDir)
|
|
|
|
if err := os.Rename(name, outPath); err != nil {
|
|
if strings.Contains(err.Error(), "invalid cross-device link") {
|
|
// TODO: use $topdir/.Trash as per XDG spec
|
|
// TODO: maybe figure out if filesystem is truly different or is a btrfs subvolume
|
|
return err
|
|
}
|
|
return err
|
|
}
|
|
|
|
trashInfo, err := formatter.Format(trashInfoTemplate, formatter.Named{
|
|
"path": name,
|
|
"date": time.Now().Format(trashInfoDateFmt),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := os.WriteFile(trashinfoFilename, []byte(trashInfo), noExecuteUserPerm); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func TrashFiles(trashDir string, files ...string) (trashed int) {
|
|
for _, file := range files {
|
|
if err := TrashFile(trashDir, file); err != nil {
|
|
log.Errorf("cannot trash '%s': %s", file, err)
|
|
continue
|
|
}
|
|
trashed++
|
|
}
|
|
return trashed
|
|
}
|
|
|
|
func ConfirmTrash(confirm bool, fs Files, trashDir string) error {
|
|
if !confirm || prompt.YesNo(fmt.Sprintf("trash %d selected files?", len(fs))) {
|
|
tfs := make([]string, 0, len(fs))
|
|
for _, file := range fs {
|
|
log.Debugf("gonna trash %s", file.Path())
|
|
tfs = append(tfs, file.Path())
|
|
}
|
|
|
|
trashed := TrashFiles(trashDir, tfs...)
|
|
|
|
var files string
|
|
if trashed == 1 {
|
|
files = "file"
|
|
} else {
|
|
files = "files"
|
|
}
|
|
fmt.Fprintf(os.Stdout, "trashed %d %s\n", trashed, files)
|
|
} else {
|
|
fmt.Fprintf(os.Stdout, "not doing anything\n")
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func randomFilename(length int) string {
|
|
out := strings.Builder{}
|
|
for range length {
|
|
out.WriteByte(randomChar())
|
|
}
|
|
return out.String()
|
|
}
|
|
|
|
func randomChar() byte {
|
|
const chars string = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
|
|
return chars[rand.Intn(len(chars))]
|
|
}
|
|
|
|
func ensureUniqueName(filename, trashDir string) (string, string) {
|
|
var (
|
|
filedir = filepath.Join(trashDir, "files")
|
|
infodir = filepath.Join(trashDir, "info")
|
|
)
|
|
|
|
info := filepath.Join(infodir, filename+trashInfoExt)
|
|
if _, err := os.Stat(info); os.IsNotExist(err) {
|
|
// doesn't exist, so use it
|
|
path := filepath.Join(filedir, filename)
|
|
return info, path
|
|
}
|
|
|
|
// otherwise, try random suffixes until one works
|
|
log.Debugf("%s exists in trash, generating random name", filename)
|
|
var tries int
|
|
for {
|
|
tries++
|
|
rando := randomFilename(randomStrLength)
|
|
newName := filepath.Join(infodir, filename+rando+trashInfoExt)
|
|
if _, err := os.Stat(newName); os.IsNotExist(err) {
|
|
path := filepath.Join(filedir, filename+rando)
|
|
log.Debugf("settled on random name %s%s on the %s try", filename, rando, humanize.Ordinal(tries))
|
|
return newName, path
|
|
}
|
|
}
|
|
}
|