|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 |
-
- #import "Reddit.h"
-
- static CGFloat pushshiftRequestTimeoutValue;
- static BOOL isRedditEnabled;
-
- static NSArray *redditVersion;
-
- %group Reddit_v4_current
-
- %hook CommentTreeNode
- %property(assign,nonatomic)id commentTreeHeaderNode;
- %property(assign,nonatomic)id commentTreeCommandBarNode;
- %end
-
- %hook CommentTreeHeaderView
-
- -(void) layoutSubviews{
- %orig;
-
- [[self commentTreeNode] setCommentTreeHeaderNode:self];
- }
-
- %end
-
- %hook CommentTreeHeaderNode
-
- -(void) didLoad{
- %orig;
-
- [[self commentTreeNode] setCommentTreeHeaderNode:self];
- }
- %end
-
-
- %hook CommentTreeCommandBarNode
-
- -(void) didLoad{
- %orig;
-
- [[self commentTreeNode] setCommentTreeCommandBarNode:self];
- }
- %end
-
-
- %hook CommentActionSheetViewController
-
- -(void) setItems:(id) arg1{
-
- UIImage* origImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
-
- CGSize existingImageSize = [[arg1[0] leftIconImage] size];
- CGFloat scale = origImage.size.width / existingImageSize.width;
-
- UIImage *newImage = [UIImage imageWithCGImage:[origImage CGImage] scale:scale orientation:origImage.imageOrientation];
-
- id undeleteItem = [[%c(RUIActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self comment]];
-
- %orig([arg1 arrayByAddingObject:undeleteItem]);
-
- [undeleteItem release];
-
- }
-
- -(void) handleDidSelectActionSheetItem:(id) arg1{
- %orig;
-
- if ([[arg1 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- id commentTreeNode = [self commentTreeNode];
- Comment *comment = [commentTreeNode comment];
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/comment/?ids=%@&fields=author,body",[[comment pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"body"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- NSMutableAttributedString *bodyMutableAttributedText;
-
- id themeManager;
- id isNightMode;
- id textColor;
-
- if ([redditVersion[1] integerValue] >= 45){
- themeManager = [[%c(ThemeManager) alloc] initWithAppSettings:[%c(AppSettings) sharedSettings]];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager darkTheme] bodyTextColor];
- } else{
- textColor = [[themeManager lightTheme] bodyTextColor];
- }
-
- [themeManager release];
-
- } else if ([redditVersion[1] integerValue] >= 37){
- themeManager = [[%c(ThemeManager) alloc] initWithTraitCollection:nil appSettings:[%c(AppSettings) sharedSettings]];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager nightTheme] bodyTextColor];
- } else{
- textColor = [[themeManager dayTheme] bodyTextColor];
- }
-
- [themeManager release];
-
- } else {
- themeManager = [%c(ThemeManager) sharedManager];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager nightTheme] bodyTextColor];
- } else{
- textColor = [[themeManager dayTheme] bodyTextColor];
- }
- }
-
- bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [bodyMutableAttributedText beginEditing];
- [bodyMutableAttributedText enumerateAttribute:NSForegroundColorAttributeName inRange:NSMakeRange(0, bodyMutableAttributedText.length) options:0 usingBlock:^(id _Nullable value, NSRange range, BOOL * _Nonnull stop) {
- [bodyMutableAttributedText removeAttribute:NSForegroundColorAttributeName range:range];
- [bodyMutableAttributedText addAttribute:NSForegroundColorAttributeName value:textColor range:range];
- }];
- [bodyMutableAttributedText endEditing];
-
- [comment setAuthor:author];
- [comment setBodyText:body];
- [comment setBodyRichTextAttributed:bodyMutableAttributedText];
- [comment setBodyAttributedText:bodyMutableAttributedText];
-
- [[commentTreeNode commentTreeHeaderNode] performSelectorOnMainThread:@selector(updateContentViewsForData:) withObject:comment waitUntilDone:NO];
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
-
- }];
- }
- }
- %end
-
-
- %hook PostDetailViewController
- %property(strong,nonatomic) id feedPostTextWithThumbnailNode;
- %property(strong,nonatomic) id feedPostDetailCellNode;
- %end
-
- %hook FeedPostDetailCellNode
-
- -(void) didLoad{
- %orig;
-
- [[[self delegate] viewController] setFeedPostDetailCellNode:self];
- }
- %end
-
- %hook PostActionSheetViewController
-
- -(void) setItems:(id) arg1{
-
- Post *post = [self post];
-
- if ([post isSelfPost]){
-
- UIImage* origImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
-
- CGSize existingImageSize = [[arg1[0] leftIconImage] size];
- CGFloat scale = origImage.size.width / existingImageSize.width;
-
- UIImage *newImage = [UIImage imageWithCGImage:[origImage CGImage] scale:scale orientation:origImage.imageOrientation];
-
- id undeleteItem = [[%c(RUIActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self post]];
-
- arg1 = [arg1 arrayByAddingObject:undeleteItem];
-
- [undeleteItem release];
- }
-
- %orig;
- }
-
-
- -(void) handleDidSelectActionSheetItem:(id) arg1{
- %orig;
-
- if ([[arg1 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- Post *post = [self post];
-
- if ([post isSelfPost]){
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/submission/?ids=%@&fields=author,selftext",[[post pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"selftext"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- id themeManager;
- id isNightMode;
- id textColor;
-
- if ([redditVersion[1] integerValue] >= 45){
- themeManager = [[%c(ThemeManager) alloc] initWithAppSettings:[%c(AppSettings) sharedSettings]];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager darkTheme] bodyTextColor];
- } else{
- textColor = [[themeManager lightTheme] bodyTextColor];
- }
-
- [themeManager release];
-
- } else if ([redditVersion[1] integerValue] >= 37){
- themeManager = [[%c(ThemeManager) alloc] initWithTraitCollection:nil appSettings:[%c(AppSettings) sharedSettings]];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager nightTheme] bodyTextColor];
- } else{
- textColor = [[themeManager dayTheme] bodyTextColor];
- }
-
- [themeManager release];
-
- } else {
- themeManager = [%c(ThemeManager) sharedManager];
- isNightMode = [[[%c(AccountManager) sharedManager] defaults] objectForKey:@"kUseNightKey"];
-
- if (isNightMode) {
- textColor = [[themeManager nightTheme] bodyTextColor];
- } else{
- textColor = [[themeManager dayTheme] bodyTextColor];
- }
- }
-
- NSMutableAttributedString *bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [bodyMutableAttributedText beginEditing];
- [bodyMutableAttributedText enumerateAttribute:NSForegroundColorAttributeName inRange:NSMakeRange(0, bodyMutableAttributedText.length) options:0 usingBlock:^(id _Nullable value, NSRange range, BOOL * _Nonnull stop) {
- [bodyMutableAttributedText removeAttribute:NSForegroundColorAttributeName range:range];
- [bodyMutableAttributedText addAttribute:NSForegroundColorAttributeName value:textColor range:range];
- }];
- [bodyMutableAttributedText endEditing];
-
- [post setSelfText:body];
- [post setAuthor:author];
- [post setSelfPostRichTextAttributed:bodyMutableAttributedText];
- [post setPreviewFeedPostTextString:bodyMutableAttributedText];
-
- if ([redditVersion[1] integerValue] >= 44){
- [[[[[self postActionSheetDelegate] controller] feedPostDetailCellNode] contentNode] configureSelfTextNode];
- } else if ([redditVersion[1] integerValue] >= 38) {
- [[[[self postActionSheetDelegate] controller] feedPostDetailCellNode] configureSelfTextNode];
- } else {
- [[[[self postActionSheetDelegate] controller] feedPostDetailCellNode] configureSelfTextNode];
- [[[[[self postActionSheetDelegate] controller] feedPostDetailCellNode] titleNode] configureNodes];
- }
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
- }];
- }
- }
- }
- %end
-
- %end
-
-
- %group Reddit_v4_ios10
-
- %hook CommentsViewController
-
- %new
- -(void) updateComments{
- [self reloadCommentsWithNewCommentsHighlight:NO autoScroll:NO animated:NO];
- }
-
- %new
- -(void) updatePostText{
-
- if ([redditVersion[1] integerValue] >= 2){
- [self reloadPostSection:YES];
- } else {
- [self feedPostViewDidUpdatePost:[self postData] shouldReloadFeed:NO];
- }
- }
-
- %end
-
- %hook CommentActionSheetViewController
-
- -(void) setItems:(id) arg1{
-
- UIImage* origImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
-
- CGSize existingImageSize = [[arg1[0] leftIconImage] size];
- CGFloat scale = origImage.size.width / existingImageSize.width;
-
- UIImage *newImage = [UIImage imageWithCGImage:[origImage CGImage] scale:scale orientation:origImage.imageOrientation];
-
- id undeleteItem;
-
- if ([redditVersion[1] integerValue] >= 18) {
- undeleteItem = [[%c(RUIActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self comment]];
- } else {
- undeleteItem = [[%c(ActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self comment]];
- }
-
- %orig([arg1 arrayByAddingObject:undeleteItem]);
-
- [undeleteItem release];
- }
-
- // >= 4.21
- -(void) handleDidSelectActionSheetItem:(id) arg1{
- %orig;
-
- if ([[arg1 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- Comment *comment = [self comment];
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/comment/?ids=%@&fields=author,body",[[comment pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"body"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- NSMutableAttributedString *bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [comment setAuthor:author];
- [comment setBodyText:body];
- [comment setBodyRichTextAttributed:bodyMutableAttributedText];
- [comment setBodyAttributedText:bodyMutableAttributedText];
-
- [[self commentActionSheetDelegate] performSelectorOnMainThread:@selector(updateComments) withObject:nil waitUntilDone:NO];
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
- }];
- }
- }
-
- // <= 4.20
- -(void) actionSheetViewController:(id) arg1 didSelectItem:(id) arg2{
- %orig;
-
- if ([[arg2 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- Comment *comment = [self comment];
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/comment/?ids=%@&fields=author,body",[[comment pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"body"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- NSMutableAttributedString *bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [comment setAuthor:author];
- [comment setBodyText:body];
- [comment setBodyAttributedText:bodyMutableAttributedText];
-
- if ([redditVersion[1] integerValue] >= 12) {
- [comment setBodyRichTextAttributed:bodyMutableAttributedText];
- }
-
- [[self commentActionSheetDelegate] performSelectorOnMainThread:@selector(updateComments) withObject:nil waitUntilDone:NO];
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
- }];
- }
- }
- %end
-
-
- %hook PostActionSheetViewController
-
- -(void) setItems:(id) arg1{
-
- Post *post = [self post];
-
- if ([post isSelfPost]){
-
- UIImage* origImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
-
- CGSize existingImageSize = [[arg1[0] leftIconImage] size];
- CGFloat scale = origImage.size.width / existingImageSize.width;
-
- UIImage *newImage = [UIImage imageWithCGImage:[origImage CGImage] scale:scale orientation:origImage.imageOrientation];
-
- id undeleteItem;
-
- if ([redditVersion[1] integerValue] >= 18) {
- undeleteItem = [[%c(RUIActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self post]];
- } else {
- undeleteItem = [[%c(ActionSheetItem) alloc] initWithLeftIconImage:newImage text:@"TF did that say?" identifier:@"undeleteItemIdentifier" context:[self post]];
- }
-
- arg1 = [arg1 arrayByAddingObject:undeleteItem];
-
- [undeleteItem release];
- }
-
- %orig;
- }
-
- // >= 4.21
- -(void) handleDidSelectActionSheetItem:(id) arg1{
- %orig;
-
- if ([[arg1 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- Post *post = [self post];
-
- if ([post isSelfPost]){
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/submission/?ids=%@&fields=author,selftext",[[post pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"selftext"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- NSMutableAttributedString *bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [post setSelfText:body];
- [post setAuthor:author];
- [post setSelfPostRichTextAttributed:bodyMutableAttributedText];
- [post setPreviewFeedPostTextString:bodyMutableAttributedText];
-
- [[self postActionSheetDelegate] performSelectorOnMainThread:@selector(updatePostText) withObject:nil waitUntilDone:NO];
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
- }];
- }
- }
- }
-
- // <= 4.20
- -(void) actionSheetViewController:(id) arg1 didSelectItem:(id) arg2{
- %orig;
-
- if ([[arg2 identifier] isEqualToString:@"undeleteItemIdentifier"]){
-
- [self dismissViewControllerAnimated:YES completion:nil];
-
- Post *post = [self post];
-
- if ([post isSelfPost]){
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
-
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/submission/?ids=%@&fields=author,selftext",[[post pk] componentsSeparatedByString:@"_"][1]]]];
- [request setHTTPMethod:@"GET"];
- [request setTimeoutInterval:pushshiftRequestTimeoutValue];
-
- [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
- if ([[jsonData objectForKey:@"data"] count] != 0){
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"selftext"];
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[pushshift was unable to archive this]";
- }
- } else {
- body = @"[pushshift has not archived this yet]";
- }
- } else if (error != nil || data == nil){
- body = [NSString stringWithFormat:@"[an error occured while attempting to contact pushshift api (%@)]", [error localizedDescription]];
- }
-
- NSMutableAttributedString *bodyMutableAttributedText = [[NSMutableAttributedString alloc] initWithAttributedString:[%c(NSAttributedStringMarkdownParser) attributedStringUsingCurrentConfig:body]];
-
- [post setAuthor:author];
- [post setSelfText:body];
- [post setSelfTextAttributed:bodyMutableAttributedText];
-
- if ([redditVersion[1] integerValue] >= 8) {
- [post setSelfPostRichTextAttributed:bodyMutableAttributedText];
- }
-
- if ([redditVersion[1] integerValue] >= 15) {
- [post setPreviewFeedPostTextString:bodyMutableAttributedText];
- }
-
- [[self postActionSheetDelegate] performSelectorOnMainThread:@selector(updatePostText) withObject:nil waitUntilDone:NO];
-
- [request release];
- [queue release];
- [bodyMutableAttributedText release];
- }];
- }
- }
- }
- %end
-
- %end
-
-
- //outdated and unchanged from first version of this tweak...
- //TODO: move button to menu, add post support, make async requests once I feel like doing it
- %group Reddit_v3
-
- %hook CommentView
-
- %new
- -(void) buttonAction {
-
- id commentsViewController = [self delegate];
- id comment = [self comment];
-
- NSError* error;
-
- NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
- [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.pushshift.io/reddit/search/comment/?ids=%@&fields=author,body",[comment pkWithoutPrefix]]]];
- [request setHTTPMethod:@"GET"];
-
- NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];
-
- NSString *author = @"[author]";
- NSString *body = @"[body]";
-
- if (data != nil && error == nil){
-
- id jsonData = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
-
- author = [[jsonData objectForKey:@"data"][0] objectForKey:@"author"];
- body = [[jsonData objectForKey:@"data"][0] objectForKey:@"body"];
-
- if ([body isEqualToString:@"[deleted]"] || [body isEqualToString:@"[removed]"]){
- body = @"[comment was unable to be archived]";
- }
-
- } else if (error != nil || data == nil){
- body = @"[an error occured]";
- }
-
- [comment setValue:author forKey:@"author"];
-
- [comment setValue:[%c(MarkDownParser) attributedStringFromMarkdownString: body] forKey:@"bodyAttributedText"];
- [comment setValue:body forKey:@"bodyText"];
-
- [commentsViewController reloadCommentsWithNewCommentsHighlight:NO autoScroll:NO animated:NO];
- }
-
-
- -(id) initWithFrame:(id)arg1{
- id orig = %orig;
- id commandView = [self commandView];
-
- UIButton *undeleteButton = [UIButton buttonWithType:UIButtonTypeCustom];
- [undeleteButton addTarget:self action:@selector(buttonAction) forControlEvents:UIControlEventTouchUpInside];
-
- UIImage* undeleteImage = [UIImage imageWithContentsOfFile:@"/var/mobile/Library/Application Support/TFDidThatSay/eye160dark.png"];
-
- [undeleteButton setImage:undeleteImage forState:UIControlStateNormal];
-
- [commandView setUndeleteButton:undeleteButton];
- [commandView addSubview:undeleteButton];
-
- return orig;
- }
-
-
- %end
-
-
- %hook CommentCommandView
- %property (assign, nonatomic) id undeleteButton;
-
- -(void) layoutSubviews{
- %orig;
-
- UIButton *button = [self undeleteButton];
-
- button.frame = CGRectMake([[self overflowButton ] frame].origin.x - 32, 0, 32, 32);
- }
- %end
-
- %end
-
-
- static void loadPrefs(){
- NSMutableDictionary *prefs = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/User/Library/Preferences/com.lint.undelete.prefs.plist"];
-
- if (prefs){
-
- if ([prefs objectForKey:@"isRedditEnabled"] != nil){
- isRedditEnabled = [[prefs objectForKey:@"isRedditEnabled"] boolValue];
- } else {
- isRedditEnabled = YES;
- }
-
- if ([prefs objectForKey:@"requestTimeoutValue"] != nil){
- pushshiftRequestTimeoutValue = [[prefs objectForKey:@"requestTimeoutValue"] doubleValue];
- } else {
- pushshiftRequestTimeoutValue = 10;
- }
-
- } else {
- isRedditEnabled = YES;
- pushshiftRequestTimeoutValue = 10;
- }
- }
-
- static void prefsChanged(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo) {
- loadPrefs();
- }
-
-
- %ctor{
- loadPrefs();
-
- NSString* processName = [[NSProcessInfo processInfo] processName];
- redditVersion = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"] componentsSeparatedByString:@"."];
-
- if ([processName isEqualToString:@"Reddit"]){
- if (isRedditEnabled) {
-
- CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, prefsChanged, CFSTR("com.lint.undelete.prefs.changed"), NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
-
- if ([redditVersion[0] isEqualToString:@"4"]){
- if ([redditVersion[1] integerValue] <= 32){
- %init(Reddit_v4_ios10);
- } else{
- %init(Reddit_v4_current);
- }
- } else if ([redditVersion[0] isEqualToString:@"3"]) {
- %init(Reddit_v3);
- }
- }
- }
- }
|