-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTweak.xm
292 lines (226 loc) · 8.8 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
// Developer By Azozz ALFiras
// github : https://github.com/AzozzALFiras
// Twitter : https://twitter.com/AzozzALFiras
#import <UIKit/UIKit.h>
@interface IGImageURL
-(CGFloat)width;
-(CGFloat)height;
-(NSURL*)url;
@end
@interface IGPhoto
{
NSArray *_originalImageVersions;
}
@end
@interface IGVideo
{
NSArray *_videoVersionDictionaries;
}
@end
@interface IGMedia{
NSInteger _mediaType;
}
-(id)photo;
-(id)video;
@end
@interface IGFeedItemPhotoCell{
IGMedia *_post;
}
@end
@interface IGModernFeedVideoCell
-(id)delegate;
@end
@interface IGFeedSectionController
-(id)media;
@end
@interface IGFeedItemUFICell
-(id)delegate;
@property (strong) UIButton * AFSocialActionButton;
@end
@interface IGSundialViewerVerticalUFI
-(id)delegate;
@end
@interface IGSundialViewerControlsOverlayView
-(id)video;
@end
@interface IGSundialViewerVideoCell
-(id)video;
@end
@interface IGSundialVideoPlaybackView : UIView{
IGVideo *_video;
}
@end
%hook IGFeedItemPhotoCell
-(void)feedPhotoDidDoubleTapToLike:(id)arg2 locationInfo:(id)info{
IGMedia *post = MSHookIvar<IGMedia*>(self,"_post");
IGPhoto *photo = [post photo];
NSArray *array = MSHookIvar<NSArray*>(photo,"_originalImageVersions");
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Pick your quality:"
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
for (int i = 0 ; i < array.count; i++){
IGImageURL *imageURL = array[i];
CGFloat width = [imageURL width];
CGFloat height = [imageURL height];
NSString * qualityString = [NSString stringWithFormat:@"%.0fx%.0f",height,width];
NSString *titleString = qualityString;
UIAlertAction *action = [UIAlertAction actionWithTitle:titleString style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
NSLog(@"Selected Value: %@",array[i]);
NSURL *urlToDownload = [imageURL url];
NSData *data = [NSData dataWithContentsOfURL:urlToDownload];
UIImage *img = [[UIImage alloc] initWithData:data];
UIImageWriteToSavedPhotosAlbum(img,nil,nil,nil);
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Instasave"
message:@"Photo Saved!"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
[alert addAction:defaultAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:YES completion:nil];
}];
[alertController addAction:action];
}
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:^(UIAlertAction *action) {
}];
[alertController addAction:cancelAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
}
%end
%hook IGModernFeedVideoCell
-(void)videoPlayerOverlayControllerDidDoubleTap:(id)arg1{
//if you are hooking and want to add the code from IGFeedItemUFICell you can use the -(id)delegate method to get an instance of IGFeedSectionController
//For Example:
/*
%hook IGFeedItemUFICell
-(void)didClickSaveButton{
id delegate = [self delegate];
then continue the code below:
*/
id sectionController = [self delegate];
id media = [sectionController media];
id video = [media video];
NSArray *myArr = MSHookIvar<NSArray*>(video,"_videoVersionDictionaries");
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Pick your quality:"
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
for (int i = 0; i < myArr.count; i++){
NSDictionary *dict = myArr[i];
NSString *width = [dict objectForKey:@"width"];
NSString *height = [dict objectForKey:@"height"];
NSString *URLString = [dict objectForKey:@"url"];
NSURL *URL = [NSURL URLWithString:URLString];
NSString * qualityString = [NSString stringWithFormat:@"%@ x %@",height,width];
NSString *titleString = qualityString;
UIAlertAction *action = [UIAlertAction actionWithTitle:titleString style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
NSLog(@"Selected Value: %@",myArr[i]);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSData *urlData = [NSData dataWithContentsOfURL:URL];
if ( urlData )
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectory,@"thefile.mp4"];
dispatch_async(dispatch_get_main_queue(), ^{
[urlData writeToFile:filePath atomically:YES];
UISaveVideoAtPathToSavedPhotosAlbum(filePath,nil,nil,nil);
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Instasave"
message:@"Video Saved!"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
[alert addAction:defaultAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:YES completion:nil];
});
}
});
}];
[alertController addAction:action];
}
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:^(UIAlertAction *action) {
}];
[alertController addAction:cancelAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
}
%end
%hook IGSundialVideoPlaybackView
%property (strong) UIButton * AFSocialButtonStory;
- (void)layoutSubviews{
%orig;
UIView* oldBt = [self viewWithTag:482];
if(oldBt) {
[oldBt removeFromSuperview];
}
self.AFSocialButtonStory = [UIButton buttonWithType:UIButtonTypeContactAdd];
self.AFSocialButtonStory.tag = 482;
[self.AFSocialButtonStory addTarget:self action:@selector(AFSocialSaveStoires) forControlEvents:UIControlEventTouchUpInside];
[self.AFSocialButtonStory setImage:[UIImage imageNamed:@InstaDownload] forState:UIControlStateNormal];
@try {
[self.AFSocialButtonStory setTintColor:[UIColor labelColor]];
}@catch(NSException*e){
}
self.AFSocialButtonStory.frame = CGRectMake(0, 0, 40, 40);
self.AFSocialButtonStory.center = self.center;
float coordXFactor = 2.6f;
@try {
if(self.delegate && [self.delegate respondsToSelector:@selector(currentStoryItem)]) {
coordXFactor = 3.6f;
}
}@catch(NSException*e){
}
self.AFSocialButtonStory.frame = CGRectMake(self.AFSocialButtonStory.frame.origin.x+(self.frame.size.width/coordXFactor), -4, self.AFSocialButtonStory.frame.size.width, self.AFSocialButtonStory.frame.size.height);
[self addSubview:self.AFSocialButtonStory];
}
%new
- (void)AFSocialSaveStoires{
}
-(void)gestureController:(id)controller didObserveLongPressBegin:(id)arg1{
IGVideo *vid = MSHookIvar<IGVideo*>(self,"_video");
NSArray *myArr = MSHookIvar<NSArray*>(vid,"_videoVersionDictionaries");
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Pick your quality:"
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
for (int i = 0; i < myArr.count; i++){
NSDictionary *dict = myArr[i];
NSString *width = [dict objectForKey:@"width"];
NSString *height = [dict objectForKey:@"height"];
NSString *URLString = [dict objectForKey:@"url"];
NSURL *URL = [NSURL URLWithString:URLString];
NSString * qualityString = [NSString stringWithFormat:@"%@ x %@",height,width];
NSString *titleString = qualityString;
UIAlertAction *action = [UIAlertAction actionWithTitle:titleString style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
NSLog(@"Selected Value: %@",myArr[i]);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSData *urlData = [NSData dataWithContentsOfURL:URL];
if ( urlData )
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectory,@"thefile.mp4"];
dispatch_async(dispatch_get_main_queue(), ^{
[urlData writeToFile:filePath atomically:YES];
UISaveVideoAtPathToSavedPhotosAlbum(filePath,nil,nil,nil);
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Instasave"
message:@"Video Saved!"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
[alert addAction:defaultAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:YES completion:nil];
});
}
});
}];
[alertController addAction:action];
}
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel"
style:UIAlertActionStyleCancel
handler:^(UIAlertAction *action) {
}];
[alertController addAction:cancelAction];
[[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
}
%end