2022-09-08 15:57:59 +00:00
|
|
|
/*
|
2023-01-18 17:19:29 +00:00
|
|
|
Copyright © 2023 Seednode <seednode@seedno.de>
|
2022-09-08 15:57:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
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-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
|
|
|
)
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
type maxConcurrency int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// avoid hitting default open file descriptor limits (1024)
|
|
|
|
maxDirectoryScans maxConcurrency = 32
|
|
|
|
maxFileScans maxConcurrency = 256
|
|
|
|
)
|
|
|
|
|
|
|
|
type Concurrency struct {
|
|
|
|
directoryScans chan int
|
|
|
|
fileScans chan int
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
var (
|
2023-01-25 01:06:15 +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
|
|
|
)
|
|
|
|
|
2022-11-10 05:17:19 +00:00
|
|
|
type Dimensions struct {
|
2023-01-27 16:06:10 +00:00
|
|
|
width int
|
|
|
|
height int
|
2022-11-10 05:17:19 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:01 +00:00
|
|
|
type Files struct {
|
2023-01-27 16:06:10 +00:00
|
|
|
mutex sync.Mutex
|
|
|
|
list map[string][]string
|
2022-10-20 19:22:01 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func (f *Files) Append(directory, path string) {
|
2023-01-27 16:06:10 +00:00
|
|
|
f.mutex.Lock()
|
|
|
|
f.list[directory] = append(f.list[directory], path)
|
|
|
|
f.mutex.Unlock()
|
2023-01-21 16:27:35 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
type ScanStats struct {
|
2023-01-27 16:06:10 +00:00
|
|
|
filesMatched uint64
|
|
|
|
filesSkipped uint64
|
|
|
|
directoriesMatched uint64
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) FilesTotal() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.filesMatched) + atomic.LoadUint64(&s.filesSkipped)
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) incrementFilesMatched() {
|
|
|
|
atomic.AddUint64(&s.filesMatched, 1)
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) FilesMatched() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.filesMatched)
|
2022-10-20 19:22:01 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) incrementFilesSkipped() {
|
|
|
|
atomic.AddUint64(&s.filesSkipped, 1)
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) FilesSkipped() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.filesSkipped)
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) incrementDirectoriesMatched() {
|
|
|
|
atomic.AddUint64(&s.directoriesMatched, 1)
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func (s *ScanStats) DirectoriesMatched() uint64 {
|
|
|
|
return atomic.LoadUint64(&s.directoriesMatched)
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
type Path struct {
|
2023-01-27 16:06:10 +00:00
|
|
|
base string
|
|
|
|
number int
|
|
|
|
extension string
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func (p *Path) Increment() {
|
2023-01-27 16:06:10 +00:00
|
|
|
p.number = p.number + 1
|
2023-01-21 04:42:44 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func (p *Path) Decrement() {
|
2023-01-27 16:06:10 +00:00
|
|
|
p.number = p.number - 1
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func contains(s []string, e string) bool {
|
|
|
|
for _, a := range s {
|
|
|
|
if a == e {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
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])
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func imageDimensions(path string) (*Dimensions, error) {
|
2023-01-25 01:06:15 +00:00
|
|
|
file, err := os.Open(path)
|
|
|
|
switch {
|
|
|
|
case errors.Is(err, os.ErrNotExist):
|
|
|
|
return &Dimensions{}, nil
|
|
|
|
case err != nil:
|
|
|
|
return &Dimensions{}, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
myImage, _, err := image.DecodeConfig(file)
|
|
|
|
switch {
|
|
|
|
case errors.Is(err, image.ErrFormat):
|
2023-01-27 16:06:10 +00:00
|
|
|
return &Dimensions{width: 0, height: 0}, nil
|
2023-01-25 01:06:15 +00:00
|
|
|
case err != nil:
|
|
|
|
return &Dimensions{}, err
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
return &Dimensions{width: myImage.Width, height: myImage.Height}, nil
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func preparePath(path string) string {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
path = fmt.Sprintf("/%s", filepath.ToSlash(path))
|
|
|
|
}
|
|
|
|
|
|
|
|
return path
|
2023-01-19 18:07:15 +00:00
|
|
|
}
|
|
|
|
|
2023-01-21 16:27:35 +00:00
|
|
|
func appendPath(directory, path string, files *Files, stats *ScanStats, shouldCache bool) error {
|
|
|
|
if shouldCache {
|
2022-10-28 22:19:04 +00:00
|
|
|
image, err := isImage(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !image {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
files.Append(directory, path)
|
2022-10-28 22:19:04 +00:00
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
stats.incrementFilesMatched()
|
2022-11-02 14:17:07 +00:00
|
|
|
|
2022-10-28 22:19:04 +00:00
|
|
|
return nil
|
2022-10-20 19:22:01 +00:00
|
|
|
}
|
|
|
|
|
2023-01-19 18:07:15 +00:00
|
|
|
func appendPaths(path string, files *Files, filters *Filters, stats *ScanStats) error {
|
2023-01-21 16:27:35 +00:00
|
|
|
shouldCache := Cache && filters.IsEmpty()
|
|
|
|
|
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() {
|
2023-01-27 16:06:10 +00:00
|
|
|
for i := 0; i < len(filters.excludes); i++ {
|
2022-10-20 00:27:11 +00:00
|
|
|
if strings.Contains(
|
2022-10-20 15:38:32 +00:00
|
|
|
filename,
|
2023-01-27 16:06:10 +00:00
|
|
|
filters.excludes[i],
|
2022-10-20 00:27:11 +00:00
|
|
|
) {
|
2023-01-27 16:06:10 +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() {
|
2023-01-27 16:06:10 +00:00
|
|
|
for i := 0; i < len(filters.includes); i++ {
|
2022-10-20 00:27:11 +00:00
|
|
|
if strings.Contains(
|
2022-10-20 15:38:32 +00:00
|
|
|
filename,
|
2023-01-27 16:06:10 +00:00
|
|
|
filters.includes[i],
|
2022-10-20 00:27:11 +00:00
|
|
|
) {
|
2023-01-21 16:27:35 +00:00
|
|
|
err := appendPath(directory, path, files, stats, shouldCache)
|
2022-10-28 22:19:04 +00:00
|
|
|
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
|
|
|
|
2023-01-27 16:06:10 +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
|
|
|
|
2023-01-21 16:27:35 +00:00
|
|
|
err = appendPath(directory, path, files, stats, shouldCache)
|
2022-10-28 22:19:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-23 18:08:08 +00:00
|
|
|
|
|
|
|
return nil
|
2022-09-24 22:17:56 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func newFile(paths []string, filters *Filters, sortOrder string, Regexes *Regexes, index *Index) (string, error) {
|
2023-01-21 04:42:44 +00:00
|
|
|
filePath, err := pickFile(paths, filters, sortOrder, index)
|
2022-11-05 16:00:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", nil
|
|
|
|
}
|
2022-09-18 18:07:46 +00:00
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
path, err := splitPath(filePath, Regexes)
|
2022-09-18 18:07:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +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 {
|
2023-01-25 01:06:15 +00:00
|
|
|
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 == "" {
|
2023-01-25 01:06:15 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func nextFile(filePath, sortOrder string, Regexes *Regexes) (string, error) {
|
|
|
|
path, err := splitPath(filePath, Regexes)
|
2022-11-05 16:17:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2022-11-05 16:00:42 +00:00
|
|
|
switch {
|
|
|
|
case sortOrder == "asc":
|
2023-01-25 01:06:15 +00:00
|
|
|
path.Increment()
|
2022-11-05 16:00:42 +00:00
|
|
|
case sortOrder == "desc":
|
2023-01-25 01:06:15 +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
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func splitPath(path string, Regexes *Regexes) (*Path, error) {
|
2023-01-25 01:06:15 +00:00
|
|
|
p := Path{}
|
|
|
|
var err error
|
2022-10-18 21:46:55 +00:00
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
split := Regexes.filename.FindAllStringSubmatch(path, -1)
|
2022-10-18 18:42:32 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
if len(split) < 1 || len(split[0]) < 3 {
|
|
|
|
return &Path{}, nil
|
|
|
|
}
|
2022-09-17 16:07:37 +00:00
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
p.base = split[0][1]
|
2023-01-25 01:06:15 +00:00
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
p.number, err = strconv.Atoi(split[0][2])
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return &Path{}, err
|
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
p.extension = split[0][3]
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
return &p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func tryExtensions(p *Path) (string, error) {
|
|
|
|
var fileName string
|
|
|
|
|
|
|
|
for _, extension := range extensions {
|
2023-01-27 16:06:10 +00:00
|
|
|
fileName = fmt.Sprintf("%s%.3d%s", p.base, p.number, extension)
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
exists, err := fileExists(fileName)
|
2023-01-24 18:03:26 +00:00
|
|
|
if err != nil {
|
2023-01-25 01:06:15 +00:00
|
|
|
return "", err
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
2022-10-18 21:46:55 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
if exists {
|
|
|
|
return fileName, nil
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
2022-09-26 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
return "", nil
|
|
|
|
}
|
2022-09-26 17:31:45 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func fileExists(path string) (bool, error) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
switch {
|
|
|
|
case err == nil:
|
|
|
|
return true, nil
|
|
|
|
case errors.Is(err, os.ErrNotExist):
|
|
|
|
return false, nil
|
|
|
|
default:
|
|
|
|
return false, err
|
|
|
|
}
|
2022-09-17 16:07:37 +00:00
|
|
|
}
|
|
|
|
|
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:
|
2023-01-24 16:13:09 +00:00
|
|
|
fmt.Printf("%s | Error: Failed to serve file outside specified path(s): %s\n",
|
2023-01-25 01:06:15 +00:00
|
|
|
time.Now().Format(LogDate),
|
2022-10-20 22:55:25 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func isImage(path string) (bool, error) {
|
|
|
|
file, err := os.Open(path)
|
|
|
|
switch {
|
|
|
|
case errors.Is(err, os.ErrNotExist):
|
|
|
|
return false, nil
|
|
|
|
case err != nil:
|
|
|
|
return false, err
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
2023-01-25 01:06:15 +00:00
|
|
|
defer file.Close()
|
2022-09-09 22:21:03 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
head := make([]byte, 261)
|
|
|
|
file.Read(head)
|
2023-01-24 18:03:26 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
return filetype.IsImage(head), nil
|
2023-01-24 18:03:26 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func scanPath(path string, files *Files, filters *Filters, stats *ScanStats, concurrency *Concurrency) error {
|
2022-10-20 19:22:01 +00:00
|
|
|
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)
|
2023-01-27 16:06:10 +00:00
|
|
|
concurrency.fileScans <- 1
|
2022-10-20 19:22:01 +00:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer func() {
|
2023-01-27 16:06:10 +00:00
|
|
|
<-concurrency.fileScans
|
2022-10-20 19:22:01 +00:00
|
|
|
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():
|
2023-01-27 16:06:10 +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
|
|
|
}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
func fileList(paths []string, filters *Filters, sort string, index *Index) ([]string, bool) {
|
2023-01-25 01:06:15 +00:00
|
|
|
if Cache && filters.IsEmpty() && !index.IsEmpty() {
|
2023-01-27 16:06:10 +00:00
|
|
|
return index.Index(), true
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
2022-09-25 01:28:34 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
var fileList []string
|
2022-09-25 01:28:34 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
files := &Files{
|
2023-01-27 16:06:10 +00:00
|
|
|
mutex: sync.Mutex{},
|
|
|
|
list: make(map[string][]string),
|
2022-09-25 01:28:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
stats := &ScanStats{
|
2023-01-27 16:06:10 +00:00
|
|
|
filesMatched: 0,
|
|
|
|
filesSkipped: 0,
|
|
|
|
directoriesMatched: 0,
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
2022-09-08 15:57:59 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
concurrency := &Concurrency{
|
2023-01-27 16:06:10 +00:00
|
|
|
directoryScans: make(chan int, maxDirectoryScans),
|
|
|
|
fileScans: make(chan int, maxFileScans),
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
2022-10-20 16:17:40 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
startTime := time.Now()
|
|
|
|
|
|
|
|
for i := 0; i < len(paths); i++ {
|
|
|
|
wg.Add(1)
|
2023-01-27 16:06:10 +00:00
|
|
|
concurrency.directoryScans <- 1
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
go func(i int) {
|
|
|
|
defer func() {
|
2023-01-27 16:06:10 +00:00
|
|
|
<-concurrency.directoryScans
|
2023-01-25 01:06:15 +00:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
err := scanPath(paths[i], files, filters, stats, concurrency)
|
2023-01-25 01:06:15 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
}(i)
|
2022-11-05 16:00:42 +00:00
|
|
|
}
|
2022-09-09 22:21:03 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
wg.Wait()
|
2022-09-08 17:12:58 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
fileList = prepareDirectories(files, sort)
|
|
|
|
|
|
|
|
if Verbose {
|
|
|
|
fmt.Printf("%s | Indexed %d/%d files across %d directories in %s\n",
|
|
|
|
time.Now().Format(LogDate),
|
2023-01-27 16:06:10 +00:00
|
|
|
stats.FilesMatched(),
|
|
|
|
stats.FilesTotal(),
|
|
|
|
stats.DirectoriesMatched(),
|
2023-01-25 01:06:15 +00:00
|
|
|
time.Since(startTime),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
if Cache && filters.IsEmpty() {
|
2023-01-27 16:06:10 +00:00
|
|
|
index.setIndex(fileList)
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return fileList, false
|
2022-09-08 20:30:51 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func cleanFilename(filename string) string {
|
|
|
|
return filename[:len(filename)-(len(filepath.Ext(filename))+3)]
|
|
|
|
}
|
2022-10-25 05:06:57 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
func prepareDirectory(directory []string) []string {
|
|
|
|
_, first := filepath.Split(directory[0])
|
|
|
|
first = cleanFilename(first)
|
2022-09-08 20:30:51 +00:00
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
_, last := filepath.Split(directory[len(directory)-1])
|
|
|
|
last = cleanFilename(last)
|
|
|
|
|
|
|
|
if first == last {
|
|
|
|
return append([]string{}, directory[0])
|
|
|
|
} else {
|
|
|
|
return directory
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func prepareDirectories(files *Files, sort string) []string {
|
|
|
|
directories := []string{}
|
|
|
|
|
2023-01-27 16:06:10 +00:00
|
|
|
keys := make([]string, len(files.list))
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
i := 0
|
2023-01-27 16:06:10 +00:00
|
|
|
for k := range files.list {
|
2023-01-25 01:06:15 +00:00
|
|
|
keys[i] = k
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if sort == "asc" || sort == "desc" {
|
|
|
|
for i := 0; i < len(keys); i++ {
|
2023-01-27 16:06:10 +00:00
|
|
|
directories = append(directories, prepareDirectory(files.list[keys[i]])...)
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for i := 0; i < len(keys); i++ {
|
2023-01-27 16:06:10 +00:00
|
|
|
directories = append(directories, files.list[keys[i]]...)
|
2023-01-25 01:06:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return directories
|
|
|
|
}
|
|
|
|
|
|
|
|
func pickFile(args []string, filters *Filters, sort string, index *Index) (string, error) {
|
2023-01-27 16:06:10 +00:00
|
|
|
fileList, fromCache := fileList(args, filters, sort, index)
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
fileCount := len(fileList)
|
|
|
|
if fileCount == 0 {
|
|
|
|
return "", ErrNoImagesFound
|
|
|
|
}
|
|
|
|
|
|
|
|
r := rand.Intn(fileCount - 1)
|
|
|
|
|
|
|
|
for i := 0; i < fileCount; i++ {
|
|
|
|
if r >= (fileCount - 1) {
|
|
|
|
r = 0
|
|
|
|
} else {
|
|
|
|
r++
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath := fileList[r]
|
|
|
|
|
|
|
|
if !fromCache {
|
|
|
|
isImage, err := isImage(filePath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if isImage {
|
|
|
|
return filePath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
return filePath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", ErrNoImagesFound
|
|
|
|
}
|
|
|
|
|
|
|
|
func normalizePaths(args []string) ([]string, error) {
|
|
|
|
var paths []string
|
|
|
|
|
|
|
|
fmt.Println("Paths:")
|
|
|
|
|
|
|
|
for i := 0; i < len(args); i++ {
|
|
|
|
path, err := filepath.EvalSymlinks(args[i])
|
2022-10-25 05:06:57 +00:00
|
|
|
if err != nil {
|
2023-01-25 01:06:15 +00:00
|
|
|
return nil, err
|
2022-10-25 05:06:57 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
absolutePath, err := filepath.Abs(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[i]) != absolutePath {
|
|
|
|
fmt.Printf("%s (resolved to %s)\n", args[i], absolutePath)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("%s\n", args[i])
|
2022-10-25 05:06:57 +00:00
|
|
|
}
|
2023-01-25 01:06:15 +00:00
|
|
|
|
|
|
|
paths = append(paths, absolutePath)
|
2022-09-08 20:30:51 +00:00
|
|
|
}
|
|
|
|
|
2023-01-25 01:06:15 +00:00
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
return paths, nil
|
2022-09-08 15:57:59 +00:00
|
|
|
}
|