aboutsummaryrefslogtreecommitdiff
path: root/pkg/database/repository
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-06-29 23:05:23 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-06-29 23:06:44 +0200
commit024da3e546e98cbaeea5f7bc86af12b671996f41 (patch)
tree08b38491b7e726fb448cceaceb2ef536360b2223 /pkg/database/repository
parent9ba53fea71728ce64342d0d59f4199876e4b6164 (diff)
downloadlens-024da3e546e98cbaeea5f7bc86af12b671996f41.tar.gz
lens-024da3e546e98cbaeea5f7bc86af12b671996f41.tar.bz2
lens-024da3e546e98cbaeea5f7bc86af12b671996f41.zip
ref: Refactor how repository is define
To make things easier and reduce the number of package I'll move all repository to one folder, starting with auth and user repository. Also implements all testing on top of the repository interface with a im memory implementation. This will later make mescling unit and integration easier.
Diffstat (limited to 'pkg/database/repository')
-rw-r--r--pkg/database/repository/auth.go10
-rw-r--r--pkg/database/repository/user.go35
2 files changed, 45 insertions, 0 deletions
diff --git a/pkg/database/repository/auth.go b/pkg/database/repository/auth.go
new file mode 100644
index 0000000..b319495
--- /dev/null
+++ b/pkg/database/repository/auth.go
@@ -0,0 +1,10 @@
+package repository
+
+import "context"
+
+type (
+ AuthRepository interface {
+ GetIDByUsername(ctx context.Context, username string) (uint, error)
+ GetPassword(ctx context.Context, id uint) ([]byte, error)
+ }
+)
diff --git a/pkg/database/repository/user.go b/pkg/database/repository/user.go
new file mode 100644
index 0000000..f8bd719
--- /dev/null
+++ b/pkg/database/repository/user.go
@@ -0,0 +1,35 @@
+package repository
+
+import "context"
+
+type (
+ User struct {
+ ID uint
+ Username string
+ Name string
+ IsAdmin bool
+ Path string
+ }
+
+ UpdateUser struct {
+ Username string
+ Name string
+ Password string
+ }
+
+ CreateUser struct {
+ Username string
+ Name string
+ Password []byte
+ IsAdmin bool
+ Path string
+ }
+
+ UserRepository interface {
+ Get(ctx context.Context, id uint) (*User, error)
+ List(ctx context.Context) ([]*User, error)
+ Create(ctx context.Context, createUser *CreateUser) (uint, error)
+ Update(ctx context.Context, id uint, updateUser *UpdateUser) error
+ Any(ctx context.Context) (bool, error)
+ }
+)