forked from amir_tavakolian/niki
Compare commits
34 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
3b22e99697 | |
|
|
0f49ce4156 | |
|
|
9f4e011357 | |
|
|
f3bf08e7b2 | |
|
|
d564883081 | |
|
|
2517737cc5 | |
|
|
95be95632c | |
|
|
11c73efd66 | |
|
|
6807b1c962 | |
|
|
6182f5781b | |
|
|
850bb3f3e0 | |
|
|
764c1714d6 | |
|
|
590ed0bb07 | |
|
|
a05c2fc7d5 | |
|
|
5fc6634c2b | |
|
|
5a05490502 | |
|
|
f021c559bb | |
|
|
631399313a | |
|
|
87923a3d51 | |
|
|
d1c2191c5c | |
|
|
c01d3678ae | |
|
|
4fcaef0e28 | |
|
|
0948b36012 | |
|
|
aae35bb787 | |
|
|
233df829fe | |
|
|
d4f65ba68a | |
|
|
9d97a4e313 | |
|
|
0269822fc0 | |
|
|
23fedc02c3 | |
|
|
447e62c693 | |
|
|
9ea2a5c493 | |
|
|
ade97cad9f | |
|
|
3a3351f358 | |
|
|
00fb0a7ead |
|
|
@ -0,0 +1,34 @@
|
|||
root = "."
|
||||
tmp_dir = "cmd/productapp/temp"
|
||||
|
||||
[build]
|
||||
bin = "/entrypoint.sh"
|
||||
args_bin = []
|
||||
cmd = "go build -mod=mod -buildvcs=false -o ./cmd/productapp/temp/main ./cmd/productapp/"
|
||||
delay = 1000
|
||||
exclude_dir = ["vendor", "cmd/productapp/temp"]
|
||||
exclude_file = []
|
||||
exclude_regex = []
|
||||
exclude_unchanged = false
|
||||
follow_symlink = false
|
||||
include_dir = []
|
||||
include_ext = ["go"]
|
||||
kill_delay = "0s"
|
||||
log = "build-errors.log"
|
||||
send_interrupt = false
|
||||
stop_on_error = true
|
||||
poll = true
|
||||
poll_interval = 1000
|
||||
|
||||
[color]
|
||||
app = ""
|
||||
build = "yellow"
|
||||
main = "magenta"
|
||||
runner = "green"
|
||||
watcher = "cyan"
|
||||
|
||||
[log]
|
||||
time = false
|
||||
|
||||
[misc]
|
||||
clean_on_exit = false
|
||||
|
|
@ -30,3 +30,5 @@ logs/
|
|||
mise.log
|
||||
|
||||
curl
|
||||
|
||||
cmd/**/temp/main
|
||||
|
|
@ -19,7 +19,7 @@ FROM alpine:3.20 AS runtime
|
|||
# Copy the binary from the builder stage
|
||||
COPY --from=builder /niki/niki .
|
||||
|
||||
# Copy migration files
|
||||
# Copy migrations files
|
||||
COPY --from=builder /niki/repository/mysql/migration ./repository/mysql/migration
|
||||
|
||||
# Expose application port
|
||||
|
|
|
|||
124
Makefile
124
Makefile
|
|
@ -1,54 +1,64 @@
|
|||
# TODO: add commands for build and run in dev/produciton mode
|
||||
# --- Variables ---
|
||||
BINARY_NAME ?= niki
|
||||
BUILD_DIR ?= bin
|
||||
|
||||
ROOT=$(realpath $(dir $(lastword $(MAKEFILE_LIST))))
|
||||
# ====================================================================================
|
||||
# General Go Commands
|
||||
# ====================================================================================
|
||||
.PHONY: start test build clean mod-tidy lint install-linter help format swagger watch
|
||||
|
||||
.PHONY: help confirm lint test format build run docker swagger watch migrate/status migrate/new migrate/up migrate/down
|
||||
|
||||
confirm:
|
||||
@echo -n 'Are you sure? [y/N] ' && read ans && [ $${ans:-N} = y ]
|
||||
|
||||
lint:
|
||||
which golangci-lint || (go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.0)
|
||||
golangci-lint run --config=$(ROOT)/.golangci.yml $(ROOT)/...
|
||||
start: build
|
||||
$(BUILD_DIR)/$(BINARY_NAME)
|
||||
|
||||
test:
|
||||
go test -v ./...
|
||||
|
||||
build:
|
||||
@mkdir -p $(BUILD_DIR)
|
||||
go build -o $(BUILD_DIR)/$(BINARY_NAME) main.go
|
||||
|
||||
clean:
|
||||
rm -rf $(BUILD_DIR)/
|
||||
|
||||
mod-tidy:
|
||||
go mod tidy
|
||||
|
||||
lint:
|
||||
golangci-lint run
|
||||
|
||||
install-linter:
|
||||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
||||
|
||||
format:
|
||||
@which gofumpt || (go install mvdan.cc/gofumpt@latest)
|
||||
@gofumpt -l -w $(ROOT)
|
||||
@gofumpt -l -w .
|
||||
@which gci || (go install github.com/daixiang0/gci@latest)
|
||||
@gci write $(ROOT) --skip-generated --skip-vendor
|
||||
@which golangci-lint || (go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.0)
|
||||
@gci write . --skip-generated --skip-vendor
|
||||
@golangci-lint run --fix
|
||||
|
||||
build:
|
||||
go build -o niki main.go
|
||||
|
||||
run:
|
||||
go run main.go --migrate
|
||||
|
||||
docker:
|
||||
sudo docker compose up -d
|
||||
|
||||
swagger:
|
||||
swag init
|
||||
|
||||
# Live Reload
|
||||
watch:
|
||||
@if command -v CompileDaemon > /dev/null; then \
|
||||
CompileDaemon -exclude-dir=.git -exclude=".#*" -command="./niki"; \
|
||||
CompileDaemon -exclude-dir=.git -exclude=".#*" -command="./$(BUILD_DIR)/$(BINARY_NAME)"; \
|
||||
else \
|
||||
read -p "Go's 'CompileDaemon' is not installed on your machine. Do you want to install it? [Y/n] " choice; \
|
||||
read -p "Go's 'CompileDaemon' is not installed. Do you want to install it? [Y/n] " choice; \
|
||||
if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \
|
||||
go install github.com/githubnemo/CompileDaemon@latest; \
|
||||
CompileDaemon -exclude-dir=.git -exclude=".#*" -command="./niki"; \
|
||||
CompileDaemon -exclude-dir=.git -exclude=".#*" -command="./$(BUILD_DIR)/$(BINARY_NAME)"; \
|
||||
else \
|
||||
echo "You chose not to install CompileDaemon. Exiting..."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
fi
|
||||
|
||||
# ====================================================================================
|
||||
# Database Migration Commands (legacy niki-core)
|
||||
# ====================================================================================
|
||||
.PHONY: migrate/status migrate/new migrate/up migrate/down
|
||||
|
||||
migrate/status:
|
||||
@sql-migrate status -env="production" -config=repository/mysql/dbconfig.yml
|
||||
|
||||
|
|
@ -64,3 +74,67 @@ migrate/up: confirm
|
|||
migrate/down: confirm
|
||||
@echo 'Tearing down last migration...'
|
||||
@sql-migrate down -env="production" -config=repository/mysql/dbconfig.yml -limit=1
|
||||
|
||||
confirm:
|
||||
@echo -n 'Are you sure? [y/N] ' && read ans && [ $${ans:-N} = y ]
|
||||
|
||||
# ====================================================================================
|
||||
# Productapp Service Commands
|
||||
# ====================================================================================
|
||||
.PHONY: productapp-up productapp-up-logs productapp-rebuild productapp-watch
|
||||
|
||||
PRODUCTAPP_ENV = deploy/productapp/development/.env
|
||||
PRODUCTAPP_COMPOSE = deploy/productapp/development/docker-compose.yml
|
||||
|
||||
productapp-up:
|
||||
@echo "Building and starting productapp full stack..."
|
||||
docker compose --env-file $(PRODUCTAPP_ENV) -f $(PRODUCTAPP_COMPOSE) up --build -d
|
||||
@echo "productapp stack is up."
|
||||
|
||||
productapp-down:
|
||||
@echo "Building and starting productapp full stack..."
|
||||
docker compose --env-file $(PRODUCTAPP_ENV) -f $(PRODUCTAPP_COMPOSE) down
|
||||
@echo "productapp stack is up."
|
||||
|
||||
productapp-up-logs:
|
||||
@echo "Building and starting productapp full stack..."
|
||||
docker compose --env-file $(PRODUCTAPP_ENV) -f $(PRODUCTAPP_COMPOSE) up --build
|
||||
|
||||
# ====================================================================================
|
||||
# Docker Commands (legacy)
|
||||
# ====================================================================================
|
||||
.PHONY: docker
|
||||
|
||||
docker:
|
||||
docker compose up -d
|
||||
|
||||
# ====================================================================================
|
||||
# Help Target
|
||||
# ====================================================================================
|
||||
help:
|
||||
@echo "Available targets:"
|
||||
@echo ""
|
||||
@echo "General Go Commands:"
|
||||
@echo " start - Build and run niki-core locally"
|
||||
@echo " test - Run tests"
|
||||
@echo " build - Compile binary"
|
||||
@echo " clean - Remove build artifacts"
|
||||
@echo " mod-tidy - Clean up dependencies"
|
||||
@echo " format - Format code (gofumpt + gci + lint fix)"
|
||||
@echo " lint - Run linters"
|
||||
@echo " install-linter - Install golangci-lint"
|
||||
@echo " swagger - Generate swagger docs"
|
||||
@echo " watch - Live reload with CompileDaemon"
|
||||
@echo ""
|
||||
@echo "Database Migration (niki-core):"
|
||||
@echo " migrate/status - Show migration status"
|
||||
@echo " migrate/new - Create new migration (name=<name>)"
|
||||
@echo " migrate/up - Run migrations up"
|
||||
@echo " migrate/down - Rollback last migration"
|
||||
@echo ""
|
||||
@echo "Productapp Service:"
|
||||
@echo " productapp-up - Build and start full stack in background"
|
||||
@echo " productapp-up-logs - Build and start full stack with logs"
|
||||
@echo ""
|
||||
@echo "Docker (legacy):"
|
||||
@echo " docker - Start docker-compose services"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,44 @@
|
|||
package accountapp
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/accountapp/delivery/grpc"
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/kavenegar"
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/redis"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/repository/mysql"
|
||||
redisRepo "git.gocasts.ir/ebhomengo/niki/domain/account/repository/redis"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/service"
|
||||
database "git.gocasts.ir/ebhomengo/niki/pkg/database/mysql"
|
||||
rpcPkg "git.gocasts.ir/ebhomengo/niki/pkg/grpc"
|
||||
)
|
||||
|
||||
type Application struct {
|
||||
GrpcServer grpc.Server
|
||||
Config Config
|
||||
accountSvc service.Service
|
||||
}
|
||||
|
||||
func Setup(cfg Config, db *database.DB) Application {
|
||||
redisConn := redis.New(cfg.Redis)
|
||||
otpRepo := redisRepo.NewRepositoryOtp(redisConn)
|
||||
mysqlRepo := mysql.New(db)
|
||||
smsAdapter := kavenegar.New(cfg.Kavenegar)
|
||||
accountSvc := service.NewService(cfg.accountSvc, otpRepo, mysqlRepo, smsAdapter)
|
||||
|
||||
rpcServer := rpcPkg.New(cfg.grpcServerCfg)
|
||||
|
||||
return Application{
|
||||
accountSvc: accountSvc,
|
||||
Config: cfg,
|
||||
GrpcServer: grpc.New(rpcServer, accountSvc),
|
||||
}
|
||||
}
|
||||
|
||||
func (app *Application) Start() {
|
||||
err := app.GrpcServer.Start()
|
||||
if err != nil {
|
||||
log.Fatalf("error in serving GRPC server: %v", err)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
package accountapp
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/kavenegar"
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/redis"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/database/mysql"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/grpc"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
accountSvc service.Config `koanf:"service"`
|
||||
Redis redis.Config `koanf:"redis_db"`
|
||||
MysqlDB mysql.Config `koanf:"mysql_db"`
|
||||
Kavenegar kavenegar.Config `koanf:"kavenegar"`
|
||||
grpcServerCfg grpc.Config `koanf:"grpc_server"`
|
||||
grpcClientCfg grpc.Client `koanf:"grpc_client"`
|
||||
PathOfMigration string `koanf:"path_of_migration"`
|
||||
}
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
package grpc
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"log"
|
||||
"net"
|
||||
|
||||
pb "git.gocasts.ir/ebhomengo/niki/contract/goprotobuf/account"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/grpc"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
server *grpc.RPCServer
|
||||
accountSvc service.Service
|
||||
pb.UnimplementedAccountServiceServer
|
||||
}
|
||||
|
||||
func New(server *grpc.RPCServer, accountSvc service.Service) Server {
|
||||
return Server{
|
||||
server: server,
|
||||
accountSvc: accountSvc,
|
||||
}
|
||||
}
|
||||
|
||||
func (s Server) SendOtp(ctx context.Context, req *pb.SendOtpRequest) (*pb.SendOtpResponse, error) {
|
||||
err := s.accountSvc.SendOTP(ctx, req.PhoneNumber)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &pb.SendOtpResponse{}, nil
|
||||
}
|
||||
|
||||
func (s Server) LoginOrRegister(ctx context.Context, req *pb.LoginOrRegisterRequest) (*pb.LoginOrRegisterResponse, error) {
|
||||
res := &pb.LoginOrRegisterResponse{}
|
||||
driver, err := s.accountSvc.LoginOrRegisterDriver(ctx, req.PhoneNumber, req.VerifyCode)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
id := uint64(driver.ID)
|
||||
|
||||
res.Id = id
|
||||
res.PhoneNumber = driver.PhoneNumber
|
||||
|
||||
return res, nil
|
||||
|
||||
}
|
||||
|
||||
func (s Server) Start() error {
|
||||
listener, err := net.Listen(s.server.Config.NetworkType, fmt.Sprintf(":%d", s.server.Config.Port))
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
accountSvcServer := Server{}
|
||||
|
||||
pb.RegisterAccountServiceServer(s.server.Server, &accountSvcServer)
|
||||
|
||||
if err := s.server.Server.Serve(listener); err != nil {
|
||||
log.Fatalf("failed to serve: %v", err)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
package account
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
pb "git.gocasts.ir/ebhomengo/niki/contract/goprotobuf/account"
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
||||
type Client struct {
|
||||
Conn *grpc.ClientConn
|
||||
}
|
||||
|
||||
func New(conn *grpc.ClientConn) *Client {
|
||||
return &Client{
|
||||
Conn: conn,
|
||||
}
|
||||
}
|
||||
|
||||
func (c Client) SendOTP(ctx context.Context, phoneNumber string) error {
|
||||
|
||||
client := pb.NewAccountServiceClient(c.Conn)
|
||||
|
||||
_, err := client.SendOtp(ctx, &pb.SendOtpRequest{
|
||||
PhoneNumber: phoneNumber,
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c Client) LoginOrRegister(ctx context.Context, req service.LoginOrRegisterRequest) (service.LoginOrRegisterResponse, error) {
|
||||
|
||||
client := pb.NewAccountServiceClient(c.Conn)
|
||||
|
||||
res, err := client.LoginOrRegister(ctx, &pb.LoginOrRegisterRequest{
|
||||
PhoneNumber: req.PhoneNumber,
|
||||
VerifyCode: req.VerifyCode,
|
||||
})
|
||||
if err != nil {
|
||||
return service.LoginOrRegisterResponse{}, err
|
||||
}
|
||||
|
||||
return service.LoginOrRegisterResponse{
|
||||
ID: types.ID(res.Id),
|
||||
PhoneNumber: res.PhoneNumber,
|
||||
}, nil
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
package agentapp
|
||||
|
||||
type Application struct {
|
||||
config Config
|
||||
}
|
||||
|
||||
func Setup() {}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
package agentapp
|
||||
|
||||
type Config struct {
|
||||
// database config
|
||||
// httpserver config
|
||||
//...
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
package http
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
package http
|
||||
|
||||
type Server struct {
|
||||
// httpServer
|
||||
// handler
|
||||
}
|
||||
|
||||
func New() Server {
|
||||
return Server{}
|
||||
}
|
||||
|
||||
func (s Server) Serve() {}
|
||||
|
||||
func (s Server) RegisterRoutes() {}
|
||||
|
|
@ -1 +0,0 @@
|
|||
package repository
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
package service
|
||||
|
||||
type Agent struct {
|
||||
ID uint
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
package service
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
package service
|
||||
|
||||
type Service struct {
|
||||
}
|
||||
|
||||
func New() Service {
|
||||
return Service{}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
package service
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
package command
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
var up bool
|
||||
var down bool
|
||||
|
||||
var migrateCmd = &cobra.Command{
|
||||
Use: "migrate",
|
||||
Short: "Run database migrations",
|
||||
Long: `This command runs the database migrations for the account service.`,
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
migrate()
|
||||
},
|
||||
}
|
||||
|
||||
func migrate() {}
|
||||
|
||||
func init() {
|
||||
migrateCmd.Flags().BoolVar(&up, "up", false, "Run migrations up")
|
||||
migrateCmd.Flags().BoolVar(&down, "down", false, "Run migrations down")
|
||||
RootCmd.AddCommand(migrateCmd)
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package command
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
var RootCmd = &cobra.Command{
|
||||
Use: "account_service",
|
||||
Short: "A CLI for account Service",
|
||||
Long: `account Service CLI is a tool to manage and run
|
||||
the account service, including migrations and server startup.`,
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
package command
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
var serveCmd = &cobra.Command{
|
||||
Use: "serve",
|
||||
Short: "start a account service.",
|
||||
Long: `This command starts the main account service.`,
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
serve()
|
||||
},
|
||||
}
|
||||
|
||||
func serve() {}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
package account
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/cmd/account/command"
|
||||
)
|
||||
|
||||
func main() {
|
||||
if err := command.RootCmd.Execute(); err != nil {
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
package driverapp
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp"
|
||||
cfgloader "git.gocasts.ir/ebhomengo/niki/pkg/cfg_loader"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/migrator"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
)
|
||||
|
||||
func main() {
|
||||
var cfg driverapp.Config
|
||||
|
||||
workingDir, err := os.Getwd()
|
||||
if err != nil {
|
||||
fmt.Printf("Error getting current working directory: %v", err)
|
||||
}
|
||||
|
||||
options := cfgloader.Option{
|
||||
Prefix: "DRIVER_",
|
||||
Delimiter: ".",
|
||||
Separator: "__",
|
||||
YamlFilePath: filepath.Join(workingDir, "deploy", "driver", "development", "config.yaml"),
|
||||
CallbackEnv: nil,
|
||||
}
|
||||
|
||||
lErr := cfgloader.Load(options, &cfg)
|
||||
if lErr != nil {
|
||||
log.Fatalf("Failed to load driver config: %v", err)
|
||||
}
|
||||
|
||||
conn := mysql.New(cfg.MysqlDB)
|
||||
|
||||
mgr := migrator.New(cfg.MysqlDB, cfg.PathOfMigration)
|
||||
|
||||
migrate := flag.Bool("migrate", false, "perform database migrations")
|
||||
flag.Parse()
|
||||
|
||||
if *migrate {
|
||||
fmt.Println("Running migrations")
|
||||
mgr.Up()
|
||||
}
|
||||
|
||||
//dapp := driverapp.Setup(cfg)
|
||||
//dapp.Start()
|
||||
|
||||
}
|
||||
|
|
@ -1,13 +1,16 @@
|
|||
package command
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"context"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
"os/signal"
|
||||
"strconv"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/productapp"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
|
@ -25,27 +28,53 @@ var serveCmd = &cobra.Command{
|
|||
func serve() {
|
||||
log.Println("Product Service Starting...")
|
||||
|
||||
// TODO: Initialize database connection
|
||||
// TODO: Initialize service dependencies
|
||||
// TODO: Setup HTTP server with routes
|
||||
cfg := productapp.Config{
|
||||
HTTPServer: productapp.HTTPServerConfig{
|
||||
Port: getEnvInt("HTTP_PORT", 8080),
|
||||
},
|
||||
Database: mysql.Config{
|
||||
Username: getEnv("DB_USERNAME", "root"),
|
||||
Password: getEnv("DB_PASSWORD", ""),
|
||||
Port: getEnvInt("DB_PORT", 3306),
|
||||
Host: getEnv("DB_HOST", "localhost"),
|
||||
DBName: getEnv("DB_NAME", "niki_db"),
|
||||
},
|
||||
}
|
||||
|
||||
if p, err := strconv.Atoi(port); err == nil && p > 0 {
|
||||
cfg.HTTPServer.Port = p
|
||||
}
|
||||
|
||||
app := productapp.Setup(cfg)
|
||||
|
||||
// Setup graceful shutdown
|
||||
go func() {
|
||||
sigCh := make(chan os.Signal, 1)
|
||||
signal.Notify(sigCh, syscall.SIGINT, syscall.SIGTERM)
|
||||
<-sigCh
|
||||
log.Println("Shutting down Product Service gracefully...")
|
||||
os.Exit(0)
|
||||
app.Start()
|
||||
}()
|
||||
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
fmt.Fprintf(w, "Product Service OK!")
|
||||
})
|
||||
quit := make(chan os.Signal, 1)
|
||||
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
|
||||
<-quit
|
||||
|
||||
log.Printf("Product Service listening on port %s", port)
|
||||
if err := http.ListenAndServe(":"+port, nil); err != nil {
|
||||
log.Fatalf("Failed to start server: %v", err)
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
||||
defer cancel()
|
||||
|
||||
if err := app.Stop(ctx); err != nil {
|
||||
log.Fatalf("Server shutdown error: %v", err)
|
||||
}
|
||||
|
||||
log.Println("Product Service stopped.")
|
||||
}
|
||||
|
||||
func getEnvInt(key string, defaultValue int) int {
|
||||
val := os.Getenv(key)
|
||||
if val == "" {
|
||||
return defaultValue
|
||||
}
|
||||
n, err := strconv.Atoi(val)
|
||||
if err != nil {
|
||||
return defaultValue
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
|
|
|||
|
|
@ -1,63 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
purchaseMysql "git.gocasts.ir/ebhomengo/niki/domain/purchase/repository/mysql"
|
||||
"git.gocasts.ir/ebhomengo/niki/purchaseapp/delivery/http"
|
||||
"git.gocasts.ir/ebhomengo/niki/purchaseapp/service/order"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/migrator"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
)
|
||||
|
||||
func MariaDB() *mysql.DB {
|
||||
cfg := mysql.Config{
|
||||
Username: "niki",
|
||||
Password: "nikiappt0lk2o20",
|
||||
Port: 3306,
|
||||
Host: "localhost",
|
||||
DBName: "niki_db",
|
||||
}
|
||||
migrate := flag.Bool("migrate", false, "perform database migration")
|
||||
flag.Parse()
|
||||
if *migrate {
|
||||
migrator.New(migrator.Config{
|
||||
MysqlConfig: cfg,
|
||||
MigrationPath: "./purchaseapp/repository/mysql/migration",
|
||||
MigrationDBName: "gorp_migrations",
|
||||
}).Up()
|
||||
}
|
||||
|
||||
return mysql.New(cfg)
|
||||
}
|
||||
|
||||
func main() {
|
||||
cfg := mysql.Config{
|
||||
Username: "niki",
|
||||
Password: "nikiappt0lk2o20",
|
||||
Port: 3306,
|
||||
Host: "localhost",
|
||||
DBName: "niki_db",
|
||||
}
|
||||
db := mysql.New(cfg)
|
||||
defer func() {
|
||||
if err := db.CloseStatements(); err != nil {
|
||||
fmt.Printf("Error closing statements: %v\n", err)
|
||||
}
|
||||
}()
|
||||
|
||||
orderRepo := purchaseMysql.New(db)
|
||||
|
||||
orderSvc := Service(orderRepo)
|
||||
server := HTTPServer(orderSvc)
|
||||
server.Serve()
|
||||
|
||||
}
|
||||
|
||||
func HTTPServer(orderSvc order.Service) *http.Server {
|
||||
return http.New(orderSvc)
|
||||
}
|
||||
|
||||
func Service(orderRepo *purchaseMysql.DB) order.Service {
|
||||
return order.New(orderRepo)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,281 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.36.11
|
||||
// protoc v3.21.12
|
||||
// source: contract/protobuf/account/account.proto
|
||||
|
||||
package account
|
||||
|
||||
import (
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
reflect "reflect"
|
||||
sync "sync"
|
||||
unsafe "unsafe"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
type LoginOrRegisterRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
PhoneNumber string `protobuf:"bytes,1,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
|
||||
VerifyCode string `protobuf:"bytes,2,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterRequest) Reset() {
|
||||
*x = LoginOrRegisterRequest{}
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*LoginOrRegisterRequest) ProtoMessage() {}
|
||||
|
||||
func (x *LoginOrRegisterRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[0]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use LoginOrRegisterRequest.ProtoReflect.Descriptor instead.
|
||||
func (*LoginOrRegisterRequest) Descriptor() ([]byte, []int) {
|
||||
return file_contract_protobuf_account_account_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterRequest) GetPhoneNumber() string {
|
||||
if x != nil {
|
||||
return x.PhoneNumber
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterRequest) GetVerifyCode() string {
|
||||
if x != nil {
|
||||
return x.VerifyCode
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type LoginOrRegisterResponse struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||||
PhoneNumber string `protobuf:"bytes,2,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterResponse) Reset() {
|
||||
*x = LoginOrRegisterResponse{}
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterResponse) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*LoginOrRegisterResponse) ProtoMessage() {}
|
||||
|
||||
func (x *LoginOrRegisterResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[1]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use LoginOrRegisterResponse.ProtoReflect.Descriptor instead.
|
||||
func (*LoginOrRegisterResponse) Descriptor() ([]byte, []int) {
|
||||
return file_contract_protobuf_account_account_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterResponse) GetId() uint64 {
|
||||
if x != nil {
|
||||
return x.Id
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *LoginOrRegisterResponse) GetPhoneNumber() string {
|
||||
if x != nil {
|
||||
return x.PhoneNumber
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type SendOtpRequest struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
PhoneNumber string `protobuf:"bytes,1,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *SendOtpRequest) Reset() {
|
||||
*x = SendOtpRequest{}
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *SendOtpRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*SendOtpRequest) ProtoMessage() {}
|
||||
|
||||
func (x *SendOtpRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[2]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use SendOtpRequest.ProtoReflect.Descriptor instead.
|
||||
func (*SendOtpRequest) Descriptor() ([]byte, []int) {
|
||||
return file_contract_protobuf_account_account_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *SendOtpRequest) GetPhoneNumber() string {
|
||||
if x != nil {
|
||||
return x.PhoneNumber
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type SendOtpResponse struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *SendOtpResponse) Reset() {
|
||||
*x = SendOtpResponse{}
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
||||
func (x *SendOtpResponse) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*SendOtpResponse) ProtoMessage() {}
|
||||
|
||||
func (x *SendOtpResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_contract_protobuf_account_account_proto_msgTypes[3]
|
||||
if x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use SendOtpResponse.ProtoReflect.Descriptor instead.
|
||||
func (*SendOtpResponse) Descriptor() ([]byte, []int) {
|
||||
return file_contract_protobuf_account_account_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
var File_contract_protobuf_account_account_proto protoreflect.FileDescriptor
|
||||
|
||||
const file_contract_protobuf_account_account_proto_rawDesc = "" +
|
||||
"\n" +
|
||||
"'contract/protobuf/account/account.proto\x12\asendOtp\"Z\n" +
|
||||
"\x16LoginOrRegisterRequest\x12 \n" +
|
||||
"\vphoneNumber\x18\x01 \x01(\tR\vphoneNumber\x12\x1e\n" +
|
||||
"\n" +
|
||||
"verifyCode\x18\x02 \x01(\tR\n" +
|
||||
"verifyCode\"K\n" +
|
||||
"\x17LoginOrRegisterResponse\x12\x0e\n" +
|
||||
"\x02id\x18\x01 \x01(\x04R\x02id\x12 \n" +
|
||||
"\vphoneNumber\x18\x02 \x01(\tR\vphoneNumber\"2\n" +
|
||||
"\x0eSendOtpRequest\x12 \n" +
|
||||
"\vphoneNumber\x18\x01 \x01(\tR\vphoneNumber\"\x11\n" +
|
||||
"\x0fSendOtpResponse2\xa4\x01\n" +
|
||||
"\x0eAccountService\x12<\n" +
|
||||
"\aSendOtp\x12\x17.sendOtp.SendOtpRequest\x1a\x18.sendOtp.SendOtpResponse\x12T\n" +
|
||||
"\x0fLoginOrRegister\x12\x1f.sendOtp.LoginOrRegisterRequest\x1a .sendOtp.LoginOrRegisterResponseB\x1dZ\x1bcontract/goprotobuf/accountb\x06proto3"
|
||||
|
||||
var (
|
||||
file_contract_protobuf_account_account_proto_rawDescOnce sync.Once
|
||||
file_contract_protobuf_account_account_proto_rawDescData []byte
|
||||
)
|
||||
|
||||
func file_contract_protobuf_account_account_proto_rawDescGZIP() []byte {
|
||||
file_contract_protobuf_account_account_proto_rawDescOnce.Do(func() {
|
||||
file_contract_protobuf_account_account_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_contract_protobuf_account_account_proto_rawDesc), len(file_contract_protobuf_account_account_proto_rawDesc)))
|
||||
})
|
||||
return file_contract_protobuf_account_account_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_contract_protobuf_account_account_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||
var file_contract_protobuf_account_account_proto_goTypes = []any{
|
||||
(*LoginOrRegisterRequest)(nil), // 0: sendOtp.LoginOrRegisterRequest
|
||||
(*LoginOrRegisterResponse)(nil), // 1: sendOtp.LoginOrRegisterResponse
|
||||
(*SendOtpRequest)(nil), // 2: sendOtp.SendOtpRequest
|
||||
(*SendOtpResponse)(nil), // 3: sendOtp.SendOtpResponse
|
||||
}
|
||||
var file_contract_protobuf_account_account_proto_depIdxs = []int32{
|
||||
2, // 0: sendOtp.AccountService.SendOtp:input_type -> sendOtp.SendOtpRequest
|
||||
0, // 1: sendOtp.AccountService.LoginOrRegister:input_type -> sendOtp.LoginOrRegisterRequest
|
||||
3, // 2: sendOtp.AccountService.SendOtp:output_type -> sendOtp.SendOtpResponse
|
||||
1, // 3: sendOtp.AccountService.LoginOrRegister:output_type -> sendOtp.LoginOrRegisterResponse
|
||||
2, // [2:4] is the sub-list for method output_type
|
||||
0, // [0:2] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_contract_protobuf_account_account_proto_init() }
|
||||
func file_contract_protobuf_account_account_proto_init() {
|
||||
if File_contract_protobuf_account_account_proto != nil {
|
||||
return
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_contract_protobuf_account_account_proto_rawDesc), len(file_contract_protobuf_account_account_proto_rawDesc)),
|
||||
NumEnums: 0,
|
||||
NumMessages: 4,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_contract_protobuf_account_account_proto_goTypes,
|
||||
DependencyIndexes: file_contract_protobuf_account_account_proto_depIdxs,
|
||||
MessageInfos: file_contract_protobuf_account_account_proto_msgTypes,
|
||||
}.Build()
|
||||
File_contract_protobuf_account_account_proto = out.File
|
||||
file_contract_protobuf_account_account_proto_goTypes = nil
|
||||
file_contract_protobuf_account_account_proto_depIdxs = nil
|
||||
}
|
||||
|
|
@ -0,0 +1,159 @@
|
|||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.6.1
|
||||
// - protoc v3.21.12
|
||||
// source: contract/protobuf/account/account.proto
|
||||
|
||||
package account
|
||||
|
||||
import (
|
||||
context "context"
|
||||
grpc "google.golang.org/grpc"
|
||||
codes "google.golang.org/grpc/codes"
|
||||
status "google.golang.org/grpc/status"
|
||||
)
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the grpc package it is being compiled against.
|
||||
// Requires gRPC-Go v1.64.0 or later.
|
||||
const _ = grpc.SupportPackageIsVersion9
|
||||
|
||||
const (
|
||||
AccountService_SendOtp_FullMethodName = "/sendOtp.AccountService/SendOtp"
|
||||
AccountService_LoginOrRegister_FullMethodName = "/sendOtp.AccountService/LoginOrRegister"
|
||||
)
|
||||
|
||||
// AccountServiceClient is the client API for AccountService service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||||
type AccountServiceClient interface {
|
||||
SendOtp(ctx context.Context, in *SendOtpRequest, opts ...grpc.CallOption) (*SendOtpResponse, error)
|
||||
LoginOrRegister(ctx context.Context, in *LoginOrRegisterRequest, opts ...grpc.CallOption) (*LoginOrRegisterResponse, error)
|
||||
}
|
||||
|
||||
type accountServiceClient struct {
|
||||
cc grpc.ClientConnInterface
|
||||
}
|
||||
|
||||
func NewAccountServiceClient(cc grpc.ClientConnInterface) AccountServiceClient {
|
||||
return &accountServiceClient{cc}
|
||||
}
|
||||
|
||||
func (c *accountServiceClient) SendOtp(ctx context.Context, in *SendOtpRequest, opts ...grpc.CallOption) (*SendOtpResponse, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(SendOtpResponse)
|
||||
err := c.cc.Invoke(ctx, AccountService_SendOtp_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *accountServiceClient) LoginOrRegister(ctx context.Context, in *LoginOrRegisterRequest, opts ...grpc.CallOption) (*LoginOrRegisterResponse, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(LoginOrRegisterResponse)
|
||||
err := c.cc.Invoke(ctx, AccountService_LoginOrRegister_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// AccountServiceServer is the server API for AccountService service.
|
||||
// All implementations must embed UnimplementedAccountServiceServer
|
||||
// for forward compatibility.
|
||||
type AccountServiceServer interface {
|
||||
SendOtp(context.Context, *SendOtpRequest) (*SendOtpResponse, error)
|
||||
LoginOrRegister(context.Context, *LoginOrRegisterRequest) (*LoginOrRegisterResponse, error)
|
||||
mustEmbedUnimplementedAccountServiceServer()
|
||||
}
|
||||
|
||||
// UnimplementedAccountServiceServer must be embedded to have
|
||||
// forward compatible implementations.
|
||||
//
|
||||
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
||||
// pointer dereference when methods are called.
|
||||
type UnimplementedAccountServiceServer struct{}
|
||||
|
||||
func (UnimplementedAccountServiceServer) SendOtp(context.Context, *SendOtpRequest) (*SendOtpResponse, error) {
|
||||
return nil, status.Error(codes.Unimplemented, "method SendOtp not implemented")
|
||||
}
|
||||
func (UnimplementedAccountServiceServer) LoginOrRegister(context.Context, *LoginOrRegisterRequest) (*LoginOrRegisterResponse, error) {
|
||||
return nil, status.Error(codes.Unimplemented, "method LoginOrRegister not implemented")
|
||||
}
|
||||
func (UnimplementedAccountServiceServer) mustEmbedUnimplementedAccountServiceServer() {}
|
||||
func (UnimplementedAccountServiceServer) testEmbeddedByValue() {}
|
||||
|
||||
// UnsafeAccountServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||
// Use of this interface is not recommended, as added methods to AccountServiceServer will
|
||||
// result in compilation errors.
|
||||
type UnsafeAccountServiceServer interface {
|
||||
mustEmbedUnimplementedAccountServiceServer()
|
||||
}
|
||||
|
||||
func RegisterAccountServiceServer(s grpc.ServiceRegistrar, srv AccountServiceServer) {
|
||||
// If the following call panics, it indicates UnimplementedAccountServiceServer was
|
||||
// embedded by pointer and is nil. This will cause panics if an
|
||||
// unimplemented method is ever invoked, so we test this at initialization
|
||||
// time to prevent it from happening at runtime later due to I/O.
|
||||
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
||||
t.testEmbeddedByValue()
|
||||
}
|
||||
s.RegisterService(&AccountService_ServiceDesc, srv)
|
||||
}
|
||||
|
||||
func _AccountService_SendOtp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(SendOtpRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(AccountServiceServer).SendOtp(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: AccountService_SendOtp_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(AccountServiceServer).SendOtp(ctx, req.(*SendOtpRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _AccountService_LoginOrRegister_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(LoginOrRegisterRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(AccountServiceServer).LoginOrRegister(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: AccountService_LoginOrRegister_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(AccountServiceServer).LoginOrRegister(ctx, req.(*LoginOrRegisterRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
// AccountService_ServiceDesc is the grpc.ServiceDesc for AccountService service.
|
||||
// It's only intended for direct use with grpc.RegisterService,
|
||||
// and not to be introspected or modified (even as a copy)
|
||||
var AccountService_ServiceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "sendOtp.AccountService",
|
||||
HandlerType: (*AccountServiceServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "SendOtp",
|
||||
Handler: _AccountService_SendOtp_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "LoginOrRegister",
|
||||
Handler: _AccountService_LoginOrRegister_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "contract/protobuf/account/account.proto",
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
syntax = "proto3";
|
||||
|
||||
|
||||
package sendOtp;
|
||||
option go_package = "contract/goprotobuf/account";
|
||||
|
||||
message LoginOrRegisterRequest{
|
||||
string phoneNumber = 1;
|
||||
string verifyCode = 2;
|
||||
}
|
||||
|
||||
message LoginOrRegisterResponse {
|
||||
uint64 id = 1;
|
||||
string phoneNumber = 2;
|
||||
}
|
||||
|
||||
|
||||
message SendOtpRequest {
|
||||
string phoneNumber = 1;
|
||||
}
|
||||
|
||||
message SendOtpResponse {}
|
||||
|
||||
service AccountService {
|
||||
rpc SendOtp(SendOtpRequest) returns (SendOtpResponse);
|
||||
rpc LoginOrRegister(LoginOrRegisterRequest) returns(LoginOrRegisterResponse);
|
||||
}
|
||||
|
||||
|
|
@ -8,7 +8,7 @@ import (
|
|||
func MigrateMariaDB(cfg mysql.Config) func() {
|
||||
migrations := migrator.New(migrator.Config{
|
||||
MysqlConfig: cfg,
|
||||
MigrationPath: "../../../repository/mysql/migration",
|
||||
MigrationPath: "../../../repository/mysql/migrations",
|
||||
MigrationDBName: "gorp_migrations",
|
||||
})
|
||||
migrations.Up()
|
||||
|
|
|
|||
|
|
@ -0,0 +1,27 @@
|
|||
service:
|
||||
length_of_otp_code: 6
|
||||
otp_chars: "0123456789"
|
||||
otp_expire_time: 2
|
||||
redis_db:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
db:
|
||||
mysql_db:
|
||||
username:
|
||||
password:
|
||||
port:
|
||||
host:
|
||||
db_name:
|
||||
kavenegar:
|
||||
api_key:
|
||||
sender:
|
||||
grpc_server:
|
||||
port:
|
||||
network:
|
||||
grpc_client:
|
||||
host:
|
||||
port:
|
||||
|
||||
|
||||
path_of_migration: ./account/repository/mysql/migration
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
service:
|
||||
length_of_otp_code: 6
|
||||
otp_chars: "0123456789"
|
||||
otp_expire_time: 2
|
||||
redis_db:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
db:
|
||||
mysql_db:
|
||||
username:
|
||||
password:
|
||||
port:
|
||||
host:
|
||||
db_name:
|
||||
kavenegar:
|
||||
api_key:
|
||||
sender:
|
||||
|
||||
path_of_migration: ./driverapp/repository/mysql/migration
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
services:
|
||||
driver_mariadb:
|
||||
image: bitnami/mariadb:11.1
|
||||
container_name: driver_mariadb
|
||||
restart: always
|
||||
ports:
|
||||
- "3305:3306"
|
||||
volumes:
|
||||
- 'driver-mariadb-data:/bitnami/mariadb'
|
||||
environment:
|
||||
MARIADB_USER: driver_admin
|
||||
MARIADB_PASSWORD: password123
|
||||
MARIADB_DATABASE: driver_db
|
||||
MARIADB_ROOT_PASSWORD: password123
|
||||
driver_redis:
|
||||
image: bitnami/redis:6.2
|
||||
container_name: driver-redis
|
||||
restart: always
|
||||
ports:
|
||||
- '6380:6379'
|
||||
command: redis-server --loglevel warning --protected-mode no --save "" --appendonly no
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
volumes:
|
||||
- driver-redis-data:/data
|
||||
|
||||
volumes:
|
||||
driver-mariadb-data:
|
||||
driver-redis-data:
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
ARG GO_IMAGE_NAME
|
||||
ARG GO_IMAGE_VERSION
|
||||
|
||||
FROM ${GO_IMAGE_NAME}:${GO_IMAGE_VERSION}
|
||||
ENV GOPROXY=https://package-mirror.liara.ir/repository/go/
|
||||
ENV GOSUMDB=off
|
||||
|
||||
WORKDIR /home/app
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
RUN go install github.com/air-verse/air@latest
|
||||
|
||||
RUN printf '#!/bin/sh\n./cmd/productapp/temp/main migrate --up\nexec ./cmd/productapp/temp/main serve\n' > /entrypoint.sh && chmod +x /entrypoint.sh
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["air", "-c", "/home/app/.air/.air.productapp.toml"]
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
services:
|
||||
productapp-mysql:
|
||||
image: mirror2.chabokan.net/mysql:8.0
|
||||
container_name: productapp-mysql
|
||||
restart: always
|
||||
ports:
|
||||
- "3307:3306"
|
||||
volumes:
|
||||
- productapp-mysql-data:/var/lib/mysql
|
||||
environment:
|
||||
MYSQL_DATABASE: niki_db
|
||||
MYSQL_ROOT_PASSWORD: secret
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
productapp-mysql-data:
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
services:
|
||||
productapp-app:
|
||||
build:
|
||||
context: ../../..
|
||||
dockerfile: deploy/productapp/development/Dockerfile
|
||||
args:
|
||||
GO_IMAGE_NAME: ${GO_IMAGE_NAME}
|
||||
GO_IMAGE_VERSION: ${GO_IMAGE_VERSION}
|
||||
container_name: productapp-app
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ../../..:/home/app
|
||||
environment:
|
||||
DB_HOST: productapp-mysql
|
||||
DB_USERNAME: root
|
||||
DB_PASSWORD: secret
|
||||
DB_NAME: niki_db
|
||||
MIGRATION_PATH: /home/app/productapp/repository/migrations
|
||||
depends_on:
|
||||
productapp-mysql:
|
||||
condition: service_healthy
|
||||
restart: unless-stopped
|
||||
|
||||
productapp-mysql:
|
||||
image: mirror2.chabokan.net/mysql:8.0
|
||||
container_name: productapp-mysql
|
||||
restart: always
|
||||
ports:
|
||||
- "3307:3306"
|
||||
volumes:
|
||||
- productapp-mysql-data:/var/lib/mysql
|
||||
environment:
|
||||
MYSQL_DATABASE: niki_db
|
||||
MYSQL_ROOT_PASSWORD: secret
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
productapp-mysql-data:
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package entity
|
||||
|
||||
import "git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
|
||||
type Driver struct {
|
||||
ID types.ID
|
||||
PhoneNumber string
|
||||
}
|
||||
|
|
@ -0,0 +1,87 @@
|
|||
package mysql
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/entity"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/database/mysql"
|
||||
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
types "git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
)
|
||||
|
||||
const (
|
||||
StatementKeyIsExistDriverByPhoneNumber = iota + 1
|
||||
StatementKeyCreateDriver = iota + 1
|
||||
)
|
||||
|
||||
type AccountRepo struct {
|
||||
db *mysql.DB
|
||||
}
|
||||
|
||||
func New(db *mysql.DB) AccountRepo {
|
||||
return AccountRepo{
|
||||
db: db,
|
||||
}
|
||||
}
|
||||
|
||||
func (r AccountRepo) IsExistDriverByPhoneNumber(ctx context.Context, phoneNumber string) (bool, entity.Driver, error) {
|
||||
const op = "Repository.IsExistDriverByPhoneNumber"
|
||||
query := `select * from drivers where phone_number = ?`
|
||||
stmt, err := r.db.PrepareStatement(ctx, StatementKeyIsExistDriverByPhoneNumber, query)
|
||||
if err != nil {
|
||||
return false, entity.Driver{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected).
|
||||
WithMessage(errmsg.ErrorMsgCantPrepareStatement)
|
||||
}
|
||||
|
||||
defer stmt.Close()
|
||||
|
||||
row := stmt.QueryRowContext(ctx, phoneNumber)
|
||||
d, sErr := DriverScan(row)
|
||||
if sErr != nil {
|
||||
if errors.Is(sErr, sql.ErrNoRows) {
|
||||
return false, entity.Driver{}, richerror.New(op).WithKind(richerror.KindNotFound).
|
||||
WithMessage(errmsg.ErrorMsgNotFound)
|
||||
}
|
||||
return false, entity.Driver{}, richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return true, d, nil
|
||||
|
||||
}
|
||||
|
||||
func (r AccountRepo) CreateDriver(ctx context.Context, driver entity.Driver) (entity.Driver, error) {
|
||||
const op = "Repository.CreateDriver"
|
||||
query := `insert into drivers(phone_number) values(?)`
|
||||
|
||||
stmt, err := r.db.PrepareStatement(ctx, StatementKeyCreateDriver, query)
|
||||
if err != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected).
|
||||
WithMessage(errmsg.ErrorMsgCantPrepareStatement)
|
||||
}
|
||||
|
||||
res, err := stmt.ExecContext(ctx, driver.PhoneNumber)
|
||||
|
||||
if err != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected).
|
||||
WithMessage(errmsg.ErrorMsgNotFound)
|
||||
}
|
||||
|
||||
id, _ := res.LastInsertId()
|
||||
driver.ID = types.ID(id)
|
||||
|
||||
return driver, nil
|
||||
}
|
||||
|
||||
func DriverScan(scanner mysql.Scanner) (entity.Driver, error) {
|
||||
var createdAt, updatedAt time.Time
|
||||
var driver entity.Driver
|
||||
|
||||
err := scanner.Scan(&driver.ID, &driver.PhoneNumber, &createdAt, &updatedAt)
|
||||
|
||||
return driver, err
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
-- +migrate Up
|
||||
CREATE TABLE `drivers`(
|
||||
`iD` INT PRIMARY KEY AUTO_INCREMENT,
|
||||
`phone_number` VARCHAR(191) NOT NULL UNIQUE ,
|
||||
|
||||
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
|
||||
);
|
||||
|
||||
|
||||
-- +migrate Down
|
||||
DROP TABLE `drivers`;
|
||||
|
|
@ -0,0 +1,67 @@
|
|||
package redis
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/redis"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
)
|
||||
|
||||
type RepositoryOtp struct {
|
||||
conn *redis.Adapter
|
||||
}
|
||||
|
||||
func NewRepositoryOtp(conn *redis.Adapter) RepositoryOtp {
|
||||
return RepositoryOtp{conn: conn}
|
||||
}
|
||||
|
||||
func (r RepositoryOtp) IsExistPhoneNumber(ctx context.Context, phoneNumber string) (bool, error) {
|
||||
const op = "RepositoryOtp.IsExistPhoneNumber"
|
||||
|
||||
result, err := r.conn.Client().Exists(ctx, phoneNumber).Result()
|
||||
if err != nil {
|
||||
return false, richerror.New(op).WithKind(richerror.KindUnexpected).WithErr(err)
|
||||
}
|
||||
|
||||
if result == 0 {
|
||||
return false, nil
|
||||
}
|
||||
|
||||
return true, nil
|
||||
}
|
||||
|
||||
func (r RepositoryOtp) SaveCodeWithPhoneNumber(ctx context.Context, phoneNumber string, code string, expireTime time.Duration) error {
|
||||
const op = "RepositoryOtp.SaveCodeWithPhoneNumber"
|
||||
|
||||
_, err := r.conn.Client().Set(ctx, phoneNumber, code, expireTime).Result()
|
||||
if err != nil {
|
||||
return richerror.New(op).WithKind(richerror.KindUnexpected).WithErr(err)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r RepositoryOtp) GetCodeByPhoneNumber(ctx context.Context, phoneNumber string) (string, error) {
|
||||
const op = "RepositoryOtp.GetCodeByPhoneNumber"
|
||||
|
||||
result, err := r.conn.Client().Get(ctx, phoneNumber).Result()
|
||||
if err != nil {
|
||||
return "", richerror.New(op).WithKind(richerror.KindUnexpected).WithErr(err)
|
||||
}
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
func (r RepositoryOtp) DeleteCodeByPhoneNumber(ctx context.Context, PhoneNumber string) (bool, error) {
|
||||
const op = "RepositoryOtp.DeleteCodeByPhoneNumber"
|
||||
success, err := r.conn.Client().Del(ctx, PhoneNumber).Result()
|
||||
if err != nil {
|
||||
return false, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
if success != 1 {
|
||||
return false, nil
|
||||
}
|
||||
|
||||
return true, nil
|
||||
}
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
"math/rand"
|
||||
"time"
|
||||
|
||||
smscontract "git.gocasts.ir/ebhomengo/niki/contract/sms"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/account/entity"
|
||||
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
LengthOfOtpCode int `koanf:"length_of_otp_code"`
|
||||
OtpChars string `koanf:"otp_chars"`
|
||||
OtpExpireTime time.Duration `koanf:"otp_expire_time"`
|
||||
}
|
||||
|
||||
type RepositoryOtp interface {
|
||||
IsExistPhoneNumber(ctx context.Context, phoneNumber string) (bool, error)
|
||||
SaveCodeWithPhoneNumber(ctx context.Context, phoneNumber string, code string, expireTime time.Duration) error
|
||||
GetCodeByPhoneNumber(ctx context.Context, phoneNumber string) (string, error)
|
||||
DeleteCodeByPhoneNumber(ctx context.Context, PhoneNumber string) (bool, error)
|
||||
}
|
||||
|
||||
type Repository interface {
|
||||
IsExistDriverByPhoneNumber(ctx context.Context, phoneNumber string) (bool, entity.Driver, error)
|
||||
CreateDriver(ctx context.Context, driver entity.Driver) (entity.Driver, error)
|
||||
}
|
||||
|
||||
type Service struct {
|
||||
config Config
|
||||
repositoryOtp RepositoryOtp
|
||||
repository Repository
|
||||
smsContract smscontract.SmsAdapter
|
||||
}
|
||||
|
||||
func NewService(cfg Config, repositoryOtp RepositoryOtp, repository Repository, smsContract smscontract.SmsAdapter) Service {
|
||||
return Service{
|
||||
config: cfg,
|
||||
repositoryOtp: repositoryOtp,
|
||||
repository: repository,
|
||||
smsContract: smsContract,
|
||||
}
|
||||
}
|
||||
|
||||
func (s Service) SendOTP(ctx context.Context, phoneNumber string) error {
|
||||
const op = "accountService.SendOTP"
|
||||
|
||||
isExist, iErr := s.repositoryOtp.IsExistPhoneNumber(ctx, phoneNumber)
|
||||
if iErr != nil {
|
||||
return richerror.New(op).WithErr(iErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
if isExist {
|
||||
return richerror.New(op).WithMessage(errmsg.ErrorMsgOtpCodeExist).WithKind(richerror.KindForbidden)
|
||||
}
|
||||
|
||||
newCode := s.generateVerificationCode()
|
||||
sErr := s.repositoryOtp.SaveCodeWithPhoneNumber(ctx, phoneNumber, newCode, s.config.OtpExpireTime)
|
||||
if sErr != nil {
|
||||
return richerror.New(op).WithErr(sErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
go s.smsContract.Send(phoneNumber, newCode)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s Service) LoginOrRegisterDriver(ctx context.Context, phoneNumber string, verifyCode string) (entity.Driver, error) {
|
||||
const op = "accountService.LoginOrRegisterDriver"
|
||||
|
||||
code, gErr := s.repositoryOtp.GetCodeByPhoneNumber(ctx, phoneNumber)
|
||||
if gErr != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(gErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
if code == "" || code != verifyCode {
|
||||
return entity.Driver{}, richerror.New(op).WithMessage(errmsg.ErrorMsgOtpCodeIsNotValid).WithKind(richerror.KindForbidden)
|
||||
}
|
||||
|
||||
_, dErr := s.repositoryOtp.DeleteCodeByPhoneNumber(ctx, phoneNumber)
|
||||
if dErr != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(dErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
isExist, driver, eErr := s.repository.IsExistDriverByPhoneNumber(ctx, phoneNumber)
|
||||
if eErr != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(eErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
if !isExist {
|
||||
newDriver, cErr := s.repository.CreateDriver(ctx, entity.Driver{
|
||||
PhoneNumber: phoneNumber,
|
||||
})
|
||||
if cErr != nil {
|
||||
return entity.Driver{}, richerror.New(op).WithErr(cErr).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
driver = newDriver
|
||||
}
|
||||
|
||||
return driver, nil
|
||||
|
||||
}
|
||||
|
||||
func (s Service) generateVerificationCode() string {
|
||||
result := make([]byte, s.config.LengthOfOtpCode)
|
||||
for i := 0; i < s.config.LengthOfOtpCode; i++ {
|
||||
result[i] = s.config.OtpChars[rand.Intn(len(s.config.OtpChars))]
|
||||
}
|
||||
|
||||
return string(result)
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
package entity
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
)
|
||||
|
||||
type Benefactor struct {
|
||||
ID types.ID
|
||||
FirstName string
|
||||
LastName string
|
||||
PhoneNumber string
|
||||
Description string
|
||||
Email string
|
||||
Gender Gender
|
||||
BirthDate time.Time
|
||||
Status BenefactorStatus
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
package entity
|
||||
|
||||
type BenefactorStatus string
|
||||
|
||||
const (
|
||||
BenefactorActiveStatus = BenefactorStatus("active")
|
||||
BenefactorInactiveStatus = BenefactorStatus("inactive")
|
||||
)
|
||||
|
||||
var BenefactorStatusStrings = map[BenefactorStatus]string{
|
||||
BenefactorActiveStatus: "active",
|
||||
BenefactorInactiveStatus: "inactive",
|
||||
}
|
||||
|
||||
func (b BenefactorStatus) IsValid() bool {
|
||||
_, ok := BenefactorStatusStrings[b]
|
||||
|
||||
return ok
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
package entity
|
||||
|
||||
type Gender string
|
||||
|
||||
const (
|
||||
MaleGender = Gender("male")
|
||||
FemaleGender = Gender("female")
|
||||
)
|
||||
|
||||
var GenderStrings = map[Gender]string{
|
||||
MaleGender: "male",
|
||||
FemaleGender: "female",
|
||||
}
|
||||
|
||||
func (g Gender) IsValid() bool {
|
||||
_, ok := GenderStrings[g]
|
||||
|
||||
return ok
|
||||
}
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
package mysql
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/benefactor/entity"
|
||||
errmsg "git.gocasts.ir/ebhomengo/niki/pkg/err_msg"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
)
|
||||
|
||||
func (d *DB) Create(ctx context.Context, b entity.Benefactor) (entity.Benefactor, error) {
|
||||
const op = "repository.mysql.benefactor.create"
|
||||
|
||||
query := `INSERT INTO benefactors
|
||||
(first_name, last_name, phone_number, description, email, gender, birthdate)
|
||||
VALUES(?, ?, ?, ?, ?, ?, ?)`
|
||||
|
||||
res, err := d.conn.Conn().ExecContext(ctx, query,
|
||||
b.FirstName, b.LastName, b.PhoneNumber,b.Description, b.Email, b.Gender, b.BirthDate)
|
||||
|
||||
if err != nil {
|
||||
return entity.Benefactor{}, richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgSomethingWentWrong).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
id, _ := res.LastInsertId()
|
||||
b.ID = types.ID(id)
|
||||
|
||||
return b, nil
|
||||
}
|
||||
|
||||
func (d *DB) GetBenefactorByID(ctx context.Context, benefactorID types.ID) (entity.Benefactor, error) {
|
||||
const op = "repository.mysql.benefactor.getBenefactorById"
|
||||
var b entity.Benefactor
|
||||
|
||||
query := `SELECT * FROM benefactors WHERE id = ?`
|
||||
|
||||
row := d.conn.Conn().QueryRowContext(ctx, query, benefactorID)
|
||||
err := row.Scan(&b.ID, &b.FirstName, &b.LastName, &b.PhoneNumber,
|
||||
&b.Description, &b.Email, b.Gender, b.BirthDate, b.Status)
|
||||
|
||||
if err != nil {
|
||||
if err == sql.ErrNoRows {
|
||||
return entity.Benefactor{}, richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgNotFound).WithKind(richerror.KindNotFound)
|
||||
}
|
||||
|
||||
return entity.Benefactor{}, richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgCantScanQueryResult).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return b, nil
|
||||
|
||||
}
|
||||
|
||||
func (d *DB) Activate(ctx context.Context, benefactorID types.ID) error {
|
||||
const op = "repository.mysql.benefactor.Activate"
|
||||
|
||||
query := `UPDATE benefactors SET status ='active' WHERE id = ?`
|
||||
|
||||
_, err := d.conn.Conn().ExecContext(ctx, query, benefactorID)
|
||||
|
||||
if err != nil {
|
||||
return richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgSomethingWentWrong).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (d *DB) Deactivate(ctx context.Context, benefactorID types.ID) error {
|
||||
const op = "repository.mysql.benefactor.Deativate"
|
||||
|
||||
query := `UPDATE benefactors SET status ='inactive' WHERE id = ?`
|
||||
|
||||
_, err := d.conn.Conn().ExecContext(ctx, query, benefactorID)
|
||||
|
||||
if err != nil {
|
||||
return richerror.New(op).WithErr(err).
|
||||
WithMessage(errmsg.ErrorMsgSomethingWentWrong).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
package mysql
|
||||
|
||||
import(
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
)
|
||||
|
||||
type DB struct {
|
||||
conn *mysql.DB
|
||||
}
|
||||
|
||||
func New(conn *mysql.DB) *DB {
|
||||
return &DB{conn: conn}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
-- +migrate Up
|
||||
CREATE TABLE `benefactors` (
|
||||
`id` INT NOT NULL PRIMARY KEY,
|
||||
`first_name` VARCHAR(100) NOT NULL,
|
||||
`last_name` VARCHAR(100) NOT NULL,
|
||||
`phone_number` VARCHAR(20) NOT NULL,
|
||||
`description` TEXT,
|
||||
`email` VARCHAR(255),
|
||||
`gender` ENUM('male', 'female') NOT NULL,
|
||||
`birth_date` DATE,
|
||||
`status` ENUM('active', 'inactive') NOT NULL DEFAULT `active`,
|
||||
|
||||
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
`updated_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
-- +migrate Down
|
||||
DROP TABLE `benefactors`;
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/benefactor/entity"
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
)
|
||||
|
||||
type CreateBenefactorRequest struct {
|
||||
ID types.ID `json:"id"`
|
||||
FirstName string `json:"first_name"`
|
||||
LastName string `json:"last_name"`
|
||||
PhoneNumber string `json:"phone_number"`
|
||||
Description string `json:"description"`
|
||||
Email string `json:"email"`
|
||||
Gender entity.Gender `json:"gender"`
|
||||
BirthDate time.Time `json:"birth_date"`
|
||||
}
|
||||
|
||||
type CreateBenefactorResponse struct {
|
||||
Name string `json:"name"`
|
||||
Email string `json:"email"`
|
||||
}
|
||||
|
||||
type ProfileRequest struct {
|
||||
BenefactorID types.ID
|
||||
}
|
||||
|
||||
type ProfileResponse struct {
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
type ActivenessRequest struct {
|
||||
BenefactorID types.ID
|
||||
}
|
||||
|
|
@ -0,0 +1,87 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/benefactor/entity"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
)
|
||||
|
||||
type Repository interface {
|
||||
Create(ctx context.Context, b entity.Benefactor) (entity.Benefactor, error)
|
||||
GetBenefactorByID(ctx context.Context, benefactorID types.ID) (entity.Benefactor, error)
|
||||
Activate(ctx context.Context, benefactorID types.ID) error
|
||||
Deactivate(ctx context.Context, benefactorID types.ID) error
|
||||
}
|
||||
|
||||
type Service struct {
|
||||
repo Repository
|
||||
}
|
||||
|
||||
func New(repo Repository) Service {
|
||||
return Service{repo: repo}
|
||||
}
|
||||
|
||||
func (s Service) CreateBenefactor(ctx context.Context, req CreateBenefactorRequest) (CreateBenefactorResponse, error) {
|
||||
const op = "beneafactorservice.CreateBenefactor"
|
||||
|
||||
benefactor := entity.Benefactor{
|
||||
ID: 0,
|
||||
FirstName: req.FirstName,
|
||||
LastName: req.LastName,
|
||||
PhoneNumber: req.PhoneNumber,
|
||||
Description: req.Description,
|
||||
Email: req.Email,
|
||||
Gender: req.Gender,
|
||||
BirthDate: req.BirthDate,
|
||||
Status: entity.BenefactorActiveStatus,
|
||||
}
|
||||
|
||||
createdBenefactor, err := s.repo.Create(ctx, benefactor)
|
||||
if err != nil {
|
||||
return CreateBenefactorResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return CreateBenefactorResponse{
|
||||
Name: createdBenefactor.FirstName + " " + createdBenefactor.LastName,
|
||||
Email: createdBenefactor.Email,
|
||||
}, nil
|
||||
}
|
||||
|
||||
func(s Service) Profile(ctx context.Context, req ProfileRequest) (ProfileResponse, error) {
|
||||
const op = "benefactorservice.Profile"
|
||||
|
||||
benefactor, err := s.repo.GetBenefactorByID(ctx, types.ID(req.BenefactorID))
|
||||
if err != nil {
|
||||
return ProfileResponse{}, richerror.New(op).WithErr(err).
|
||||
WithMeta(map[string]interface{}{"req": req})
|
||||
}
|
||||
|
||||
return ProfileResponse{Name: benefactor.FirstName + " " + benefactor.LastName}, nil
|
||||
|
||||
}
|
||||
|
||||
func (s Service) Activate(ctx context.Context, req ActivenessRequest) error {
|
||||
const op = "benefactorservice.Activate"
|
||||
|
||||
err := s.repo.Activate(ctx, types.ID(req.BenefactorID))
|
||||
if err != nil {
|
||||
return richerror.New(op).WithErr(err).
|
||||
WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s Service) Dectivate(ctx context.Context, req ActivenessRequest) error {
|
||||
const op = "benefactorservice.Deactivate"
|
||||
|
||||
err := s.repo.Deactivate(ctx, types.ID(req.BenefactorID))
|
||||
if err != nil {
|
||||
return richerror.New(op).WithErr(err).
|
||||
WithKind(richerror.KindUnexpected)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
@ -5,39 +5,31 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
type CampaignStatus string
|
||||
|
||||
const (
|
||||
CampaignDraft CampaignStatus = "draft"
|
||||
CampaignActive CampaignStatus = "active"
|
||||
CampaignFinished CampaignStatus = "completed"
|
||||
CampaignPaused CampaignStatus = "paused"
|
||||
CampaignCanceled CampaignStatus = "cancelled"
|
||||
)
|
||||
|
||||
type Campaign struct {
|
||||
ID types.ID `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Description string `json:"description"`
|
||||
GoalAmount float64 `json:"goal_amount"`
|
||||
RaisedAmount float64 `json:"raised_amount"`
|
||||
Status CampaignStatus `json:"status"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
AdminID types.ID `json:"creator_id"`
|
||||
ID types.ID `json:"id"`
|
||||
Title string `json:"title"`
|
||||
Description string `json:"description"`
|
||||
Link string `json:"link"`
|
||||
Slogan string `json:"slogan"` //
|
||||
GoalAmount float64 `json:"goal_amount"`
|
||||
RaisedAmount float64 `json:"raised_amount"`
|
||||
Status types.CampaignStatus `json:"status"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
AdminID types.ID `json:"creator_id"`
|
||||
}
|
||||
|
||||
// Behavior
|
||||
func (c *Campaign) Activate() {
|
||||
if c.Status == CampaignDraft {
|
||||
c.Status = CampaignActive
|
||||
if c.Status == types.CampaignDraft {
|
||||
c.Status = types.CampaignActive
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Campaign) AddFunds(amount float64) {
|
||||
c.RaisedAmount += amount
|
||||
if c.RaisedAmount >= c.GoalAmount {
|
||||
c.Status = CampaignFinished
|
||||
c.Status = types.CampaignFinished
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@ CREATE TABLE `campaigns` (
|
|||
`id` BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
`title` VARCHAR(255) NOT NULL,
|
||||
`description` TEXT,
|
||||
`link` VARCHAR(255) NULL,
|
||||
`slogan` VARCHAR(255) NULL,
|
||||
`goal_amount` DECIMAL(15,2) NOT NULL,
|
||||
`raised_amount` DECIMAL(15,2) DEFAULT 0,
|
||||
`status` VARCHAR(50) NOT NULL,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ func New(db *mysql.DB) *DB {
|
|||
}
|
||||
|
||||
// CreateCampaign creates a new campaign
|
||||
func (d *DB) CreateAndSave(ctx context.Context, campaign entity.Campaign) (types.ID, error) {
|
||||
func (d *DB) Create(ctx context.Context, campaign entity.Campaign) (types.ID, error) {
|
||||
const Op = "repository.mysql.campaign.create"
|
||||
|
||||
tx, err := d.conn.Conn().BeginTx(ctx, nil)
|
||||
|
|
@ -26,13 +26,16 @@ func (d *DB) CreateAndSave(ctx context.Context, campaign entity.Campaign) (types
|
|||
}
|
||||
defer tx.Rollback()
|
||||
|
||||
query := `INSERT INTO campaigns (title, description, goal_amount, raised_amount,
|
||||
query := `INSERT INTO campaigns (title, description,link, slogan ,
|
||||
goal_amount, raised_amount,
|
||||
status, deadline_at ,admin_id , created_at )
|
||||
VALUES (?, ?, ?, ?, ?, ?, ? , NOW() )`
|
||||
|
||||
result, err := tx.ExecContext(ctx, query,
|
||||
campaign.Title,
|
||||
campaign.Description,
|
||||
campaign.Link,
|
||||
campaign.Slogan,
|
||||
campaign.GoalAmount,
|
||||
campaign.RaisedAmount,
|
||||
campaign.Status,
|
||||
|
|
|
|||
|
|
@ -9,24 +9,30 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
func ToCampaignEntity(req CreateCampaignRequest) entity.Campaign {
|
||||
return entity.Campaign{
|
||||
Title: req.Title,
|
||||
Description: req.Description,
|
||||
Link: req.Link,
|
||||
Slogan: req.Slogan,
|
||||
GoalAmount: req.GoalAmount,
|
||||
RaisedAmount: 0,
|
||||
Status: types.CampaignStatus(req.Status),
|
||||
DeadlineAt: req.DeadlineAt,
|
||||
AdminID: req.AdminID,
|
||||
CreatedAt: time.Now(),
|
||||
}
|
||||
}
|
||||
|
||||
// CreateCampaign handles creation of a new campaign.
|
||||
func (s *CampaignService) CreateCampaign(ctx context.Context, req entity.Campaign) (types.ID, error) {
|
||||
func (s *CampaignService) CreateCampaign(ctx context.Context, req CreateCampaignRequest) (types.ID, error) {
|
||||
const op = "service.campaign.create_campaign"
|
||||
|
||||
if err := validateCreateCampaignRequest(req); err != nil {
|
||||
return 0, richerror.New(op).WithErr(err)
|
||||
}
|
||||
|
||||
campaign := entity.Campaign{
|
||||
Title: req.Title,
|
||||
Description: req.Description,
|
||||
GoalAmount: req.GoalAmount,
|
||||
RaisedAmount: 0,
|
||||
Status: req.Status,
|
||||
DeadlineAt: req.DeadlineAt,
|
||||
AdminID: req.AdminID,
|
||||
CreatedAt: time.Now(),
|
||||
}
|
||||
campaign := ToCampaignEntity(req)
|
||||
|
||||
id, err := s.repo.Create(ctx, campaign)
|
||||
if err != nil {
|
||||
|
|
@ -36,7 +42,7 @@ func (s *CampaignService) CreateCampaign(ctx context.Context, req entity.Campaig
|
|||
return id, nil
|
||||
}
|
||||
|
||||
func validateCreateCampaignRequest(req entity.Campaign) error {
|
||||
func validateCreateCampaignRequest(req CreateCampaignRequest) error {
|
||||
if req.Title == "" {
|
||||
return errRequired("title")
|
||||
}
|
||||
|
|
@ -6,22 +6,25 @@ import (
|
|||
)
|
||||
|
||||
type GetCampaignResponse struct {
|
||||
ID types.ID `json:"user_id"`
|
||||
ID types.ID `json:"campaign_id"`
|
||||
}
|
||||
|
||||
type AddCampaignRequest struct {
|
||||
ID uint64 `json:"id"`
|
||||
type CreateCampaignRequest struct {
|
||||
Title string `json:"title"`
|
||||
Description string `json:"description"`
|
||||
Link string `json:"link"`
|
||||
Slogan string `json:"slogan" validate:"max=255"`
|
||||
GoalAmount float64 `json:"goal_amount"`
|
||||
Status string `json:"status,omitempty"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
AdminID types.ID `json:"admin_id"`
|
||||
AdminID types.ID `json:"admin_id" validate:"required"`
|
||||
}
|
||||
|
||||
type UpdateCampaignRequest struct {
|
||||
Title *string `json:"title,omitempty"`
|
||||
Description *string `json:"description,omitempty"`
|
||||
GoalAmount *float64 `json:"goal_amount,omitempty"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
Status *string `json:"status,omitempty"` // draft/active/completed/paused/cancelled
|
||||
type CompletedCampaignResponse struct {
|
||||
TotalChecked uint64 `json:"total_checked"`
|
||||
TotalFinished uint64 `json:"total_finished"`
|
||||
}
|
||||
|
||||
type FilterRequest struct {
|
||||
Limit uint32 `json:"total_checked"`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,8 +14,13 @@ type CampaignFilterParam struct {
|
|||
IsArchived *bool
|
||||
}
|
||||
|
||||
type CampaignStatus interface {
|
||||
FindActiveCampaigns(ctx context.Context) ([]entity.Campaign, error)
|
||||
UpdateStatus(ctx context.Context, id types.ID, status types.CampaignStatus) error
|
||||
}
|
||||
|
||||
type CampaignStorage interface {
|
||||
Create(ctx context.Context, c entity.Campaign) (types.ID, error) // باید ID برگرداند
|
||||
Create(ctx context.Context, c entity.Campaign) (types.ID, error)
|
||||
Update(ctx context.Context, c entity.Campaign) error
|
||||
FindByID(ctx context.Context, id types.ID) (entity.Campaign, error)
|
||||
FindAll(ctx context.Context, filter CampaignFilterParam) ([]entity.Campaign, error)
|
||||
|
|
@ -24,10 +29,10 @@ type CampaignStorage interface {
|
|||
}
|
||||
|
||||
type CampaignService struct {
|
||||
repo CampaignStorage
|
||||
repo CampaignStorage
|
||||
repoStatus CampaignStatus
|
||||
}
|
||||
|
||||
// NewCampaignService constructs a new CampaignService.
|
||||
func NewCampaignService(storage CampaignStorage) *CampaignService {
|
||||
return &CampaignService{
|
||||
repo: storage,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,64 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
"time"
|
||||
)
|
||||
|
||||
func (s *CampaignService) MonitorCampaignProgress(ctx context.Context, req FilterRequest) {
|
||||
|
||||
ticker := time.NewTicker(1 * time.Hour)
|
||||
defer ticker.Stop()
|
||||
|
||||
for {
|
||||
select {
|
||||
case <-ticker.C:
|
||||
s.CheckAndCompleteCampaigns(ctx, req)
|
||||
case <-ctx.Done():
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (s *CampaignService) CheckAndCompleteCampaigns(ctx context.Context, req FilterRequest) (CompletedCampaignResponse, error) {
|
||||
|
||||
now := time.Now()
|
||||
|
||||
//TODO:with filter request later complete
|
||||
activeCampaigns, err := s.repoStatus.FindActiveCampaigns(ctx)
|
||||
if err != nil {
|
||||
return CompletedCampaignResponse{}, err
|
||||
}
|
||||
|
||||
var totalChecked uint64
|
||||
var totalFinished uint64
|
||||
|
||||
for _, campaign := range activeCampaigns {
|
||||
|
||||
totalChecked++
|
||||
|
||||
shouldFinish := false
|
||||
|
||||
if campaign.DeadlineAt != nil && campaign.DeadlineAt.Before(now) {
|
||||
shouldFinish = true
|
||||
}
|
||||
|
||||
if campaign.RaisedAmount >= campaign.GoalAmount {
|
||||
shouldFinish = true
|
||||
}
|
||||
|
||||
if shouldFinish && campaign.Status != types.CampaignFinished {
|
||||
if err := s.repoStatus.UpdateStatus(ctx, campaign.ID, types.CampaignFinished); err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
totalFinished++
|
||||
}
|
||||
}
|
||||
|
||||
return CompletedCampaignResponse{
|
||||
TotalChecked: totalChecked,
|
||||
TotalFinished: totalFinished,
|
||||
}, nil
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
package entity
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Gateway struct {
|
||||
ID uint
|
||||
Name string
|
||||
Code string
|
||||
IsActive bool
|
||||
Config json.RawMessage
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type Currency string
|
||||
|
||||
const (
|
||||
CurrencyIRR Currency = "IRR"
|
||||
CurrencyUSD Currency = "USD"
|
||||
)
|
||||
|
||||
type PaymentStatus string
|
||||
|
||||
const (
|
||||
PaymentStatusPending PaymentStatus = "Pending"
|
||||
PaymentStatusSuccess PaymentStatus = "Success"
|
||||
PaymentStatusFailed PaymentStatus = "Failed"
|
||||
PaymentStatusCancelled PaymentStatus = "Cancelled"
|
||||
//...
|
||||
)
|
||||
|
||||
type PayableType string
|
||||
|
||||
const (
|
||||
PayableTypeDonate PayableType = "Donate"
|
||||
PayableTypeOrder PayableType = "Order"
|
||||
PayableTypeWalet PayableType = "WaletCharge"
|
||||
)
|
||||
|
||||
type Payment struct {
|
||||
ID uint
|
||||
UserID uint
|
||||
MethodID uint
|
||||
GatewayID uint
|
||||
PayableType PayableType
|
||||
PayableID uint
|
||||
TotalAmount int64
|
||||
PaidAmount int64
|
||||
Currency Currency
|
||||
Status PaymentStatus
|
||||
Description string
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
PaidAt *time.Time
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type PaymentMethod struct {
|
||||
ID uint
|
||||
Name string
|
||||
IsActive bool
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
package entity
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
)
|
||||
|
||||
type TransactionType string
|
||||
|
||||
const (
|
||||
TransactionTypeRequest TransactionType = "request"
|
||||
TransactionTypeVerify TransactionType = "verify"
|
||||
)
|
||||
|
||||
type TransactionStatus string
|
||||
|
||||
const (
|
||||
TransactionStatusPending = "Pending"
|
||||
TransactionStatusSuccess = "Success"
|
||||
TransactionStatusFailed = "Failed"
|
||||
)
|
||||
|
||||
type PaymentTransaction struct {
|
||||
ID uint
|
||||
PaymentID uint
|
||||
Type TransactionType
|
||||
RequestData json.RawMessage
|
||||
ResponseData json.RawMessage
|
||||
RefID string
|
||||
Status TransactionStatus
|
||||
GatewayToken string
|
||||
ErrorMessage string
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@ func NewGatewayFactory() service.GatewayFactory {
|
|||
return &gatewayFactoryImpl{}
|
||||
}
|
||||
|
||||
func (f *gatewayFactoryImpl) GetGatewayAdapter(code string) (service.GatewayPort, error) {
|
||||
func (f gatewayFactoryImpl) GetGatewayAdapter(code string) (service.GatewayPort, error) {
|
||||
switch code {
|
||||
case "melat":
|
||||
return nil, nil
|
||||
|
|
|
|||
|
|
@ -1,13 +1,31 @@
|
|||
package repository
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/payment/entity"
|
||||
)
|
||||
|
||||
type PaymentRepository struct {
|
||||
DB *sql.DB
|
||||
}
|
||||
|
||||
// CreatePayment implements [service.PaymentRepo].
|
||||
func (*PaymentRepository) CreatePayment(ctx context.Context, p *entity.Payment) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
|
||||
// CreateTransaction implements [service.PaymentRepo].
|
||||
func (p *PaymentRepository) CreateTransaction(ctx context.Context, t *entity.PaymentTransaction) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
|
||||
// UpdateTransaction implements [service.PaymentRepo].
|
||||
func (p *PaymentRepository) UpdateTransaction(ctx context.Context, t *entity.PaymentTransaction) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
|
||||
func NewPaymentRepository(db *sql.DB) *PaymentRepository {
|
||||
return &PaymentRepository{
|
||||
DB: db,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
package repository
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/payment/entity"
|
||||
)
|
||||
|
||||
type PaymentMethodRepository struct {
|
||||
DB *sql.DB
|
||||
}
|
||||
|
||||
// GetGatewayByCode implements [service.PaymentMethodRepo].
|
||||
func (p *PaymentMethodRepository) GetGatewayByCode(ctx context.Context, code string) (entity.Gateway, error) {
|
||||
panic("unimplemented")
|
||||
}
|
||||
|
||||
func NewPaymentMethodRepository(db *sql.DB) *PaymentMethodRepository {
|
||||
return &PaymentMethodRepository{
|
||||
DB: db,
|
||||
}
|
||||
}
|
||||
|
|
@ -1,94 +0,0 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"time"
|
||||
)
|
||||
|
||||
type PaymentStatus string
|
||||
|
||||
const (
|
||||
PaymentStatusPending PaymentStatus = "Pending"
|
||||
PaymentStatusSuccess PaymentStatus = "Success"
|
||||
PaymentStatusFailed PaymentStatus = "Failed"
|
||||
PaymentStatusCancelled PaymentStatus = "Cancelled"
|
||||
//...
|
||||
)
|
||||
|
||||
type Currency string
|
||||
|
||||
const (
|
||||
CurrencyIRR Currency = "IRR"
|
||||
CurrencyUSD Currency = "USD"
|
||||
)
|
||||
|
||||
type TransactionType string
|
||||
|
||||
const (
|
||||
TransactionTypeRequest TransactionType = "request"
|
||||
TransactionTypeVerify TransactionType = "verify"
|
||||
)
|
||||
|
||||
type TransactionStatus string
|
||||
|
||||
const (
|
||||
TransactionStatusPending = "Pending"
|
||||
TransactionStatusSuccess = "Success"
|
||||
TransactionStatusFailed = "Failed"
|
||||
)
|
||||
|
||||
type PayableType string
|
||||
|
||||
const (
|
||||
PayableTypeDonate PayableType = "Donate"
|
||||
PayableTypeOrder PayableType = "Order"
|
||||
PayableTypeWalet PayableType = "WaletCharge"
|
||||
)
|
||||
|
||||
type PaymentMethod struct {
|
||||
ID uint
|
||||
Name string
|
||||
IsActive bool
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
type Gateway struct {
|
||||
ID uint
|
||||
Name string
|
||||
Code string
|
||||
IsActive bool
|
||||
Config json.RawMessage
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
||||
type Payment struct {
|
||||
ID uint
|
||||
UserID uint
|
||||
MethodID uint
|
||||
GatewayID uint
|
||||
PayableType PayableType
|
||||
PayableID uint
|
||||
TotalAmount int64
|
||||
PaidAmount int64
|
||||
Currency Currency
|
||||
Status PaymentStatus
|
||||
Description string
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
PaidAt *time.Time
|
||||
}
|
||||
|
||||
type PaymentTransaction struct {
|
||||
ID uint
|
||||
PaymentID uint
|
||||
Type TransactionType
|
||||
RequestData json.RawMessage
|
||||
ResponseData json.RawMessage
|
||||
RefID string
|
||||
Status TransactionStatus
|
||||
GatewayToken string
|
||||
ErrorMessage string
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
@ -1,8 +1,10 @@
|
|||
package service
|
||||
|
||||
import "git.gocasts.ir/ebhomengo/niki/domain/payment/entity"
|
||||
|
||||
type InitiatePaymentRequest struct {
|
||||
UserID uint
|
||||
PayableType PayableType
|
||||
PayableType entity.PayableType
|
||||
PayableID uint
|
||||
GatewayCode string
|
||||
CallbackURL string
|
||||
|
|
|
|||
|
|
@ -5,18 +5,23 @@ import (
|
|||
"errors"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/payment/entity"
|
||||
)
|
||||
|
||||
type PaymentService struct {
|
||||
repo PaymentRepository
|
||||
gwFactory GatewayFactory
|
||||
paymentRepo PaymentRepo
|
||||
paymentMethodRepo PaymentMethodRepo
|
||||
gwFactory GatewayFactory
|
||||
}
|
||||
|
||||
type PaymentRepository interface {
|
||||
CreatePayment(ctx context.Context, p *Payment) error
|
||||
CreateTransaction(ctx context.Context, t *PaymentTransaction) error
|
||||
UpdateTransaction(ctx context.Context, t *PaymentTransaction) error
|
||||
GetGatewayByCode(ctx context.Context, code string) (*Gateway, error)
|
||||
type PaymentRepo interface {
|
||||
CreatePayment(ctx context.Context, p *entity.Payment) error
|
||||
CreateTransaction(ctx context.Context, t *entity.PaymentTransaction) error
|
||||
UpdateTransaction(ctx context.Context, t *entity.PaymentTransaction) error
|
||||
}
|
||||
type PaymentMethodRepo interface {
|
||||
GetGatewayByCode(ctx context.Context, code string) (entity.Gateway, error)
|
||||
}
|
||||
|
||||
type GatewayFactory interface {
|
||||
|
|
@ -27,43 +32,44 @@ type GatewayPort interface {
|
|||
Request(amount int64, callbackURL string, description string) (token string, redirectURL string, rawReq []byte, rawRes []byte, err error)
|
||||
}
|
||||
|
||||
func NewPaymentService(r PaymentRepository, gwf GatewayFactory) *PaymentService {
|
||||
func NewPaymentService(pr PaymentRepo, pmr PaymentMethodRepo, gwf GatewayFactory) *PaymentService {
|
||||
return &PaymentService{
|
||||
repo: r,
|
||||
gwFactory: gwf,
|
||||
paymentRepo: pr,
|
||||
paymentMethodRepo: pmr,
|
||||
gwFactory: gwf,
|
||||
}
|
||||
}
|
||||
|
||||
func (s *PaymentService) InitiatePayment(ctx context.Context, req InitiatePaymentRequest) (*InitiatePaymentResponse, error) {
|
||||
|
||||
gateway, err := s.repo.GetGatewayByCode(ctx, req.GatewayCode)
|
||||
gateway, err := s.paymentMethodRepo.GetGatewayByCode(ctx, req.GatewayCode)
|
||||
if err != nil || !gateway.IsActive {
|
||||
return nil, errors.New("gateway is not available")
|
||||
}
|
||||
|
||||
payment := &Payment{
|
||||
payment := &entity.Payment{
|
||||
UserID: req.UserID,
|
||||
PayableType: req.PayableType,
|
||||
PayableID: req.PayableID,
|
||||
GatewayID: gateway.ID,
|
||||
TotalAmount: req.Amount,
|
||||
Currency: CurrencyIRR,
|
||||
Status: PaymentStatusPending,
|
||||
Currency: entity.CurrencyIRR,
|
||||
Status: entity.PaymentStatusPending,
|
||||
CreatedAt: time.Now(),
|
||||
UpdatedAt: time.Now(),
|
||||
}
|
||||
if err := s.repo.CreatePayment(ctx, payment); err != nil {
|
||||
if err := s.paymentRepo.CreatePayment(ctx, payment); err != nil {
|
||||
return nil, fmt.Errorf("failed to create payment: %w", err)
|
||||
}
|
||||
|
||||
transaction := &PaymentTransaction{
|
||||
transaction := &entity.PaymentTransaction{
|
||||
PaymentID: payment.ID,
|
||||
Type: TransactionTypeRequest,
|
||||
Status: TransactionStatusPending,
|
||||
Type: entity.TransactionTypeRequest,
|
||||
Status: entity.TransactionStatusPending,
|
||||
CreatedAt: time.Now(),
|
||||
UpdatedAt: time.Now(),
|
||||
}
|
||||
if err := s.repo.CreateTransaction(ctx, transaction); err != nil {
|
||||
if err := s.paymentRepo.CreateTransaction(ctx, transaction); err != nil {
|
||||
return nil, fmt.Errorf("failed to create initial transaction: %w", err)
|
||||
}
|
||||
|
||||
|
|
@ -80,15 +86,15 @@ func (s *PaymentService) InitiatePayment(ctx context.Context, req InitiatePaymen
|
|||
transaction.UpdatedAt = time.Now()
|
||||
|
||||
if gwErr != nil {
|
||||
transaction.Status = TransactionStatusFailed
|
||||
transaction.Status = entity.TransactionStatusFailed
|
||||
transaction.ErrorMessage = gwErr.Error()
|
||||
_ = s.repo.UpdateTransaction(ctx, transaction)
|
||||
_ = s.paymentRepo.UpdateTransaction(ctx, transaction)
|
||||
return nil, fmt.Errorf("gateway request failed: %w", gwErr)
|
||||
}
|
||||
|
||||
transaction.Status = TransactionStatusSuccess
|
||||
transaction.Status = entity.TransactionStatusSuccess
|
||||
transaction.GatewayToken = token
|
||||
if err := s.repo.UpdateTransaction(ctx, transaction); err != nil {
|
||||
if err := s.paymentRepo.UpdateTransaction(ctx, transaction); err != nil {
|
||||
return nil, fmt.Errorf("failed to update transaction with token: %w", err)
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
package service
|
||||
|
||||
type PaymentMethodService struct {
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type Transaction struct {
|
||||
ID uint64
|
||||
UserID uint64
|
||||
Amount float64
|
||||
Currency Currency
|
||||
ActionType TransactionType
|
||||
Timestamp time.Time
|
||||
}
|
||||
|
||||
type TransactionType string
|
||||
|
||||
const (
|
||||
TransactionTypeDeposit TransactionType = "deposit"
|
||||
TransactionTypeWithdraw TransactionType = "withdraw"
|
||||
TransactionTypeRefund TransactionType = "refund"
|
||||
TransactionTypeDonate TransactionType = "donate"
|
||||
)
|
||||
|
||||
type Currency string
|
||||
|
||||
const (
|
||||
IRR Currency = "IRR"
|
||||
USD Currency = "USD"
|
||||
)
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type Wallet struct {
|
||||
ID uint64
|
||||
UserID uint64 // user unique ID
|
||||
Balance float64
|
||||
Currency Currency
|
||||
UpdatedAt time.Time
|
||||
Status WalletStatus // "active", "frozen", "closed"
|
||||
}
|
||||
|
||||
type WalletStatus string
|
||||
|
||||
const (
|
||||
Frozen WalletStatus = "frozen" // when need to check , approve ,validate , solve sth (but deposit is possible)
|
||||
Active WalletStatus = "active" // when everything is ok
|
||||
|
||||
// ??
|
||||
// Closed WalletStatus = "closed" // when need to check , approve ,validate , solve sth (exp : security problem)
|
||||
|
||||
)
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
package param
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
)
|
||||
|
||||
type CreateTransactionRequest struct {
|
||||
UserID uint64 `json:"user_id"`
|
||||
Amount float64 `json:"amount"`
|
||||
Currency entity.Currency `json:"currency"`
|
||||
ActionType entity.TransactionType `json:"action_type"`
|
||||
}
|
||||
|
||||
type InsertTransactionResponse struct {
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
package param
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
)
|
||||
|
||||
type TransactionRequest struct {
|
||||
UserID uint64 `json:"user_id"`
|
||||
}
|
||||
|
||||
type TransactionResponse struct {
|
||||
Transaction []TransactionInfo `json:"transaction"`
|
||||
}
|
||||
|
||||
type TransactionInfo struct {
|
||||
ID uint64 `json:"id"`
|
||||
UserID uint64 `json:"user_id"`
|
||||
Amount float64 `json:"amount"`
|
||||
Currency entity.Currency `json:"currency"`
|
||||
ActionType entity.TransactionType `json:"action_type"`
|
||||
Timestamp time.Time `json:"timestamp"`
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
package param
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
)
|
||||
|
||||
type WalletRequest struct {
|
||||
UserID uint64 `json:"user_id"`
|
||||
}
|
||||
|
||||
type WalletResponse struct {
|
||||
Wallet WalletInfo `json:"wallet"`
|
||||
}
|
||||
|
||||
type WalletInfo struct {
|
||||
Balance float64 `json:"balance"`
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
Status entity.WalletStatus `json:"status"`
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package postgres
|
||||
|
||||
import "git.gocasts.ir/ebhomengo/niki/pkg/database/postgres"
|
||||
|
||||
type DB struct {
|
||||
conn *postgres.DB
|
||||
}
|
||||
|
||||
func New(conn *postgres.DB) *DB {
|
||||
return &DB{conn: conn}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
production:
|
||||
dialect: postgres
|
||||
datasource: "host=127.0.0.1 port=5432 user=wallet password=wallet2123 dbname=wallet_db sslmode=disable"
|
||||
dir: domain/wallet/repository/postgres/migrations
|
||||
table: wallet_migrationsns
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/param"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
)
|
||||
|
||||
func (s Service) CreateTransaction(ctx context.Context, request param.CreateTransactionRequest) (param.InsertTransactionResponse, error) {
|
||||
|
||||
const op = richerror.Op("wallet.service.CreateTransaction")
|
||||
|
||||
transaction := entity.Transaction{
|
||||
ID: 0,
|
||||
UserID: request.UserID,
|
||||
Amount: request.Amount,
|
||||
Currency: request.Currency,
|
||||
ActionType: request.ActionType,
|
||||
Timestamp: time.Now(),
|
||||
}
|
||||
err := s.repo.InsertTransaction(ctx, transaction)
|
||||
if err != nil {
|
||||
return param.InsertTransactionResponse{}, err
|
||||
}
|
||||
|
||||
return param.InsertTransactionResponse{}, nil
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
)
|
||||
|
||||
type Repository interface {
|
||||
GetTransactionListByUserID(ctx context.Context, UserID uint64) ([]entity.Transaction, error)
|
||||
GetWalletByUserID(ctx context.Context, UserID uint64) (entity.Wallet, error)
|
||||
InsertTransaction(ctx context.Context, transaction entity.Transaction) error
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
}
|
||||
|
||||
type Service struct {
|
||||
repo Repository
|
||||
cfg Config
|
||||
}
|
||||
|
||||
func New(repo Repository, cfg Config) Service {
|
||||
|
||||
return Service{repo: repo, cfg: cfg}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/entity"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/param"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
)
|
||||
|
||||
func (s Service) GetUserTransactionHistory(ctx context.Context, request param.TransactionRequest) (param.TransactionResponse, error) {
|
||||
const op = richerror.Op("wallet.service.GetUserTransactionHistory")
|
||||
|
||||
transactionList, err := s.repo.GetTransactionListByUserID(ctx, request.UserID)
|
||||
|
||||
if err != nil {
|
||||
return param.TransactionResponse{}, err
|
||||
}
|
||||
|
||||
return param.TransactionResponse{Transaction: transactionEntityToTransactionInfo(transactionList)}, nil
|
||||
|
||||
}
|
||||
|
||||
func transactionEntityToTransactionInfo(TransactionList []entity.Transaction) []param.TransactionInfo {
|
||||
transactionInfoList := make([]param.TransactionInfo, len(TransactionList))
|
||||
for i, transaction := range TransactionList {
|
||||
transactionInfoList[i] = param.TransactionInfo{
|
||||
ID: transaction.ID,
|
||||
UserID: transaction.UserID,
|
||||
Amount: transaction.Amount,
|
||||
Currency: transaction.Currency,
|
||||
ActionType: transaction.ActionType,
|
||||
Timestamp: transaction.Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
return transactionInfoList
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/wallet/param"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
)
|
||||
|
||||
func (s Service) GetUserWallet(ctx context.Context, request param.WalletRequest) (param.WalletResponse, error) {
|
||||
const op = richerror.Op("wallet.service.GetUserWallet")
|
||||
|
||||
wallet, err := s.repo.GetWalletByUserID(ctx, request.UserID)
|
||||
|
||||
if err != nil {
|
||||
return param.WalletResponse{}, err
|
||||
}
|
||||
|
||||
return param.WalletResponse{
|
||||
Wallet: param.WalletInfo{
|
||||
Balance: wallet.Balance,
|
||||
UpdatedAt: wallet.UpdatedAt,
|
||||
Status: wallet.Status,
|
||||
},
|
||||
}, nil
|
||||
|
||||
}
|
||||
|
|
@ -1,8 +1,5 @@
|
|||
package donate_app
|
||||
|
||||
|
||||
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
)
|
||||
|
|
@ -10,8 +7,3 @@ import (
|
|||
type Config struct {
|
||||
Mysql mysql.Config `koanf:"mariadb"`
|
||||
}
|
||||
|
||||
|
||||
type Config struct{
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
package http
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/campaign/entity"
|
||||
"git.gocasts.ir/ebhomengo/niki/domain/campaign/service"
|
||||
param "git.gocasts.ir/ebhomengo/niki/domain/campaign/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/claim"
|
||||
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
"github.com/labstack/echo/v4"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Handler struct {
|
||||
|
|
@ -19,14 +20,16 @@ func NewHandler(svc service.CampaignService) Handler {
|
|||
|
||||
func (h Handler) createCampaign(c echo.Context) error {
|
||||
|
||||
var req entity.Campaign
|
||||
claims := claim.GetClaimsFromEchoContext(c)
|
||||
|
||||
var req param.CreateCampaignRequest
|
||||
|
||||
req.AdminID = types.ID(claims.UserID)
|
||||
if err := c.Bind(&req); err != nil {
|
||||
return c.JSON(http.StatusBadRequest, map[string]string{
|
||||
"error": "invalid request body",
|
||||
})
|
||||
}
|
||||
req.CreatedAt = time.Now()
|
||||
req.RaisedAmount = 0
|
||||
|
||||
createdID, err := h.svc.CreateCampaign(c.Request().Context(), req)
|
||||
if err != nil {
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
// --- Type Aliases ---
|
||||
package pkg
|
||||
|
||||
type ID uint64
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package campaign;
|
||||
|
||||
option go_package = "git.gocasts.ir/ebhomengo/niki/donate_app/protobuf;campaignpb";
|
||||
|
||||
service CampaignService {
|
||||
rpc CheckAndCompleteCampaigns (CheckAndCompleteCampaignsRequest) returns (CheckAndCompleteCampaignsResponse);
|
||||
}
|
||||
|
||||
message CheckAndCompleteCampaignsRequest {
|
||||
FilterRequest filter = 1;
|
||||
}
|
||||
|
||||
message CheckAndCompleteCampaignsResponse {
|
||||
uint64 total_checked = 1;
|
||||
uint64 total_finished = 2;
|
||||
}
|
||||
|
||||
message FilterRequest {
|
||||
uint32 limit = 1;
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
-- +migrate Up
|
||||
|
||||
CREATE TABLE `campaign_participants` (
|
||||
`id` BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
`campaign_id` BIGINT NOT NULL,
|
||||
`user_id` BIGINT NOT NULL,
|
||||
`amount` DECIMAL(15,2) NOT NULL,
|
||||
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
FOREIGN KEY (`campaign_id`)
|
||||
REFERENCES `campaigns`(`id`)
|
||||
ON DELETE CASCADE,
|
||||
FOREIGN KEY (`user_id`)
|
||||
REFERENCES `users`(`id`)
|
||||
ON DELETE CASCADE,
|
||||
UNIQUE KEY `unique_campaign_user` (`campaign_id`, `user_id`)
|
||||
);
|
||||
|
||||
-- +migrate Down
|
||||
DROP TABLE `campaign_participants`;
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
-- +migrate Up
|
||||
CREATE TABLE `donation_flows` (
|
||||
`id` BIGINT PRIMARY KEY AUTO_INCREMENT,
|
||||
`campaign_id` BIGINT NOT NULL,
|
||||
`user_id` BIGINT NULL,
|
||||
`source_type` VARCHAR(50) NOT NULL, -- e.g., "affiliate", "app", "qr", "sms"
|
||||
`source_name` VARCHAR(100) NOT NULL, -- e.g., "instagram", "donate_app"
|
||||
`referral_code` VARCHAR(100),
|
||||
`link` VARCHAR(255) NOT NULL,
|
||||
`clicks` BIGINT DEFAULT 0,
|
||||
`conversions` BIGINT DEFAULT 0,
|
||||
`donations_total` DECIMAL(15,2) DEFAULT 0.00,
|
||||
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
|
||||
FOREIGN KEY (`campaign_id`)
|
||||
REFERENCES `campaigns`(`id`)
|
||||
ON DELETE CASCADE,
|
||||
|
||||
FOREIGN KEY (`user_id`)
|
||||
REFERENCES `users`(`id`)
|
||||
ON DELETE SET NULL
|
||||
);
|
||||
|
||||
CREATE INDEX `idx_flow_campaign_id` ON `donation_flows`(`campaign_id`);
|
||||
CREATE INDEX `idx_flow_source` ON `donation_flows`(`source_type`, `source_name`);
|
||||
|
||||
-- +migrate Down
|
||||
DROP TABLE IF EXISTS `donation_flows`;
|
||||
|
|
@ -1,11 +1,7 @@
|
|||
package mysql
|
||||
|
||||
import (
|
||||
"context"
|
||||
"git.gocasts.ir/ebhomengo/niki/donate_app/service/entity"
|
||||
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
)
|
||||
|
||||
type DB struct {
|
||||
|
|
@ -15,40 +11,3 @@ type DB struct {
|
|||
func New(db *mysql.DB) *DB {
|
||||
return &DB{conn: db}
|
||||
}
|
||||
|
||||
// Create adds a new participant to a campaign
|
||||
func (d *DB) CreateCampaignParticipants(ctx context.Context, participant entity.CampaignParticipant) (types.ID, error) {
|
||||
const Op = "repository.mysql.campaign_participant.create"
|
||||
|
||||
tx, err := d.conn.Conn().BeginTx(ctx, nil)
|
||||
if err != nil {
|
||||
return 0, richerror.New(Op).WithErr(err)
|
||||
}
|
||||
defer tx.Rollback()
|
||||
|
||||
query := `INSERT INTO campaign_participants (id,campaign_id, user_id, amount , created_at)
|
||||
VALUES (?, ?, ? , ? , NOW())`
|
||||
|
||||
result, err := tx.ExecContext(ctx, query,
|
||||
participant.ID,
|
||||
participant.CampaignID,
|
||||
participant.UserID,
|
||||
participant.Amount,
|
||||
participant.CreatedAt,
|
||||
)
|
||||
|
||||
if err != nil {
|
||||
return 0, richerror.New(Op).WithErr(err)
|
||||
}
|
||||
|
||||
id, err := result.LastInsertId()
|
||||
if err != nil {
|
||||
return 0, richerror.New(Op).WithErr(err)
|
||||
}
|
||||
if err := tx.Commit(); err != nil {
|
||||
return 0, richerror.New(Op).WithErr(err)
|
||||
}
|
||||
|
||||
return types.ID(id), nil
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type ID uint64
|
||||
|
||||
type CampaignParticipant struct {
|
||||
ID ID `json:"id"`
|
||||
CampaignID ID `json:"campaign_id"`
|
||||
UserID ID `json:"user_id"`
|
||||
Amount float64 `json:"amount"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
package entity
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
"time"
|
||||
)
|
||||
|
||||
type DonationApp struct {
|
||||
ID types.ID `json:"id"`
|
||||
CampaignID types.ID `json:"campaign_id"`
|
||||
UserID *types.ID `json:"user_id,omitempty"`
|
||||
SourceType string `json:"source_type"` // : "affiliate", "app", "qr", "sms", "social"
|
||||
SourceName string `json:"source_name"` // "user_name", "donate_app", "instagram"
|
||||
ReferralCode string `json:"referral_code"`
|
||||
Link string `json:"link"`
|
||||
Clicks int64 `json:"clicks"`
|
||||
Conversions int64 `json:"conversions"`
|
||||
DonationsTotal float64 `json:"donations_total"`
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
package service
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/types"
|
||||
"time"
|
||||
)
|
||||
|
||||
type GetCampaignResponse struct {
|
||||
ID types.ID `json:"user_id"`
|
||||
}
|
||||
|
||||
type AddCampaignRequest struct {
|
||||
Title string `json:"title"`
|
||||
Description string `json:"description"`
|
||||
GoalAmount float64 `json:"goal_amount"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
AdminID types.ID `json:"admin_id"`
|
||||
}
|
||||
|
||||
type UpdateCampaignRequest struct {
|
||||
Title *string `json:"title,omitempty"`
|
||||
Description *string `json:"description,omitempty"`
|
||||
GoalAmount *float64 `json:"goal_amount,omitempty"`
|
||||
DeadlineAt *time.Time `json:"deadline_at,omitempty"`
|
||||
Status *string `json:"status,omitempty"` // draft/active/completed/paused/cancelled
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
package service
|
||||
|
|
@ -1 +0,0 @@
|
|||
package service
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
package driverapp
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/account"
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp/delivery/http"
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/http_server"
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
||||
type Application struct {
|
||||
svc service.Service
|
||||
accountClient account.Client
|
||||
handler http.Handler
|
||||
httpServer http.Server
|
||||
config Config
|
||||
}
|
||||
|
||||
func Setup(config Config, conn *grpc.ClientConn) Application {
|
||||
driverValidator := service.NewValidator()
|
||||
accountClient := account.New(conn)
|
||||
driverSvc := service.NewService(config.DriverSvc, accountClient, driverValidator)
|
||||
driverHandler := http.NewHandler(driverSvc)
|
||||
|
||||
httpServer := httpserver.New(config.HttpServer)
|
||||
|
||||
return Application{
|
||||
svc: driverSvc,
|
||||
handler: driverHandler,
|
||||
httpServer: http.New(httpServer, driverHandler),
|
||||
config: config,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func (app Application) Start() {
|
||||
app.httpServer.Serve()
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
package driverapp
|
||||
|
||||
import (
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/kavenegar"
|
||||
"git.gocasts.ir/ebhomengo/niki/adapter/redis"
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp/service"
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/http_server"
|
||||
"git.gocasts.ir/ebhomengo/niki/repository/mysql"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
DriverSvc service.Config `koanf:"service"`
|
||||
HttpServer http_server.Config `koanf:"http_server"`
|
||||
Redis redis.Config `koanf:"redis_db"`
|
||||
MysqlDB mysql.Config `koanf:"mysql_db"`
|
||||
Kavenegar kavenegar.Config `koanf:"kavenegar"`
|
||||
PathOfMigration string `koanf:"path_of_migration"`
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
package http
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/driverapp/service"
|
||||
httpmsg "git.gocasts.ir/ebhomengo/niki/pkg/http_msg"
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
type Handler struct {
|
||||
DriverSvc service.Service
|
||||
}
|
||||
|
||||
func NewHandler(driverSvc service.Service) Handler {
|
||||
return Handler{
|
||||
DriverSvc: driverSvc,
|
||||
}
|
||||
}
|
||||
|
||||
func (h Handler) SendOtp(c echo.Context) error {
|
||||
var req service.SendOtpRequest
|
||||
|
||||
if err := c.Bind(&req); err != nil {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
|
||||
}
|
||||
|
||||
res, err := h.DriverSvc.SendOtp(c.Request().Context(), req)
|
||||
if err != nil {
|
||||
msg, code := httpmsg.Error(err)
|
||||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusOK, res)
|
||||
}
|
||||
|
||||
func (h Handler) loginOrRegister(c echo.Context) error {
|
||||
var req service.LoginOrRegisterRequest
|
||||
|
||||
if err := c.Bind(&req); err != nil {
|
||||
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
|
||||
}
|
||||
|
||||
res, err := h.DriverSvc.LoginOrRegister(c.Request().Context(), req)
|
||||
if err != nil {
|
||||
msg, code := httpmsg.Error(err)
|
||||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusOK, res)
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
package http
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
)
|
||||
|
||||
func (s Server) HealthCheck(c echo.Context) error {
|
||||
return c.JSON(http.StatusOK, echo.Map{
|
||||
"message": "everything is good!",
|
||||
})
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
package http
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/http_server"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
HTTPServer http_server.Server
|
||||
Handler Handler
|
||||
}
|
||||
|
||||
func New(server http_server.Server, handler Handler) Server {
|
||||
return Server{
|
||||
HTTPServer: server,
|
||||
Handler: handler,
|
||||
}
|
||||
}
|
||||
|
||||
func (s Server) Serve() {
|
||||
s.RegisterRoutes()
|
||||
|
||||
if err := s.HTTPServer.Start(); err != nil {
|
||||
fmt.Println("router start error", err)
|
||||
}
|
||||
}
|
||||
|
||||
func (s Server) RegisterRoutes() {
|
||||
v1 := s.HTTPServer.Router.Group("/v1")
|
||||
|
||||
v1.GET("/health_check", s.HealthCheck)
|
||||
v1.POST("/send_otp", s.Handler.SendOtp)
|
||||
v1.POST("/login_or_register", s.Handler.loginOrRegister)
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
package entity
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"git.gocasts.ir/ebhomengo/niki/pkg/types"
|
||||
)
|
||||
|
||||
type Driver struct {
|
||||
ID types.ID
|
||||
FirstName string
|
||||
LastName string
|
||||
PhoneNumber string
|
||||
NationalCode string
|
||||
LicenseNumber string
|
||||
BirthDate time.Time
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue