This repository has been archived by the owner on Aug 20, 2023. It is now read-only.
forked from tulir/whatsmeow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.go
81 lines (73 loc) · 2.33 KB
/
update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright (c) 2022 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package whatsmeow
import (
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"go.mau.fi/whatsmeow/socket"
"go.mau.fi/whatsmeow/store"
)
// CheckUpdateResponse is the data returned by CheckUpdate.
type CheckUpdateResponse struct {
IsBroken bool
IsBelowSoft bool
IsBelowHard bool
CurrentVersion string
ParsedVersion store.WAVersionContainer `json:"-"`
}
// CheckUpdateURL is the base URL to check for WhatsApp web updates.
const CheckUpdateURL = "https://web.whatsapp.com/check-update"
// CheckUpdate asks the WhatsApp servers if there is an update available
// (using the HTTP client and proxy settings of this whatsmeow Client instance).
func (cli *Client) CheckUpdate() (respData CheckUpdateResponse, err error) {
return CheckUpdate(cli.http)
}
// CheckUpdate asks the WhatsApp servers if there is an update available.
func CheckUpdate(httpClient *http.Client) (respData CheckUpdateResponse, err error) {
var reqURL *url.URL
reqURL, err = url.Parse(CheckUpdateURL)
if err != nil {
err = fmt.Errorf("failed to parse check update URL: %w", err)
return
}
q := reqURL.Query()
q.Set("version", store.GetWAVersion().String())
q.Set("platform", "web")
reqURL.RawQuery = q.Encode()
var req *http.Request
req, err = http.NewRequest(http.MethodGet, reqURL.String(), nil)
if err != nil {
err = fmt.Errorf("failed to prepare request: %w", err)
return
}
req.Header.Set("Origin", socket.Origin)
req.Header.Set("Referer", socket.Origin+"/")
var resp *http.Response
resp, err = httpClient.Do(req)
if err != nil {
err = fmt.Errorf("failed to send request: %w", err)
return
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
body, _ := io.ReadAll(resp.Body)
err = fmt.Errorf("unexpected response with status %d: %s", resp.StatusCode, body)
return
}
err = json.NewDecoder(resp.Body).Decode(&respData)
if err != nil {
err = fmt.Errorf("failed to decode response body (status %d): %w", resp.StatusCode, err)
return
}
respData.ParsedVersion, err = store.ParseVersion(respData.CurrentVersion)
if err != nil {
err = fmt.Errorf("failed to parse version string: %w", err)
}
return
}