aboutsummaryrefslogtreecommitdiff
path: root/fileop/fileop.go
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-08-28 17:03:38 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-08-28 17:07:40 +0200
commit544bbeeaf836436305cbed87ae1019511de62535 (patch)
tree8c7b020bba75d4d850d4a1d538e7bc7db2f01c33 /fileop/fileop.go
downloadporg-544bbeeaf836436305cbed87ae1019511de62535.tar.gz
porg-544bbeeaf836436305cbed87ae1019511de62535.tar.bz2
porg-544bbeeaf836436305cbed87ae1019511de62535.zip
feat: Add init source code
For now only `pipe` is feature complete. The order module needs to be changed a lot.
Diffstat (limited to 'fileop/fileop.go')
-rw-r--r--fileop/fileop.go66
1 files changed, 66 insertions, 0 deletions
diff --git a/fileop/fileop.go b/fileop/fileop.go
new file mode 100644
index 0000000..d08cb82
--- /dev/null
+++ b/fileop/fileop.go
@@ -0,0 +1,66 @@
+package fileop
+
+import (
+ "crypto/sha256"
+ "fmt"
+ "io"
+ "os"
+ "path/filepath"
+)
+
+func WalkFolder(folder string) <-chan string {
+ c := make(chan string)
+
+ go func(folder string, c chan string) {
+ filepath.Walk(folder, func(path string, info os.FileInfo, err error) error {
+ file, _ := os.Open(path)
+ defer file.Close()
+ fileInfo, _ := file.Stat()
+ if !fileInfo.IsDir() {
+ c <- path
+ }
+ return nil
+ })
+ close(c)
+
+ }(folder, c)
+
+ return c
+}
+
+func CalculateSHA256(file string) (string, error) {
+ f, err := os.Open(file)
+ if err != nil {
+ return "", err
+ }
+ defer f.Close()
+
+ h := sha256.New()
+ if _, err := io.Copy(h, f); err != nil {
+ return "", err
+ }
+
+ shaString := fmt.Sprintf("%x", h.Sum(nil))
+
+ return shaString, nil
+}
+
+type MoveCommand struct {
+ Source string
+ Destination string
+}
+
+func Move() chan<- *MoveCommand {
+ c := make(chan *MoveCommand)
+ go func(chan *MoveCommand) {
+ for cmd := range c {
+ // TODO: add error handling
+ err := os.Rename(cmd.Source, cmd.Destination)
+ if err != nil {
+ fmt.Println(err.Error())
+ }
+ }
+ }(c)
+
+ return c
+}