mirror of
https://github.com/onyx-and-iris/gignore.git
synced 2025-04-04 12:43:53 +01:00
This commit is contained in:
parent
6b41418c00
commit
38b0611e4e
11
error.go
11
error.go
@ -1,17 +1,16 @@
|
|||||||
// Package gignore provides functionality for handling template errors and registry operations.
|
// Package gignore provides a way to manage .gitignore files and templates.
|
||||||
package gignore
|
package gignore
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"github.com/onyx-and-iris/gignore/internal/registry"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type templateNotFoundError struct {
|
type templateNotFoundError struct {
|
||||||
template string
|
template string
|
||||||
registry *registry.TemplateRegistry
|
templatesSearched []string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *templateNotFoundError) Error() string {
|
func (e *templateNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("template '%s' not found in %s registry", e.template, e.registry.Directory)
|
return fmt.Sprintf("template '%s' not found in %s registry", e.template, strings.Join(e.templatesSearched, ", "))
|
||||||
}
|
}
|
||||||
|
@ -42,22 +42,23 @@ func (c *Client) Create(template string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if !ok {
|
if !ok {
|
||||||
templateNotFoundErr := &templateNotFoundError{template, c.registry}
|
templateNotFoundErr := &templateNotFoundError{template, []string{c.registry.Directory}}
|
||||||
if c.registry.Directory == "gitignoreio" {
|
if c.registry.Directory == "gitignoreio" {
|
||||||
return templateNotFoundErr
|
return templateNotFoundErr
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Errorf("%s. Checking default registry...", templateNotFoundErr)
|
|
||||||
|
|
||||||
c.registry.Directory = "gitignoreio"
|
c.registry.Directory = "gitignoreio"
|
||||||
ok, err = c.registry.Contains(template)
|
ok, err = c.registry.Contains(template)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if !ok {
|
if !ok {
|
||||||
|
templateNotFoundErr.templatesSearched = append(templateNotFoundErr.templatesSearched, c.registry.Directory)
|
||||||
return templateNotFoundErr
|
return templateNotFoundErr
|
||||||
}
|
}
|
||||||
log.Infof("template '%s' found in default gitignoreio registry", template)
|
log.Debugf("template '%s' found in gitignoreio registry", template)
|
||||||
|
} else {
|
||||||
|
log.Debugf("template '%s' found in %s registry", template, c.registry.Directory)
|
||||||
}
|
}
|
||||||
|
|
||||||
content, err := c.registry.Get(template)
|
content, err := c.registry.Get(template)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user