Compare commits
10 commits
Author | SHA1 | Date | |
---|---|---|---|
9f9264e555 | |||
fcd2d39dde | |||
c50800ebe9 | |||
70b0f4152a | |||
1a1bf08dbb | |||
3646ea5aec | |||
210b3f6524 | |||
40dcd82e54 | |||
e945907771 | |||
5eda23ed5d |
7 changed files with 65 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM golang:1.21.4 as build
|
FROM golang:1.23.1 as build
|
||||||
|
|
||||||
LABEL author="vlbeaudoin"
|
LABEL author="vlbeaudoin"
|
||||||
|
|
||||||
|
@ -11,9 +11,10 @@ ADD data/ data/
|
||||||
ADD handlers/ handlers/
|
ADD handlers/ handlers/
|
||||||
ADD models/ models/
|
ADD models/ models/
|
||||||
ADD responses/ responses/
|
ADD responses/ responses/
|
||||||
|
ADD sql/ sql/
|
||||||
ADD web/ web/
|
ADD web/ web/
|
||||||
|
|
||||||
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin-agenda .
|
RUN CGO_ENABLED=0 go build -a -o bottin-agenda .
|
||||||
|
|
||||||
# Alpine
|
# Alpine
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ Nécessite une installation fonctionnelle et accessible de [agecem/bottin](https
|
||||||
|
|
||||||
Remplir .env avec données d'environnement:
|
Remplir .env avec données d'environnement:
|
||||||
```
|
```
|
||||||
BOTTINAGENDA_POSTGRES_DATABASE=bottin-agenda
|
BOTTINAGENDA_DB_DATABASE=bottin-agenda
|
||||||
BOTTINAGENDA_POSTGRES_PASSWORD=bottin-agenda
|
BOTTINAGENDA_DB_PASSWORD=bottin-agenda
|
||||||
BOTTINAGENDA_POSTGRES_USER=bottin-agenda
|
BOTTINAGENDA_DB_USER=bottin-agenda
|
||||||
```
|
```
|
||||||
|
|
||||||
Déployer avec docker-compose:
|
Déployer avec docker-compose:
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"git.agecem.com/agecem/bottin-agenda/models"
|
"git.agecem.com/agecem/bottin-agenda/models"
|
||||||
|
"git.agecem.com/agecem/bottin-agenda/sql"
|
||||||
_ "github.com/jackc/pgx/stdlib"
|
_ "github.com/jackc/pgx/stdlib"
|
||||||
"github.com/jmoiron/sqlx"
|
"github.com/jmoiron/sqlx"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
@ -59,7 +60,7 @@ func NewDataClient(connection PostgresConnection) (*DataClient, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataClient) Seed() (int64, error) {
|
func (d *DataClient) Seed() (int64, error) {
|
||||||
result, err := d.DB.Exec(models.Schema)
|
result, err := d.DB.Exec(sql.Schema())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
@ -89,7 +90,24 @@ func (d *DataClient) InsertTransactions(transactions []models.Transaction) ([]mo
|
||||||
return rowsInserted, errors.New("Impossible d'insérer une transaction sans membre_id")
|
return rowsInserted, errors.New("Impossible d'insérer une transaction sans membre_id")
|
||||||
}
|
}
|
||||||
|
|
||||||
rows, err := tx.NamedQuery("INSERT INTO transactions (membre_id, given_at, is_perpetual) VALUES (:membre_id, current_timestamp, :is_perpetual) RETURNING id, membre_id, is_perpetual;", &transaction)
|
rows, err := tx.NamedQuery(`
|
||||||
|
INSERT INTO
|
||||||
|
transactions (
|
||||||
|
membre_id,
|
||||||
|
given_at,
|
||||||
|
is_perpetual
|
||||||
|
)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
:membre_id,
|
||||||
|
current_timestamp,
|
||||||
|
:is_perpetual
|
||||||
|
)
|
||||||
|
RETURNING
|
||||||
|
id,
|
||||||
|
membre_id,
|
||||||
|
is_perpetual;
|
||||||
|
`, &transaction)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return rowsInserted, err
|
return rowsInserted, err
|
||||||
}
|
}
|
||||||
|
@ -116,8 +134,16 @@ func (d *DataClient) InsertTransactions(transactions []models.Transaction) ([]mo
|
||||||
func (d *DataClient) GetTransaction(membreID string, is_perpetual bool) (models.Transaction, error) {
|
func (d *DataClient) GetTransaction(membreID string, is_perpetual bool) (models.Transaction, error) {
|
||||||
var transaction models.Transaction
|
var transaction models.Transaction
|
||||||
|
|
||||||
//err := d.DB.NamedQuery("SELECT * FROM transactions WHERE membre_id=:membre_id AND is_perpetual=:is_perpetual LIMIT 1;"
|
err := d.DB.Get(&transaction, `
|
||||||
err := d.DB.Get(&transaction, "SELECT * FROM transactions WHERE membre_id = $1 AND is_perpetual = $2 LIMIT 1;", membreID, is_perpetual)
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
transactions
|
||||||
|
WHERE
|
||||||
|
membre_id = $1 AND
|
||||||
|
is_perpetual = $2
|
||||||
|
LIMIT 1;
|
||||||
|
`, membreID, is_perpetual)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return transaction, err
|
return transaction, err
|
||||||
}
|
}
|
||||||
|
@ -131,7 +157,13 @@ func (d *DataClient) GetTransaction(membreID string, is_perpetual bool) (models.
|
||||||
|
|
||||||
func (d *DataClient) ListTransactions() ([]models.Transaction, error) {
|
func (d *DataClient) ListTransactions() ([]models.Transaction, error) {
|
||||||
var transactions []models.Transaction
|
var transactions []models.Transaction
|
||||||
if err := d.DB.Select(&transactions, "SELECT * FROM transactions LIMIT 20000;"); err != nil {
|
if err := d.DB.Select(&transactions, `
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
transactions
|
||||||
|
LIMIT 20000;
|
||||||
|
`); err != nil {
|
||||||
return transactions, err
|
return transactions, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ services:
|
||||||
db:
|
db:
|
||||||
image: 'docker.io/library/postgres:16.1'
|
image: 'docker.io/library/postgres:16.1'
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}"
|
POSTGRES_DATABASE: "${BOTTINAGENDA_DB_DATABASE:?}"
|
||||||
POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}"
|
POSTGRES_PASSWORD: "${BOTTINAGENDA_DB_PASSWORD:?}"
|
||||||
POSTGRES_USER: "${BOTTINAGENDA_POSTGRES_USER}"
|
POSTGRES_USER: "${BOTTINAGENDA_DB_USER:?}"
|
||||||
volumes:
|
volumes:
|
||||||
- 'db-data:/var/lib/postgresql/data'
|
- 'db-data:/var/lib/postgresql/data'
|
||||||
restart: 'unless-stopped'
|
restart: 'unless-stopped'
|
||||||
|
@ -14,6 +14,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
build: .
|
build: .
|
||||||
|
env_file: '.env'
|
||||||
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
||||||
ports:
|
ports:
|
||||||
- '1313:1313'
|
- '1313:1313'
|
||||||
|
@ -26,6 +27,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- api
|
- api
|
||||||
build: .
|
build: .
|
||||||
|
env_file: '.env'
|
||||||
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
image: 'git.agecem.com/agecem/bottin-agenda:latest'
|
||||||
ports:
|
ports:
|
||||||
- '2313:2313'
|
- '2313:2313'
|
||||||
|
|
|
@ -2,15 +2,6 @@ package models
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
var Schema = `
|
|
||||||
CREATE TABLE IF NOT EXISTS transactions (
|
|
||||||
id BIGINT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
|
|
||||||
membre_id VARCHAR(7),
|
|
||||||
given_at TIMESTAMP,
|
|
||||||
is_perpetual BOOLEAN
|
|
||||||
);
|
|
||||||
`
|
|
||||||
|
|
||||||
type Transaction struct {
|
type Transaction struct {
|
||||||
ID string `db:"id" json:"id"`
|
ID string `db:"id" json:"id"`
|
||||||
MembreID string `db:"membre_id" json:"membre_id"`
|
MembreID string `db:"membre_id" json:"membre_id"`
|
||||||
|
|
7
sql/schema.sql
Normal file
7
sql/schema.sql
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
-- Schema
|
||||||
|
CREATE TABLE IF NOT EXISTS transactions (
|
||||||
|
id BIGINT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
|
||||||
|
membre_id VARCHAR(7) NOT NULL,
|
||||||
|
given_at TIMESTAMP DEFAULT current_timestamp,
|
||||||
|
is_perpetual BOOLEAN NOT NULL
|
||||||
|
);
|
10
sql/sql.go
Normal file
10
sql/sql.go
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
package sql
|
||||||
|
|
||||||
|
import _ "embed"
|
||||||
|
|
||||||
|
//go:embed schema.sql
|
||||||
|
var schema string
|
||||||
|
|
||||||
|
func Schema() string {
|
||||||
|
return schema
|
||||||
|
}
|
Reference in a new issue