Compare commits
2 Commits
4e410d4db2
...
abc0677b2c
Author | SHA1 | Date |
---|---|---|
Seednode | abc0677b2c | |
Seednode | b17a21b846 |
24
cmd/files.go
24
cmd/files.go
|
@ -8,15 +8,11 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
"math/big"
|
"math/rand/v2"
|
||||||
"regexp"
|
|
||||||
"runtime"
|
|
||||||
"slices"
|
|
||||||
|
|
||||||
"crypto/rand"
|
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"runtime"
|
||||||
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -462,19 +458,9 @@ func pickFile(list []string) (string, error) {
|
||||||
return "", nil
|
return "", nil
|
||||||
case fileCount < 1:
|
case fileCount < 1:
|
||||||
return "", ErrNoMediaFound
|
return "", ErrNoMediaFound
|
||||||
}
|
}
|
||||||
|
|
||||||
r, err := rand.Int(rand.Reader, big.NewInt(int64(fileCount)))
|
return list[rand.IntN(fileCount)], nil
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
val, err := strconv.Atoi(strconv.FormatInt(r.Int64(), 10))
|
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
return list[val], nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func preparePath(prefix, path string) string {
|
func preparePath(prefix, path string) string {
|
||||||
|
|
|
@ -5,6 +5,7 @@ Copyright © 2024 Seednode <seednode@seedno.de>
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/gob"
|
"encoding/gob"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -57,7 +58,7 @@ func makeTree(list []string) ([]byte, error) {
|
||||||
return []byte{}, err
|
return []byte{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return resp, nil
|
return bytes.ReplaceAll(resp, []byte(": null"), []byte{}), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (index *fileIndex) List() []string {
|
func (index *fileIndex) List() []string {
|
||||||
|
|
|
@ -17,7 +17,7 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AllowedCharacters string = `^[A-z0-9.\-_]+$`
|
AllowedCharacters string = `^[A-z0-9.\-_]+$`
|
||||||
ReleaseVersion string = "8.6.0"
|
ReleaseVersion string = "8.7.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in New Issue