-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
225 additions
and
0 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
backend/adaptor/service_server/converter/user_converter.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package converter | ||
|
||
import ( | ||
"github.com/ritscc/Snack/domain/model" | ||
pbUser "github.com/ritscc/Snack/pb/user/v1" | ||
|
||
"github.com/ritscc/Snack/logic/bto" | ||
) | ||
|
||
type UserConverter struct { | ||
} | ||
|
||
func(converter UserConverter) UserTopbUser(user *model.User) *pbUser.User { | ||
return &pbUser.User{ | ||
UserId: user.UserID, | ||
Username: user.UserName, | ||
Nick: user.Nick, | ||
RealName: user.RealName, | ||
Avatar: user.Avatar, | ||
Role: user.Role, | ||
Locale: user.Locale, | ||
RitsEmail: user.RitsEmail, | ||
OwnEmail: &user.OwnEmail, | ||
Comment: user.Comment, | ||
Status: pbUser.Status(user.Status), | ||
Services: &pbUser.Service{ | ||
Twitter: &user.Services.Twitter, | ||
Github: &user.Services.Github, | ||
Discord: &user.Services.Discord, | ||
}, | ||
} | ||
} | ||
|
||
func(converter UserConverter) PbUserToUser(user *pbUser.User) *model.User { | ||
return &model.User{ | ||
UserID: user.UserId, | ||
UserName: user.Username, | ||
Nick: user.Nick, | ||
RealName: user.RealName, | ||
Avatar: user.Avatar, | ||
Role: user.Role, | ||
Locale: user.Locale, | ||
RitsEmail: user.RitsEmail, | ||
OwnEmail: *user.OwnEmail, | ||
Comment: user.Comment, | ||
Status: model.Status(user.Status), | ||
Services: &model.Service{ | ||
Twitter: *user.Services.Twitter, | ||
Github: *user.Services.Github, | ||
Discord: *user.Services.Discord, | ||
}, | ||
} | ||
} | ||
|
||
func(converter UserConverter) PbCreateUserRequestToCreateUserRequest(req *pbUser.CreateUserRequest) *bto.CreateUserRequest { | ||
return &bto.CreateUserRequest{ | ||
Username: req.Username, | ||
Email: req.Email, | ||
Password: req.Password, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package service_server | ||
|
||
import ( | ||
"context" | ||
|
||
codes "google.golang.org/grpc/codes" | ||
status "google.golang.org/grpc/status" | ||
emptypb "google.golang.org/protobuf/types/known/emptypb" | ||
|
||
"github.com/ritscc/Snack/adaptor/service_server/converter" | ||
"github.com/ritscc/Snack/logic/interactor" | ||
pbUser "github.com/ritscc/Snack/pb/user/v1" | ||
) | ||
|
||
type UserService struct { | ||
converter converter.UserConverter | ||
interactor interactor.UserInteractor | ||
} | ||
|
||
func InitUserService() *UserService { | ||
return &UserService{} | ||
} | ||
|
||
func (service *UserService) CreateUser(ctx context.Context, pbReq *pbUser.CreateUserRequest) (*emptypb.Empty, error) { | ||
if service == nil { | ||
return nil, status.Errorf(codes.Internal, "UserService is nil") | ||
} | ||
|
||
req := service.converter.PbCreateUserRequestToCreateUserRequest(pbReq) | ||
service.interactor.CreateUser(ctx, req) | ||
res := new(emptypb.Empty) | ||
|
||
return res, nil | ||
} | ||
|
||
func (service *UserService) GetUser(ctx context.Context, req *pbUser.GetUserRequest) (*pbUser.User, error) { | ||
if service == nil { | ||
return nil, status.Errorf(codes.Internal, "UserService is nil") | ||
} | ||
|
||
user, err := service.interactor.GetUser(ctx, req.UserId) | ||
if err != nil { | ||
return nil, status.Errorf(codes.Internal, "err") | ||
} | ||
|
||
pbUser := service.converter.UserTopbUser(user) | ||
|
||
return pbUser, nil | ||
} | ||
|
||
func (service *UserService) UpdateUser(ctx context.Context, pbUser *pbUser.User) (*emptypb.Empty, error) { | ||
if service == nil { | ||
return nil, status.Errorf(codes.Internal, "UserService is nil") | ||
} | ||
|
||
user := service.converter.PbUserToUser(pbUser) | ||
if err := service.interactor.UpdateUser(ctx, user); err != nil { | ||
return nil, status.Errorf(codes.Internal, "err") | ||
} | ||
res := new(emptypb.Empty) | ||
|
||
return res, nil | ||
} | ||
|
||
func (service *UserService) DeleteUser(ctx context.Context, e *emptypb.Empty) (*emptypb.Empty, error) { | ||
if service == nil { | ||
return nil, status.Errorf(codes.Internal, "UserService is nil") | ||
} | ||
|
||
service.interactor.DeleteUser(ctx) | ||
|
||
res := new(emptypb.Empty) | ||
|
||
return res, nil | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package model | ||
|
||
const ( | ||
STATUS_ONLINE Status = 0 | ||
STATUS_OFFLINE Status = 1 | ||
) | ||
|
||
type User struct { | ||
UserID int64 | ||
UserName string | ||
Nick string | ||
RealName string | ||
Avatar string | ||
Role string | ||
Locale string | ||
RitsEmail string | ||
OwnEmail string | ||
Comment string | ||
Status Status | ||
Services *Service | ||
} | ||
|
||
type Status int32 | ||
|
||
type Service struct { | ||
Twitter string | ||
Github string | ||
Discord string | ||
} | ||
|
||
type UserService interface { | ||
GetUser() | ||
GetUsers() | ||
CreateUser() | ||
UpdateUser() | ||
DeleteUser() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package bto | ||
|
||
type CreateUserRequest struct { | ||
Username string | ||
Email string | ||
Password string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package interactor | ||
|
||
import ( | ||
"fmt" | ||
"context" | ||
|
||
"github.com/ritscc/Snack/domain/model" | ||
"github.com/ritscc/Snack/logic/bto" | ||
) | ||
|
||
type UserInteractor struct { | ||
} | ||
|
||
func (interactor *UserInteractor) CreateUser(context.Context, *bto.CreateUserRequest) error { | ||
if interactor == nil { | ||
return fmt.Errorf("UserInteractor is nil") | ||
} | ||
return nil | ||
} | ||
|
||
func (interactor *UserInteractor) GetUser(ctx context.Context, userID int64) (*model.User, error) { | ||
if interactor == nil { | ||
return nil, fmt.Errorf("UserInteractor is nil") | ||
} | ||
|
||
user := &model.User{} | ||
|
||
return user, nil | ||
} | ||
|
||
func (interactor *UserInteractor) UpdateUser(context.Context, *model.User) error { | ||
if interactor == nil { | ||
return fmt.Errorf("UserInteractor is nil") | ||
} | ||
return nil | ||
} | ||
|
||
func (interactor *UserInteractor) DeleteUser(context.Context) error { | ||
if interactor == nil { | ||
return fmt.Errorf("UserInteractor is nil") | ||
} | ||
return nil | ||
} | ||
|