aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-12 21:28:43 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-12 21:32:10 +0200
commit3087a472bfe61db806a052ea2afd57d22b8c5d95 (patch)
tree8a4a12a56de1d739c216a27919797c3663aff27d
parentcda8114fda8d349bbaeefb42cc33ba715d41cf08 (diff)
downloadgit-bug-3087a472bfe61db806a052ea2afd57d22b8c5d95.tar.gz
move Hash in /util/
-rw-r--r--bug/comment.go3
-rw-r--r--bug/person.go3
-rw-r--r--repository/git.go5
-rw-r--r--repository/repo.go4
-rw-r--r--util/hash.go3
5 files changed, 13 insertions, 5 deletions
diff --git a/bug/comment.go b/bug/comment.go
index f7727709..edd5666c 100644
--- a/bug/comment.go
+++ b/bug/comment.go
@@ -1,6 +1,9 @@
package bug
+import "github.com/MichaelMure/git-bug/util"
+
type Comment struct {
Author Person
Message string
+ Media []util.Hash
}
diff --git a/bug/person.go b/bug/person.go
index 05cc43fa..d47bc150 100644
--- a/bug/person.go
+++ b/bug/person.go
@@ -3,6 +3,7 @@ package bug
import (
"encoding/json"
"github.com/MichaelMure/git-bug/repository"
+ "github.com/MichaelMure/git-bug/util"
"github.com/pkg/errors"
)
@@ -34,7 +35,7 @@ func GetUser(repo repository.Repo) (Person, error) {
// Store will convert the Person to JSON and store it in the internal git datastore
// Return the git hash handle of the data
-func (person *Person) Store(repo repository.Repo) (repository.Hash, error) {
+func (person *Person) Store(repo repository.Repo) (util.Hash, error) {
data, err := json.Marshal(person)
diff --git a/repository/git.go b/repository/git.go
index 679d24fc..b41bc95c 100644
--- a/repository/git.go
+++ b/repository/git.go
@@ -5,6 +5,7 @@ import (
"bytes"
"crypto/sha1"
"fmt"
+ "github.com/MichaelMure/git-bug/util"
"io"
"os"
"os/exec"
@@ -115,14 +116,14 @@ func (repo *GitRepo) PushRefs(remote string, refPattern string) error {
}
// StoreData will store arbitrary data and return the corresponding hash
-func (repo *GitRepo) StoreData(data []byte) (Hash, error) {
+func (repo *GitRepo) StoreData(data []byte) (util.Hash, error) {
var stdin = bytes.NewReader(data)
var stdout bytes.Buffer
var stderr bytes.Buffer
err := repo.runGitCommandWithIO(stdin, &stdout, &stderr, "hash-object", "--stdin", "-w")
- return Hash(stdout.String()), err
+ return util.Hash(stdout.String()), err
}
/*
diff --git a/repository/repo.go b/repository/repo.go
index ef7215ee..2611324f 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -1,7 +1,7 @@
// Package repository contains helper methods for working with a Git repo.
package repository
-type Hash string
+import "github.com/MichaelMure/git-bug/util"
// Repo represents a source code repository.
type Repo interface {
@@ -24,5 +24,5 @@ type Repo interface {
PushRefs(remote string, refPattern string) error
// StoreData will store arbitrary data and return the corresponding hash
- StoreData([]byte) (Hash, error)
+ StoreData([]byte) (util.Hash, error)
}
diff --git a/util/hash.go b/util/hash.go
new file mode 100644
index 00000000..088fd70e
--- /dev/null
+++ b/util/hash.go
@@ -0,0 +1,3 @@
+package util
+
+type Hash string