-
Notifications
You must be signed in to change notification settings - Fork 0
/
BulletinBoardAssistant.m
214 lines (201 loc) · 9.5 KB
/
BulletinBoardAssistant.m
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
//
// BulletinBoardAssistant.m
// qBatteryDoctor
//
// Created by Ray Zhang on 13-8-27.
//
//
#import "BulletinBoardAssistant.h"
#import <BulletinBoard/BBSectionInfo.h>
#import <BulletinBoard/BBBehaviorOverride.h>
#import <BulletinBoard/BBSettingsGateway.h>
#define SECTION_INFO_FILE_PATH @"/var/mobile/Library/BulletinBoard/SectionInfo.plist"
#define SECTION_ORDER_FILE_PATH @"/var/mobile/Library/BulletinBoard/SectionOrder.plist"
#define SECTION_ORDER_IDENTIFIERS @"SectionOrderIDs"
#define SECTION_ORDER_CHRONOLOGICAL_IDENTIFIERS @"BBSectionOrderChronologicalIDs"
#define SECTION_ORDER_DEFAULT_IDENTIFIERS @"BBSectionOrderDefaultIDs"
#define SECTION_ORDER_RULE @"SectionOrderRule"
#define BEHAVIOR_OVERRIDES_FILE_PATH @"/var/mobile/Library/BulletinBoard/BehaviorOverrides.plist"
#define OVERRIDES @"overrides"
#define OVERRIDE_STATUS @"overrideStatus"
#define OVERRIDE_STATUS_LAST_CALCULATED_TIME @"overrideStatusLastCalculatedTime"
#define PRIVILEGED_SENDER_TYPES @"privilegedSenderTypes"
@implementation BulletinBoardAssistant
+ (BOOL)isWeeAppPluginOnWithSectionIdetifier:(NSString *)identifier {
BOOL retVal = NO;
NSFileManager *defaultManager = [NSFileManager defaultManager];
if ([defaultManager fileExistsAtPath:SECTION_INFO_FILE_PATH]) {
NSDictionary *sectionInfoDic = [[NSDictionary alloc] initWithContentsOfFile:SECTION_INFO_FILE_PATH];
NSData *sectionInfoData = [sectionInfoDic objectForKey:identifier];
BBSectionInfo *sectionInfo = [NSKeyedUnarchiver unarchiveObjectWithData:sectionInfoData];
retVal = sectionInfo.showsInNotificationCenter;
[sectionInfoDic release];
}
return retVal;
}
+ (void)setWeeAppPluginOn:(BOOL)on withSectionIdetifier:(NSString *)identifier {
NSFileManager *defaultManager = [NSFileManager defaultManager];
BBSettingsGateway *settingsGateway = [[BBSettingsGateway alloc] init];
if ([defaultManager fileExistsAtPath:SECTION_INFO_FILE_PATH]) {
NSDictionary *sectionInfoDic = [[NSDictionary alloc] initWithContentsOfFile:SECTION_INFO_FILE_PATH];
NSData *sectionInfoData = [sectionInfoDic objectForKey:identifier];
BBSectionInfo *sectionInfo = [NSKeyedUnarchiver unarchiveObjectWithData:sectionInfoData];
sectionInfo.showsInNotificationCenter = on;
[settingsGateway setSectionInfo:sectionInfo forSectionID:identifier];
[sectionInfoDic release];
} else {
[settingsGateway getSectionInfoWithCompletion:^(NSArray *sectionInfos){
NSMutableDictionary *mutableDic = [[NSMutableDictionary alloc] initWithCapacity:7];
for (BBSectionInfo *info in sectionInfos) {
NSString *key = [[NSString alloc] initWithString:info.sectionID];
NSData *object = [[NSData alloc] initWithData:[NSKeyedArchiver archivedDataWithRootObject:info]];
[mutableDic setObject:object forKey:key];
[key release];
[object release];
}
[mutableDic writeToFile:SECTION_INFO_FILE_PATH atomically:YES];
NSData *sectionInfoData = [mutableDic objectForKey:identifier];
BBSectionInfo *sectionInfo = [NSKeyedUnarchiver unarchiveObjectWithData:sectionInfoData];
sectionInfo.showsInNotificationCenter = on;
[settingsGateway setSectionInfo:sectionInfo forSectionID:identifier];
[mutableDic release];
}];
}
[settingsGateway release];
}
+ (void)sortWeeAppToPosition:(BBWeeAppPosition)position withSectionIdetifier:(NSString *)identifier {
NSFileManager *defaultManager = [NSFileManager defaultManager];
BBSettingsGateway *settingsGateway = [[BBSettingsGateway alloc] init];
CGFloat systemVersion = [[[UIDevice currentDevice] systemVersion] floatValue];
NSString *arrayIdentifier = SECTION_ORDER_CHRONOLOGICAL_IDENTIFIERS;
NSUInteger index = 1;
if (systemVersion < 7.0) {
arrayIdentifier = SECTION_ORDER_IDENTIFIERS;
index = 0;
}
if ([defaultManager fileExistsAtPath:SECTION_ORDER_FILE_PATH]) {
NSDictionary *sectionOrderDic = [[NSDictionary alloc] initWithContentsOfFile:SECTION_ORDER_FILE_PATH];
NSMutableArray *sectionOrders = [[NSMutableArray alloc] initWithArray:[sectionOrderDic objectForKey:arrayIdentifier]];
[sectionOrders removeObject:identifier];
switch (position) {
case BBWeeAppPositionTop:
[sectionOrders insertObject:identifier atIndex:index];
break;
case BBWeeAppPositionBottom:
[sectionOrders addObject:identifier];
default:
break;
}
if (systemVersion < 7.0) {
[settingsGateway setOrderedSectionIDs:sectionOrders];
} else {
[settingsGateway setOrderedSectionIDs:sectionOrders forCategory:index];
}
[sectionOrderDic release];
[sectionOrders release];
} else {
if (systemVersion < 7.0) {
[settingsGateway getSectionInfoWithCompletion:^(NSArray *sectionInfos) {
NSMutableArray *mutableArray = [[NSMutableArray alloc] initWithCapacity:[sectionInfos count]];
for (BBSectionInfo *info in sectionInfos) {
NSString *key = [[NSString alloc] initWithString:info.sectionID];
[mutableArray addObject:key];
[key release];
}
NSDictionary *sectionOrderDic = [[NSDictionary alloc] initWithObjectsAndKeys:mutableArray, arrayIdentifier, [NSNumber numberWithInteger:0], SECTION_ORDER_RULE, nil];
[sectionOrderDic writeToFile:SECTION_ORDER_FILE_PATH atomically:YES];
[mutableArray removeObject:identifier];
switch (position) {
case BBWeeAppPositionTop:
[mutableArray insertObject:identifier atIndex:index];
break;
case BBWeeAppPositionBottom:
[mutableArray addObject:identifier];
default:
break;
}
[settingsGateway setOrderedSectionIDs:mutableArray];
[mutableArray release];
}];
} else {
[settingsGateway getSectionInfoForCategory:index withCompletion:^(NSArray *sectionInfos) {
NSMutableArray *mutableArray = [[NSMutableArray alloc] initWithCapacity:[sectionInfos count]];
for (BBSectionInfo *info in sectionInfos) {
NSString *key = [[NSString alloc] initWithString:info.sectionID];
[mutableArray addObject:key];
[key release];
}
NSDictionary *sectionOrderDic = [[NSDictionary alloc] initWithObjectsAndKeys:mutableArray, arrayIdentifier, [NSNumber numberWithInteger:0], SECTION_ORDER_RULE, nil];
[sectionOrderDic writeToFile:SECTION_ORDER_FILE_PATH atomically:YES];
[mutableArray removeObject:identifier];
switch (position) {
case BBWeeAppPositionTop:
[mutableArray insertObject:identifier atIndex:index];
break;
case BBWeeAppPositionBottom:
[mutableArray addObject:identifier];
default:
break;
}
[settingsGateway setOrderedSectionIDs:mutableArray forCategory:index];
[mutableArray release];
}];
}
}
[settingsGateway release];
}
+ (BOOL)isDNDEnabled {
BOOL retVal = NO;
NSDictionary *behaviorOverrides = [[NSDictionary alloc] initWithContentsOfFile:BEHAVIOR_OVERRIDES_FILE_PATH];
if (behaviorOverrides) {
NSData *overrideData = [[NSData alloc] initWithData:[[behaviorOverrides objectForKey:OVERRIDES] lastObject]];
if (overrideData) {
BBBehaviorOverride *override = [NSKeyedUnarchiver unarchiveObjectWithData:overrideData];
if ([override isActiveForDate:[NSDate date]]) {
retVal = ![[behaviorOverrides objectForKey:OVERRIDE_STATUS] integerValue];
} else {
NSInteger status = [[behaviorOverrides objectForKey:OVERRIDE_STATUS] integerValue];
if (status > 1) {
status = 0;
}
retVal = status;
}
[overrideData release];
}
[behaviorOverrides release];
}
return retVal;
}
+ (void)setDNDEnabled:(BOOL)enabled {
BBSettingsGateway *settingsGateway = [[BBSettingsGateway alloc] init];
[settingsGateway getBehaviorOverridesWithCompletion:^(NSArray *overrides) {
if (overrides) {
int status = 0;
BBBehaviorOverride *override = [overrides lastObject];
if (enabled) {
if ([override isActiveForDate:[NSDate date]]) {
if (override.mode) {
status = 0;
} else {
status = 1;
}
} else {
status = 1;
}
} else {
if ([override isActiveForDate:[NSDate date]]) {
if (override.mode) {
status = 2;
} else {
status = 0;
}
} else {
status = 0;
}
}
[settingsGateway setBehaviorOverrideStatus:status];
}
[settingsGateway release];
}];
}
@end