blob: 9afaac0d931fae798e1a763d9aad1558e422e0d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package bug
import (
"errors"
"strings"
"github.com/MichaelMure/git-bug/repository"
)
type Person struct {
Name string
Email string
}
// GetUser will query the repository for user detail and build the corresponding Person
func GetUser(repo repository.Repo) (Person, error) {
name, err := repo.GetUserName()
if err != nil {
return Person{}, err
}
if name == "" {
return Person{}, errors.New("User name is not configured in git yet. Please use `git config --global user.name \"John Doe\"`")
}
email, err := repo.GetUserEmail()
if err != nil {
return Person{}, err
}
if email == "" {
return Person{}, errors.New("User name is not configured in git yet. Please use `git config --global user.email johndoe@example.com`")
}
return Person{Name: name, Email: email}, nil
}
// Match tell is the Person match the given query string
func (p Person) Match(query string) bool {
return strings.Contains(strings.ToLower(p.Name), strings.ToLower(query))
}
|