You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl
fyyang 62abac0b7e
fix: unsignedTypeMap type error (#2246)
2 years ago
..
api fix: #2216 (#2235) 2 years ago
bug feat: Replace cli to cobra (#1855) 3 years ago
cmd chore: Add command desc & color commands (#2013) 2 years ago
compare feat: Replace cli to cobra (#1855) 3 years ago
config remove goctl config command (#1035) 3 years ago
docker chore: Add command desc & color commands (#2013) 2 years ago
env Fix process blocking problem during check (#1911) 3 years ago
example/rpc feat: Support for multiple rpc service generation and rpc grouping (#1972) 2 years ago
internal Update goctl version (#2178) 2 years ago
kube chore: remove lifecycle preStop because sh not exist in scratch (#2042) 2 years ago
migrate feat: Replace cli to cobra (#1855) 3 years ago
model fix: unsignedTypeMap type error (#2246) 2 years ago
pkg fix: quickstart wrong package when go.mod exists in parent dir (#2048) 2 years ago
plugin feat: Replace cli to cobra (#1855) 3 years ago
quickstart chore: coding style (#2120) 2 years ago
rpc feat: Support for multiple rpc service generation and rpc grouping (#1972) 2 years ago
test feat: Replace mongo package with monc & mon (#2002) 2 years ago
tpl chore: update some logs (#1875) 3 years ago
update refactor: rename from tal-tech to zeromicro for goctl (#1481) 3 years ago
upgrade feat: Replace cli to cobra (#1855) 3 years ago
util fix: quickstart wrong package when go.mod exists in parent dir (#2048) 2 years ago
vars feat: rename module from tal-tech to zeromicro (#1413) 3 years ago
.gitignore feat(goctl): api dart support flutter v2 (#1603) 3 years ago
Dockerfile feat: add goctl docker build scripts (#1760) 3 years ago
Makefile add more tests (#1763) 3 years ago
go.mod feat: Support for multiple rpc service generation and rpc grouping (#1972) 2 years ago
go.sum feat: Support for multiple rpc service generation and rpc grouping (#1972) 2 years ago
goctl.go feat: Replace cli to cobra (#1855) 3 years ago
readme-cn.md docs: update goctl readme (#2136) 2 years ago
readme.md docs: update goctl readme (#2136) 2 years ago

readme.md

goctl

English | 简体中文

goctl introduction

  • Define api requests
  • Automatically generate golang (backend), java (iOS & Android), typescript (web & desktop app), dart (flutter) based on the defined api
  • Generate MySQL CRUD, check goctl model for details

goctl usage instructions

goctl parameter description

goctl api [go/java/ts] [-api user/user.api] [-dir ./src]

api followed by the target language, now supports go/java/typescript

-api the path to the api file

-dir the target dir to generate in

API syntax description

type int userType

type user {
	name string `json:"user"` // user name
}

type student {
	name string `json:"name"` // student's name
}

type teacher {
}

type (
	address {
		city string `json:"city"` // city
	}

	innerType {
		image string `json:"image"`
	}

	createRequest {
		innerType
		name string `form:"name"`
		age int `form:"age,optional"`
		address []address `json:"address,optional"`
	}

	getRequest {
		name string `path:"name"`
		age int `form:"age,optional"`
	}

	getResponse {
		code int `json:"code"`
		desc string `json:"desc,omitempty"`
		address address `json:"address"`
		service int `json:"service"`
	}
)

service user-api {
    @server(
        handler: GetUserHandler
        group: user
    )
    get /api/user/:name(getRequest) returns(getResponse)

    @server(
        handler: CreateUserHandler
        group: user
    )
    post /api/users/create(createRequest)
}

@server(
    jwt: Auth
    group: profile
)
service user-api {
    @handler GetProfileHandler
    get /api/profile/:name(getRequest) returns(getResponse)

    @handler CreateProfileHandler
    post /api/profile/create(createRequest)
}

service user-api {
    @handler PingHandler
    head /api/ping()
}
  1. type part: type declaration.
  2. service part: service represents a set of services, a service can be composed of multiple groups of service with the same name, you can configure the group attribute for each group of service to specify the subdirectory where the service is generated. service contains api routes, such as the first route of the first group of service above, GetProfileHandler indicates the handler that handles this route. get /api/profile/:name(getRequest) returns(getResponse) where get represents the request method of the api (get/post/put/delete), /api/profile/:name describes the route path, :name is assigned by the The request getRequest assigns a value to the property inside, and getResponse is the returned structure.

api vscode plugin

Developers can search for the api plugin for goctl in vscode and goland, which provides api syntax highlighting, syntax detection and formatting related functions.

  1. support syntax highlighting and type navigation.
  2. syntax detection, formatting api will automatically detect where the api is written wrong, using vscode default formatting shortcut (option+command+F) or custom ones can be used.
  3. formatting (option+command+F), similar to code formatting, unified style support.

Generate golang code based on the defined api file

The command is as follows.
goctl api go -api user/user.api -dir user

.
├── internal
│   ├── config
│   │   └── config.go
│   ├── handler
│   │   ├── pinghandler.go
│   │   ├── profile
│   │   │   ├── createprofilehandler.go
│   │   │   └── getprofilehandler.go
│   │   ├── routes.go
│   │   └── user
│   │       ├── createuserhandler.go
│   │       └── getuserhandler.go
│   ├── logic
│   │   ├── pinglogic.go
│   │   ├── profile
│   │   │   ├── createprofilelogic.go
│   │   │   └── getprofilelogic.go
│   │   └── user
│   │       ├── createuserlogic.go
│   │       └── getuserlogic.go
│   ├── svc
│   │   └── servicecontext.go
│   └── types
│       └── types.go
└── user.go

The generated code can be run directly, there are a few things that need to be changed.

  • Add some resources that need to be passed to logic in servicecontext.go, such as mysql, redis, rpc, etc.
  • Add the code to handle the business logic in the handlers and logic of the defined get/post/put/delete requests

Generate java code based on the defined api file

goctl api java -api user/user.api -dir . /src

Generate typescript code from the defined api file

goctl api ts -api user/user.api -dir . /src -webapi ***

ts needs to specify the directory where the webapi is located

Generate Dart code based on the defined api file

goctl api dart -api user/user.api -dir . /src