This repository has been archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 507
/
types.go
142 lines (124 loc) · 2.67 KB
/
types.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Copyright 2013 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package drive
import (
"crypto/md5"
"fmt"
"io"
"os"
"time"
drive "code.google.com/p/google-api-go-client/drive/v2"
)
const (
OpNone = iota
OpAdd
OpDelete
OpMod
)
type File struct {
Id string
Name string
IsDir bool
ModTime time.Time
Size int64
BlobAt string
Md5Checksum string
}
func NewRemoteFile(f *drive.File) *File {
mtime, _ := time.Parse("2006-01-02T15:04:05.000Z", f.ModifiedDate)
mtime = mtime.Round(time.Second)
return &File{
Id: f.Id,
Name: f.Title,
IsDir: f.MimeType == "application/vnd.google-apps.folder",
ModTime: mtime,
Size: f.FileSize,
BlobAt: f.DownloadUrl,
Md5Checksum: f.Md5Checksum,
}
}
func NewLocalFile(absPath string, f os.FileInfo) *File {
return &File{
Id: "",
Name: f.Name(),
ModTime: f.ModTime(),
IsDir: f.IsDir(),
Size: f.Size(),
BlobAt: absPath,
}
}
type Change struct {
Path string
Src *File
Dest *File
}
func (c *Change) Symbol() string {
op := c.Op()
switch op {
case OpAdd:
return "\x1b[32m+\x1b[0m"
case OpDelete:
return "\x1b[31m-\x1b[0m"
case OpMod:
return "\x1b[33mM\x1b[0m"
default:
return ""
}
}
func md5Checksum(f *File) string {
if f == nil || f.IsDir {
return ""
}
if f.Md5Checksum != "" {
return f.Md5Checksum
}
fh, err := os.Open(f.BlobAt)
if err != nil {
return ""
}
defer fh.Close()
h := md5.New()
_, err = io.Copy(h, fh)
if err != nil {
return ""
}
return fmt.Sprintf("%x", h.Sum(nil))
}
func (c *Change) Op() int {
if c.Src == nil && c.Dest == nil {
return OpNone
}
if c.Src != nil && c.Dest == nil {
return OpAdd
}
if c.Src == nil && c.Dest != nil {
return OpDelete
}
if c.Src.IsDir != c.Dest.IsDir {
return OpMod
}
if !c.Src.IsDir {
// if it's a regular file, see it it's modified.
// If the first test passes then do an Md5 checksum comparison
if c.Src.Size != c.Dest.Size || !c.Src.ModTime.Equal(c.Dest.ModTime) {
return OpMod
}
ssum := md5Checksum(c.Src)
dsum := md5Checksum(c.Dest)
if dsum != ssum {
return OpMod
}
}
return OpNone
}