You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
678 B

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. package channel
  2. import (
  3. "context"
  4. "practice_Go/api/channel/v1"
  5. "practice_Go/internal/dao"
  6. "practice_Go/internal/model/entity"
  7. )
  8. func (c *ControllerV1) GetChannel(ctx context.Context, req *v1.GetChannelReq) (res *v1.GetChannelRes, err error) {
  9. res = &v1.GetChannelRes{}
  10. err = dao.GoChannels.Ctx(ctx).WherePri(req.Id).Scan(&res.Channel)
  11. query := dao.GoShows.Ctx(ctx).With(entity.GoUsers{}).Where("channel_id =?", req.Id)
  12. if req.FlagType != 0 {
  13. query = query.Where("flag_type =?", req.FlagType)
  14. }
  15. err = query.Scan(&res.List)
  16. res.Channel.Status, err = dao.GoChannelSubscriptions.Ctx(ctx).Wheref("channel_id =? and user_id =?", req.Id, req.UserId).Exist()
  17. return
  18. }