mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Implement unzip function * Implement FileSize method * Implement path rewriting for bulk import * Small improvements * Add ImportSettings to config * Implement ListImports API endpoint * Enable uploading import files * Implement import process job * Add missing license headers * Address reviews * Make path sanitization a bit smarter * Clean path before calculating Dir * [MM-30008] Add mmctl support for file imports (#16301) * Add mmctl support for import files * Improve test * Remove unnecessary handlers * Use th.TestForSystemAdminAndLocal * Make nouser id a constant
66 lines
1.6 KiB
Go
66 lines
1.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package utils
|
|
|
|
import (
|
|
"archive/zip"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func sanitizePath(p string) string {
|
|
dir := strings.ReplaceAll(filepath.Dir(filepath.Clean(p)), "..", "")
|
|
base := filepath.Base(p)
|
|
if strings.Count(base, ".") == len(base) {
|
|
return ""
|
|
}
|
|
return filepath.Join(dir, base)
|
|
}
|
|
|
|
// UnzipToPath extracts a given zip archive into a given path.
|
|
// It returns a list of extracted paths.
|
|
func UnzipToPath(zipFile io.ReaderAt, size int64, outPath string) ([]string, error) {
|
|
rd, err := zip.NewReader(zipFile, size)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create reader: %w", err)
|
|
}
|
|
|
|
paths := make([]string, len(rd.File))
|
|
for i, f := range rd.File {
|
|
filePath := sanitizePath(f.Name)
|
|
if filePath == "" {
|
|
return nil, fmt.Errorf("invalid filepath `%s`", f.Name)
|
|
}
|
|
path := filepath.Join(outPath, filePath)
|
|
paths[i] = path
|
|
if f.FileInfo().IsDir() {
|
|
if err := os.Mkdir(path, 0744); err != nil {
|
|
return nil, fmt.Errorf("failed to create directory: %w", err)
|
|
}
|
|
continue
|
|
}
|
|
|
|
outFile, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0600)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create file: %w", err)
|
|
}
|
|
defer outFile.Close()
|
|
|
|
file, err := f.Open()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to open file: %w", err)
|
|
}
|
|
defer file.Close()
|
|
|
|
if _, err := io.Copy(outFile, file); err != nil {
|
|
return nil, fmt.Errorf("failed to write to file: %w", err)
|
|
}
|
|
}
|
|
|
|
return paths, nil
|
|
}
|