qiangxue-ozzo-template

module
v0.0.0-...-d3c1e8f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 8, 2021 License: MIT

README

Preface

GoLang is a great programming language for building Web Projects. I wanted to build a golang framework on httprouter after real benchmark comparison on my slow old netbook (gin, fasthttp and ozzo-routing were is slower than httprouter unexpectedly). First of all, it will be a framework for high-load web applications, and for resist network threats.

Introduction

I make some changes in the https://github.com/qiangxue/go-rest-api template according web development needs. To get an idea of the features to be included in the project of this article provides a number of examples on how these features can be implemented (Git Repo). Structure of the project were be inspired from ozzo framework and https://github.com/qiangxue/go-rest-api former author of php yii framework and golang project layout [https://github.com/golang-standards/project-layout].

Now features (form ozzo libraries):

  • RESTful accepted format
  • CRUD operations of a database table
  • JWT authentication
  • Environment dependent ozzo-config configuration management
  • ozzo-validation library
  • Structured logging with contextual information
  • Error handling with proper error response generation
  • ozzo-dbx database library
  • Database migration
  • Data validation
  • Test coverage
  • Live reloading during development
  • change db type to mysql (without dockerize this one)
  • Makefile for development

Todo change:

  • replace ozzo-routing to fiber (and julienschmidt's httprouter in appropriate git-branch)
  • replace ozzo-dbx to sqlx
  • Default html template/web-forms for using frontend pages
  • Argon2 for user credentials
  • CORS, ratelimit, go-nude and other security features
  • Replace jwt library to jose2go
  • JWT authentication in the cookie HttpOnly store
  • Uploading image files by secure pipelining
  • OAuth2 with gcp, etc
  • Integration frontend development pipeline
  • Crud RESTAPI generator
  • Healthchecks and metrics endpoints
  • Docker implementation for development pipeline
  • Swagger apidoc pipeline for development

The framework uses the following Go packages which can be replaced with your own favorite ones since their usages are mostly localized and abstracted.

Building a Web Project with Fusion-framework

This fusion-framework is designed to get you up and running with a project structure optimized for webapp developing RESTful API services in Go. It promotes the best practices that follow the SOLID principles and clean architecture. It encourages writing clean and idiomatic Go code.

Getting Started

If this is your first time encountering Go, please follow the instructions to install Go on your computer. The kit requires Go 1.15 or above.

Docker is also needed if you want to try the kit without setting up your own database server. The kit requires Docker 17.05 or higher for the multi-stage build support.

After installing Go and Docker, rename config/_dev.yml to configs/dev.yml them fill appropriately. Run the following commands to start experiencing this fusion-framework:

# download the fusion-framework
git clone https://github.com/tvitcom/fusion-framework.git

cd fusion-framework

# start a PostgreSQL database server in a Docker container
make db-start

# seed the database with some test data
make testdata

# run the RESTful API server
make run

# Or develepment:
make dev

# or run the API server with live reloading, which is useful during development
# requires fswatch (https://github.com/emcrisostomo/fswatch)
make run-live

At this time, you have a RESTful API server running at http://127.0.0.1:3000. It provides the following endpoints:

  • GET /healthcheck: a healthcheck service provided for health checking purpose (needed when implementing a server cluster)
  • POST /v1/login: authenticates a user and generates a JWT
  • GET /v1/albums: returns a paginated list of the albums
  • GET /v1/albums/:id: returns the detailed information of an album
  • POST /v1/albums: creates a new album
  • PUT /v1/albums/:id: updates an existing album
  • DELETE /v1/albums/:id: deletes an album

Try the URL http://localhost:3000/healthcheck in a browser, and you should see something like "OK v1.0.0" displayed.

If you have cURL or some API client tools (e.g. PostmanCanary), you may try the following more complex scenarios:

# authenticate the user via: POST /v1/login
curl -X POST -H "Content-Type: application/json" -d '{"username": "demo", "password": "pass"}' http://localhost:3000/v1/login
# should return a JWT token like: {"token":"...JWT token here..."}

# with the above JWT token, access the album resources, such as: GET /v1/albums
curl -X GET -H "Authorization: Bearer ...JWT token here..." http://localhost:3000/v1/albums
# should return a list of album records in the JSON format

For example you can login, get list without token, get item without token, get with token, delete item with token and get deleted item:

# In another shell window:
User@local-host:~/$ make dev
# Then:
User@local-host:~/$ curl -X POST -H "Content-Type: application/json" -d '{"username": "demo", "password": "pass"}' http://localhost:3000/v1/login
Return:
{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MzA1OTA5OTIsImlkIjoiMTAwIiwibmFtZSI6ImRlbW8ifQ.KcLzDVGBTp3_USJ2OhzSbUBesqgKiwqF6lpJIjkrKcc"}
User@local-host:~/$ curl -X GET -H "Authorization: Bearer ...JWT token here..." http://localhost:3000/v1/albums
Return:
{"page":1,"per_page":100,"page_count":1,"total_count":5,"items":[{"id":"2367710a-d4fb-49f5-8860-557b337386dd","name":"KIRK","created_at":"2019-10-05T05:21:11Z","updated_at":"2019-10-05T05:21:11Z"},{"id":"967d5bb5-3a7a-4d5e-8a6c-febc8c5b3f13","name":"Hollywood's Bleeding","created_at":"2019-10-01T15:36:38Z","updated_at":"2019-10-01T15:36:38Z"},{"id":"b0a24f12-428f-4ff5-84d5-bc1fdcff6f03","name":"Lover","created_at":"2019-10-11T19:43:18Z","updated_at":"2019-10-11T19:43:18Z"},{"id":"c809bf15-bc2c-4621-bb96-70af96fd5d67","name":"AI YoungBoy 2","created_at":"2019-10-02T11:16:12Z","updated_at":"2019-10-02T11:16:12Z"},{"id":"e0bb80ec-75a6-4348-bfc3-6ac1e89b195e","name":"So Much Fun","created_at":"2019-10-12T12:16:02Z","updated_at":"2019-10-12T12:16:02Z"}]}
User@local-host:~/$ curl -X GET -H "Authorization: Bearer ...JWT token here..." http://localhost:3000/v1/albums/2367710a-d4fb-49f5-8860-557b337386dd
Return:
{"status":401,"message":"token contains an invalid number of segments"}
User@local-host:~/$ curl -X GET -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MzA1OTA5OTIsImlkIjoiMTAwIiwibmFtZSI6ImRlbW8ifQ.KcLzDVGBTp3_USJ2OhzSbUBesqgKiwqF6lpJIjkrKcc" http://localhost:3000/v1/albums/2367710a-d4fb-49f5-8860-557b337386dd
Return:
{"id":"2367710a-d4fb-49f5-8860-557b337386dd","name":"KIRK","created_at":"2019-10-05T05:21:11Z","updated_at":"2019-10-05T05:21:11Z"}
User@local-host:~/$ curl -X DELETE -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MzA1OTA5OTIsImlkIjoiMTAwIiwibmFtZSI6ImRlbW8ifQ.KcLzDVGBTp3_USJ2OhzSbUBesqgKiwqF6lpJIjkrKcc" http://localhost:3000/v1/albums/2367710a-d4fb-49f5-8860-557b337386dd
Return:
{"id":"2367710a-d4fb-49f5-8860-557b337386dd","name":"KIRK","created_at":"2019-10-05T05:21:11Z","updated_at":"2019-10-05T05:21:11Z"}
User@local-host:~/$ curl -X GET -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MzA1OTA5OTIsImlkIjoiMTAwIiwibmFtZSI6ImRlbW8ifQ.KcLzDVGBTp3_USJ2OhzSbUBesqgKiwqF6lpJIjkrKcc" http://localhost:3000/v1/albums/2367710a-d4fb-49f5-8860-557b337386dd
Return:
{"status":404,"message":"The requested resource was not found."}

To use the fusion-framework as a starting point of a real project whose package name is github.com/abc/xyz, do a global replacement of the string github.com/tvitcom/fusion-framework in all of project files with the string github.com/abc/xyz.

Project Layout

The fusion-framework uses the following project layout:

.
├── cmd                  main applications of the project
│   └── server           the API server application
├── configs               configuration files for different environments
├── internal             private application and library code
│   ├── album            album-related features
│   ├── auth             authentication feature
│   ├── config           configuration library
│   ├── entity           entity definitions and domain logic
│   ├── errors           error types and handling
│   ├── healthcheck      healthcheck feature
│   └── test             helpers for testing purpose
├── migrations           database migrations
├── pkg                  public library code
│   ├── accesslog        access log middleware
│   ├── graceful         graceful shutdown of HTTP server
│   ├── log              structured and context-aware logger
│   └── pagination       paginated list
└── testdata             test data scripts

The top level directories cmd, internal, pkg are commonly found in other popular Go projects, as explained in Standard Go Project Layout.

Within internal and pkg, packages are structured by features in order to achieve the so-called screaming architecture. For example, the album directory contains the application logic related with the album feature.

Within each feature package, code are organized in layers (API, service, repository), following the dependency guidelines as described in the clean architecture.

Common Development Tasks

This section describes some common development tasks using this fusion-framework.

Implementing a New Feature

Implementing a new feature typically involves the following steps:

  1. Develop the service that implements the business logic supporting the feature. Please refer to internal/album/service.go as an example.
  2. Develop the RESTful API exposing the service about the feature. Please refer to internal/album/api.go as an example.
  3. Develop the repository that persists the data entities needed by the service. Please refer to internal/album/repository.go as an example.
  4. Wire up the above components together by injecting their dependencies in the main function. Please refer to the album.RegisterHandlers() call in cmd/server/main.go.
Working with DB Transactions

It is the responsibility of the service layer to determine whether DB operations should be enclosed in a transaction. The DB operations implemented by the repository layer should work both with and without a transaction.

You can use dbcontext.DB.Transactional() in a service method to enclose multiple repository method calls in a transaction. For example,

func serviceMethod(ctx context.Context, repo Repository, transactional dbcontext.TransactionFunc) error {
    return transactional(ctx, func(ctx context.Context) error {
        repo.method1(...)
        repo.method2(...)
        return nil
    })
}

If needed, you can also enclose method calls of different repositories in a single transaction. The return value of the function in transactional above determines if the transaction should be committed or rolled back.

You can also use dbcontext.DB.TransactionHandler() as a middleware to enclose a whole API handler in a transaction. This is especially useful if an API handler needs to put method calls of multiple services in a transaction.

Updating Database Schema

The fusion-framework uses database migration to manage the changes of the database schema over the whole project development phase. The following commands are commonly used with regard to database schema changes:

# Execute new migrations made by you or other team members.
# Usually you should run this command each time after you pull new code from the code repo. 
make migrate

# Create a new database migration.
# In the generated `migrations/*.up.sql` file, write the SQL statements that implement the schema changes.
# In the `*.down.sql` file, write the SQL statements that revert the schema changes.
make migrate-new

# Revert the last database migration.
# This is often used when a migration has some issues and needs to be reverted.
make migrate-down

# Clean up the database and rerun the migrations from the very beginning.
# Note that this command will first erase all data and tables in the database, and then
# run all migrations. 
make migrate-reset
Managing Configurations

The application configuration is represented in internal/config/config.go. When the application starts, it loads the configuration from a configuration file as well as environment variables. The path to the configuration file is specified via the -config command line argument which defaults to ./config/dev.yml. Configurations specified in environment variables should be named with the APP_ prefix and in upper case. When a configuration is specified in both a configuration file and an environment variable, the latter takes precedence.

The config directory contains the configuration files named after different environments. For example, config/dev.yml corresponds to the local development environment and is used when running the application via make run.

Do not keep secrets in the configuration files. Provide them via environment variables instead. For example, you should provide Config.DSN using the APP_DSN environment variable. Secrets can be populated from a secret storage (e.g. HashiCorp Vault) into environment variables in a bootstrap script (e.g. cmd/server/entryscript.sh).

Deployment

The application can be run as a docker container. You can use make build-docker to build the application into a docker image. The docker container starts with the cmd/server/entryscript.sh script which reads the APP_ENV environment variable to determine which configuration file to use. For example, if APP_ENV is qa, the application will be started with the config/qa.yml configuration file.

You can also run make build to build an executable binary named server. Then start the API server using the following command,

./server -config=./config/prod.yml

Directories

Path Synopsis
cmd
internal
pkg
accesslog
Package accesslog provides a middleware that records every RESTful API call in a log message.
Package accesslog provides a middleware that records every RESTful API call in a log message.
dbcontext
Package dbcontext provides DB transaction support for transactions tha span method calls of multiple repositories and services.
Package dbcontext provides DB transaction support for transactions tha span method calls of multiple repositories and services.
log
Package log provides context-aware and structured logging capabilities.
Package log provides context-aware and structured logging capabilities.
pagination
Package pagination provides support for pagination requests and responses.
Package pagination provides support for pagination requests and responses.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL