Skip to content

Commit

Permalink
Add postgreSQL entry
Browse files Browse the repository at this point in the history
  • Loading branch information
dongxuny committed Jan 8, 2022
1 parent df68e39 commit 7a1fb5e
Show file tree
Hide file tree
Showing 12 changed files with 2,770 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ Databases still in Testing stage. Please see [examples](example/database) for de

| Database | Status | Tag | ORM | Installation | Dependency |
| --- | --- | --- | --- | --- | --- |
| MySQL | Testing | v0.0.3 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/mysql | [rk-db/mysql](https://github.com/rookie-ninja/rk-db/mysql) |
| SQLite | Testing | v0.0.1 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/sqlite | [rk-db/sqlite](https://github.com/rookie-ninja/rk-db/sqlite) |
| SQL Server | Testing | v0.0.1 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/sqlserver | [rk-db/sqlserver](https://github.com/rookie-ninja/rk-db/sqlserver) |
| MySQL | Stable | v0.0.3 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/mysql | [rk-db/mysql](https://github.com/rookie-ninja/rk-db/mysql) |
| SQLite | Stable | v0.0.1 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/sqlite | [rk-db/sqlite](https://github.com/rookie-ninja/rk-db/sqlite) |
| SQL Server | Stable | v0.0.1 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/sqlserver | [rk-db/sqlserver](https://github.com/rookie-ninja/rk-db/sqlserver) |
| postgreSQL | Stable | v0.0.1 | [gorm](https://gorm.io/) | go get github.com/rookie-ninja/rk-db/postgres | [rk-db/postgres](https://github.com/rookie-ninja/rk-db/postgres) |

## Examples
| Name | Type | Example | Docs |
Expand All @@ -106,6 +107,7 @@ Databases still in Testing stage. Please see [examples](example/database) for de
| MySQL | ORM - [gorm](https://github.com/go-gorm/gorm) | [example](example/database/mysql) | [docs](database/mysql) |
| SQLite | ORM - [gorm](https://github.com/go-gorm/gorm) | [example](example/database/sqlite) | [docs](database/sqlite) |
| SQL Server | ORM - [gorm](https://github.com/go-gorm/gorm) | [example](example/database/sqlserver) | [docs](database/sqlserver) |
| postgreSQL | ORM - [gorm](https://github.com/go-gorm/gorm) | [example](example/database/postgres) | [docs](database/postgres) |

## Quick Start for Gin
We will start [gin-gonic/gin](https://github.com/gin-gonic/gin) server with rk-boot.
Expand Down
363 changes: 363 additions & 0 deletions database/postgres/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,363 @@
# rk-boot/database/sqlite

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*

- [Quick Start](#quick-start)
- [Installation](#installation)
- [Start postgreSQL with docker](#start-postgresql-with-docker)
- [1.Create boot.yaml](#1create-bootyaml)
- [2.Create main.go](#2create-maingo)
- [3.Start server](#3start-server)
- [4.Validation](#4validation)
- [YAML Options](#yaml-options)
- [Usage of locale](#usage-of-locale)
- [Development Status: Stable](#development-status-stable)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Quick Start
In the bellow example, we will run SQL Server locally and implement API of Create/List/Get/Update/Delete for User model with Gin.

- GET /v1/user, List users
- GET /v1/user/:id, Get user
- PUT /v1/user, Create user
- POST /v1/user/:id, Update user
- DELETE /v1/user/:id, Delete user

### Installation
In this example, we will start a web service with gin. As a result, bellow dependencies should be installed.

```
go get github.com/rookie-ninja/rk-boot/gin
go get github.com/rookie-ninja/rk-boot/database/postgres
```

### Start postgreSQL with docker
We are going to use [postgres:pass] as credential of postgreSQL.

```
$ docker run --name postgres -e POSTGRES_PASSWORD=pass -p 5432:5432 -d postgres
```

### 1.Create boot.yaml
- Create web server with Gin framework at port 8080
- Create PostgreSQL entry which connects PostgreSQL at localhost:5432

```yaml
---
gin:
- name: user-service
port: 8080
enabled: true
postgres:
- name: user # Required
enabled: true # Required
locale: "*::*::*::*" # Required
addr: "localhost:5432" # Optional, default: localhost:5432
user: postgres # Optional, default: postgres
pass: pass # Optional, default: pass
database:
- name: user-meta # Required
autoCreate: true # Optional, default: false
# dryRun: true # Optional, default: false
# preferSimpleProtocol: false # Optional, default: false
# params: [] # Optional, default: ["sslmode=disable","TimeZone=Asia/Shanghai"]
# logger:
# level: info # Optional, default: warn
# encoding: json # Optional, default: console
# outputPaths: [ "pg/log" ] # Optional, default: []
```

### 2.Create main.go
In the main() function, we implement two things.

- Add User{} as auto migrate option which will create table in DB automatically if missing.
- Register APIs into Gin router.

```go
// Copyright (c) 2021 rookie-ninja
//
// Use of this source code is governed by an Apache-style
// license that can be found in the LICENSE file.
package main

import (
"context"
"github.com/gin-gonic/gin"
"github.com/rookie-ninja/rk-boot"
"github.com/rookie-ninja/rk-boot/database/postgres"
"github.com/rookie-ninja/rk-boot/gin"
"gorm.io/gorm"
"net/http"
"strconv"
"time"
)

var userDb *gorm.DB

func main() {
boot := rkboot.NewBoot()

boot.Bootstrap(context.TODO())

// Auto migrate database and init global userDb variable
userDb = rkbootpostgres.GetGormDb("user", "user-meta")

if !userDb.DryRun {
userDb.AutoMigrate(&User{})
}

// Register APIs
ginEntry := rkbootgin.GetGinEntry("user-service")
ginEntry.Router.GET("/v1/user", ListUsers)
ginEntry.Router.GET("/v1/user/:id", GetUser)
ginEntry.Router.PUT("/v1/user", CreateUser)
ginEntry.Router.POST("/v1/user/:id", UpdateUser)
ginEntry.Router.DELETE("/v1/user/:id", DeleteUser)

boot.WaitForShutdownSig(context.TODO())
}

// *************************************
// *************** Model ***************
// *************************************

type Base struct {
CreatedAt time.Time `yaml:"-" json:"-"`
UpdatedAt time.Time `yaml:"-" json:"-"`
DeletedAt gorm.DeletedAt `yaml:"-" json:"-" gorm:"index"`
}

type User struct {
Base
Id int `yaml:"id" json:"id" gorm:"primaryKey"`
Name string `yaml:"name" json:"name"`
}

func ListUsers(ctx *gin.Context) {
userList := make([]*User, 0)
res := userDb.Find(&userList)

if res.Error != nil {
ctx.JSON(http.StatusInternalServerError, res.Error)
return
}
ctx.JSON(http.StatusOK, userList)
}

func GetUser(ctx *gin.Context) {
uid := ctx.Param("id")
user := &User{}
res := userDb.Where("id = ?", uid).Find(user)

if res.Error != nil {
ctx.JSON(http.StatusInternalServerError, res.Error)
return
}
ctx.JSON(http.StatusOK, user)
}

func CreateUser(ctx *gin.Context) {
user := &User{
Name: ctx.Query("name"),
}

res := userDb.Create(user)

if res.Error != nil {
ctx.JSON(http.StatusInternalServerError, res.Error)
return
}
ctx.JSON(http.StatusOK, user)
}

func UpdateUser(ctx *gin.Context) {
uid := ctx.Param("id")
user := &User{
Name: ctx.Query("name"),
}

res := userDb.Where("id = ?", uid).Updates(user)

if res.Error != nil {
ctx.JSON(http.StatusInternalServerError, res.Error)
return
}

if res.RowsAffected < 1 {
ctx.JSON(http.StatusNotFound, "user not found")
return
}

// get user
userDb.Where("id = ?", uid).Find(user)

ctx.JSON(http.StatusOK, user)
}

func DeleteUser(ctx *gin.Context) {
uid, _ := strconv.Atoi(ctx.Param("id"))
res := userDb.Delete(&User{
Id: uid,
})

if res.Error != nil {
ctx.JSON(http.StatusInternalServerError, res.Error)
return
}

if res.RowsAffected < 1 {
ctx.JSON(http.StatusNotFound, "user not found")
return
}

ctx.String(http.StatusOK, "success")
}
```

### 3.Start server

```
$ go run main.go
2022-01-09T05:01:19.381+0800 INFO Bootstrap postgres entry {"entryName": "user", "postgresUser": "postgres", "postgresAddr": "localhost:5432"}
2022-01-09T05:01:19.381+0800 INFO creating database user-meta if not exists
2022-01-09T05:01:19.412+0800 INFO Database:user-meta not found, create with owner:postgres, encoding:UTF8
2022-01-09T05:01:19.524+0800 INFO creating successs or database user-meta exists
2022-01-09T05:01:19.524+0800 INFO connecting to database user-meta
2022-01-09T05:01:19.541+0800 INFO connecting to database user-meta success
2022-01-09T05:01:19.541+0800 INFO boot/gin_entry.go:913 Bootstrap ginEntry {"eventId": "63418f7e-3fbb-4b8d-9752-26baf660fd65", "entryName": "user-service"}
------------------------------------------------------------------------
endTime=2022-01-09T05:01:19.541443+08:00
startTime=2022-01-09T05:01:19.541391+08:00
elapsedNano=51662
timezone=CST
ids={"eventId":"63418f7e-3fbb-4b8d-9752-26baf660fd65"}
app={"appName":"rk","appVersion":"","entryName":"user-service","entryType":"GinEntry"}
env={"arch":"amd64","az":"*","domain":"*","hostname":"lark.local","localIP":"10.8.0.2","os":"darwin","realm":"*","region":"*"}
payloads={"ginPort":8080}
error={}
counters={}
pairs={}
timing={}
remoteAddr=localhost
operation=Bootstrap
resCode=OK
eventStatus=Ended
EOE
```

### 4.Validation
#### 4.1 Create user
Create a user with name of rk-dev.

```shell script
$ curl -X PUT "localhost:8080/v1/user?name=rk-dev"
{"id":1,"name":"rk-dev"}
```

#### 4.1 Update user
Update user name to rk-dev-updated.

```shell script
$ curl -X POST "localhost:8080/v1/user/1?name=rk-dev-updated"
{"id":1,"name":"rk-dev-updated"}
```

#### 4.1 List users
List users.

```shell script
$ curl -X GET localhost:8080/v1/user
[{"id":1,"name":"rk-dev-updated"}]
```

#### 4.1 Get user
Get user with id=1.

```shell script
$ curl -X GET localhost:8080/v1/user/1
{"id":1,"name":"rk-dev-updated"}
```

#### 4.1 Delete user

```shell script
$ curl -X DELETE localhost:8080/v1/user/1
success
```

## YAML Options
User can start multiple [gorm](https://github.com/go-gorm/gorm) instances at the same time. Please make sure use different names.

| name | Required | description | type | default value |
| ------ | ------ | ------ | ------ | ------ |
| postgres.name | Required | The name of entry | string | PostgreSQL |
| postgres.enabled | Required | Enable entry or not | bool | false |
| postgres.locale | Required | See locale description bellow | string | "" |
| postgres.description | Optional | Description of echo entry. | string | "" |
| postgres.user | Optional | PostgreSQL username | string | postgres |
| postgres.pass | Optional | PostgreSQL password | string | pass |
| postgres.addr | Optional | PostgreSQL remote address | string | localhost:5432 |
| postgres.database.name | Required | Name of database | string | "" |
| postgres.database.autoCreate | Optional | Create DB if missing | bool | false |
| postgres.database.dryRun | Optional | Run gorm.DB with dry run mode | bool | false |
| postgres.database.preferSimpleProtocol | Optional | Disable prepared statement cache | bool | false |
| postgres.database.params | Optional | Connection params | []string | ["sslmode=disable","TimeZone=Asia/Shanghai"] |
| postgres.logger.encoding | Optional | Log encoding type, json & console are available options | string | console |
| postgres.logger.outputPaths | Optional | Output paths of logger | []string | [stdout] |
| postgres.logger.level | Optional | Logger level, options: silent, error, warn, info | string | warn |

### Usage of locale

```
RK use <realm>::<region>::<az>::<domain> to distinguish different environment.
Variable of <locale> could be composed as form of <realm>::<region>::<az>::<domain>
- realm: It could be a company, department and so on, like RK-Corp.
Environment variable: REALM
Eg: RK-Corp
Wildcard: supported
- region: Please see AWS web site: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html
Environment variable: REGION
Eg: us-east
Wildcard: supported
- az: Availability zone, please see AWS web site for details: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html
Environment variable: AZ
Eg: us-east-1
Wildcard: supported
- domain: Stands for different environment, like dev, test, prod and so on, users can define it by themselves.
Environment variable: DOMAIN
Eg: prod
Wildcard: supported
How it works?
First, we will split locale with "::" and extract realm, region, az and domain.
Second, get environment variable named as REALM, REGION, AZ and DOMAIN.
Finally, compare every element in locale variable and environment variable.
If variables in locale represented as wildcard(*), we will ignore comparison step.
Example:
# let's assuming we are going to define DB address which is different based on environment.
# Then, user can distinguish DB address based on locale.
# We recommend to include locale with wildcard.
---
DB:
- name: redis-default
locale: "*::*::*::*"
addr: "192.0.0.1:6379"
- name: redis-in-test
locale: "*::*::*::test"
addr: "192.0.0.1:6379"
- name: redis-in-prod
locale: "*::*::*::prod"
addr: "176.0.0.1:6379"
```

## Development Status: Stable

Released under the [Apache 2.0 License](../../LICENSE)
Loading

0 comments on commit 7a1fb5e

Please sign in to comment.