yao/api/api.go
Max c425b74383 Refactor error handling in various components to improve logging and message formatting
- Updated error messages to use fmt.Errorf with %s for better clarity and consistency.
- Enhanced logging statements to utilize formatted strings for improved readability.
- Refactored multiple Load functions across different modules to standardize error handling practices.
2025-09-28 10:24:17 +08:00

43 lines
822 B
Go

package api
import (
"fmt"
"strings"
"github.com/yaoapp/gou/api"
"github.com/yaoapp/gou/application"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/share"
)
// Load apis
func Load(cfg config.Config) error {
messages := []string{}
// Ignore if the apis directory does not exist
exists, err := application.App.Exists("apis")
if err != nil {
return err
}
if !exists {
return nil
}
exts := []string{"*.http.yao", "*.http.json", "*.http.jsonc"}
err = application.App.Walk("apis", func(root, file string, isdir bool) error {
if isdir {
return nil
}
_, err := api.Load(file, share.ID(root, file))
if err != nil {
messages = append(messages, err.Error())
}
return err
}, exts...)
if len(messages) > 0 {
return fmt.Errorf("%s", strings.Join(messages, ";\n"))
}
return err
}