Always add an id to IQ queries

This commit is contained in:
Wichert Akkerman
2019-10-28 21:21:35 +01:00
committed by Mickaël Rémond
parent 0227596f90
commit 21f6a549db
4 changed files with 29 additions and 1 deletions

View File

@@ -2,6 +2,8 @@ package stanza
import (
"encoding/xml"
"github.com/google/uuid"
)
/*
@@ -31,8 +33,12 @@ type IQPayload interface {
}
func NewIQ(a Attrs) IQ {
// TODO generate IQ ID if not set
// TODO ensure that type is set, as it is required
if a.Id == "" {
if id, err := uuid.NewRandom(); err == nil {
a.Id = id.String()
}
}
return IQ{
XMLName: xml.Name{Local: "iq"},
Attrs: a,