81 lines
1.6 KiB
Go
81 lines
1.6 KiB
Go
package cmd
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"git.ipao.vip/rogeecn/atomctl/pkg/ast/route"
|
|
"git.ipao.vip/rogeecn/atomctl/pkg/utils/gomod"
|
|
"github.com/samber/lo"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CommandGenRoute(root *cobra.Command) {
|
|
cmd := &cobra.Command{
|
|
Use: "route",
|
|
Short: "generate routes",
|
|
RunE: commandGenRouteE,
|
|
PostRunE: commandGenProviderE,
|
|
}
|
|
|
|
root.AddCommand(cmd)
|
|
}
|
|
|
|
// https://github.com/swaggo/swag?tab=readme-ov-file#api-operation
|
|
func commandGenRouteE(cmd *cobra.Command, args []string) error {
|
|
var err error
|
|
var path string
|
|
if len(args) > 0 {
|
|
path = args[0]
|
|
} else {
|
|
path, err = os.Getwd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
path, _ = filepath.Abs(path)
|
|
|
|
err = gomod.Parse(filepath.Join(path, "go.mod"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
routes := []route.RouteDefinition{}
|
|
|
|
modulePath := filepath.Join(path, "app/http")
|
|
if _, err := os.Stat(modulePath); os.IsNotExist(err) {
|
|
log.Fatal("modules dir not exist, ", modulePath)
|
|
}
|
|
|
|
err = filepath.WalkDir(modulePath, func(path string, d fs.DirEntry, err error) error {
|
|
if d.IsDir() {
|
|
return nil
|
|
}
|
|
if !strings.HasSuffix(path, "controller.go") {
|
|
return nil
|
|
}
|
|
|
|
routes = append(routes, route.ParseFile(path)...)
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
routeGroups := lo.GroupBy(routes, func(item route.RouteDefinition) string {
|
|
return filepath.Dir(item.Path)
|
|
})
|
|
|
|
for path, routes := range routeGroups {
|
|
if err := route.Render(path, routes); err != nil {
|
|
log.WithError(err).WithField("path", path).Error("render route failed")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|