Files
services/sentiment/handler/sentiment.go
2021-09-09 13:28:12 +01:00

32 lines
648 B
Go

package handler
import (
"context"
"github.com/micro/micro/v3/service/errors"
"github.com/micro/services/sentiment/model"
pb "github.com/micro/services/sentiment/proto"
)
type Sentiment struct{}
func (e *Sentiment) Analyze(ctx context.Context, req *pb.AnalyzeRequest, rsp *pb.AnalyzeResponse) error {
if len(req.Text) == 0 {
return errors.BadRequest("sentiment.analyze", "text is blank")
}
if len(req.Lang) == 0 {
req.Lang = "english"
}
if req.Lang != "english" {
return errors.BadRequest("sentiment.analyze", "only support english")
}
rsp.Score = model.Analyze(req.Text)
// TODO: more complex word scoring
return nil
}