-
Notifications
You must be signed in to change notification settings - Fork 306
/
Copy pathPreferences.java
191 lines (153 loc) · 5.81 KB
/
Preferences.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
package com.automattic.simplenote.models;
import com.simperium.client.BucketObject;
import com.simperium.client.BucketSchema;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
public class Preferences extends BucketObject {
public static final String BUCKET_NAME = "preferences";
public static final String PREFERENCES_OBJECT_KEY = "preferences-key";
public static final int MAX_RECENT_SEARCHES = 5;
private static final String ANALYTICS_ENABLED_KEY = "analytics_enabled";
private static final String RECENT_SEARCHES_KEY = "recent_searches";
private static final String SUBSCRIPTION_LEVEL_KEY = "subscription_level";
private static final String SUBSCRIPTION_PLATFORM_KEY = "subscription_platform";
private static final String SUBSCRIPTION_DATE_KEY = "subscription_date";
private Preferences(String key, JSONObject properties) {
super(key, properties);
}
public boolean getAnalyticsEnabled() {
Object isEnabled = getProperty(ANALYTICS_ENABLED_KEY);
if (isEnabled == null) {
return true;
}
if (isEnabled instanceof Boolean) {
return (Boolean) isEnabled;
} else {
// Simperium-iOS sets booleans as integer values (0 or 1)
return isEnabled instanceof Integer && ((Integer) isEnabled) > 0;
}
}
public ArrayList<String> getRecentSearches() {
Object object = getProperty(RECENT_SEARCHES_KEY);
if (object instanceof JSONArray) {
JSONArray recents = (JSONArray) object;
ArrayList<String> recentsList = new ArrayList<>(recents.length());
for (int i = 0; i < recents.length(); i++) {
String recent = recents.optString(i);
if (!recent.isEmpty()) {
recentsList.add(recent);
}
}
return recentsList;
} else {
return new ArrayList<>();
}
}
public void setAnalyticsEnabled(boolean enabled) {
try {
getProperties().put(ANALYTICS_ENABLED_KEY, enabled);
} catch (JSONException e) {
e.printStackTrace();
}
}
public void setRecentSearches(List<String> recents) {
if (recents == null) {
recents = new ArrayList<>();
}
setProperty(RECENT_SEARCHES_KEY, new JSONArray(recents));
}
// These are legacy "Simplenote sustainer" methods. Keeping around for testing purposes.
public void setActiveSubscription(long purchaseTime){
setSubscriptionPlatform(Preferences.SubscriptionPlatform.ANDROID);
setSubscriptionLevel(Preferences.SubscriptionLevel.SUSTAINER);
setSubscriptionDate(purchaseTime);
save();
}
public void removeActiveSubscription(){
setSubscriptionPlatform(SubscriptionPlatform.NONE);
setSubscriptionLevel(SubscriptionLevel.NONE);
setSubscriptionDate(null);
save();
}
public SubscriptionPlatform getCurrentSubscriptionPlatform() {
Object subscriptionPlatform = getProperty(SUBSCRIPTION_PLATFORM_KEY);
if (subscriptionPlatform == null) {
return null;
}
if (subscriptionPlatform instanceof String) {
return SubscriptionPlatform.fromString((String) subscriptionPlatform);
} else {
return null;
}
}
public void setSubscriptionDate(Long subscriptionDate) {
setProperty(SUBSCRIPTION_DATE_KEY, subscriptionDate);
}
public void setSubscriptionPlatform(SubscriptionPlatform subscriptionPlatform) {
setProperty(SUBSCRIPTION_PLATFORM_KEY, subscriptionPlatform.platformName);
}
public void setSubscriptionLevel(SubscriptionLevel subscriptionLevel) {
setProperty(SUBSCRIPTION_LEVEL_KEY, subscriptionLevel.getName());
}
public static class Schema extends BucketSchema<Preferences> {
public Schema() {
autoIndex();
}
public String getRemoteName() {
return BUCKET_NAME;
}
public Preferences build(String key, JSONObject properties) {
return new Preferences(key, properties);
}
public void update(Preferences prefs, JSONObject properties) {
prefs.setProperties(properties);
}
}
public enum SubscriptionPlatform {
ANDROID("android"),
IOS("iOS"),
WEB("WEB"),
NONE(null);
private final String platformName;
SubscriptionPlatform(final String platform) {
this.platformName = platform;
}
public String getName() {
return platformName;
}
public static SubscriptionPlatform fromString(String platformName) {
if (platformName != null) {
for (SubscriptionPlatform platform : SubscriptionPlatform.values()) {
if (platformName.equalsIgnoreCase(platform.getName())) {
return platform;
}
}
}
return null;
}
}
public enum SubscriptionLevel {
SUSTAINER("sustainer"),
NONE(null);
private final String subscriptionLevel;
SubscriptionLevel(final String level) {
this.subscriptionLevel = level;
}
public String getName() {
return subscriptionLevel;
}
public static SubscriptionLevel fromString(String level) {
if (level != null) {
for (SubscriptionLevel subscriptionLevel : SubscriptionLevel.values()) {
if (level.equalsIgnoreCase(subscriptionLevel.getName())) {
return subscriptionLevel;
}
}
}
return null;
}
}
}