DownFileViewController.m 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. //
  2. // DownFileViewController.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/8.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "DownFileViewController.h"
  9. #import "NoteBookShareVC.h"
  10. #import "SendInfoGroupVC.h"
  11. #import "DrawerView.h"
  12. #import "TabBarController.h"
  13. #import "MyTDGroupViewController.h"
  14. #import "FavoritesViewController.h"
  15. #import "MyTDTopicViewController.h"
  16. #import <Social/Social.h>
  17. #import "MoveViewController.h"
  18. @interface DownFileViewController ()<WKNavigationDelegate,WKUIDelegate,NoteBookShareVCDelegate>
  19. //@property (nonatomic, strong) UIImageView *imagview;
  20. //@property (nonatomic, strong) UIView *labelView;
  21. @property (nonatomic, strong) UIView *myFooterView;
  22. @property (nonatomic, strong) TDButton *otherButton;
  23. @property (nonatomic, strong) TDButton *shareButton;
  24. @property (strong, nonatomic) NoteBookShareVC * noteBookShareVC;
  25. @property (nonatomic, strong) WKWebView *webView;
  26. @property (nonatomic, strong) DrawerView *drawerView;
  27. @property(nonatomic,strong) UIDocumentInteractionController *documentInteractionController;
  28. // 分割
  29. @property(nonatomic,strong) UIView *sepView;
  30. @end
  31. @implementation DownFileViewController
  32. - (void)viewDidLoad {
  33. [super viewDidLoad];
  34. [self.view addSubview:self.myFooterView];
  35. [self.myFooterView mas_makeConstraints:^(MASConstraintMaker *make) {
  36. make.left.right.mas_equalTo(self.view);
  37. make.height.mas_offset(50);
  38. if (@available(iOS 11.0, *)) {
  39. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  40. } else {
  41. make.bottom.equalTo(self.view.mas_bottom);
  42. }
  43. }];
  44. [self.view addSubview:self.sepView];
  45. [self.sepView mas_makeConstraints:^(MASConstraintMaker *make) {
  46. make.left.right.equalTo(self.view);
  47. make.bottom.equalTo(self.myFooterView.mas_top);
  48. make.height.mas_equalTo(6);
  49. }];
  50. [self.view layoutIfNeeded];
  51. [self.view addSubview:self.webView];
  52. [self.webView mas_makeConstraints:^(MASConstraintMaker *make) {
  53. make.left.right.mas_equalTo(self.view);
  54. make.top.mas_equalTo(self.myNavigationBar.mas_bottom);
  55. make.bottom.equalTo(self.sepView.mas_top);
  56. }];
  57. self.myNavigationBar.titleLabel.text = self.model.Title;
  58. [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.model.Url]]];
  59. [[UtilsTools getWindow] addSubview:self.noteBookShareVC.view];
  60. }
  61. - (void)openFileWithURL:(NSURL *)URL
  62. {
  63. NSLog(@"now open %@",URL);
  64. if (URL) {
  65. // Initialize Document Interaction Controller
  66. self.documentInteractionController = [UIDocumentInteractionController
  67. interactionControllerWithURL:URL];
  68. // Configure Document Interaction Controller
  69. self.documentInteractionController.delegate = self;
  70. // Preview File
  71. [self.documentInteractionController presentPreviewAnimated:YES];
  72. }
  73. }
  74. #pragma mark - button hander
  75. - (void)otherButtonHander{
  76. [self SystermOpenFile];
  77. // [self shareBtClick];
  78. }
  79. #pragma mark - Social 框架
  80. - (void)share3{
  81. // 判断服务是否可用
  82. [SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo];
  83. if (![SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo]) {
  84. NSLog(@"设置界面设置自己的账号");
  85. return;
  86. }
  87. // 弹出分享内容输入界面
  88. SLComposeViewController *cc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeSinaWeibo];
  89. [cc setInitialText:@"测试文字"]; // 初始化文字
  90. [cc addImage:[UIImage imageNamed:@"zhujun"]]; // 配图
  91. cc.completionHandler = ^(SLComposeViewControllerResult reulst) {
  92. if (reulst == SLComposeViewControllerResultDone) {
  93. NSLog(@"用户发送成功");
  94. } else {
  95. NSLog(@"用户发送失败");
  96. }
  97. };
  98. [self presentViewController:cc animated:YES completion:nil];
  99. // 额外设置
  100. }
  101. - (void)shareBtClick
  102. {
  103. NSString *textToShare = @"同岑";
  104. UIImage *imageToShare = [UIImage imageNamed:@"AppIcon"];
  105. NSURL *urlToShare = [NSURL URLWithString:self.model.Url];
  106. // 分享的图片不能为空
  107. NSArray *activityItems = @[textToShare, imageToShare, urlToShare];
  108. UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:activityItems applicationActivities:nil];
  109. // 排除(UIActivityTypeAirDrop)AirDrop 共享、(UIActivityTypePostToFacebook)Facebook
  110. activityVC.excludedActivityTypes = @[UIActivityTypePostToFacebook, UIActivityTypeAirDrop];
  111. [self presentViewController:activityVC animated:YES completion:nil];
  112. // 通过block接收结果处理
  113. UIActivityViewControllerCompletionWithItemsHandler completionHandler = ^(UIActivityType __nullable activityType, BOOL completed, NSArray * __nullable returnedItems, NSError * __nullable activityError){
  114. if (completed) {
  115. // [self showAlertViewWithMsg:@"恭喜你,分享成功!"];
  116. }else{
  117. // [self showAlertViewWithMsg:@"很遗憾,分享失败!"];
  118. }
  119. };
  120. activityVC.completionWithItemsHandler = completionHandler;
  121. }
  122. #pragma mark - 调用系统其他app 打开文件
  123. - (void)SystermOpenFile{
  124. WS(weakSelf);
  125. NSURL *url = [NSURL URLWithString:self.model.Url];
  126. NSURLRequest *request = [NSURLRequest requestWithURL:url];
  127. AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
  128. NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:^(NSProgress * _Nonnull downloadProgress) {
  129. NSLog(@"下载进度:%.0f%", downloadProgress.fractionCompleted * 100);
  130. } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
  131. NSString *downloadPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
  132. //打开文件管理器
  133. NSFileManager *fileManager = [NSFileManager defaultManager];
  134. //创建Download目录
  135. [fileManager createDirectoryAtPath:downloadPath withIntermediateDirectories:YES attributes:nil error:nil];
  136. //拼接文件路径
  137. NSString *filePath = [downloadPath stringByAppendingPathComponent:response.suggestedFilename];
  138. //返回文件位置的URL路径
  139. dispatch_async(dispatch_get_main_queue(), ^{
  140. weakSelf.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  141. [weakSelf.documentInteractionController setDelegate:weakSelf];
  142. [weakSelf.documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:weakSelf.view animated:YES];
  143. });
  144. return [NSURL fileURLWithPath:filePath];
  145. } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
  146. NSLog(@"下载完成");
  147. }];
  148. [downloadTask resume];
  149. }
  150. #pragma mark - 调用系统 打开文件分享文件
  151. - (void)systermShare{
  152. NSString *shareTitle = @"分享的标题";
  153. UIImage *shareImage = [UIImage imageNamed:@"me"];
  154. NSURL *shareUrl = [NSURL URLWithString:@"https://www.jianshu.com/u/acdcce712303"];
  155. NSArray *activityItems = @[shareTitle,
  156. shareImage,
  157. shareUrl]; // 必须要提供url 才会显示分享标签否则只显示图片
  158. UIActivityViewController *activityVC = [[UIActivityViewController alloc]
  159. initWithActivityItems:activityItems
  160. applicationActivities:nil];
  161. activityVC.excludedActivityTypes = [self excludetypes];
  162. activityVC.completionWithItemsHandler = ^(UIActivityType _Nullable activityType,
  163. BOOL completed,
  164. NSArray * _Nullable returnedItems,
  165. NSError * _Nullable activityError) {
  166. NSLog(@"activityType: %@,\n completed: %d,\n returnedItems:%@,\n activityError:%@",activityType,completed,returnedItems,activityError);
  167. };
  168. [self presentViewController:activityVC animated:YES completion:nil];
  169. }
  170. -(NSArray *)excludetypes{
  171. NSMutableArray *excludeTypesM = [NSMutableArray arrayWithArray:@[//UIActivityTypePostToFacebook,
  172. UIActivityTypePostToTwitter,
  173. UIActivityTypePostToWeibo,
  174. UIActivityTypeMessage,
  175. UIActivityTypeMail,
  176. UIActivityTypePrint,
  177. UIActivityTypeCopyToPasteboard,
  178. UIActivityTypeAssignToContact,
  179. UIActivityTypeSaveToCameraRoll,
  180. UIActivityTypeAddToReadingList,
  181. UIActivityTypePostToFlickr,
  182. UIActivityTypePostToVimeo,
  183. UIActivityTypePostToTencentWeibo,
  184. UIActivityTypeAirDrop,
  185. UIActivityTypeOpenInIBooks]];
  186. if ([[UIDevice currentDevice].systemVersion floatValue] >= 11.0) {
  187. if (@available(iOS 11.0, *)) {
  188. [excludeTypesM addObject:UIActivityTypeMarkupAsPDF];
  189. } else {
  190. // Fallback on earlier versions
  191. }
  192. }
  193. return excludeTypesM;
  194. }
  195. - (void)backButtonAction2:(UIButton *)sender {
  196. [self secondBarButtonItems];
  197. }
  198. - (void)secondBarButtonItems{
  199. [[UtilsTools getWindow] addSubview:self.drawerView];
  200. WS(weakSelf);
  201. self.drawerView.SelectDrawerBlock = ^(NSIndexPath * _Nonnull indexPath) {
  202. if ([weakSelf.navigationController.viewControllers count] > 1) {
  203. [weakSelf.navigationController popToRootViewControllerAnimated:NO];
  204. }
  205. if (indexPath.section == 0) {
  206. [[TabBarController sharedTabBarController] setSelectedIndex:indexPath.row];
  207. }else{
  208. ///@"站内信", @"通知", @"收藏",@"笔记", @"设置"
  209. switch (indexPath.row) {
  210. case 0:
  211. {
  212. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  213. }
  214. break;
  215. case 1:
  216. {
  217. [[TabBarController sharedTabBarController] setSelectedIndex:2];
  218. }
  219. break;
  220. default:
  221. {
  222. [[TabBarController sharedTabBarController] setSelectedIndex:3];
  223. }
  224. break;
  225. }
  226. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  227. [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(indexPath.row)}];
  228. });
  229. }
  230. };
  231. self.drawerView.frame = CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT);
  232. }
  233. - (DrawerView *)drawerView {
  234. if(!_drawerView) {
  235. _drawerView = [[DrawerView alloc] init];
  236. }
  237. return _drawerView;
  238. }
  239. - (TDButton *)otherButton{
  240. if (!_otherButton) {
  241. _otherButton = [[TDButton alloc]init];
  242. [_otherButton setTitle:@"其他应用打开" forState:UIControlStateNormal];
  243. [_otherButton setTitleColor:UIColorHex(666666) forState:UIControlStateNormal];
  244. [_otherButton setImage:IMG(@"更多") forState:UIControlStateNormal];
  245. [_otherButton addTarget:self action:@selector(otherButtonHander) forControlEvents:UIControlEventTouchUpInside];
  246. [[_otherButton titleLabel] setFont:[UIFont systemFontOfSize:15]];
  247. [_otherButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleTop imageTitleSpace:5];
  248. }
  249. return _otherButton;
  250. }
  251. - (TDButton *)shareButton{
  252. if (!_shareButton) {
  253. _shareButton = [[TDButton alloc]init];
  254. [_shareButton setTitle:@"转发" forState:UIControlStateNormal];
  255. [_shareButton setTitleColor:UIColorHex(666666) forState:UIControlStateNormal];
  256. [_shareButton setImage:IMG(@"转发") forState:UIControlStateNormal];
  257. [[_shareButton titleLabel] setFont:[UIFont systemFontOfSize:15]];
  258. [_shareButton addTarget:self action:@selector(shareButtonHander) forControlEvents:UIControlEventTouchUpInside];
  259. [_shareButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleTop imageTitleSpace:10];
  260. }
  261. return _shareButton;
  262. }
  263. - (UIView *)myFooterView{
  264. if(!_myFooterView){
  265. _myFooterView = [UIView new];
  266. [_myFooterView addSubview:self.otherButton];
  267. [_myFooterView addSubview:self.shareButton];
  268. [self.otherButton mas_makeConstraints:^(MASConstraintMaker *make) {
  269. make.left.equalTo(self.myFooterView).offset(40);
  270. make.centerY.equalTo(self.myFooterView);
  271. make.width.mas_equalTo(120);
  272. make.height.mas_equalTo(50);
  273. }];
  274. [self.shareButton mas_makeConstraints:^(MASConstraintMaker *make) {
  275. make.right.equalTo(self.myFooterView).offset(-20);
  276. make.centerY.equalTo(self.myFooterView);
  277. make.width.mas_equalTo(120);
  278. make.height.mas_equalTo(50);
  279. }];
  280. }
  281. return _myFooterView;
  282. }
  283. - (WKWebView *)webView {
  284. if (!_webView) {
  285. // 进行配置控制器
  286. WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
  287. // 实例化对象
  288. configuration.userContentController = [WKUserContentController new];
  289. // 调用JS方法
  290. // [configuration.userContentController addScriptMessageHandler:self name:@"uploadPersonImage"];
  291. //window.webkit.messageHandlers.uploadPersonImage.postMessage({body: 'goodsId=1212'}); js调用
  292. // 进行偏好设置
  293. WKPreferences *preferences = [WKPreferences new];
  294. preferences.javaScriptEnabled = YES;
  295. preferences.javaScriptCanOpenWindowsAutomatically = YES;
  296. preferences.minimumFontSize = 40.0;
  297. configuration.preferences = preferences;
  298. _webView = [[WKWebView alloc] init];
  299. // _webView = [[WKWebView alloc] initWithFrame:CGRectMake(0,kNavigationHeight,kGXScreenWidth,kGXScreenHeigh - kNavigationHeight - 71 - self.sepView.height) configuration:configuration];
  300. _webView.navigationDelegate = self;
  301. _webView.opaque = NO;
  302. // _webView.backgroundColor = [UIColor whiteColor];
  303. if (@available(ios 11.0,*)){ _webView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;}
  304. }
  305. return _webView;
  306. }
  307. // 页面开始加载时调用
  308. -(void)webView:(WKWebView *)webView didStartProvisionalNavigation:(WKNavigation *)navigation{
  309. SHOWLOADING
  310. }
  311. // 当内容开始返回时调用
  312. - (void)webView:(WKWebView *)webView didCommitNavigation:(WKNavigation *)navigation{
  313. REMOVESHOW
  314. }
  315. // 页面加载完成之后调用
  316. - (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{//这里修改导航栏的标题,动态改变
  317. REMOVESHOW
  318. }
  319. // 页面加载失败时调用
  320. - (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(WKNavigation *)navigation{
  321. [webView reload];
  322. }
  323. -(UIView *)sepView {
  324. if (!_sepView) {
  325. _sepView = [UIView new];
  326. _sepView.backgroundColor = kColorFromRGB(0xeeeeee);
  327. }
  328. return _sepView;
  329. }
  330. #pragma mark -转发
  331. - (void)shareButtonHander{
  332. [self.noteBookShareVC initNoteBookShareData];
  333. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  334. }
  335. - (NoteBookShareVC *)noteBookShareVC{
  336. if (_noteBookShareVC == nil) {
  337. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  338. [_noteBookShareVC.view setHidden:YES];
  339. _noteBookShareVC.delegate = self;
  340. }
  341. return _noteBookShareVC;
  342. }
  343. -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
  344. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  345. if ([typeName isEqualToString:@"发给微信好友"]) {
  346. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  347. }else if ([typeName isEqualToString:@"发到微博"]){
  348. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  349. }else if ([typeName isEqualToString:@"发到消息"]){
  350. }else if ([typeName isEqualToString:@"发到小组"]){
  351. [self returnToGroup];
  352. }else if ([typeName isEqualToString:@"发到笔记"]){
  353. [self returnToNote];
  354. }else if ([typeName isEqualToString:@"发到话题"]){
  355. [self returnToTopic];
  356. }else{
  357. }
  358. }
  359. - (void)returnToGroup
  360. {
  361. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  362. vc.type = CollectModel_Group;
  363. FlowAttachmentsModel * fModel = self.model;
  364. if (fModel.SoureTypeId != 301) {
  365. fModel.MinUrl = @"";
  366. }
  367. vc.sendModel = fModel;
  368. vc.isReturn = YES;
  369. [self.navigationController pushViewController:vc animated:YES];
  370. }
  371. - (void)returnToNote
  372. {
  373. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  374. vc.type = CollectModel_NoteBook;
  375. FlowAttachmentsModel * fModel = self.model;
  376. if (fModel.SoureTypeId != 301) {
  377. fModel.MinUrl = @"";
  378. }
  379. vc.sendModel = fModel;
  380. vc.isReturn = YES;
  381. [self.navigationController pushViewController:vc animated:YES];
  382. }
  383. - (void)returnToTopic
  384. {
  385. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  386. vc.type = CollectModel_NewTopic;
  387. FlowAttachmentsModel * fModel = self.model;
  388. if (fModel.SoureTypeId != 301) {
  389. fModel.MinUrl = @"";
  390. }
  391. vc.sendModel = fModel;
  392. vc.isReturn = YES;
  393. [self.navigationController pushViewController:vc animated:YES];
  394. }
  395. @end