You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
722 B
Go
39 lines
722 B
Go
package logic
|
|
|
|
import (
|
|
"context"
|
|
|
|
"shorturl/api/internal/svc"
|
|
"shorturl/api/internal/types"
|
|
"shorturl/rpc/transform/transformer"
|
|
|
|
"github.com/tal-tech/go-zero/core/logx"
|
|
)
|
|
|
|
type ExpandLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewExpandLogic(ctx context.Context, svcCtx *svc.ServiceContext) ExpandLogic {
|
|
return ExpandLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *ExpandLogic) Expand(req types.ExpandReq) (*types.ExpandResp, error) {
|
|
resp, err := l.svcCtx.Transformer.Expand(l.ctx, &transformer.ExpandReq{
|
|
Shorten: req.Shorten,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &types.ExpandResp{
|
|
Url: resp.Url,
|
|
}, nil
|
|
}
|