aboutsummaryrefslogtreecommitdiff
path: root/pkg/eax/updatemgr.go
blob: d1a6a59e6308853f04439de5854283ef3672d72a (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package eax

import (
	"context"
	"encoding/json"
	"errors"
	"fmt"
	"net/http"
	"strconv"
	"sync"
	"time"
)

// UpdateMgr manages EAX client version information.
type UpdateMgr struct {
	// HTTP client to use. If not provided, [net/http.DefaultClient] will be
	// used.
	Client *http.Client

	// Timeout is the timeout for refreshing tokens. If zero, a reasonable
	// default is used. If negative, there is no timeout.
	Timeout time.Duration

	// Interval to update at. If zero, will not auto-update.
	AutoUpdateInterval time.Duration

	// Auto-update staged roll-out bucket.
	AutoUpdateBucket int

	// Auto-update backoff, if provided, checks if another auto-update is
	// allowed after a failure. If it returns false, ErrAutoUpdateBackoff will be
	// returned from the function triggering the auto-update.
	AutoUpdateBackoff func(err error, time time.Time, count int) bool

	// AutoUpdateHook is called for every auto-update attempt with the new (or
	// current if error) version, and any error which occurred.
	AutoUpdateHook func(v string, err error)

	verInit     sync.Once
	verPf       bool       // ensures only one auto-update runs at a time
	verCv       *sync.Cond // allows other goroutines to wait for that update to complete
	verErr      error      // last auto-update error
	verErrTime  time.Time  // last auto-update error time
	verErrCount int        // consecutive auto-update errors
	ver         string     // current version
	verTime     time.Time  // last update check time
}

var ErrAutoUpdateBackoff = errors.New("not updating eax client version due to backoff")

func (u *UpdateMgr) init() {
	u.verInit.Do(func() {
		u.verCv = sync.NewCond(new(sync.Mutex))
	})
}

// SetVersion sets the current version.
func (u *UpdateMgr) SetVersion(v string) {
	u.init()
	u.verCv.L.Lock()
	for u.verPf {
		u.verCv.Wait()
	}
	u.ver = v
	u.verErr = nil
	u.verTime = time.Now()
	u.verCv.L.Unlock()
}

// Update gets the latest version, following u.AutoUpdateInterval if provided,
// unless the version is not set or force is true. If another update is in
// progress, it waits for the result of it. True is returned (on success or
// failure) if this call performed a update. This function may block for up to
// Timeout.
func (u *UpdateMgr) Update(force bool) (string, bool, error) {
	u.init()
	if u.verCv.L.Lock(); u.verPf {
		for u.verPf {
			u.verCv.Wait()
		}
		defer u.verCv.L.Unlock()
		return u.ver, false, u.verErr
	} else {
		if force || u.ver == "" || (u.AutoUpdateInterval != 0 && time.Since(u.verTime) > u.AutoUpdateInterval) {
			u.verPf = true
			u.verCv.L.Unlock()
			defer func() {
				u.verCv.L.Lock()
				u.verCv.Broadcast()
				u.verPf = false
				u.verCv.L.Unlock()
			}()
		} else {
			defer u.verCv.L.Unlock()
			return u.ver, false, u.verErr
		}
	}
	if u.verErr != nil && u.AutoUpdateBackoff != nil {
		if !u.AutoUpdateBackoff(u.verErr, u.verErrTime, u.verErrCount) {
			return u.ver, true, fmt.Errorf("%w (%d attempts, last error: %v)", ErrAutoUpdateBackoff, u.verErrCount, u.verErr)
		}
	}
	u.verErr = func() error {
		var ctx context.Context
		var cancel context.CancelFunc
		if u.Timeout > 0 {
			ctx, cancel = context.WithTimeout(context.Background(), u.Timeout)
		} else if u.Timeout == 0 {
			ctx, cancel = context.WithTimeout(context.Background(), time.Second*15)
		} else {
			ctx, cancel = context.WithCancel(context.Background())
		}
		defer cancel()

		req, err := http.NewRequestWithContext(ctx, http.MethodGet, "https://autopatch.juno.ea.com/autopatch/upgrade/buckets/"+strconv.Itoa(u.AutoUpdateBucket), nil)
		if err != nil {
			return err
		}
		if u.ver != "" {
			req.Header.Set("User-Agent", "EADesktop/"+u.ver)
		} else {
			req.Header.Set("User-Agent", "")
		}

		cl := u.Client
		if cl == nil {
			cl = http.DefaultClient
		}

		resp, err := cl.Do(req)
		if err != nil {
			return err
		}
		defer resp.Body.Close()

		var obj struct {
			Minimum struct {
				Version        string `json:"version"`
				ActivationDate string `json:"activationDate"`
			} `json:"minimum"`
			Recommended struct {
				Version string `json:"version"`
			} `json:"recommended"`
		}
		if resp.StatusCode != http.StatusOK {
			return fmt.Errorf("response status %d (%s)", resp.StatusCode, resp.Status)
		}
		if err := json.NewDecoder(resp.Body).Decode(&obj); err != nil {
			return fmt.Errorf("parse autopatch response: %w", err)
		}

		var version string
		if v := obj.Minimum.Version; v != "" {
			version = v
		}
		if v := obj.Recommended.Version; v != "" {
			version = v
		}
		if version == "" {
			return fmt.Errorf("parse autopatch response: missing minimum or recommended version")
		}
		u.ver = version
		u.verTime = time.Now()
		return nil
	}()
	if u.verErrCount != 0 {
		u.verErr = fmt.Errorf("%w (attempt %d)", u.verErr, u.verErrCount)
	}
	if u.verErr != nil {
		u.verErrCount++
		u.verErrTime = time.Now()
	} else {
		u.verErrCount = 0
		u.verErrTime = time.Time{}
	}
	if u.AutoUpdateHook != nil {
		go u.AutoUpdateHook(u.ver, u.verErr)
	}
	return u.ver, true, u.verErr
}