-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathgres_func_zip.go
186 lines (175 loc) · 5.18 KB
/
gres_func_zip.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gres
import (
"archive/zip"
"io"
"os"
"strings"
"time"
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/internal/fileinfo"
"github.com/gogf/gf/v2/os/gfile"
"github.com/gogf/gf/v2/text/gregex"
)
// ZipPathWriter compresses `paths` to `writer` using zip compressing algorithm.
// The unnecessary parameter `prefix` indicates the path prefix for zip file.
//
// Note that the parameter `paths` can be either a directory or a file, which
// supports multiple paths join with ','.
func zipPathWriter(paths string, writer io.Writer, option ...Option) error {
zipWriter := zip.NewWriter(writer)
defer zipWriter.Close()
for _, path := range strings.Split(paths, ",") {
path = strings.TrimSpace(path)
if err := doZipPathWriter(path, zipWriter, option...); err != nil {
return err
}
}
return nil
}
// doZipPathWriter compresses the file of given `path` and writes the content to `zipWriter`.
// The parameter `exclude` specifies the exclusive file path that is not compressed to `zipWriter`,
// commonly the destination zip file path.
// The unnecessary parameter `prefix` indicates the path prefix for zip file.
func doZipPathWriter(srcPath string, zipWriter *zip.Writer, option ...Option) error {
var (
err error
files []string
usedOption Option
absolutePath string
)
if len(option) > 0 {
usedOption = option[0]
}
absolutePath, err = gfile.Search(srcPath)
if err != nil {
return err
}
if gfile.IsDir(absolutePath) {
files, err = gfile.ScanDir(absolutePath, "*", true)
if err != nil {
return err
}
} else {
files = []string{absolutePath}
}
headerPrefix := usedOption.Prefix
if !(headerPrefix == "/") {
headerPrefix = strings.TrimRight(headerPrefix, `\/`)
}
if headerPrefix != "" && gfile.IsDir(absolutePath) {
headerPrefix += "/"
}
if headerPrefix == "" {
if usedOption.KeepPath {
// It keeps the path from file system to zip info in resource manager.
// Usually for relative path, it makes little sense for absolute path.
headerPrefix = srcPath
} else {
headerPrefix = gfile.Basename(absolutePath)
}
}
headerPrefix = strings.ReplaceAll(headerPrefix, `//`, `/`)
for _, file := range files {
// It here calculates the file name prefix, especially packing the directory.
// Eg:
// path: dir1
// file: dir1/dir2/file
// file[len(absolutePath):] => /dir2/file
// gfile.Dir(subFilePath) => /dir2
var subFilePath string
// Normal handling: remove the `absolutePath`(source directory path) for file.
subFilePath = file[len(absolutePath):]
if subFilePath != "" {
subFilePath = gfile.Dir(subFilePath)
}
if err = zipFile(file, headerPrefix+subFilePath, zipWriter); err != nil {
return err
}
}
// Add all directories to zip archive.
if headerPrefix != "" {
var (
name string
tmpPath = headerPrefix
)
for {
name = strings.ReplaceAll(gfile.Basename(tmpPath), `\`, `/`)
err = zipFileVirtual(fileinfo.New(name, 0, os.ModeDir|os.ModePerm, time.Now()), tmpPath, zipWriter)
if err != nil {
return err
}
if tmpPath == `/` || !strings.Contains(tmpPath, `/`) {
break
}
tmpPath = gfile.Dir(tmpPath)
}
}
return nil
}
// zipFile compresses the file of given `path` and writes the content to `zw`.
// The parameter `prefix` indicates the path prefix for zip file.
func zipFile(path string, prefix string, zw *zip.Writer) error {
prefix = strings.ReplaceAll(prefix, `//`, `/`)
file, err := os.Open(path)
if err != nil {
err = gerror.Wrapf(err, `os.Open failed for path "%s"`, path)
return nil
}
defer file.Close()
info, err := file.Stat()
if err != nil {
err = gerror.Wrapf(err, `read file stat failed for path "%s"`, path)
return err
}
header, err := createFileHeader(info, prefix)
if err != nil {
return err
}
if !info.IsDir() {
// Default compression level.
header.Method = zip.Deflate
}
// Zip header containing the info of a zip file.
writer, err := zw.CreateHeader(header)
if err != nil {
err = gerror.Wrapf(err, `create zip header failed for %#v`, header)
return err
}
if !info.IsDir() {
if _, err = io.Copy(writer, file); err != nil {
err = gerror.Wrapf(err, `io.Copy failed for file "%s"`, path)
return err
}
}
return nil
}
func zipFileVirtual(info os.FileInfo, path string, zw *zip.Writer) error {
header, err := createFileHeader(info, "")
if err != nil {
return err
}
header.Name = path
if _, err = zw.CreateHeader(header); err != nil {
err = gerror.Wrapf(err, `create zip header failed for %#v`, header)
return err
}
return nil
}
func createFileHeader(info os.FileInfo, prefix string) (*zip.FileHeader, error) {
header, err := zip.FileInfoHeader(info)
if err != nil {
err = gerror.Wrapf(err, `create file header failed for name "%s"`, info.Name())
return nil, err
}
if len(prefix) > 0 {
header.Name = prefix + `/` + header.Name
header.Name = strings.ReplaceAll(header.Name, `\`, `/`)
header.Name, _ = gregex.ReplaceString(`/{2,}`, `/`, header.Name)
}
return header, nil
}