2019-08-05 00:13:27 +03:00
|
|
|
package here
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
2019-10-09 20:21:54 +03:00
|
|
|
|
2019-10-16 17:24:05 +03:00
|
|
|
"github.com/markbates/pkger/internal/takeon/github.com/markbates/hepa"
|
|
|
|
"github.com/markbates/pkger/internal/takeon/github.com/markbates/hepa/filters"
|
2019-08-05 00:13:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Info represents details about the directory/package
|
|
|
|
type Info struct {
|
2019-10-09 20:21:54 +03:00
|
|
|
Dir string
|
|
|
|
ImportPath string
|
|
|
|
Name string
|
2019-10-22 22:30:56 +03:00
|
|
|
Module Module
|
2019-10-09 20:21:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fi Info) MarshalJSON() ([]byte, error) {
|
|
|
|
mm := map[string]interface{}{
|
|
|
|
"ImportPath": fi.ImportPath,
|
|
|
|
"Name": fi.Name,
|
2019-10-22 22:30:56 +03:00
|
|
|
"Module": fi.Module,
|
|
|
|
"Dir": fi.Dir,
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := json.Marshal(mm)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-10-09 20:21:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hep := hepa.New()
|
|
|
|
hep = hepa.With(hep, filters.Home())
|
|
|
|
hep = hepa.With(hep, filters.Golang())
|
|
|
|
|
2019-10-22 22:30:56 +03:00
|
|
|
return hep.Filter(b)
|
2019-08-05 00:13:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i Info) FilePath(paths ...string) string {
|
|
|
|
res := []string{i.Dir}
|
|
|
|
for _, p := range paths {
|
|
|
|
p = strings.TrimPrefix(p, i.Dir)
|
|
|
|
p = strings.TrimPrefix(p, "/")
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
p = strings.Replace(p, "/", "\\", -1)
|
|
|
|
}
|
|
|
|
res = append(res, p)
|
|
|
|
}
|
|
|
|
return filepath.Join(res...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i Info) Open(p string) (*os.File, error) {
|
|
|
|
return os.Open(i.FilePath(p))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ModuleName returns the name of the current
|
|
|
|
// module, or if not using modules, the current
|
|
|
|
// package. These *might* not match.
|
|
|
|
func (i Info) ModuleName() string {
|
|
|
|
if i.Mods() {
|
|
|
|
return i.Module.Path
|
|
|
|
}
|
|
|
|
return i.ImportPath
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsZero checks if the type has been filled
|
|
|
|
// with rich chocolately data goodness
|
|
|
|
func (i Info) IsZero() bool {
|
|
|
|
return i.String() == Info{}.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mods returns whether Go modules are used
|
|
|
|
// in this directory/package.
|
|
|
|
func (i Info) Mods() bool {
|
|
|
|
return !i.Module.IsZero()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i Info) String() string {
|
|
|
|
b, err := json.MarshalIndent(i, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return err.Error()
|
|
|
|
}
|
|
|
|
s := string(b)
|
|
|
|
return s
|
|
|
|
}
|