forked from peterhajas/MobileNotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.xm
720 lines (588 loc) · 19.5 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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
/*
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>
// Commented out to avoid compilation warnings when linking against 3.1.3 private headers
// #import <SpringBoard/SBStatusBarDataManager.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;
%class SBStatusBarDataManager;
@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>
{
NSArray* ignoredApplications;
}
-(BOOL)isApplicationIgnored:(NSString*)bundleID;
@end
@implementation PHACInterface
-(BOOL)isApplicationIgnored:(NSString*)bundleID
{
if ([ignoredApplications indexOfObject:bundleID] != NSNotFound)
{
return YES;
}
else
{
return NO;
}
}
-(id)init
{
self = [super init];
if (self)
{
ignoredApplications = [[NSArray alloc] initWithContentsOfFile:@"/Library/Application Support/MobileNotifier/ignoredApplications.plist"];
}
return self;
}
-(void)launchBundleID:(NSString *)bundleID
{
// TODO: switch to URL for this
SBUIController *uicontroller = (SBUIController *)[%c(SBUIController) sharedInstance];
SBApplicationController *appcontroller = (SBApplicationController *)[%c(SBApplicationController) sharedInstance];
if ([[appcontroller applicationsWithBundleIdentifier:bundleID] count] == 0)
{
// We can't do anything!
// Inform the user, then return out
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Can't find application"
message:[NSString stringWithFormat:@"MobileNotifier can't find the application with bundle ID of %@. Has it been uninstalled or removed?", bundleID]
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
[alert release];
return;
}
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/icon.png"] retain];
}
if ([bundleID isEqualToString:@"com.apple.mobilephone"])
{
return [[UIImage imageWithContentsOfFile:@"/Applications/MobilePhone.app/icon.png"] retain];
}
// Let's grab the application's icon
// using some awesome NSBundle stuff!
SBApplicationController* sbac = (SBApplicationController *)[%c(SBApplicationController) sharedInstance];
// If we can't grab the app from the
// SBApplicationController, then we can't launch.
if([[sbac applicationsWithBundleIdentifier:bundleID] count] < 1)
{
// Just return nothing. It's better than something!
return nil;
}
// Next, 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"];
// Interate through the array first
int count = [iconArray count];
if (count != 0)
{
int i;
for (i = 0; i < count; i++)
{
// With some preliminary testing, the highest-up item
// in the iconArray is the highest resolution image
iconPath = [appBundle pathForResource:[[iconArray objectAtIndex:i] stringByDeletingPathExtension]
ofType:[[iconArray objectAtIndex:i] pathExtension]];
}
}
}
// Prefer retina images over non retina images
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"];
}
// Short-circuit if we still can't find an image,
// in that case, return the MobileNotifier logo instead
if (iconPath == nil)
{
return [[UIImage imageWithContentsOfFile:@"/Library/Application Support/MobileNotifier/lockscreen-logo.png"] retain];
}
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];
}
-(void)setDoubleHighStatusBar:(BOOL)value
{
id statusBarDataManager = [%c(SBStatusBarDataManager) sharedDataManager];
bool ¤t(MSHookIvar<bool>(statusBarDataManager, "_simulateInCallStatusBar"));
if (current != value)
{
// If the current value is different than the
// value of the status bar now, let's change that
[statusBarDataManager toggleSimulatesInCallStatusBar];
}
}
-(BOOL)deviceIsLocked
{
SBAwayController* awayController = (SBAwayController *)[%c(SBAwayController) sharedAwayController];
if(!awayController)
{
return NO;
}
return [awayController isLocked];
}
@end
// -------------------------------------------
// Mail class declaration for fetched messages
// -------------------------------------------
@interface AutoFetchRequestPrivate
-(BOOL)gotNewMessages;
-(int)messageCount;
@end
// ----------------
// Alert Controller
// ----------------
MNAlertManager *manager;
// ---------------------
// SpringBoard 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;
// It's an SMS/MMS!
if ([item isKindOfClass:%c(SBSMSAlertItem)])
{
data = [[MNAlertData alloc] init];
data.senderAddress = [item address];
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];
}
// It's a push notification!
else if (([item isKindOfClass:%c(SBRemoteNotificationAlert)]) ||
([item isKindOfClass:%c(SBRemoteLocalNotificationAlert)]))
{
// Get the SBApplication object,
// we need its bundle identifier
SBApplication *app(MSHookIvar<SBApplication *>(item, "_app"));
// Filter out clock alerts
if (![phacinterface isApplicationIgnored:[app bundleIdentifier]])
{
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
// ignored application events.
%orig;
}
}
// It's a voicemail alert!
else if([item isKindOfClass:%c(SBVoiceMailAlertItem)])
{
data = [[MNAlertData alloc] init];
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];
}
// It's a calandar invite
else if ([item isKindOfClass:%c(SBInvitationAlertItem)])
{
NSString *_title = MSHookIvar<NSString*>(item, "_title");
NSString *_organizer = MSHookIvar<NSString*>(item, "_organizer");
data = [[MNAlertData alloc] init];
data.time = [[NSDate date] retain];
data.status = kNewAlertForeground;
data.type = kCalendarAlert;
data.bundleID = @"com.apple.mobilecal";
data.header = _title;
data.text = _organizer;
[manager newAlertWithData:data];
[%c(SBInvitationAlertItem) _removeActiveItem:item];
}
// It's a different alert (power/app store, for example)
else
{
// 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];
[manager fadeDashboardDown];
}
-(void)_finishedUnlockAttemptWithStatus:(BOOL)status
{
%orig;
[manager hideLockscreen];
}
-(void)applicationRequestedDeviceUnlock
{
%orig;
[manager hideLockscreen];
}
-(BOOL)lockBarStoppedTracking:(id)tracking
{
BOOL returnValue = %orig;
[manager hideLockscreenPendingAlertsList];
return returnValue;
}
-(void)emergencyCallWasDisplayed
{
%orig;
[manager hideLockscreen];
}
-(void)emergencyCallWasRemoved
{
%orig;
[manager showLockscreen];
}
-(void)noteSyncStateChanged
{
%orig;
if (![self isSyncing]) { [manager hideLockscreen]; }
}
-(void)undimScreen
{
%orig;
SBTelephonyManager *telephonyManager = (SBTelephonyManager *)[%c(SBTelephonyManager) sharedTelephonyManager];
// If someone's calling us, let's hide the
// lockscreen view and any pending alerts
if ([telephonyManager incomingCallExists])
{
[manager hideLockscreen];
[manager hidePendingAlert];
}
if ([self isLocked])
{
[manager hidePendingAlert];
}
}
-(BOOL)toggleMediaControls
{
BOOL returnValue = %orig;
if ([self isShowingMediaControls])
{
[manager hideLockscreen];
}
else
{
[manager showLockscreen];
}
return returnValue;
}
%end
%hook SBUIController
-(void)dismissSwitcher
{
%orig;
[manager fadeDashboardDown];
}
-(BOOL)activateSwitcher
{
[manager showDashboardFromSwitcher];
return %orig;
}
-(void)activateApplicationAnimated:(id)animated
{
%orig;
[manager fadeDashboardDown];
}
-(void)activateApplicationFromSwitcher:(id)switcher
{
%orig;
[manager fadeDashboardDown];
}
%end
// ---------------------------------
// Hook into SBAppSwitcherController
// ---------------------------------
%hook SBAppSwitcherController
-(void)appSwitcherBarRemovedFromSuperview:(id)superview
{
[manager fadeDashboardAway];
%orig;
}
-(void)iconTapped:(id)tapped
{
[manager fadeDashboardAway];
%orig;
}
%end
// ---------------------------
// Don't do anything for
// alerts we already intercept
// ---------------------------
%hook SBAwayModel
-(void)populateWithMissedSMS:(id)missedSMS
{
NSNumber *antiqueEnabled = [manager.preferenceManager.preferences valueForKey:@"antiqueLockAlertsEnabled"];
bool shouldShow = antiqueEnabled ? [antiqueEnabled boolValue] : YES;
if (shouldShow) { %orig; }
}
-(void)populateWithMissedEnhancedVoiceMails:(id)missedEnhancedVoiceMails
{
NSNumber *antiqueEnabled = [manager.preferenceManager.preferences valueForKey:@"antiqueLockAlertsEnabled"];
bool shouldShow = antiqueEnabled ? [antiqueEnabled boolValue] : YES;
if (shouldShow) { %orig; }
}
%end
// ------------------------------
// Hook SBApplication to dismiss
// alerts automatically on launch
// ------------------------------
%hook SBApplication
-(void)launch
{
[manager removeAllPendingAlertsForBundleIdentifier:[self bundleIdentifier]];
%orig;
}
-(void)activate
{
[manager removeAllPendingAlertsForBundleIdentifier:[self bundleIdentifier]];
%orig;
}
%end
// Hook AutoFetchRequestPrivate
// for getting new mail
// ----------------------------
/*
%hook AutoFetchRequestPrivate
// This works! This is an appropriate way for
// us to display a new mail notification to the user
-(void)run
{
%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
*/
static void reloadPrefsNotification(CFNotificationCenterRef center,
void *observer,
CFStringRef name,
const void *object,
CFDictionaryRef userInfo) {
[manager reloadPreferences];
}
%ctor
{
// Register for the preferences-did-change notification
CFNotificationCenterRef r = CFNotificationCenterGetDarwinNotifyCenter();
CFNotificationCenterAddObserver(r, NULL, &reloadPrefsNotification, CFSTR("com.peterhajassoftware.mobilenotifier/reloadPrefs"), NULL, 0);
}
// -----------------------
// 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 {
// Write a message about this call, including its class, name and arguments, to the system log.
%log;
// Call through to the original function with its original arguments.
%orig;
// Call through to the original function with a custom argument.
%orig(nil);
// 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