37 lines
769 B
Go
37 lines
769 B
Go
|
package dto
|
||
|
|
||
|
import "github.com/pion/webrtc/v3"
|
||
|
|
||
|
type PeerDTO struct {
|
||
|
RoomId string `json:"roomId"`
|
||
|
ID uint64 `json:"id"`
|
||
|
}
|
||
|
|
||
|
func (model *PeerDTO) Validate() bool {
|
||
|
return len(model.RoomId) > 0
|
||
|
}
|
||
|
|
||
|
type CreatePeerReqModel struct {
|
||
|
PeerDTO
|
||
|
CanPublish bool `json:"canPublish"`
|
||
|
IsCaller bool `json:"isCaller"`
|
||
|
}
|
||
|
|
||
|
type AddPeerICECandidateReqModel struct {
|
||
|
PeerDTO
|
||
|
ICECandidate webrtc.ICECandidateInit `json:"iceCandidate"`
|
||
|
}
|
||
|
|
||
|
func (model *AddPeerICECandidateReqModel) Validate() bool {
|
||
|
return model.PeerDTO.Validate() // && len(model.ICECandidate.Candidate) > 0
|
||
|
}
|
||
|
|
||
|
type SetSDPReqModel struct {
|
||
|
PeerDTO
|
||
|
SDP webrtc.SessionDescription `json:"sdp"`
|
||
|
}
|
||
|
|
||
|
func (model *SetSDPReqModel) Validate() bool {
|
||
|
return model.PeerDTO.Validate() && len(model.SDP.SDP) > 0
|
||
|
}
|