13 // FilePathItem represents the file or directory portion of a delimited file path (e.g. foo and bar in "/foo/bar")
17 // 73 75 62 66 6f 6c 64 65 72 "subfolder"
18 type FilePathItem struct {
23 const fileItemMinLen = 3
25 // fileItemScanner implements bufio.SplitFunc for parsing incoming byte slices into complete tokens
26 func fileItemScanner(data []byte, _ bool) (advance int, token []byte, err error) {
27 if len(data) < fileItemMinLen {
31 advance = fileItemMinLen + int(data[2])
32 return advance, data[0:advance], nil
35 // Write implements the io.Writer interface for FilePathItem
36 func (fpi *FilePathItem) Write(b []byte) (n int, err error) {
38 fpi.Name = b[fileItemMinLen : fpi.Len+fileItemMinLen]
40 return int(fpi.Len) + fileItemMinLen, nil
43 type FilePath struct {
48 func (fp *FilePath) Write(b []byte) (n int, err error) {
49 reader := bytes.NewReader(b)
50 err = binary.Read(reader, binary.BigEndian, &fp.ItemCount)
51 if err != nil && !errors.Is(err, io.EOF) {
54 if errors.Is(err, io.EOF) {
58 scanner := bufio.NewScanner(reader)
59 scanner.Split(fileItemScanner)
61 for i := 0; i < int(binary.BigEndian.Uint16(fp.ItemCount[:])); i++ {
64 if _, err := fpi.Write(scanner.Bytes()); err != nil {
67 fp.Items = append(fp.Items, fpi)
73 // IsDropbox checks if a FilePath matches the special drop box folder type
74 func (fp *FilePath) IsDropbox() bool {
79 return strings.Contains(strings.ToLower(string(fp.Items[fp.Len()-1].Name)), "drop box")
82 func (fp *FilePath) IsUploadDir() bool {
87 return strings.Contains(strings.ToLower(string(fp.Items[fp.Len()-1].Name)), "upload")
90 func (fp *FilePath) Len() uint16 {
91 return binary.BigEndian.Uint16(fp.ItemCount[:])
94 func readPath(fileRoot string, filePath, fileName []byte) (fullPath string, err error) {
97 if _, err = fp.Write(filePath); err != nil {
103 for _, pathItem := range fp.Items {
104 subPath = filepath.Join("/", subPath, string(pathItem.Name))
107 fullPath = filepath.Join(
110 filepath.Join("/", string(fileName)),