forked from firebase/firebase-admin-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidConfig.java
More file actions
245 lines (215 loc) · 7.63 KB
/
AndroidConfig.java
File metadata and controls
245 lines (215 loc) · 7.63 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
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
/*
* Copyright 2018 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.firebase.messaging;
import static com.google.common.base.Preconditions.checkArgument;
import com.google.api.client.util.Key;
import com.google.common.collect.ImmutableMap;
import com.google.firebase.internal.NonNull;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
/**
* Represents the Android-specific options that can be included in a {@link Message}.
* Instances of this class are thread-safe and immutable.
*/
public class AndroidConfig {
@Key("collapse_key")
private final String collapseKey;
@Key("priority")
private final String priority;
@Key("ttl")
private final String ttl;
@Key("restricted_package_name")
private final String restrictedPackageName;
@Key("data")
private final Map<String, String> data;
@Key("notification")
private final AndroidNotification notification;
@Key("fcm_options")
private final AndroidFcmOptions fcmOptions;
@Key("direct_boot_ok")
private final Boolean directBootOk;
@Key("bandwidth_constrained_ok")
private final Boolean bandwidthConstrainedOk;
private AndroidConfig(Builder builder) {
this.collapseKey = builder.collapseKey;
if (builder.priority != null) {
this.priority = builder.priority.name().toLowerCase();
} else {
this.priority = null;
}
if (builder.ttl != null) {
checkArgument(builder.ttl >= 0, "ttl must not be negative");
long seconds = TimeUnit.MILLISECONDS.toSeconds(builder.ttl);
long subsecondNanos = TimeUnit.MILLISECONDS.toNanos(builder.ttl - seconds * 1000L);
if (subsecondNanos > 0) {
this.ttl = String.format("%d.%09ds", seconds, subsecondNanos);
} else {
this.ttl = String.format("%ds", seconds);
}
} else {
this.ttl = null;
}
this.restrictedPackageName = builder.restrictedPackageName;
this.data = builder.data.isEmpty() ? null : ImmutableMap.copyOf(builder.data);
this.notification = builder.notification;
this.fcmOptions = builder.fcmOptions;
this.directBootOk = builder.directBootOk;
this.bandwidthConstrainedOk = builder.bandwidthConstrainedOk;
}
/**
* Priority levels that can be set on an {@link AndroidConfig}.
*/
public enum Priority {
HIGH,
NORMAL,
}
/**
* Creates a new {@link AndroidConfig.Builder}.
*
* @return A {@link AndroidConfig.Builder} instance.
*/
public static Builder builder() {
return new Builder();
}
public static class Builder {
private String collapseKey;
private Priority priority;
private Long ttl;
private String restrictedPackageName;
private final Map<String, String> data = new HashMap<>();
private AndroidNotification notification;
private AndroidFcmOptions fcmOptions;
private Boolean directBootOk;
private Boolean bandwidthConstrainedOk;
private Builder() {}
/**
* Sets a collapse key for the message. The collapse key serves as an identifier for a group of
* messages that can be collapsed, so that only the last message gets sent when delivery can be
* resumed. A maximum of 4 different collapse keys may be active at any given time.
*
* <p>By default, the collapse key is the app package name registered in
* the Firebase console.</p>
*
* @param collapseKey A collapse key string.
* @return This builder.
*/
public Builder setCollapseKey(String collapseKey) {
this.collapseKey = collapseKey;
return this;
}
/**
* Sets the priority of the message.
*
* @param priority A value from the {@link Priority} enum.
* @return This builder.
*/
public Builder setPriority(Priority priority) {
this.priority = priority;
return this;
}
/**
* Sets the time-to-live duration of the message in milliseconds.
*
* @param ttl Time-to-live duration in milliseconds.
* @return This builder.
*/
public Builder setTtl(long ttl) {
this.ttl = ttl;
return this;
}
/**
* Sets the package name of the application where the registration tokens must match in order
* to receive the message.
*
* @param restrictedPackageName A package name string.
* @return This builder.
*/
public Builder setRestrictedPackageName(String restrictedPackageName) {
this.restrictedPackageName = restrictedPackageName;
return this;
}
/**
* Adds the given key-value pair to the message as a data field. Key and the value may not be
* null. When set, overrides any data fields set on the top-level {@link Message} via
* {@link Message.Builder#putData(String, String)} and {@link Message.Builder#putAllData(Map)}.
*
* @param key Name of the data field. Must not be null.
* @param value Value of the data field. Must not be null.
* @return This builder.
*/
public Builder putData(@NonNull String key, @NonNull String value) {
this.data.put(key, value);
return this;
}
/**
* Adds all the key-value pairs in the given map to the message as data fields. None of the
* keys and values may be null. When set, overrides any data fields set on the top-level
* {@link Message} via {@link Message.Builder#putData(String, String)} and
* {@link Message.Builder#putAllData(Map)}.
*
* @param map A non-null map of data fields. Map must not contain null keys or values.
* @return This builder.
*/
public Builder putAllData(@NonNull Map<String, String> map) {
this.data.putAll(map);
return this;
}
/**
* Sets the Android notification to be included in the message.
*
* @param notification An {@link AndroidNotification} instance.
* @return This builder.
*/
public Builder setNotification(AndroidNotification notification) {
this.notification = notification;
return this;
}
/**
* Sets the {@link AndroidFcmOptions}, which overrides values set in the {@link FcmOptions}
* for Android messages.
*/
public Builder setFcmOptions(AndroidFcmOptions androidFcmOptions) {
this.fcmOptions = androidFcmOptions;
return this;
}
/**
* Sets the {@code direct_boot_ok} flag. If set to true, messages are delivered to
* the app while the device is in direct boot mode.
*/
public Builder setDirectBootOk(boolean directBootOk) {
this.directBootOk = directBootOk;
return this;
}
/**
* Sets the {@code bandwidth_constrained_ok} flag. If set to true, messages can be delivered
* even when the device is connected through a bandwidth-constrained network.
*/
public Builder setBandwidthConstrainedOk(boolean bandwidthConstrainedOk) {
this.bandwidthConstrainedOk = bandwidthConstrainedOk;
return this;
}
/**
* Creates a new {@link AndroidConfig} instance from the parameters set on this builder.
*
* @return A new {@link AndroidConfig} instance.
* @throws IllegalArgumentException If any of the parameters set on the builder are invalid.
*/
public AndroidConfig build() {
return new AndroidConfig(this);
}
}
}