Connecting to the datavase and adding the sql connection to our Repository
This commit is contained in:
@ -4,10 +4,13 @@ import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"go-udemy-web-1/internal/config"
|
||||
"go-udemy-web-1/internal/driver"
|
||||
"go-udemy-web-1/internal/forms"
|
||||
"go-udemy-web-1/internal/helpers"
|
||||
"go-udemy-web-1/internal/models"
|
||||
"go-udemy-web-1/internal/render"
|
||||
"go-udemy-web-1/internal/repository"
|
||||
"go-udemy-web-1/internal/repository/dbrepo"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
@ -17,12 +20,14 @@ var Repo *Repository
|
||||
// Repository is the repository type
|
||||
type Repository struct {
|
||||
App *config.AppConfig
|
||||
DB repository.DatabaseRepo
|
||||
}
|
||||
|
||||
// NewRepo creates a new repository
|
||||
func NewRepo(a *config.AppConfig) *Repository {
|
||||
func NewRepo(a *config.AppConfig, db *driver.DB) *Repository {
|
||||
return &Repository{
|
||||
App: a,
|
||||
DB: dbrepo.NewPostgresRepo(db.SQL, a),
|
||||
}
|
||||
}
|
||||
|
||||
|
19
internal/repository/dbrepo/dbrepo.go
Normal file
19
internal/repository/dbrepo/dbrepo.go
Normal file
@ -0,0 +1,19 @@
|
||||
package dbrepo
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"go-udemy-web-1/internal/config"
|
||||
"go-udemy-web-1/internal/repository"
|
||||
)
|
||||
|
||||
type postgresDBRepo struct {
|
||||
App *config.AppConfig
|
||||
DB *sql.DB
|
||||
}
|
||||
|
||||
func NewPostgresRepo(conn *sql.DB, a *config.AppConfig) repository.DatabaseRepo {
|
||||
return &postgresDBRepo{
|
||||
App: a,
|
||||
DB: conn,
|
||||
}
|
||||
}
|
5
internal/repository/dbrepo/postgres.go
Normal file
5
internal/repository/dbrepo/postgres.go
Normal file
@ -0,0 +1,5 @@
|
||||
package dbrepo
|
||||
|
||||
func (m *postgresDBRepo) AllUsers() bool {
|
||||
return true
|
||||
}
|
5
internal/repository/repository.go
Normal file
5
internal/repository/repository.go
Normal file
@ -0,0 +1,5 @@
|
||||
package repository
|
||||
|
||||
type DatabaseRepo interface {
|
||||
AllUsers() bool
|
||||
}
|
Reference in New Issue
Block a user