-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathPushService.java
350 lines (289 loc) · 10.4 KB
/
PushService.java
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
package nl.martijndwars.webpush;
import com.google.common.io.BaseEncoding;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ByteArrayEntity;
import org.apache.http.impl.nio.client.CloseableHttpAsyncClient;
import org.apache.http.impl.nio.client.HttpAsyncClients;
import org.apache.http.message.BasicHeader;
import org.bouncycastle.jce.ECNamedCurveTable;
import org.bouncycastle.jce.interfaces.ECPublicKey;
import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec;
import org.bouncycastle.math.ec.ECPoint;
import org.jose4j.jws.AlgorithmIdentifiers;
import org.jose4j.jws.JsonWebSignature;
import org.jose4j.jwt.JwtClaims;
import org.jose4j.lang.JoseException;
import java.io.IOException;
import java.security.*;
import java.security.interfaces.ECPrivateKey;
import java.security.spec.InvalidKeySpecException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import static nl.martijndwars.webpush.Utils.CURVE;
public class PushService {
private static final SecureRandom SECURE_RANDOM = new SecureRandom();
/**
* The Google Cloud Messaging API key (for pre-VAPID in Chrome)
*/
private String gcmApiKey;
/**
* Subject used in the JWT payload (for VAPID)
*/
private String subject;
/**
* The public key (for VAPID)
*/
private PublicKey publicKey;
/**
* The private key (for VAPID)
*/
private PrivateKey privateKey;
/**
* Http client
*/
private CloseableHttpAsyncClient closeableHttpAsyncClient;
public PushService() {
}
public PushService(String gcmApiKey) {
this.gcmApiKey = gcmApiKey;
}
public PushService(KeyPair keyPair, String subject) {
this.publicKey = keyPair.getPublic();
this.privateKey = keyPair.getPrivate();
this.subject = subject;
}
public PushService(String publicKey, String privateKey, String subject) throws GeneralSecurityException {
this.publicKey = Utils.loadPublicKey(publicKey);
this.privateKey = Utils.loadPrivateKey(privateKey);
this.subject = subject;
}
/**
* Encrypt the getPayload using the user's public key using Elliptic Curve
* Diffie Hellman cryptography over the prime256v1 curve.
*
* @return An Encrypted object containing the public key, salt, and
* ciphertext, which can be sent to the other party.
*/
public static Encrypted encrypt(byte[] buffer, PublicKey userPublicKey, byte[] userAuth, int padSize) throws GeneralSecurityException, IOException {
ECNamedCurveParameterSpec parameterSpec = ECNamedCurveTable.getParameterSpec("prime256v1");
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("ECDH", "BC");
keyPairGenerator.initialize(parameterSpec);
KeyPair serverKey = keyPairGenerator.generateKeyPair();
Map<String, KeyPair> keys = new HashMap<>();
keys.put("server-key-id", serverKey);
Map<String, String> labels = new HashMap<>();
labels.put("server-key-id", "P-256");
byte[] salt = new byte[16];
SECURE_RANDOM.nextBytes(salt);
HttpEce httpEce = new HttpEce(keys, labels);
byte[] ciphertext = httpEce.encrypt(buffer, salt, null, "server-key-id", userPublicKey, userAuth, padSize);
return new Encrypted.Builder()
.withSalt(salt)
.withPublicKey(serverKey.getPublic())
.withCiphertext(ciphertext)
.build();
}
/**
* Send a notification and wait for the response.
*
* @param notification
* @return
* @throws GeneralSecurityException
* @throws IOException
* @throws JoseException
* @throws ExecutionException
* @throws InterruptedException
*/
public HttpResponse send(Notification notification) throws GeneralSecurityException, IOException, JoseException, ExecutionException, InterruptedException {
try {
return sendAsync(notification).get();
} catch (ExecutionException e) {
destroyClient();
throw e;
}
}
/**
* Send a notification, but don't wait for the response.
*
* @param notification
* @return
* @throws GeneralSecurityException
* @throws IOException
* @throws JoseException
*/
public Future<HttpResponse> sendAsync(Notification notification) throws GeneralSecurityException, IOException, JoseException {
HttpPost httpPost = preparePost(notification);
return getClient().execute(httpPost, new ClosableCallback(closeableHttpAsyncClient));
}
/**
* Prepare a HttpPost for Apache async http client
*
* @param notification
* @return
* @throws GeneralSecurityException
* @throws IOException
* @throws JoseException
*/
public HttpPost preparePost(Notification notification) throws GeneralSecurityException, IOException, JoseException {
assert (verifyKeyPair());
BaseEncoding base64url = BaseEncoding.base64Url();
Encrypted encrypted = encrypt(
notification.getPayload(),
notification.getUserPublicKey(),
notification.getUserAuth(),
notification.getPadSize()
);
byte[] dh = Utils.savePublicKey((ECPublicKey) encrypted.getPublicKey());
byte[] salt = encrypted.getSalt();
HttpPost httpPost = new HttpPost(notification.getEndpoint());
httpPost.addHeader("TTL", String.valueOf(notification.getTTL()));
Map<String, String> headers = new HashMap<>();
if (notification.hasPayload()) {
headers.put("Content-Type", "application/octet-stream");
headers.put("Content-Encoding", "aesgcm");
headers.put("Encryption", "salt=" + base64url.omitPadding().encode(salt));
headers.put("Crypto-Key", "dh=" + base64url.encode(dh));
httpPost.setEntity(new ByteArrayEntity(encrypted.getCiphertext()));
}
if (notification.isGcm()) {
if (gcmApiKey == null) {
throw new IllegalStateException("An GCM API key is needed to send a push notification to a GCM endpoint.");
}
headers.put("Authorization", "key=" + gcmApiKey);
}
if (vapidEnabled() && !notification.isGcm()) {
JwtClaims claims = new JwtClaims();
claims.setAudience(notification.getOrigin());
claims.setExpirationTimeMinutesInTheFuture(12 * 60);
claims.setSubject(subject);
JsonWebSignature jws = new JsonWebSignature();
jws.setHeader("typ", "JWT");
jws.setHeader("alg", "ES256");
jws.setPayload(claims.toJson());
jws.setKey(privateKey);
jws.setAlgorithmHeaderValue(AlgorithmIdentifiers.ECDSA_USING_P256_CURVE_AND_SHA256);
headers.put("Authorization", "WebPush " + jws.getCompactSerialization());
byte[] pk = Utils.savePublicKey((ECPublicKey) publicKey);
if (headers.containsKey("Crypto-Key")) {
headers.put("Crypto-Key", headers.get("Crypto-Key") + ";p256ecdsa=" + base64url.omitPadding().encode(pk));
} else {
headers.put("Crypto-Key", "p256ecdsa=" + base64url.encode(pk));
}
}
for (Map.Entry<String, String> entry : headers.entrySet()) {
httpPost.addHeader(new BasicHeader(entry.getKey(), entry.getValue()));
}
return httpPost;
}
private boolean verifyKeyPair() {
ECNamedCurveParameterSpec curveParameters = ECNamedCurveTable.getParameterSpec(CURVE);
ECPoint g = curveParameters.getG();
ECPoint sG = g.multiply(((ECPrivateKey) privateKey).getS());
return sG.equals(((ECPublicKey) publicKey).getQ());
}
/**
* Set the Google Cloud Messaging (GCM) API key
*
* @param gcmApiKey
* @return
*/
public PushService setGcmApiKey(String gcmApiKey) {
this.gcmApiKey = gcmApiKey;
return this;
}
/**
* Set the JWT subject (for VAPID)
*
* @param subject
* @return
*/
public PushService setSubject(String subject) {
this.subject = subject;
return this;
}
/**
* Set the public and private key (for VAPID).
*
* @param keyPair
* @return
*/
public PushService setKeyPair(KeyPair keyPair) {
setPublicKey(keyPair.getPublic());
setPrivateKey(keyPair.getPrivate());
return this;
}
public PublicKey getPublicKey() {
return publicKey;
}
/**
* Set the public key using a base64url-encoded string.
*
* @param publicKey
* @return
*/
public PushService setPublicKey(String publicKey) throws NoSuchAlgorithmException, NoSuchProviderException, InvalidKeySpecException {
setPublicKey(Utils.loadPublicKey(publicKey));
return this;
}
public PrivateKey getPrivateKey() {
return privateKey;
}
public KeyPair getKeyPair() {
return new KeyPair(publicKey, privateKey);
}
/**
* Set the public key (for VAPID)
*
* @param publicKey
* @return
*/
public PushService setPublicKey(PublicKey publicKey) {
this.publicKey = publicKey;
return this;
}
/**
* Set the public key using a base64url-encoded string.
*
* @param privateKey
* @return
*/
public PushService setPrivateKey(String privateKey) throws NoSuchAlgorithmException, NoSuchProviderException, InvalidKeySpecException {
setPrivateKey(Utils.loadPrivateKey(privateKey));
return this;
}
/**
* Set the private key (for VAPID)
*
* @param privateKey
* @return
*/
public PushService setPrivateKey(PrivateKey privateKey) {
this.privateKey = privateKey;
return this;
}
/**
* Check if VAPID is enabled
*
* @return
*/
protected boolean vapidEnabled() {
return publicKey != null && privateKey != null;
}
private CloseableHttpAsyncClient getClient() {
if(closeableHttpAsyncClient == null) {
closeableHttpAsyncClient = HttpAsyncClients.createSystem();
closeableHttpAsyncClient.start();
}
return closeableHttpAsyncClient;
}
private void destroyClient() throws IOException {
try {
getClient().close();
} finally {
closeableHttpAsyncClient = null;
}
}
}