Просмотр исходного кода

Check errors for GetGroupMetaData

When a request for GroupMetadata fails, WhatsApp sends an JSON object
containing a status field: `{"status":500}`. In my tests, it sends the
codes 401, 404 and 500 which might have the meaning of the HTTP status
codes. At least, we don't have data to update the portal and should stop
doing anything.
Jörg Sommer 6 лет назад
Родитель
Сommit
abe73684d0
2 измененных файлов с 12 добавлено и 0 удалено
  1. 10 0
      portal.go
  2. 2 0
      whatsapp-ext/whatsapp.go

+ 10 - 0
portal.go

@@ -316,6 +316,16 @@ func (portal *Portal) UpdateMetadata(user *User) bool {
 		portal.log.Errorln(err)
 		return false
 	}
+	if metadata.Status != 0 {
+		// 401: access denied
+		// 404: group does (no longer) exist
+		// 500: ??? happens with status@broadcast
+
+		// TODO: update the room, e.g. change priority level
+		//   to send messages to moderator
+		return false
+	}
+
 	portal.SyncParticipants(metadata)
 	update := false
 	update = portal.UpdateName(metadata.Name, metadata.NameSetBy) || update

+ 2 - 0
whatsapp-ext/whatsapp.go

@@ -61,6 +61,8 @@ type GroupInfo struct {
 
 	GroupCreated int64 `json:"creation"`
 
+	Status int16 `json:"status"`
+
 	Participants []struct {
 		JID          string `json:"id"`
 		IsAdmin      bool   `json:"isAdmin"`