git-lfs/commands/command_clean.go

85 lines
1.7 KiB
Go
Raw Normal View History

package commands
import (
2015-05-13 19:43:41 +00:00
"os"
2016-08-18 20:20:33 +00:00
"github.com/github/git-lfs/errors"
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/lfs"
"github.com/github/git-lfs/progress"
"github.com/spf13/cobra"
)
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
2015-07-21 23:53:31 +00:00
var fileName string
var cb progress.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 {
2015-07-21 23:53:31 +00:00
fileName = args[0]
2014-08-07 17:01:06 +00:00
2015-07-21 23:53:31 +00:00
stat, err := os.Stat(fileName)
2014-08-07 17:01:06 +00:00
if err == nil && stat != nil {
fileSize = stat.Size()
2015-07-21 23:53:31 +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
}
}
}
2015-07-21 23:53:31 +00:00
cleaned, err := lfs.PointerClean(os.Stdin, fileName, fileSize, cb)
2014-08-07 17:01:06 +00:00
if file != nil {
file.Close()
}
if cleaned != nil {
defer cleaned.Teardown()
}
2016-08-18 20:20:33 +00:00
if errors.IsCleanPointerError(err) {
2016-08-19 20:03:39 +00:00
os.Stdout.Write(errors.GetContext(err, "bytes").([]byte))
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 {
2015-07-21 23:53:31 +00:00
if stat.Size() != cleaned.Size && len(cleaned.Pointer.Extensions) == 0 {
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() {
RegisterSubcommand(func() *cobra.Command {
return &cobra.Command{
Use: "clean",
Run: cleanCommand,
}
})
}