-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathTweak.xm
executable file
·596 lines (442 loc) · 16.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
///////////////////////////////////////////////////////////////
#pragma mark Headers
///////////////////////////////////////////////////////////////
#import "Internal/XIWidgetManager.h"
#import <WebKit/WebKit.h>
#import <objc/runtime.h>
#include <dlfcn.h>
@class WebView;
@class WebScriptObject;
@interface WebFrame : NSObject
- (id)dataSource;
@end
@interface XENHWidgetController : NSObject
// Internal webviews
@property (nonatomic, strong) WKWebView *webView;
@property (nonatomic, strong) UIWebView *legacyWebView;
@end
@interface WKWebView (Additions)
@property (nonatomic, assign) id<WKNavigationDelegate> hijackedNavigationDelegate;
@property (nonatomic, copy) NSNumber *_xenhtml;
@end
@interface UIWebView (Additions)
@property (nonatomic, assign) id<UIWebViewDelegate> hijackedDelegate;
@property (nonatomic, copy) NSNumber *_xenhtml;
@end
///////////////////////////////////////////////////////////////
#pragma mark Internal Hooks
///////////////////////////////////////////////////////////////
#pragma mark Add Xen HTML (only!) webviews to our widget manager as required.
%hook XENHWidgetController
// WKWebView
- (void)_unloadWebView {
WKWebView *widget = self.webView;
if (widget) {
NSString *url = [widget.URL absoluteString];
Xlog(@"Unregistering widget (WKWebView) for URL: %@", url);
[[XIWidgetManager sharedInstance] unregisterWidget:widget];
}
%orig;
}
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation {
%orig;
NSString *url = [webView.URL absoluteString];
if (![url isEqualToString:@""] && ![url isEqualToString:@"about:blank"]) {
Xlog(@"Registering widget (WKWebView) for URL: %@", url);
webView._xenhtml = @YES;
[[XIWidgetManager sharedInstance] registerWidget:webView];
}
}
// UIWebView
- (void)_unloadLegacyWebView {
UIWebView *widget = self.legacyWebView;
if (widget) {
NSString *href = [[widget.request URL] absoluteString];
Xlog(@"Unregistering widget (UIWebView) for href: %@", href);
[[XIWidgetManager sharedInstance] unregisterWidget:widget];
}
%orig;
}
- (void)setLegacyWebView:(UIWebView *)arg1 {
%orig;
if (arg1) {
arg1._xenhtml = @YES;
}
}
%end
// Not using UIWebView delegate, so use a workaround
%hook UIWebView
%property (nonatomic, copy) NSNumber *_xenhtml; // readwrite not supported by my version of theos.
%new
- (void)webViewDidFinishLoad:(UIWebView *)webView {
if (self.hijackedDelegate) {
[self.hijackedDelegate webViewDidFinishLoad:webView];
}
NSString *href = [[self.request URL] absoluteString];
if ([self._xenhtml isEqual:@YES] && href && ![href isEqualToString:@""] && ![href isEqualToString:@"about:blank"]) {
Xlog(@"Registering widget (UIWebView) for href: %@", href);
[[XIWidgetManager sharedInstance] registerWidget:self];
}
}
%end
%hook WKWebView
%property (nonatomic, copy) NSNumber *_xenhtml;
%end
#pragma mark Handle when a webview is deciding to navigate to a new page
// The idea is that we force the WKWebView to become its own navigationDelegate.
// Therefore, we can then intercept any incoming delegate calls as required, then
// forward them to the actual navigationDelegate we hijacked.
%hook WKWebView
%property (nonatomic, assign) id hijackedNavigationDelegate;
- (instancetype)initWithFrame:(CGRect)arg1 configuration:(id)arg2 {
WKWebView *orig = %orig;
if (orig) {
// Set the navigationDelegate initially.
orig.navigationDelegate = (id<WKNavigationDelegate>)orig;
}
return orig;
}
// Override the navigationDelegate if updated
- (void)setNavigationDelegate:(id)delegate {
if([delegate isKindOfClass:[objc_getClass("XENHWidgetController") class]]){
if(![delegate isEqual:self]){
self.hijackedNavigationDelegate = delegate;
%orig((id<WKNavigationDelegate>)self);
}
}else{
%orig;
}
}
// Add appropriate delegate methods, forwarding back to the hijacked navigationDelegate as
// required.
%new
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler {
// Allow other tweaks etc to handle this one.
if ([self._xenhtml isEqual:@NO]) {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView decidePolicyForNavigationAction:navigationAction decisionHandler:decisionHandler];
} else {
decisionHandler(WKNavigationActionPolicyAllow);
}
return;
}
NSURLRequest *request = navigationAction.request;
NSString *url = [[request URL] absoluteString];
if ([url hasPrefix:@"xeninfo:"]) {
NSArray *components = [url componentsSeparatedByString:@":"];
NSString *function = [components objectAtIndex:1];
// Pass through the function and parameters through to the widget manager.
NSString *parameter = components.count > 2 ? [components objectAtIndex:2] : @"";
Xlog(@"Recieved a command: '%@' with parameter '%@'", function, parameter);
// Send to widget manager.
[[XIWidgetManager sharedInstance] widget:self didRequestAction:function withParameter:parameter];
// Make sure to cancel this navigation!
decisionHandler(WKNavigationActionPolicyCancel);
} else {
decisionHandler(WKNavigationActionPolicyAllow);
}
}
%new
- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView didStartProvisionalNavigation:navigation];
}
}
%new
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation withError:(NSError *)error {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView didFailProvisionalNavigation:navigation withError:error];
}
}
%new
- (void)webView:(WKWebView *)webView didCommitNavigation:(WKNavigation *)navigation {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView didCommitNavigation:navigation];
}
}
%new
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView didFinishNavigation:navigation];
}
}
%new
- (void)webView:(WKWebView *)webView didFailNavigation:(WKNavigation *)navigation withError:(NSError *)error {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webView:webView didFailNavigation:navigation withError:error];
}
}
%new
- (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView {
if (self.hijackedNavigationDelegate) {
[(id<WKNavigationDelegate>)self.hijackedNavigationDelegate webViewWebContentProcessDidTerminate:webView];
}
}
%end
%hook UIWebView
%property (nonatomic, assign) id hijackedDelegate;
- (id)initWithFrame:(CGRect)arg1 {
UIWebView *orig = %orig;
if (orig) {
// Set the delegate initially.
orig.delegate = (id<UIWebViewDelegate>)orig;
}
return orig;
}
// Update the hijacked delegate if XEN controller
- (void)setDelegate:(id<UIWebViewDelegate>)delegate {
if([delegate isKindOfClass:[objc_getClass("XENHWidgetController") class]]){
if(![delegate isEqual:self]){
self.hijackedDelegate = delegate;
%orig((id<UIWebViewDelegate>)self);
}
}else{
%orig;
}
}
%new
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
// Allow other tweaks etc to handle this one.
if ([self._xenhtml isEqual:@NO]) {
if (self.hijackedDelegate) {
return [self.hijackedDelegate webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
} else {
return YES;
}
}
NSString *url = [[request URL] absoluteString];
if ([url hasPrefix:@"xeninfo:"]) {
NSArray *components = [url componentsSeparatedByString:@":"];
NSString *function = [components objectAtIndex:1];
// Pass through the function and parameters through to the widget manager.
NSString *parameter = components.count > 2 ? [components objectAtIndex:2] : @"";
Xlog(@"Recieved a command: '%@' with parameter '%@'", function, parameter);
// Send to widget manager.
[[XIWidgetManager sharedInstance] widget:self didRequestAction:function withParameter:parameter];
// Make sure to cancel this navigation!
return NO;
} else {
return YES;
}
}
%new
- (void)webViewDidStartLoad:(UIWebView *)webView {
if (self.hijackedDelegate)
[self.hijackedDelegate webViewDidStartLoad:webView];
}
%new
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
if (self.hijackedDelegate)
[self.hijackedDelegate webView:webView didFailLoadWithError:error];
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Battery Information Hooks
///////////////////////////////////////////////////////////////
#import "Battery/XIInfoStats.h"
%hook SBUIController
- (void)updateBatteryState:(id)arg1{
%orig;
// Forward message that new data is available
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIInfoStats topic]];
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Music Hooks
///////////////////////////////////////////////////////////////
#import "Music/XIMusicHeaders.h"
#import "Music/XIMusic.h"
static MPUNowPlayingController *globalMPUNowPlaying;
/*
Used for iOS 11 and 11.1.2 not 11.3
*/
static long shuffle;
static long repeat;
%hook MPCPlaybackEngineMiddleware
%new
+(long)getRepeat{
return repeat;
}
%new
+(long)getShuffle{
return shuffle;
}
-(long long)playerRepeatType:(long long)arg1 chain:(id)arg2{
repeat = arg1;
return %orig;
}
-(long long)playerShuffleType:(long long)arg1 chain:(id)arg2{
shuffle = arg1;
return %orig;
}
%end
NSMutableDictionary* xen_metaData = [[NSMutableDictionary alloc] init];
%hook MRContentItem
%new
+(id)_xeninfo_metaData{
return xen_metaData;
}
-(id)itemMetadata{
MRContentItemMetadata* meta = %orig;
if([meta duration] > 0){
[xen_metaData setValue:[NSNumber numberWithDouble:[meta duration]] forKey:@"duration"];
[xen_metaData setValue:[NSNumber numberWithDouble:[meta elapsedTime]] forKey:@"elapsed"];
[xen_metaData setValue:([meta title] ? [meta title] : @"") forKey:@"title"];
[xen_metaData setValue:([meta albumName] ? [meta albumName] : @"") forKey: @"albumName"];
[xen_metaData setValue:([meta trackArtistName] ? [meta trackArtistName] : @"") forKey: @"artistName"];
}
return meta;
}
%end
%hook SBMediaController
/*
Note: Delay needed othewise info isn't correct
Example: If you press pause it will still say isPlaying.
*/
- (void)_nowPlayingInfoChanged{
%orig;
dispatch_time_t delay = dispatch_time(DISPATCH_TIME_NOW, NSEC_PER_SEC * 0.5);
dispatch_after(delay, dispatch_get_main_queue(), ^(void){
// Forward message that new data is available after delay
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIMusic topic]];
});
}
//iOS 11>
- (void)_mediaRemoteNowPlayingInfoDidChange:(id)arg1 {
%orig;
dispatch_time_t delay = dispatch_time(DISPATCH_TIME_NOW, NSEC_PER_SEC * 0.5);
dispatch_after(delay, dispatch_get_main_queue(), ^(void){
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIMusic topic]];
});
}
%end
%hook MPUNowPlayingController
- (id)init {
id orig = %orig;
if (orig) {
globalMPUNowPlaying = orig;
}
return orig;
}
%new
+(id)_xeninfo_MPUNowPlayingController{
return globalMPUNowPlaying;
}
%new
+(id)_xeninfo_albumArt {
if (!globalMPUNowPlaying){
MPUNowPlayingController *nowPlayingController = [[objc_getClass("MPUNowPlayingController") alloc] init];
[nowPlayingController startUpdating];
return [nowPlayingController currentNowPlayingArtwork];
}
return [globalMPUNowPlaying currentNowPlayingArtwork];
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Statusbar state
///////////////////////////////////////////////////////////////
#import "Statusbar/XIStatusBar.h"
%hook SBStatusBarStateAggregator
- (void)_notifyItemChanged:(int)arg1{
%orig;
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIStatusBar topic]];
}
-(void)_updateDataNetworkItem{
%orig;
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIStatusBar topic]];
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Display state
///////////////////////////////////////////////////////////////
// iOS 9
%hook SBLockScreenViewController
-(void)_handleDisplayTurnedOff {
%orig;
[[XIWidgetManager sharedInstance] noteDeviceDidEnterSleep];
}
// When in a phone call, this code is not run.
- (void)_handleDisplayTurnedOnWhileUILocked:(id)locked {
[[XIWidgetManager sharedInstance] noteDeviceDidExitSleep];
%orig;
}
%end
// iOS 10
%hook SBLockScreenManager
- (void)_handleBacklightLevelChanged:(NSNotification*)arg1 {
%orig;
if ([UIDevice currentDevice].systemVersion.floatValue >= 10.0) {
NSDictionary *userInfo = arg1.userInfo;
CGFloat newBacklight = [[userInfo objectForKey:@"SBBacklightNewFactorKey"] floatValue];
CGFloat oldBacklight = [[userInfo objectForKey:@"SBBacklightOldFactorKey"] floatValue];
if (newBacklight == 0.0) {
[[XIWidgetManager sharedInstance] noteDeviceDidEnterSleep];
} else if (oldBacklight == 0.0 && newBacklight > 0.0) {
[[XIWidgetManager sharedInstance] noteDeviceDidExitSleep];
}
}
}
%end
// iOS 11
%hook SBScreenWakeAnimationController
- (void)_handleAnimationCompletionIfNecessaryForWaking:(_Bool)wokeLS {
if (!wokeLS) {
[[XIWidgetManager sharedInstance] noteDeviceDidEnterSleep];
}
%orig;
}
- (void)_startWakeAnimationsForWaking:(_Bool)arg1 animationSettings:(id)arg2 {
if (arg1) {
[[XIWidgetManager sharedInstance] noteDeviceDidExitSleep];
}
%orig;
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Alarms
///////////////////////////////////////////////////////////////
#import "Alarms/XIAlarms.h"
// iOS 10 and 11
%hook SBClockNotificationManager
- (void)_updateAlarmStatusBarItemForPendingNotificationRequests:(id)arg1 {
%orig;
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIAlarms topic]];
}
%end
// iOS 12+
%hook MTAlarmManagerExportedObject
-(void)alarmsAdded:(id)arg1 {
%orig;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIAlarms topic]];
});
}
-(void)alarmsUpdated:(id)arg1 {
%orig;
Xlog(@"Alarms updated: %@", arg1);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIAlarms topic]];
});
}
-(void)alarmsRemoved:(id)arg1 {
%orig;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIAlarms topic]];
});
}
-(void)alarmFired:(id)arg1 {
%orig;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[[XIWidgetManager sharedInstance] requestRefreshForDataProviderTopic:[XIAlarms topic]];
});
}
%end
///////////////////////////////////////////////////////////////
#pragma mark Constructor
///////////////////////////////////////////////////////////////
%ctor {
Xlog(@"Injecting...");
// Load Weather.framework if needed
dlopen("/System/Library/PrivateFrameworks/Weather.framework/Weather", RTLD_NOW);
%init;
}