forked from peterhajas/MobileNotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.xm
427 lines (344 loc) · 11.6 KB
/
Tweak.xm
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*
MobileNotifier, by Peter Hajas
iOS Notifications. Done right. Like 2010 right.
Copyright 2010 Peter Hajas, Peter Hajas Software
This code is licensed under the BSD license
*/
/*
Copyright (c) 2010-2011, Peter Hajas
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Peter Hajas nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL PETER HAJAS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import <SpringBoard/SpringBoard.h>
#import <ChatKit/ChatKit.h>
#import <objc/runtime.h>
#import "MNAlertData.h"
#import "MNAlertManager.h"
#import "MNAlertViewController.h"
%class SBUIController;
%class SBIconModel;
%class SBIcon;
%class SBAppSwitcherController;
%class SBAwayController;
@interface SBUIController (peterhajas)
-(void)activateApplicationFromSwitcher:(SBApplication *) app;
-(void)dismissSwitcher;
-(BOOL)activateSwitcher;
@end
@interface SBIconModel (peterhajas)
+(id)sharedInstance;
-(id)applicationIconForDisplayIdentifier:(id)displayIdentifier;
@end
@interface SBIcon (peterhajas)
-(id)iconImageView;
@end
@interface SBRemoteLocalNotificationAlert : SBAlertItem
-(id)alertItemNotificationSender;
@end
@interface PHACInterface : NSObject <MNAlertManagerDelegate>
@end
@implementation PHACInterface
- (void)launchBundleID:(NSString *)bundleID
{
//TODO: switch to URL for this
SBUIController *uicontroller = (SBUIController *)[%c(SBUIController) sharedInstance];
SBApplicationController *appcontroller = (SBApplicationController *)[%c(SBApplicationController) sharedInstance];
if([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)])
{
//Do the awesome, animated switch to the new app
[uicontroller activateApplicationFromSwitcher:[[appcontroller applicationsWithBundleIdentifier:bundleID] objectAtIndex:0]];
}
else
{
//Boring old way (which still doesn't work outside of Springboard)
[uicontroller activateApplicationAnimated:[[appcontroller applicationsWithBundleIdentifier:bundleID] objectAtIndex:0]];
}
}
- (void)launchAppInSpringBoardWithBundleID:(NSString *)bundleID
{
[self launchBundleID:bundleID];
}
-(UIImage*)iconForBundleID:(NSString *)bundleID;
{
if([bundleID isEqualToString:@"com.apple.MobileSMS"])
{
return [[UIImage imageWithContentsOfFile:@"/Applications/MobileSMS.app/[email protected]"] retain];
}
SBApplicationController* sbac = (SBApplicationController *)[%c(SBApplicationController) sharedInstance];
//Let's grab the application's icon using some awesome NSBundle stuff!
//First, grab the app's bundle:
NSBundle *appBundle = (NSBundle*)[[[sbac applicationsWithBundleIdentifier:bundleID] objectAtIndex:0] bundle];
//Next, ask the dictionary for the IconFile name
NSString *iconName = [[appBundle infoDictionary] objectForKey:@"CFBundleIconFile"];
NSString *iconPath;
if(iconName != nil)
{
//Finally, query the bundle for the path of the icon minus its path extension (usually .png)
iconPath = [appBundle pathForResource:[iconName stringByDeletingPathExtension]
ofType:[iconName pathExtension]];
}
else
{
//Some apps, like Boxcar, prefer an array of icons. We need to deal with that appropriately.
NSArray *iconArray = [[appBundle infoDictionary] objectForKey:@"CFBundleIconFiles"];
//objectAtIndex:1 is the retina icon, from some testing
iconPath = [appBundle pathForResource:[[iconArray objectAtIndex:1] stringByDeletingPathExtension]
ofType:[[iconArray objectAtIndex:1] pathExtension]];
}
if([UIImage imageWithContentsOfFile:iconPath] == nil)
{
iconPath = [appBundle pathForResource:@"Icon@2x" ofType:@"png"];
}
if([UIImage imageWithContentsOfFile:iconPath] == nil)
{
iconPath = [appBundle pathForResource:@"icon@2x" ofType:@"png"];
}
if([UIImage imageWithContentsOfFile:iconPath] == nil)
{
iconPath = [appBundle pathForResource:@"Icon" ofType:@"png"];
}
if([UIImage imageWithContentsOfFile:iconPath] == nil)
{
iconPath = [appBundle pathForResource:@"icon" ofType:@"png"];
}
//Commented this function out - it was causing resprings on certain devices.
/*
if(![[[appBundle infoDictionary] objectForKey:@"UIPrerenderedIcon"] boolValue])
{
//If they didn't preprocess the icon (Facebook, looking at you)
//then we should preprocess it ourselves!
return [[UIImage imageWithContentsOfFile:iconPath] _applicationIconImagePrecomposed:YES];
}
*/
//Return our UIImage!
return [[UIImage imageWithContentsOfFile:iconPath] retain];
}
-(void)dismissSwitcher
{
SBUIController *uicontroller = (SBUIController *)[%c(SBUIController) sharedInstance];
[uicontroller dismissSwitcher];
}
-(void)wakeDeviceScreen
{
SBAwayController* awayController = (SBAwayController *)[%c(SBAwayController) sharedAwayController];
[awayController undimScreen];
[awayController restartDimTimer:5.0];
}
@end
//Mail class declaration for fetched messages
@interface AutoFetchRequestPrivate
-(BOOL)gotNewMessages;
-(int)messageCount;
@end
//Alert Controller:
MNAlertManager *manager;
//SB Interface
PHACInterface *phacinterface;
//Hook into Springboard init method to initialize our window
%hook SpringBoard
-(void)applicationDidFinishLaunching:(id)application
{
%orig;
phacinterface = [[PHACInterface alloc] init];
manager = [[MNAlertManager alloc] init];
manager.delegate = phacinterface;
}
%end;
//Experimental: Hook SBAlertItemsController for skipping the alert grabbing and going right for the built-in manager
%hook SBAlertItemsController
-(void)activateAlertItem:(id)item
{
//Build the alert data part of the way
MNAlertData* data;
if([item isKindOfClass:%c(SBSMSAlertItem)])
{
//It's an SMS/MMS!
data = [[MNAlertData alloc] init];
data.type = kSMSAlert;
data.time = [[NSDate date] retain];
data.status = kNewAlertForeground;
data.bundleID = [[NSString alloc] initWithString:@"com.apple.MobileSMS"];
if([item alertImageData] == NULL)
{
data.header = [[NSString alloc] initWithFormat:@"%@", [item name]];
data.text = [[NSString alloc] initWithFormat:@"%@", [item messageText]];
}
else
{
data.header = [[NSString alloc] initWithFormat:@"%@", [item name]];
data.text = [[NSString alloc] initWithFormat:@"%@", [item messageText]];
}
[manager newAlertWithData:data];
}
else if(([item isKindOfClass:%c(SBRemoteNotificationAlert)]) ||
([item isKindOfClass:%c(SBRemoteLocalNotificationAlert)]))
{
//It's a push notification!
//Get the SBApplication object, we need its bundle identifier
SBApplication *app(MSHookIvar<SBApplication *>(item, "_app"));
//Filter out clock alerts
if([[app bundleIdentifier] rangeOfString:@"Clock"].location == NSNotFound)
{
NSString* _body = MSHookIvar<NSString*>(item, "_body");
data = [[MNAlertData alloc] init];
data.time = [[NSDate date] retain];
data.status = kNewAlertForeground;
data.type = kPushAlert;
data.bundleID = [app bundleIdentifier];
data.header = [app displayName];
data.text = _body;
[manager newAlertWithData:data];
}
else
{
//We do not want to intercept MobileTimer events.
%orig;
}
}
/*
else if([item isKindOfClass:%c(SBVoiceMailAlertItem)])
{
//It's a voicemail alert!
data.time = [[NSDate date] retain];
data.status = kNewAlertForeground;
data.type = kPhoneAlert;
data.bundleID = @"com.apple.mobilephone";
data.header = [item title];
data.text = [item bodyText];
[manager newAlertWithData:data];
}
*/
else
{
//It's a different alert (power/app store, for example)
//Let's run the original function for now
%orig;
}
}
-(void)deactivateAlertItem:(id)item
{
%log;
%orig;
}
%end
//Hook SBAwayController for showing our lockscreen view.
%hook SBAwayController
-(void)lock
{
%orig;
//Hide the pending alert if the manager is showing one
[manager hidePendingAlert];
//Show our lockscreen view
[manager showLockscreen];
}
-(void)_finishedUnlockAttemptWithStatus:(BOOL)status
{
//Hide our lockscreen view
[manager hideLockscreen];
}
-(void)noteSyncStateChanged
{
if(![self isSyncing])
{
//Hide our lockscreen view
[manager hideLockscreen];
}
}
%end
%hook SBUIController
-(void)dismissSwitcher
{
%orig;
[manager hideDashboard];
}
-(BOOL)activateSwitcher
{
[manager showDashboard];
return %orig;
}
-(void)activateApplicationAnimated:(id)animated
{
%orig;
[manager hideDashboard];
}
-(void)activateApplicationFromSwitcher:(id)switcher
{
%orig;
[manager hideDashboard];
}
-(BOOL)clickedMenuButton
{
[manager hideDashboard];
return %orig;
}
%end
//Hook AutoFetchRequestPrivate for getting new mail
%hook AutoFetchRequestPrivate
-(void)run //This works! This is an appropriate way for us to display a new mail notification to the user
{
%orig;
%log;
if([self gotNewMessages])
{
//Build the alert data part of the way
MNAlertData* data = [[MNAlertData alloc] init];
//Current date + time
data.time = [[NSDate date] retain];
data.status = kNewAlertForeground;
data.type = kSMSAlert;
data.bundleID = [[NSString alloc] initWithString:@"com.apple.MobileMail"];
data.header = [[NSString alloc] initWithFormat:@"Mail"];
data.text = [[NSString alloc] initWithFormat:@"%d new messages", [self messageCount]];
[manager newAlertWithData:data];
}
}
%end
//Information about Logos for future reference:
/* How to Hook with Logos
Hooks are written with syntax similar to that of an Objective-C @implementation.
You don't need to #include <substrate.h>, it will be done automatically, as will
the generation of a class list and an automatic constructor.
%hook ClassName
// Hooking a class method
+ (id)sharedInstance {
return %orig;
}
// Hooking an instance method with an argument.
- (void)messageName:(int)argument {
%log; // Write a message about this call, including its class, name and arguments, to the system log.
%orig; // Call through to the original function with its original arguments.
%orig(nil); // Call through to the original function with a custom argument.
// If you use %orig(), you MUST supply all arguments (except for self and _cmd, the automatically generated ones.)
}
// Hooking an instance method with no arguments.
- (id)noArguments {
%log;
id awesome = %orig;
[awesome doSomethingElse];
return awesome;
}
// Always make sure you clean up after yourself; Not doing so could have grave conseqeuences!
%end
*/
//How to hook ivars!
//MSHookIvar<ObjectType *>(self, "OBJECTNAME");
// vim:ft=objc