Move sftpfs to subpackage

* move to sftpfs subpackage

* rename sftp dir to sftpfs
* sftpfs: Add New func and clean up interface

Fixes #97 
Updates #89
This commit is contained in:
Cameron Moore 2016-11-08 16:07:28 -08:00 committed by Bjørn Erik Pedersen
parent 52e4a6cfac
commit 7711a1eb64
3 changed files with 34 additions and 33 deletions

View File

@ -11,41 +11,43 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
package afero package sftpfs
import ( import (
"os" "os"
"time" "time"
"github.com/spf13/afero/sftp"
"github.com/pkg/sftp" "github.com/pkg/sftp"
"github.com/spf13/afero"
) )
// SftpFs is a Fs implementation that uses functions provided by the sftp package. // Fs is a afero.Fs implementation that uses functions provided by the sftp package.
// //
// For details in any method, check the documentation of the sftp package // For details in any method, check the documentation of the sftp package
// (github.com/pkg/sftp). // (github.com/pkg/sftp).
type SftpFs struct{ type Fs struct {
SftpClient *sftp.Client client *sftp.Client
} }
func (s SftpFs) Name() string { return "SftpFs" } func New(client *sftp.Client) afero.Fs {
return &Fs{client: client}
func (s SftpFs) Create(name string) (File, error) {
f, err := sftpfs.FileCreate(s.SftpClient, name)
return f, err
} }
func (s SftpFs) Mkdir(name string, perm os.FileMode) error { func (s Fs) Name() string { return "sftpfs" }
err := s.SftpClient.Mkdir(name)
func (s Fs) Create(name string) (afero.File, error) {
return FileCreate(s.client, name)
}
func (s Fs) Mkdir(name string, perm os.FileMode) error {
err := s.client.Mkdir(name)
if err != nil { if err != nil {
return err return err
} }
return s.SftpClient.Chmod(name, perm) return s.client.Chmod(name, perm)
} }
func (s SftpFs) MkdirAll(path string, perm os.FileMode) error { func (s Fs) MkdirAll(path string, perm os.FileMode) error {
// Fast path: if we can tell whether path is a directory or file, stop with success or error. // Fast path: if we can tell whether path is a directory or file, stop with success or error.
dir, err := s.Stat(path) dir, err := s.Stat(path)
if err == nil { if err == nil {
@ -88,41 +90,40 @@ func (s SftpFs) MkdirAll(path string, perm os.FileMode) error {
return nil return nil
} }
func (s SftpFs) Open(name string) (File, error) { func (s Fs) Open(name string) (afero.File, error) {
f, err := sftpfs.FileOpen(s.SftpClient, name) return FileOpen(s.client, name)
return f, err
} }
func (s SftpFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) { func (s Fs) OpenFile(name string, flag int, perm os.FileMode) (afero.File, error) {
return nil,nil return nil, nil
} }
func (s SftpFs) Remove(name string) error { func (s Fs) Remove(name string) error {
return s.SftpClient.Remove(name) return s.client.Remove(name)
} }
func (s SftpFs) RemoveAll(path string) error { func (s Fs) RemoveAll(path string) error {
// TODO have a look at os.RemoveAll // TODO have a look at os.RemoveAll
// https://github.com/golang/go/blob/master/src/os/path.go#L66 // https://github.com/golang/go/blob/master/src/os/path.go#L66
return nil return nil
} }
func (s SftpFs) Rename(oldname, newname string) error { func (s Fs) Rename(oldname, newname string) error {
return s.SftpClient.Rename(oldname, newname) return s.client.Rename(oldname, newname)
} }
func (s SftpFs) Stat(name string) (os.FileInfo, error) { func (s Fs) Stat(name string) (os.FileInfo, error) {
return s.SftpClient.Stat(name) return s.client.Stat(name)
} }
func (s SftpFs) Lstat(p string) (os.FileInfo, error) { func (s Fs) Lstat(p string) (os.FileInfo, error) {
return s.SftpClient.Lstat(p) return s.client.Lstat(p)
} }
func (s SftpFs) Chmod(name string, mode os.FileMode) error { func (s Fs) Chmod(name string, mode os.FileMode) error {
return s.SftpClient.Chmod(name, mode) return s.client.Chmod(name, mode)
} }
func (s SftpFs) Chtimes(name string, atime time.Time, mtime time.Time) error { func (s Fs) Chtimes(name string, atime time.Time, mtime time.Time) error {
return s.SftpClient.Chtimes(name, atime, mtime) return s.client.Chtimes(name, atime, mtime)
} }