2015-01-13 12:31:14 +00:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 19:42:11 +00:00
|
|
|
|
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
// Windows uses backslashes as file separator and disallows a bunch of
|
|
|
|
// characters in the filename
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var disallowedCharacters = string([]rune{
|
|
|
|
'<', '>', ':', '"', '|', '?', '*',
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
31,
|
|
|
|
})
|
|
|
|
|
|
|
|
type nativeModel struct {
|
2016-04-15 10:59:41 +00:00
|
|
|
Model
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 10:40:29 +00:00
|
|
|
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
|
2015-07-09 21:38:21 +00:00
|
|
|
fixupFiles(folder, files)
|
2016-07-04 10:40:29 +00:00
|
|
|
m.Model.Index(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 10:40:29 +00:00
|
|
|
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
|
2015-07-09 21:38:21 +00:00
|
|
|
fixupFiles(folder, files)
|
2016-07-04 10:40:29 +00:00
|
|
|
m.Model.IndexUpdate(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 10:40:29 +00:00
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, hash []byte, fromTemporary bool, buf []byte) error {
|
2014-09-22 19:42:11 +00:00
|
|
|
name = filepath.FromSlash(name)
|
2016-07-04 10:40:29 +00:00
|
|
|
return m.Model.Request(deviceID, folder, name, offset, hash, fromTemporary, buf)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
2015-02-11 22:11:44 +00:00
|
|
|
|
2015-07-09 21:38:21 +00:00
|
|
|
func fixupFiles(folder string, files []FileInfo) {
|
2015-02-11 22:11:44 +00:00
|
|
|
for i, f := range files {
|
2016-07-04 10:44:30 +00:00
|
|
|
if strings.ContainsAny(f.Name, disallowedCharacters) || strings.HasSuffix(f.Name, " ") {
|
2015-02-11 22:11:44 +00:00
|
|
|
if f.IsDeleted() {
|
|
|
|
// Don't complain if the file is marked as deleted, since it
|
|
|
|
// can't possibly exist here anyway.
|
|
|
|
continue
|
|
|
|
}
|
2016-07-04 10:40:29 +00:00
|
|
|
files[i].Invalid = true
|
2015-07-09 21:38:21 +00:00
|
|
|
l.Warnf("File name %q (folder %q) contains invalid characters; marked as invalid.", f.Name, folder)
|
2015-02-11 22:11:44 +00:00
|
|
|
}
|
|
|
|
files[i].Name = filepath.FromSlash(files[i].Name)
|
|
|
|
}
|
|
|
|
}
|