Compare commits
No commits in common. "main" and "v3.4.1" have entirely different histories.
7 changed files with 22 additions and 65 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM golang:1.23.1 as build
|
FROM golang:1.21.4 as build
|
||||||
|
|
||||||
LABEL author="vlbeaudoin"
|
LABEL author="vlbeaudoin"
|
||||||
|
|
||||||
|
@ -11,10 +11,9 @@ 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 -o bottin-agenda .
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -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_DB_DATABASE=bottin-agenda
|
BOTTINAGENDA_POSTGRES_DATABASE=bottin-agenda
|
||||||
BOTTINAGENDA_DB_PASSWORD=bottin-agenda
|
BOTTINAGENDA_POSTGRES_PASSWORD=bottin-agenda
|
||||||
BOTTINAGENDA_DB_USER=bottin-agenda
|
BOTTINAGENDA_POSTGRES_USER=bottin-agenda
|
||||||
```
|
```
|
||||||
|
|
||||||
Déployer avec docker-compose:
|
Déployer avec docker-compose:
|
||||||
|
|
|
@ -5,7 +5,6 @@ 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"
|
||||||
|
@ -60,7 +59,7 @@ func NewDataClient(connection PostgresConnection) (*DataClient, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataClient) Seed() (int64, error) {
|
func (d *DataClient) Seed() (int64, error) {
|
||||||
result, err := d.DB.Exec(sql.Schema())
|
result, err := d.DB.Exec(models.Schema)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
@ -90,24 +89,7 @@ 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(`
|
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)
|
||||||
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
|
||||||
}
|
}
|
||||||
|
@ -134,16 +116,8 @@ RETURNING
|
||||||
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.Get(&transaction, `
|
//err := d.DB.NamedQuery("SELECT * FROM transactions WHERE membre_id=:membre_id AND is_perpetual=:is_perpetual LIMIT 1;"
|
||||||
SELECT
|
err := d.DB.Get(&transaction, "SELECT * FROM transactions WHERE membre_id = $1 AND is_perpetual = $2 LIMIT 1;", membreID, is_perpetual)
|
||||||
*
|
|
||||||
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
|
||||||
}
|
}
|
||||||
|
@ -157,13 +131,7 @@ LIMIT 1;
|
||||||
|
|
||||||
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, `
|
if err := d.DB.Select(&transactions, "SELECT * FROM transactions LIMIT 20000;"); err != nil {
|
||||||
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_DB_DATABASE:?}"
|
POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}"
|
||||||
POSTGRES_PASSWORD: "${BOTTINAGENDA_DB_PASSWORD:?}"
|
POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}"
|
||||||
POSTGRES_USER: "${BOTTINAGENDA_DB_USER:?}"
|
POSTGRES_USER: "${BOTTINAGENDA_POSTGRES_USER}"
|
||||||
volumes:
|
volumes:
|
||||||
- 'db-data:/var/lib/postgresql/data'
|
- 'db-data:/var/lib/postgresql/data'
|
||||||
restart: 'unless-stopped'
|
restart: 'unless-stopped'
|
||||||
|
@ -14,7 +14,6 @@ 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'
|
||||||
|
@ -27,7 +26,6 @@ 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,6 +2,15 @@ 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"`
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
-- 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
10
sql/sql.go
|
@ -1,10 +0,0 @@
|
||||||
package sql
|
|
||||||
|
|
||||||
import _ "embed"
|
|
||||||
|
|
||||||
//go:embed schema.sql
|
|
||||||
var schema string
|
|
||||||
|
|
||||||
func Schema() string {
|
|
||||||
return schema
|
|
||||||
}
|
|
Reference in a new issue