-
-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathUpdateCheck.java
More file actions
220 lines (180 loc) · 7.81 KB
/
UpdateCheck.java
File metadata and controls
220 lines (180 loc) · 7.81 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
Part of the Processing project - http://processing.org
Copyright (c) 2005-23 Ben Fry and Casey Reas
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package processing.app;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.net.URL;
import java.util.Random;
import javax.swing.JOptionPane;
import processing.app.ui.WelcomeToBeta;
import processing.core.PApplet;
/**
* Threaded class to check for updates in the background.
* <p/>
* This is the class that handles the mind control and stuff for
* spying on our users and stealing their personal information.
* A random ID number is generated for each user, and hits the server
* to check for updates. Also included is the operating system and
* its version and the version of Java being used to run Processing.
* <p/>
* You can read more about this code
* <a href="https://github.com/processing/processing4/wiki/FAQ#checking-for-updates">here</a>.
* <p/>
* Aside from the privacy invasion of knowing that an anonymous Processing
* user opened the software at one time during a 24-hour period somewhere
* in the world, we use the ID number to give us a general idea of how many
* people are using Processing, which helps us when writing grant proposals
* and that kind of thing so that we can keep Processing free. The numbers
* are also sometimes shown in ugly charts presented by Ben and Casey.
*/
public class UpdateCheck {
private final Base base;
static private final String DOWNLOAD_URL = System.getProperty("processing.download.page","https://processing.org/download/");
static private final String LATEST_URL = System.getProperty("processing.download.latest","https://processing.org/download/latest.txt");
static private final long ONE_DAY = 24 * 60 * 60 * 1000;
public static void doCheck(Base base) {
new UpdateCheck(base);
}
public UpdateCheck(Base base) {
this.base = base;
if (isAllowed()) {
new Thread(() -> {
try {
Thread.sleep(5 * 1000); // give the PDE time to get rolling
updateCheck();
} catch (Exception e) {
// This can safely be ignored, too many situations where no net
// connection is available that behave in strange ways.
// Covers likely IOException, InterruptedException, and any others.
}
}, "Update Checker").start();
}
}
/**
* Turned into a separate method so that anyone needed "update.id" will get
* a legit answer. Had a problem with the contribs script where the id
* wouldn't be set so a null id would be sent to the contribs server.
*/
static public long getUpdateID() {
// generate a random id in case none exists yet
Random r = new Random();
long id = r.nextLong();
String idString = Preferences.get("update.id");
if (idString != null) {
id = Long.parseLong(idString);
} else {
Preferences.set("update.id", String.valueOf(id));
}
return id;
}
public void updateCheck() throws IOException {
String info = PApplet.urlEncode(getUpdateID() + "\t" +
PApplet.nf(Base.getRevision(), 4) + "\t" +
System.getProperty("java.version") + "\t" +
System.getProperty("java.vendor") + "\t" +
System.getProperty("os.name") + "\t" +
System.getProperty("os.version") + "\t" +
System.getProperty("os.arch"));
int latest = readInt(LATEST_URL + "?" + info);
int revision = Base.getRevision();
String lastString = Preferences.get("update.last");
long now = System.currentTimeMillis();
if (lastString != null) {
long when = Long.parseLong(lastString);
if (now - when < ONE_DAY && !Base.DEBUG) {
// don't annoy the shit outta people
return;
}
}
Preferences.set("update.last", String.valueOf(now));
if (base.activeEditor != null) {
if (latest > revision) {
System.out.println("You are running Processing revision 0" +
revision + ", the latest build is 0" +
latest + ".");
// Assume the person is busy downloading the latest version
// offerToUpdateContributions = !promptToVisitDownloadPage();
promptToVisitDownloadPage();
}
int lastBetaWelcomeSeen = Preferences.getInteger("update.beta_welcome");
if(latest < revision && revision != lastBetaWelcomeSeen ) {
WelcomeToBeta.showWelcomeToBeta();
}
/*
if (offerToUpdateContributions) {
// Wait for xml file to be downloaded and updates to come in.
// (this should really be handled better).
Thread.sleep(5 * 1000);
if ((!base.contributionManagerFrame.hasAlreadyBeenOpened()
&& (base.contributionManagerFrame.hasUpdates(base)))){
promptToOpenContributionManager();
}
}
*/
}
}
protected void promptToVisitDownloadPage() {
String prompt = Language.text("update_check.updates_available.core");
Object[] options = { Language.text("prompt.yes"), Language.text("prompt.no") };
int result = JOptionPane.showOptionDialog(base.activeEditor,
prompt,
Language.text("update_check"),
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);
if (result == JOptionPane.YES_OPTION) {
Platform.openURL(DOWNLOAD_URL);
}
}
/*
protected boolean promptToOpenContributionManager() {
String contributionPrompt =
Language.text("update_check.updates_available.contributions");
Object[] options = {
Language.text("prompt.yes"), Language.text("prompt.no")
};
int result = JOptionPane.showOptionDialog(base.activeEditor,
contributionPrompt,
Language.text("update_check"),
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);
if (result == JOptionPane.YES_OPTION) {
ContributionManager.openUpdates();
return true;
}
return false;
}
*/
protected int readInt(String filename) throws IOException {
URL url = new URL(filename);
InputStream stream = url.openStream();
InputStreamReader isr = new InputStreamReader(stream);
BufferedReader reader = new BufferedReader(isr);
return Integer.parseInt(reader.readLine());
}
static public boolean isAllowed() {
// Disable update checks for the paranoid
return Preferences.getBoolean("update.check");
}
}