package channels import ( "context" "telesrv/internal/domain" ) // SetActiveCall 写入/清除频道行上的活跃群通话关联(groupcalls 模块专用)。 func (s *Service) SetActiveCall(ctx context.Context, channelID, callID, callAccessHash int64, notEmpty bool) (domain.Channel, error) { if s == nil || s.channels == nil || channelID == 0 { return domain.Channel{}, domain.ErrChannelInvalid } return s.channels.SetActiveCall(ctx, channelID, callID, callAccessHash, notEmpty) } // AppendCallServiceMessage 生成群通话服务消息(started/ended/invite,带频道 pts)。 func (s *Service) AppendCallServiceMessage(ctx context.Context, channelID, senderUserID int64, date int, action domain.ChannelMessageAction) (domain.SendChannelMessageResult, error) { if s == nil || s.channels == nil { return domain.SendChannelMessageResult{}, domain.ErrChannelInvalid } if err := s.ensureCanSend(ctx, senderUserID); err != nil { return domain.SendChannelMessageResult{}, err } return s.channels.AppendCallServiceMessage(ctx, channelID, senderUserID, date, action) }