blob: 608128f4e87f7e8641c5941a62fd8c32d42a5174 (
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
|
package backend
import (
"log"
"time"
"0xacab.org/leap/bitmask-vpn/pkg/config"
)
func wantDonations() bool {
if config.AskForDonations == "true" {
return true
}
return false
}
func needsDonationReminder() bool {
return ctx.cfg.NeedsDonationReminder()
}
func donateAccepted() {
stmut.Lock()
defer stmut.Unlock()
ctx.DonateDialog = false
log.Println("marking as donated")
ctx.cfg.SetDonated()
go trigger(OnStatusChanged)
}
func donateRejected() {
timer := time.NewTimer(time.Hour)
go func() {
<-timer.C
showDonate()
}()
}
func showDonate() {
stmut.Lock()
defer stmut.Unlock()
ctx.DonateDialog = true
ctx.cfg.SetLastReminded()
go trigger(OnStatusChanged)
}
|