mirror of
https://github.com/onyx-and-iris/gignore.git
synced 2025-04-03 20:23: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
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/onyx-and-iris/gignore/internal/registry"
|
||||
"strings"
|
||||
)
|
||||
|
||||
type templateNotFoundError struct {
|
||||
template string
|
||||
registry *registry.TemplateRegistry
|
||||
template string
|
||||
templatesSearched []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
|
||||
}
|
||||
if !ok {
|
||||
templateNotFoundErr := &templateNotFoundError{template, c.registry}
|
||||
templateNotFoundErr := &templateNotFoundError{template, []string{c.registry.Directory}}
|
||||
if c.registry.Directory == "gitignoreio" {
|
||||
return templateNotFoundErr
|
||||
}
|
||||
|
||||
log.Errorf("%s. Checking default registry...", templateNotFoundErr)
|
||||
|
||||
c.registry.Directory = "gitignoreio"
|
||||
ok, err = c.registry.Contains(template)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if !ok {
|
||||
templateNotFoundErr.templatesSearched = append(templateNotFoundErr.templatesSearched, c.registry.Directory)
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user