2022-09-08 15:57:59 +00:00
|
|
|
/*
|
|
|
|
Copyright © 2022 Seednode <seednode@seedno.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2022-09-09 22:21:03 +00:00
|
|
|
"errors"
|
2022-09-17 16:07:37 +00:00
|
|
|
"fmt"
|
2022-10-28 23:32:03 +00:00
|
|
|
"image"
|
|
|
|
_ "image/gif"
|
|
|
|
_ "image/jpeg"
|
|
|
|
_ "image/png"
|
|
|
|
|
2022-09-08 15:57:59 +00:00
|
|
|
"math/rand"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2022-09-17 16:07:37 +00:00
|
|
|
"regexp"
|
2022-10-23 21:29:58 +00:00
|
|
|
"runtime"
|
2022-09-17 16:07:37 +00:00
|
|
|
"strconv"
|
2022-09-24 22:17:56 +00:00
|
|
|
"strings"
|
2022-10-20 19:22:01 +00:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
2022-09-08 15:57:59 +00:00
|
|
|
"time"
|
2022-09-10 00:00:02 +00:00
|
|
|
|
2022-10-29 15:32:01 +00:00
|
|
|
_ "golang.org/x/image/bmp"
|
2022-10-28 23:32:03 +00:00
|
|
|
_ "golang.org/x/image/webp"
|
|
|
|
|
2022-09-10 00:00:02 +00:00
|
|
|
"github.com/h2non/filetype"
|
2022-09-08 15:57:59 +00:00
|
|
|
)
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
var (
|
2022-11-05 16:00:42 +00:00
|
|
|
ErrNoImagesFound = fmt.Errorf("no supported image formats found which match all criteria")
|
2022-10-31 20:18:47 +00:00
|
|
|
extensions = [6]string{".jpg", ".jpeg", ".png", ".gif", ".webp", ".bmp"}
|
2022-10-20 19:22:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Files struct {
|
|
|
|
Mutex sync.Mutex
|
|
|
|
List map[string][]string
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:17:40 +00:00
|
|
|
type Stats struct {
|
|
|
|
FilesMatched uint64
|
|
|
|
FilesSkipped uint64
|
|
|
|
DirectoriesMatched uint64
|
2022-10-20 19:22:01 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 22:55:25 +00:00
|
|
|
func (s *Stats) GetFilesTotal() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.FilesMatched) + atomic.LoadUint64(&s.FilesSkipped)
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
func (s *Stats) IncrementFilesMatched() {
|
|
|
|
atomic.AddUint64(&s.FilesMatched, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stats) GetFilesMatched() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.FilesMatched)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stats) IncrementFilesSkipped() {
|
|
|
|
atomic.AddUint64(&s.FilesSkipped, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stats) GetFilesSkipped() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.FilesSkipped)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stats) IncrementDirectoriesMatched() {
|
|
|
|
atomic.AddUint64(&s.DirectoriesMatched, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Stats) GetDirectoriesMatched() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.DirectoriesMatched)
|
2022-10-20 16:17:40 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 21:40:13 +00:00
|
|
|
type Path struct {
|
|
|
|
Base string
|
|
|
|
Number int
|
|
|
|
Extension string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Path) Increment() {
|
|
|
|
p.Number = p.Number + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Path) Decrement() {
|
|
|
|
p.Number = p.Number - 1
|
|
|
|
}
|
|
|
|
|
2022-10-25 05:11:55 +00:00
|
|
|
func humanReadableSize(bytes int) string {
|
|
|
|
const unit = 1000
|
|
|
|
|
|
|
|
if bytes < unit {
|
|
|
|
return fmt.Sprintf("%d B", bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
div, exp := int64(unit), 0
|
|
|
|
|
|
|
|
for n := bytes / unit; n >= unit; n /= unit {
|
|
|
|
div *= unit
|
|
|
|
exp++
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("%.1f %cB",
|
|
|
|
float64(bytes)/float64(div), "KMGTPE"[exp])
|
|
|
|
}
|
|
|
|
|
2022-10-28 23:32:03 +00:00
|
|
|
func getImageDimensions(path string) (string, error) {
|
|
|
|
file, err := os.Open(path)
|
2022-11-05 16:00:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2022-10-28 23:32:03 +00:00
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
myImage, _, err := image.DecodeConfig(file)
|
|
|
|
if errors.Is(err, image.ErrFormat) {
|
|
|
|
return "", nil
|
|
|
|
} else if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("%vx%v", myImage.Width, myImage.Height), nil
|
|
|
|
}
|
|
|
|
|
2022-10-23 21:16:40 +00:00
|
|
|
func preparePath(path string) string {
|
2022-10-23 21:29:58 +00:00
|
|
|
if runtime.GOOS == "windows" {
|
2022-10-23 21:47:23 +00:00
|
|
|
path = fmt.Sprintf("/%v", filepath.ToSlash(path))
|
2022-10-23 21:29:58 +00:00
|
|
|
}
|
2022-10-23 21:16:40 +00:00
|
|
|
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
func appendPath(directory, path string, files *Files, stats *Stats) error {
|
2022-10-31 20:18:47 +00:00
|
|
|
// If caching, only check image types once, during the initial scan, to speed up future pickFile() calls
|
2022-10-28 22:19:04 +00:00
|
|
|
if Cache {
|
|
|
|
image, err := isImage(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !image {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
files.Mutex.Lock()
|
|
|
|
files.List[directory] = append(files.List[directory], path)
|
2022-11-02 14:10:55 +00:00
|
|
|
files.Mutex.Unlock()
|
2022-10-28 22:19:04 +00:00
|
|
|
|
2022-11-02 14:17:07 +00:00
|
|
|
stats.IncrementFilesMatched()
|
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
return nil
|
2022-10-20 19:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func appendPaths(path string, files *Files, filters *Filters, stats *Stats) error {
|
2022-09-24 23:59:10 +00:00
|
|
|
absolutePath, err := filepath.Abs(path)
|
|
|
|
if err != nil {
|
2022-10-20 19:22:01 +00:00
|
|
|
return err
|
2022-09-24 23:59:10 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 00:27:11 +00:00
|
|
|
directory, filename := filepath.Split(absolutePath)
|
2022-09-25 01:28:34 +00:00
|
|
|
|
2022-10-20 15:38:32 +00:00
|
|
|
filename = strings.ToLower(filename)
|
|
|
|
|
2022-10-23 18:08:08 +00:00
|
|
|
if filters.HasExcludes() {
|
2022-10-20 00:27:11 +00:00
|
|
|
for i := 0; i < len(filters.Excludes); i++ {
|
|
|
|
if strings.Contains(
|
2022-10-20 15:38:32 +00:00
|
|
|
filename,
|
|
|
|
filters.Excludes[i],
|
2022-10-20 00:27:11 +00:00
|
|
|
) {
|
2022-10-20 19:22:01 +00:00
|
|
|
stats.IncrementFilesSkipped()
|
2022-10-20 16:17:40 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
return nil
|
2022-10-20 00:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-23 18:08:08 +00:00
|
|
|
}
|
2022-10-20 00:27:11 +00:00
|
|
|
|
2022-10-23 18:08:08 +00:00
|
|
|
if filters.HasIncludes() {
|
2022-10-20 00:27:11 +00:00
|
|
|
for i := 0; i < len(filters.Includes); i++ {
|
|
|
|
if strings.Contains(
|
2022-10-20 15:38:32 +00:00
|
|
|
filename,
|
|
|
|
filters.Includes[i],
|
2022-10-20 00:27:11 +00:00
|
|
|
) {
|
2022-10-28 22:19:04 +00:00
|
|
|
err := appendPath(directory, path, files, stats)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-20 00:27:11 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
return nil
|
2022-10-20 00:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-24 23:59:10 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
stats.IncrementFilesSkipped()
|
2022-10-20 16:17:40 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
return nil
|
2022-10-20 15:38:32 +00:00
|
|
|
}
|
2022-10-23 18:08:08 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
err = appendPath(directory, path, files, stats)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-23 18:08:08 +00:00
|
|
|
|
|
|
|
return nil
|
2022-09-24 22:17:56 +00:00
|
|
|
}
|
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
func getNewFile(paths []string, filters *Filters, sortOrder string, re regexp.Regexp, fileCache *[]string) (string, error) {
|
|
|
|
filePath, err := pickFile(paths, filters, sortOrder, fileCache)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil
|
|
|
|
}
|
2022-09-18 18:07:46 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
path, err := splitPath(filePath, re)
|
2022-09-18 18:07:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
path.Number = 1
|
2022-10-18 18:42:32 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
switch {
|
|
|
|
case sortOrder == "asc":
|
|
|
|
filePath, err = tryExtensions(path)
|
2022-10-18 18:42:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2022-11-05 16:00:42 +00:00
|
|
|
case sortOrder == "desc":
|
|
|
|
for {
|
|
|
|
path.Increment()
|
2022-10-18 18:42:32 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
filePath, err = tryExtensions(path)
|
2022-10-18 21:46:55 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2022-10-18 18:42:32 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
if filePath == "" {
|
|
|
|
path.Decrement()
|
2022-09-18 18:07:46 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
filePath, err = tryExtensions(path)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2022-09-17 17:42:25 +00:00
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 16:07:37 +00:00
|
|
|
}
|
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
return filePath, nil
|
2022-10-18 21:40:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-05 16:17:31 +00:00
|
|
|
func getNextFile(filePath, sortOrder string, re regexp.Regexp) (string, error) {
|
|
|
|
path, err := splitPath(filePath, re)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
switch {
|
|
|
|
case sortOrder == "asc":
|
2022-11-05 16:17:31 +00:00
|
|
|
path.Increment()
|
2022-11-05 16:00:42 +00:00
|
|
|
case sortOrder == "desc":
|
2022-11-05 16:17:31 +00:00
|
|
|
path.Decrement()
|
2022-11-05 16:00:42 +00:00
|
|
|
default:
|
|
|
|
return "", nil
|
|
|
|
}
|
2022-10-18 21:40:13 +00:00
|
|
|
|
2022-11-05 16:17:31 +00:00
|
|
|
fileName, err := tryExtensions(path)
|
2022-09-17 16:07:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
return fileName, err
|
|
|
|
}
|
|
|
|
|
2022-10-23 18:45:49 +00:00
|
|
|
func splitPath(path string, re regexp.Regexp) (*Path, error) {
|
2022-10-18 21:46:55 +00:00
|
|
|
p := Path{}
|
|
|
|
var err error
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
split := re.FindAllStringSubmatch(path, -1)
|
|
|
|
|
|
|
|
if len(split) < 1 || len(split[0]) < 3 {
|
2022-10-20 00:41:42 +00:00
|
|
|
return &Path{}, nil
|
2022-09-17 16:07:37 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 21:40:13 +00:00
|
|
|
p.Base = split[0][1]
|
2022-10-18 21:46:55 +00:00
|
|
|
|
2022-10-18 21:40:13 +00:00
|
|
|
p.Number, err = strconv.Atoi(split[0][2])
|
2022-10-20 19:50:42 +00:00
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
if err != nil {
|
2022-10-20 00:41:42 +00:00
|
|
|
return &Path{}, err
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
2022-10-18 21:46:55 +00:00
|
|
|
|
2022-10-18 21:40:13 +00:00
|
|
|
p.Extension = split[0][3]
|
2022-09-26 17:31:45 +00:00
|
|
|
|
2022-10-20 00:41:42 +00:00
|
|
|
return &p, nil
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 00:41:42 +00:00
|
|
|
func tryExtensions(p *Path) (string, error) {
|
2022-10-18 18:42:32 +00:00
|
|
|
var fileName string
|
|
|
|
|
2022-10-25 05:06:57 +00:00
|
|
|
for _, extension := range extensions {
|
|
|
|
fileName = fmt.Sprintf("%v%.3d%v", p.Base, p.Number, extension)
|
2022-10-18 18:42:32 +00:00
|
|
|
|
|
|
|
exists, err := fileExists(fileName)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
if exists {
|
|
|
|
return fileName, nil
|
|
|
|
}
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
return "", nil
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
func fileExists(path string) (bool, error) {
|
2022-09-25 01:28:34 +00:00
|
|
|
_, err := os.Stat(path)
|
|
|
|
switch {
|
|
|
|
case err == nil:
|
2022-09-17 16:07:37 +00:00
|
|
|
return true, nil
|
2022-09-25 01:28:34 +00:00
|
|
|
case errors.Is(err, os.ErrNotExist):
|
2022-09-17 16:07:37 +00:00
|
|
|
return false, nil
|
2022-09-25 01:28:34 +00:00
|
|
|
default:
|
2022-09-17 16:07:37 +00:00
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
func pathIsValid(filePath string, paths []string) bool {
|
|
|
|
var matchesPrefix = false
|
2022-10-20 22:12:29 +00:00
|
|
|
|
2022-10-18 18:42:32 +00:00
|
|
|
for i := 0; i < len(paths); i++ {
|
|
|
|
if strings.HasPrefix(filePath, paths[i]) {
|
|
|
|
matchesPrefix = true
|
|
|
|
}
|
|
|
|
}
|
2022-10-20 22:55:25 +00:00
|
|
|
|
2022-10-25 05:06:57 +00:00
|
|
|
switch {
|
|
|
|
case Verbose && !matchesPrefix:
|
2022-10-20 22:55:25 +00:00
|
|
|
fmt.Printf("%v | Error: Failed to serve file outside specified path(s): %v\n",
|
|
|
|
time.Now().Format(LOGDATE),
|
|
|
|
filePath,
|
|
|
|
)
|
2022-10-18 18:42:32 +00:00
|
|
|
|
|
|
|
return false
|
2022-10-25 05:06:57 +00:00
|
|
|
case !matchesPrefix:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return true
|
2022-10-18 18:42:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-26 17:31:45 +00:00
|
|
|
func isImage(path string) (bool, error) {
|
2022-09-09 22:21:03 +00:00
|
|
|
file, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2022-09-10 18:09:39 +00:00
|
|
|
defer file.Close()
|
2022-09-09 22:21:03 +00:00
|
|
|
|
2022-09-10 00:00:02 +00:00
|
|
|
head := make([]byte, 261)
|
|
|
|
file.Read(head)
|
2022-09-09 22:21:03 +00:00
|
|
|
|
2022-09-26 17:31:45 +00:00
|
|
|
return filetype.IsImage(head), nil
|
2022-09-09 22:21:03 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
func getFiles(path string, files *Files, filters *Filters, stats *Stats, concurrency *Concurrency) error {
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
2022-09-08 18:12:50 +00:00
|
|
|
err := filepath.WalkDir(path, func(p string, info os.DirEntry, err error) error {
|
2022-09-24 23:59:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-09-08 18:12:50 +00:00
|
|
|
}
|
2022-09-08 20:30:51 +00:00
|
|
|
|
2022-09-24 22:17:56 +00:00
|
|
|
switch {
|
2022-09-24 23:59:10 +00:00
|
|
|
case !Recursive && info.IsDir() && p != path:
|
|
|
|
return filepath.SkipDir
|
2022-09-25 01:54:51 +00:00
|
|
|
case !info.IsDir():
|
2022-10-20 19:22:01 +00:00
|
|
|
wg.Add(1)
|
|
|
|
concurrency.FileScans <- 1
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer func() {
|
|
|
|
<-concurrency.FileScans
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
|
|
|
err = appendPaths(p, files, filters, stats)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
}()
|
2022-10-20 16:17:40 +00:00
|
|
|
case info.IsDir():
|
2022-10-20 19:22:01 +00:00
|
|
|
stats.IncrementDirectoriesMatched()
|
2022-09-08 17:12:58 +00:00
|
|
|
}
|
2022-09-24 22:17:56 +00:00
|
|
|
|
2022-09-08 17:12:58 +00:00
|
|
|
return err
|
|
|
|
})
|
2022-10-20 19:22:01 +00:00
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
2022-09-08 18:12:50 +00:00
|
|
|
if err != nil {
|
2022-10-20 19:22:01 +00:00
|
|
|
return err
|
2022-09-08 18:12:50 +00:00
|
|
|
}
|
2022-09-08 17:12:58 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
return nil
|
2022-09-08 17:12:58 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
func getFileList(paths []string, files *Files, filters *Filters, stats *Stats, concurrency *Concurrency) {
|
|
|
|
var wg sync.WaitGroup
|
2022-09-08 15:57:59 +00:00
|
|
|
|
2022-09-16 18:45:33 +00:00
|
|
|
for i := 0; i < len(paths); i++ {
|
2022-10-20 19:22:01 +00:00
|
|
|
wg.Add(1)
|
|
|
|
concurrency.DirectoryScans <- 1
|
|
|
|
|
|
|
|
go func(i int) {
|
|
|
|
defer func() {
|
|
|
|
<-concurrency.DirectoryScans
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
|
|
|
err := getFiles(paths[i], files, filters, stats, concurrency)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
}(i)
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
wg.Wait()
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func cleanFilename(filename string) string {
|
2022-09-26 17:31:45 +00:00
|
|
|
return filename[:len(filename)-(len(filepath.Ext(filename))+3)]
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
2022-09-24 23:59:10 +00:00
|
|
|
|
2022-09-25 01:28:34 +00:00
|
|
|
func prepareDirectory(directory []string) []string {
|
|
|
|
_, first := filepath.Split(directory[0])
|
|
|
|
first = cleanFilename(first)
|
|
|
|
|
|
|
|
_, last := filepath.Split(directory[len(directory)-1])
|
|
|
|
last = cleanFilename(last)
|
|
|
|
|
|
|
|
if first == last {
|
2022-10-20 00:27:11 +00:00
|
|
|
return append([]string{}, directory[0])
|
2022-09-25 01:28:34 +00:00
|
|
|
} else {
|
|
|
|
return directory
|
2022-09-08 15:57:59 +00:00
|
|
|
}
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
2022-09-08 15:57:59 +00:00
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
func prepareDirectories(files *Files, sort string) []string {
|
2022-09-25 01:28:34 +00:00
|
|
|
directories := []string{}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
keys := make([]string, len(files.List))
|
2022-09-25 01:28:34 +00:00
|
|
|
|
|
|
|
i := 0
|
2022-10-20 19:22:01 +00:00
|
|
|
for k := range files.List {
|
2022-09-25 01:28:34 +00:00
|
|
|
keys[i] = k
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
2022-10-20 00:27:11 +00:00
|
|
|
if sort == "asc" || sort == "desc" {
|
2022-09-25 01:28:34 +00:00
|
|
|
for i := 0; i < len(keys); i++ {
|
2022-10-20 19:22:01 +00:00
|
|
|
directories = append(directories, prepareDirectory(files.List[keys[i]])...)
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
2022-09-26 17:31:45 +00:00
|
|
|
} else {
|
2022-09-25 01:28:34 +00:00
|
|
|
for i := 0; i < len(keys); i++ {
|
2022-10-20 19:22:01 +00:00
|
|
|
directories = append(directories, files.List[keys[i]]...)
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return directories
|
2022-09-08 17:12:58 +00:00
|
|
|
}
|
2022-09-08 15:57:59 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
func pickFile(args []string, filters *Filters, sort string, fileCache *[]string) (string, error) {
|
|
|
|
var fileList []string
|
2022-10-25 14:40:27 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
if Cache && len(*fileCache) != 0 {
|
|
|
|
fileList = *fileCache
|
|
|
|
} else {
|
|
|
|
files := Files{}
|
|
|
|
files.List = make(map[string][]string)
|
|
|
|
|
|
|
|
stats := Stats{}
|
|
|
|
|
|
|
|
concurrency := Concurrency{}
|
|
|
|
concurrency.DirectoryScans = make(chan int, maxDirectoryScans)
|
|
|
|
concurrency.FileScans = make(chan int, maxFileScans)
|
|
|
|
|
|
|
|
startTime := time.Now()
|
|
|
|
getFileList(args, &files, filters, &stats, &concurrency)
|
|
|
|
runTime := time.Since(startTime)
|
|
|
|
|
|
|
|
if Verbose {
|
|
|
|
fmt.Printf("%v | Scanned %v/%v files across %v directories in %v\n",
|
|
|
|
time.Now().Format(LOGDATE),
|
|
|
|
stats.GetFilesMatched(),
|
|
|
|
stats.GetFilesTotal(),
|
|
|
|
stats.GetDirectoriesMatched(),
|
|
|
|
runTime,
|
|
|
|
)
|
|
|
|
}
|
2022-10-20 19:22:01 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
fileList = prepareDirectories(&files, sort)
|
2022-09-16 18:45:33 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
if Cache {
|
|
|
|
*fileCache = append(*fileCache, fileList...)
|
|
|
|
}
|
2022-10-20 16:17:40 +00:00
|
|
|
}
|
|
|
|
|
2022-10-29 15:41:03 +00:00
|
|
|
fileCount := len(fileList)
|
2022-11-05 16:00:42 +00:00
|
|
|
if fileCount == 0 {
|
|
|
|
return "", ErrNoImagesFound
|
|
|
|
}
|
2022-09-09 22:21:03 +00:00
|
|
|
|
2022-10-29 15:41:03 +00:00
|
|
|
r := rand.Intn(fileCount - 1)
|
2022-10-29 04:07:25 +00:00
|
|
|
|
|
|
|
for i := 0; i < fileCount; i++ {
|
2022-10-29 15:41:03 +00:00
|
|
|
if r >= (fileCount - 1) {
|
2022-10-29 04:07:25 +00:00
|
|
|
r = 0
|
|
|
|
} else {
|
|
|
|
r++
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath := fileList[r]
|
2022-10-18 21:46:55 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
if !Cache {
|
|
|
|
isImage, err := isImage(filePath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if isImage {
|
|
|
|
return filePath, nil
|
|
|
|
}
|
2022-10-29 15:41:03 +00:00
|
|
|
|
|
|
|
continue
|
2022-09-09 22:21:03 +00:00
|
|
|
}
|
2022-10-28 22:19:04 +00:00
|
|
|
|
|
|
|
return filePath, nil
|
2022-09-09 22:21:03 +00:00
|
|
|
}
|
2022-09-08 17:12:58 +00:00
|
|
|
|
2022-09-24 23:59:10 +00:00
|
|
|
return "", ErrNoImagesFound
|
2022-09-08 20:30:51 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 19:28:57 +00:00
|
|
|
func normalizePaths(args []string) ([]string, error) {
|
2022-09-08 20:30:51 +00:00
|
|
|
var paths []string
|
|
|
|
|
2022-10-25 05:06:57 +00:00
|
|
|
fmt.Println("Paths:")
|
|
|
|
|
2022-09-08 20:30:51 +00:00
|
|
|
for i := 0; i < len(args); i++ {
|
2022-10-25 05:06:57 +00:00
|
|
|
path, err := filepath.EvalSymlinks(args[i])
|
2022-09-08 20:30:51 +00:00
|
|
|
if err != nil {
|
2022-09-09 19:28:57 +00:00
|
|
|
return nil, err
|
2022-09-08 20:30:51 +00:00
|
|
|
}
|
|
|
|
|
2022-10-25 05:06:57 +00:00
|
|
|
absolutePath, err := filepath.Abs(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[i]) != absolutePath {
|
|
|
|
fmt.Printf("%v (resolved to %v)\n", args[i], absolutePath)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("%v\n", args[i])
|
|
|
|
}
|
|
|
|
|
2022-09-08 20:30:51 +00:00
|
|
|
paths = append(paths, absolutePath)
|
|
|
|
}
|
|
|
|
|
2022-10-25 05:06:57 +00:00
|
|
|
fmt.Println()
|
|
|
|
|
2022-09-09 19:28:57 +00:00
|
|
|
return paths, nil
|
2022-09-08 15:57:59 +00:00
|
|
|
}
|