git-lfs/commands/command_clean.go

86 lines
1.7 KiB
Go
Raw Normal View History

package commands
import (
2015-05-13 19:43:41 +00:00
"os"
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/lfs"
2015-05-25 18:20:50 +00:00
"github.com/github/git-lfs/vendor/_nuts/github.com/spf13/cobra"
)
2014-06-26 20:12:25 +00:00
var (
cleanCmd = &cobra.Command{
Use: "clean",
2014-06-26 21:22:24 +00:00
Short: "Implements the Git clean filter",
2014-06-26 20:12:25 +00:00
Run: cleanCommand,
}
)
2014-06-26 20:12:25 +00:00
func cleanCommand(cmd *cobra.Command, args []string) {
requireStdin("This command should be run by the Git 'clean' filter")
2015-03-19 19:30:55 +00:00
lfs.InstallHooks(false)
2014-06-04 19:03:47 +00:00
var filename string
2015-03-19 19:30:55 +00:00
var cb lfs.CopyCallback
2014-08-07 17:01:06 +00:00
var file *os.File
var fileSize int64
2014-06-26 20:12:25 +00:00
if len(args) > 0 {
filename = args[0]
2014-08-07 17:01:06 +00:00
stat, err := os.Stat(filename)
if err == nil && stat != nil {
fileSize = stat.Size()
2015-03-19 19:30:55 +00:00
localCb, localFile, err := lfs.CopyCallbackFile("clean", filename, 1, 1)
2014-08-07 17:01:06 +00:00
if err != nil {
Error(err.Error())
} else {
cb = localCb
file = localFile
}
}
}
cleaned, err := lfs.PointerClean(os.Stdin, fileSize, cb)
2014-08-07 17:01:06 +00:00
if file != nil {
file.Close()
}
if cleaned != nil {
defer cleaned.Teardown()
}
if cpErr, ok := err.(*lfs.CleanedPointerError); ok {
os.Stdout.Write(cpErr.Bytes)
return
}
if err != nil {
2014-08-07 21:32:45 +00:00
Panic(err, "Error cleaning asset.")
}
tmpfile := cleaned.Filename
2015-03-19 19:30:55 +00:00
mediafile, err := lfs.LocalMediaPath(cleaned.Oid)
2014-06-05 19:05:02 +00:00
if err != nil {
Panic(err, "Unable to get local media path.")
}
if stat, _ := os.Stat(mediafile); stat != nil {
if stat.Size() != cleaned.Size {
Exit("Files don't match:\n%s\n%s", mediafile, tmpfile)
}
Debug("%s exists", mediafile)
} else {
if err := os.Rename(tmpfile, mediafile); err != nil {
2014-06-05 18:48:23 +00:00
Panic(err, "Unable to move %s to %s\n", tmpfile, mediafile)
}
Debug("Writing %s", mediafile)
}
lfs.EncodePointer(os.Stdout, cleaned.Pointer)
}
func init() {
2014-06-26 20:12:25 +00:00
RootCmd.AddCommand(cleanCmd)
}