shortenlogic.go 733 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package logic
  2. import (
  3. "context"
  4. "shorturl/api/internal/svc"
  5. "shorturl/api/internal/types"
  6. "shorturl/rpc/transform/transformer"
  7. "github.com/tal-tech/go-zero/core/logx"
  8. )
  9. type ShortenLogic struct {
  10. logx.Logger
  11. ctx context.Context
  12. svcCtx *svc.ServiceContext
  13. }
  14. func NewShortenLogic(ctx context.Context, svcCtx *svc.ServiceContext) ShortenLogic {
  15. return ShortenLogic{
  16. Logger: logx.WithContext(ctx),
  17. ctx: ctx,
  18. svcCtx: svcCtx,
  19. }
  20. }
  21. func (l *ShortenLogic) Shorten(req types.ShortenReq) (*types.ShortenResp, error) {
  22. resp, err := l.svcCtx.Transformer.Shorten(l.ctx, &transformer.ShortenReq{
  23. Url: req.Url,
  24. })
  25. if err != nil {
  26. return nil, err
  27. }
  28. return &types.ShortenResp{
  29. Shorten: resp.Shorten,
  30. }, nil
  31. }