Gorsk V2 is released - read more about it
Gorsk is a Golang starter kit for developing RESTful services. It is designed to help you kickstart your project, skipping the 'setting-up part' and jumping straight to writing business logic.
Previously Gorsk was built using Gin. Gorsk using Gin is available HERE.
Gorsk follows SOLID principles, with package design being inspired by several package designs, including Ben Johnson's Standard Package Layout, Go Standard Package Layout with my own ideas applied to both. The idea for building this project and its readme structure was inspired by this.
This starter kit currently provides:
- Fully featured RESTful endpoints for authentication, changing password and CRUD operations on the user entity
- JWT authentication and session
- Application configuration via config file (yaml)
- RBAC (role-based access control)
- Structured logging
- Great performance
- Request marshaling and data validation
- API Docs using SwaggerUI
- Mocking using stdlib
- Complete test coverage
- Containerized database query tests
The following dependencies are used in this project (generated using Glice):
|-------------------------------------|--------------------------------------------|--------------|
| DEPENDENCY | REPOURL | LICENSE |
|-------------------------------------|--------------------------------------------|--------------|
| github.com/labstack/echo | https://github.com/labstack/echo | MIT |
| github.com/go-pg/pg | https://github.com/go-pg/pg | bsd-2-clause |
| github.com/dgrijalva/jwt-go | https://github.com/dgrijalva/jwt-go | MIT |
| github.com/rs/zerolog | https://github.com/rs/zerolog | MIT |
| golang.org/x/crypto/bcrypt | https://github.com/golang/crypto | |
| gopkg.in/yaml.v2 | https://github.com/go-yaml/yaml | |
| gopkg.in/go-playground/validator.v8 | https://github.com/go-playground/validator | MIT |
| github.com/lib/pq | https://github.com/lib/pq | Other |
| github.com/nbutton23/zxcvbn-go | https://github.com/nbutton23/zxcvbn-go | MIT |
| github.com/fortytw2/dockertest | https://github.com/fortytw2/dockertest | MIT |
| github.com/stretchr/testify | https://github.com/stretchr/testify | Other |
|-------------------------------------|--------------------------------------------|--------------|
- Echo - HTTP 'framework'.
- Go-Pg - PostgreSQL ORM
- JWT-Go - JWT Authentication
- Zerolog - Structured logging
- Bcrypt - Password hashing
- Yaml - Unmarshalling YAML config file
- Validator - Request validation.
- lib/pq - PostgreSQL driver
- zxcvbn-go - Password strength checker
- DockerTest - Testing database queries
- Testify/Assert - Asserting test results
Most of these can easily be replaced with your own choices since their usage is abstracted and localized.
Using Gorsk requires having Go 1.7 or above. Once you downloaded Gorsk (either using Git or go get) you need to configure the following:
-
To use Gorsk as a starting point of a real project whose package name is something like
github.com/author/project
, move the directory$GOPATH/github.com/ribice/gorsk
to$GOPATH/github.com/author/project
. We use task as a task runner. Runtask relocate
to rename the packages, e.g.task relocate TARGET=github.com/author/project
-
Change the configuration file according to your needs, or create a new one.
-
Set the ("ENVIRONMENT_NAME") environment variable, either using terminal or os.Setenv("ENVIRONMENT_NAME","dev").
-
In cmd/migration/main.go set up psn variable and then run it (go run main.go). It will create all tables, and necessery data, with a new account username/password admin/admin.
-
Run the app using:
go run cmd/api/main.go
The application runs as an HTTP server at port 8080. It provides the following RESTful endpoints:
POST /login
: accepts username/passwords and returns jwt token and refresh tokenGET /refresh/:token
: refreshes sessions and returns jwt tokenGET /me
: returns info about currently logged in userGET /swaggerui/
(with trailing slash): launches swaggerui in browserGET /v1/users
: returns list of usersGET /v1/users/:id
: returns single userPOST /v1/users
: creates a new userPATCH /v1/password/:id
: changes password for a userDELETE /v1/users/:id
: deletes a user
You can log in as admin to the application by sending a post request to localhost:8080/login with username admin
and password admin
in JSON body.
Let's say you have a table named 'cars' that handles employee's cars. To implement CRUD on this table you need:
-
Inside
pkg/utl/model
create a new file namedcar.go
. Inside put your entity (struct), and methods on the struct if you need them. -
Create a new
car
folder in the (micro)service where your service will be located, most probably insideapi
. Inside create a file/service named car.go and test file for it (car/car.go
andcar/car_test.go
). You can test your code without writing a single query by mocking the database logic inside /mock/mockdb folder. If you have complex queries interfering with other entities, you can create in this folder other files such as car_users.go or car_templates.go for example. -
Inside car folder, create folders named
platform
,transport
andlogging
. -
Code for interacting with a platform like database (postgresql) should be placed under
car/platform/pgsql
. (pkg/api/car/platform/pgsql/car.go
) -
In
pkg/api/car/transport
create a new file namedhttp.go
. This is where your handlers are located. Under the same location create http_test.go to test your API. -
In logging directory create a file named
car.go
and copy the logic from another service. This serves as request/response logging. -
In
pkg/api/api.go
wire up all the logic, by instantiating car service, passing it to the logging and transport service afterwards.
Similarly to implementing APIs relying only on a database, you can implement other platforms by:
-
In the service package, in car.go add interface that corresponds to the platform, for example, Indexer or Reporter.
-
Rest of the procedure is same, except that in
/platform
you would create a new folder for your platform, for example,elastic
. -
Once the new platform logic is implemented, create an instance of it in main.go (for example
elastic.Client
) and pass it as an argument to car service (pkg/api/car/car.go
).
To use a transaction, before interacting with db create a new transaction:
err := s.db.RunInTransaction(func (tx *pg.Tx) error{
// Application service here
})
Instead of passing database client as s.db
, inside this function pass it as tx
. Handle the error accordingly.
-
Root directory contains things not related to code directly, e.g. docker-compose, CI/CD, readme, bash scripts etc. It should also contain vendor folder, Gopkg.toml and Gopkg.lock if dep is being used.
-
Cmd package contains code for starting applications (main packages). The directory name for each application should match the name of the executable you want to have. Gorsk is structured as a monolith application but can be easily restructured to contain multiple microservices. An application may produce multiple binaries, therefore Gorsk uses the Go convention of placing main package as a subdirectory of the cmd package. As an example, scheduler application's binary would be located under cmd/cron. It also loads the necessery configuration and passes it to the service initializers.
-
Rest of the code is located under /pkg. The pkg directory contains
utl
and 'microservice' directories. -
Microservice directories, like api (naming corresponds to
cmd/
folder naming) contains multiple folders for each domain it interacts with, for example: user, car, appointment etc. -
Domain directories, like user, contain all application/business logic and two additional directories: platform and transport.
-
Platform folder contains various packages that provide support for things like databases, authentication or even marshaling. Most of the packages located under platform are decoupled by using interfaces. Every platform has its own package, for example, postgres, elastic, redis, memcache etc.
-
Transport package contains HTTP handlers. The package receives the requests, marshals, validates then passes it to the corresponding service.
-
Utl directory contains helper packages and models. Packages such as mock, middleware, configuration, server are located here.
gorsk is licensed under the MIT license. Check the LICENSE file for details.