AppDelegate.swift 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. //
  2. // AppDelegate.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2016/10/11.
  6. // Copyright © 2016年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. var navheight = CGFloat(0)
  10. @UIApplicationMain
  11. @objcMembers
  12. class AppDelegate: UIResponder, UIApplicationDelegate, JPUSHRegisterDelegate, WXApiDelegate, UITabBarControllerDelegate {
  13. //,WXApiDelegate
  14. var window: UIWindow?
  15. let openMerchants = OpeningMerchantsQybRequestEntity()
  16. let arrIcon = ["ion_tab_01", "ion_tab_02", "ion_tab_wallet", "ion_tab_04"]
  17. /// 融云appKey
  18. var rongYunAppkey = ""; //n19jmcy5n1da9//
  19. //微信appKey
  20. let wxAppKey = "wxa6b6403ce27573d1"
  21. /// 友盟appKey
  22. var umAppKey = "5cb15084570df3a22f001381"; //595d8990734be40a6500069a
  23. ///极光appkey
  24. var jpushAppKey = "9f1d705c47d3893d5e31aae4" //3b57540b3c44cdb07944f876
  25. var dicDefault = NSMutableDictionary()
  26. var mainTabbar: CustomTabBarController!
  27. var navController: MainNavigationController!
  28. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  29. //H5Manager.checkIsUse();
  30. if CommonValue.getDefaultUserInfoForString(key: "common_default_is_ss_password") == "" || CommonValue.getUserId() == "" {
  31. CommonValue.setDefaultUserInfoForString(value: "0", key: "common_default_is_ss_password")
  32. }
  33. window = UIWindow(frame: UIScreen.main.bounds)
  34. initCusService()
  35. //腾讯bug 上报
  36. let config = BuglyConfig()
  37. config.channel = "AppStore"
  38. //Bugly.start(withAppId: "eac41aea64")
  39. Bugly.start(withAppId: "eac41aea64", config: config)
  40. //禁止启动横屏时放开
  41. //application.setStatusBarOrientation(.portrait, animated: false);
  42. if ScreenHeight < ScreenWidth {
  43. ScreenWidth = UIScreen.main.bounds.size.height
  44. ScreenHeight = UIScreen.main.bounds.size.width
  45. }
  46. //地址
  47. let searchPaths = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
  48. print(searchPaths)
  49. UIApplication.shared.setStatusBarStyle(.lightContent, animated: false)
  50. mainTabbar = CustomTabBarController()
  51. // mainTabbar.delegate = self
  52. //mainTabbar.initMenuImageAnimation();//需要动画效果就加上
  53. //mainTabbar.initMenuBigCenterButton();//需要中间大按钮就加上
  54. navController = MainNavigationController(rootViewController: mainTabbar)
  55. //loadGuangGao();
  56. // initTabbarController()
  57. //navController.navigationBar.barTintColor = ThemeManager.sharedInstance().getNavBackgroudColor()
  58. //navController.navigationBar.tintColor = ThemeManager.sharedInstance().getNavBackgroudColor()
  59. navController.navigationBar.isTranslucent = false
  60. navController.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: ThemeManager.sharedInstance().getNavTitleColor()]
  61. GB_Nav = navController
  62. IQKeyboardManager.shared.enable = true
  63. var navImageName = "img_nav_common"
  64. if isIphoneX {
  65. navImageName = "img_nav_common_x"
  66. }
  67. navController.navigationBar.setBackgroundImage(UIImage(named: navImageName), for: .default)
  68. navController.navigationBar.alpha = 1
  69. window?.rootViewController = navController
  70. //微信支付时需要
  71. if !CommonUntils.getIsSimulator() {
  72. WXApi.registerApp(wxAppKey)
  73. }
  74. //初始化友盟
  75. if !CommonUntils.getIsSimulator() {
  76. initUMInfo()
  77. //初始化极光
  78. regusterJPush(launchOptions: launchOptions)
  79. }
  80. window?.makeKeyAndVisible()
  81. if !GlobalMethod.isLoginSuccess(){
  82. let vcvc = LoginViewController()
  83. GB_Nav.pushViewController(vcvc, animated: true)
  84. }
  85. // TalkingData.setExceptionReportEnabled(true);
  86. // TalkingData.sessionStarted("4070F01D80F349328DE5DFA70B712C49", withChannelId: "AppStore")
  87. initSystem()
  88. //getAddressSavePlist();
  89. if ScreenHeight == 812 {
  90. navheight = 88
  91. } else {
  92. navheight = 64
  93. }
  94. UIApplication.shared.applicationIconBadgeNumber = 0
  95. return true
  96. }
  97. ///集成客服
  98. func initCusService() {
  99. QYSDK.shared().registerAppId("de75afb7b0a388e038e03e6eb51d73d0", appName: "星创客")
  100. }
  101. func initCusServiceUserInfo() {
  102. let userInfo = QYUserInfo()
  103. userInfo.userId = CommonValue.getUserId()
  104. let dicName = ["key": "real_name", "value": CommonValue.getUserNickName()]
  105. let dicPhone = ["key": "mobile_phone", "value": CommonValue.getUserPhone()]
  106. let dicCode = ["key": "bankcard", "value": CommonValue.getUserRecCode(), "index": "0", "label": "推荐码"]
  107. let array = NSMutableArray(array: [dicName, dicPhone, dicCode])
  108. userInfo.data = CommonJSON.arrayToJson(arr: array)
  109. QYSDK.shared()?.setUserInfo(userInfo, authTokenVerificationResultBlock: { (succ) in
  110. print("====\(succ)===")
  111. })
  112. }
  113. let menu1 = HomeViewController()
  114. //初始化Tabbar
  115. func initTabbarController() {
  116. let menu2 = BusinessMainViewController()
  117. // let menu3 = StudyViewController();
  118. let menu3 = WalletMainViewController()
  119. let menu4 = MyViewController()
  120. menu1.tabBarItem.tag = 1001
  121. menu1.tabBarItem.image = UIImage.init(named: "")
  122. menu1.title = "首页"
  123. menu2.tabBarItem.tag = 1002
  124. menu2.tabBarItem.image = UIImage.init(named: "")
  125. menu2.title = "业务"
  126. menu3.tabBarItem.tag = 1003
  127. menu3.tabBarItem.image = UIImage.init(named: "")
  128. menu3.title = "钱包"
  129. menu4.tabBarItem.tag = 1004
  130. menu4.tabBarItem.image = UIImage.init(named: "")
  131. menu4.title = "我的"
  132. mainTabbar.viewControllers = [menu1, menu2, menu3, menu4]
  133. let frame = CGRect(x: 0, y: 0, width: ScreenWidth, height: 49)
  134. let bottomView = UIView(frame: frame)
  135. bottomView.backgroundColor = UIColor.white
  136. mainTabbar.tabBar.insertSubview(bottomView, at: 0)
  137. mainTabbar.tabBar.isOpaque = true
  138. let items = mainTabbar.tabBar.items
  139. for i in 0...arrIcon.count-1 {
  140. if i >= items!.count {
  141. break
  142. }
  143. let item = items![i]
  144. item.image = UIImage(named: "\(arrIcon[i])_n")?.withRenderingMode(.alwaysOriginal)
  145. item.selectedImage = UIImage(named: "\(arrIcon[i])_s")?.withRenderingMode(.alwaysOriginal)
  146. item.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: ThemeManager.sharedInstance().getTabbarDefaultFontColor()], for: .normal)
  147. item.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: ThemeManager.sharedInstance().getTabbarSelectedFontColor()], for: .highlighted)
  148. }
  149. }
  150. func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
  151. if CommonValue.getUserId() == "" {
  152. appDelegate.navController.pushViewController(LoginViewController(), animated: true)
  153. return false
  154. }
  155. return true
  156. }
  157. //初始化友盟
  158. func initUMInfo() {
  159. if umAppKey == "" {
  160. return
  161. }
  162. print("====初始化友盟====")
  163. //打开调度日志 分享
  164. UMSocialManager.default().openLog(true)
  165. UMSocialManager.default().umSocialAppkey = umAppKey
  166. UMSocialManager.default().setPlaform(.wechatSession, appKey: wxAppKey, appSecret: "", redirectURL: "http://mobile.umeng.com/social")
  167. //UMSocialManager.default().setPlaform(.QQ, appKey: "1105863397", appSecret: nil, redirectURL: "http://mobile.umeng.com/social")
  168. // UMSocialManager.default().setPlaform(.sina, appKey: "440352374", appSecret: nil, redirectURL: "http://mobile.umeng.com/social")
  169. // //统计
  170. // UMAnalyticsConfig.sharedInstance().appKey = umAppKey
  171. // UMAnalyticsConfig.sharedInstance().channelId = "AppStore"
  172. // MobClick.start(withConfigure: UMAnalyticsConfig.sharedInstance())
  173. }
  174. //极光注册
  175. func regusterJPush(launchOptions: [UIApplication.LaunchOptionsKey: Any]?) {
  176. if jpushAppKey == "" {
  177. return
  178. }
  179. print("====初始化极光====")
  180. UIRemoteNotificationType.badge
  181. print(UIDevice.current.systemVersion)
  182. //注册JPUSH
  183. regJpush()
  184. //JPUSHService.setupWithOption(launchOptions)
  185. JPUSHService.setup(withOption: launchOptions, appKey: jpushAppKey, channel: "Publish channel", apsForProduction: false)
  186. }
  187. func getValueForSystemVersion() -> Float {
  188. let str = UIDevice.current.systemVersion // as! String;
  189. let strs = str.split(s: ".")
  190. if strs.count >= 1 {
  191. return Float(strs[0] + "." + strs[1])!
  192. } else {
  193. return Float(str)!
  194. }
  195. }
  196. var timer: Timer!
  197. var isBackgroudRun = false
  198. /**
  199. 注册JPUSH
  200. */
  201. func regJpush() {
  202. if getValueForSystemVersion() >= Float(10.0) {
  203. let entity = JPUSHRegisterEntity()
  204. entity.types = Int(UIUserNotificationType.badge.rawValue) | Int(UIUserNotificationType.sound.rawValue) | Int(UIUserNotificationType.alert.rawValue)
  205. JPUSHService.register(forRemoteNotificationConfig: entity, delegate: self)
  206. } else if getValueForSystemVersion() >= Float(8.0) {
  207. regjpushtwo()
  208. } else {
  209. regjpushtwo()
  210. }
  211. }
  212. func regjpushtwo() {
  213. JPUSHService.register(forRemoteNotificationTypes: UIRemoteNotificationType.badge.rawValue | UIRemoteNotificationType.sound.rawValue, categories: nil)
  214. }
  215. @available(iOS 10.0, *)
  216. func jpushNotificationCenter(_ center: UNUserNotificationCenter!, willPresent notification: UNNotification!, withCompletionHandler completionHandler: ((Int) -> Void)!) {
  217. let userIf = notification.request.content.userInfo
  218. print("-----收到推送处理11111 运行中")
  219. completionHandler(Int(UNAuthorizationOptions.badge.rawValue))
  220. jPushinfo(userInfo: userIf as NSDictionary)
  221. completionHandler
  222. }
  223. @available(iOS 10.0, *)
  224. func jpushNotificationCenter(_ center: UNUserNotificationCenter!, didReceive response: UNNotificationResponse!, withCompletionHandler completionHandler: (() -> Void)!) {
  225. let userIf = response.notification.request.content.userInfo
  226. print("-----收到推送处理22222 后台")
  227. jPushinfo(userInfo: userIf as NSDictionary)
  228. completionHandler
  229. }
  230. func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
  231. JPUSHService.registerDeviceToken(deviceToken)
  232. }
  233. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) {
  234. JPUSHService.handleRemoteNotification(userInfo)
  235. }
  236. func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
  237. print("-----收到推送处理3333---=IOS 10以下自己判断前后台=")
  238. jPushinfo(userInfo: userInfo as NSDictionary)
  239. }
  240. func jPushinfo(userInfo: NSDictionary) {
  241. print("-----收到推送处理\n")
  242. print(userInfo)
  243. if userInfo["messageId"] as? String == nil {
  244. return
  245. } else {
  246. var strTitle = ""
  247. let dicAPS = userInfo["aps"] as? NSDictionary
  248. if dicAPS != nil {
  249. strTitle = dicAPS!.getString(key: "alert")
  250. }
  251. if isBackgroudRun {
  252. let view = CommonWebViewViewController()
  253. view.strTitle = strTitle
  254. view.url = "http://106.xingchuangke.net:8889/phoneMobile/messageWeb?id=\(userInfo["messageId"] as! String)"
  255. navController.pushViewController(view, animated: true)
  256. } else {
  257. CommonUntils.AlertView(controller: navController, title: "提示", message: "收到系统消息,是否立即查看?", buttons: ["立即查看"], style: .alert) {[weak self] (_, _) in
  258. let view = CommonWebViewViewController()
  259. view.strTitle = strTitle
  260. view.url = "http://106.xingchuangke.net:8889/phoneMobile/messageWeb?id=\(userInfo["messageId"] as! String)"
  261. self!.navController.pushViewController(view, animated: true)
  262. }
  263. }
  264. }
  265. }
  266. @objc func timerAction() {
  267. isBackgroudRun = false
  268. }
  269. func application(_ application: UIApplication, handleOpen url: URL) -> Bool {
  270. _ = UMSocialManager.default().handleOpen(url)
  271. return true
  272. }
  273. func applicationWillResignActive(_ application: UIApplication) {
  274. // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
  275. // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
  276. }
  277. func applicationDidEnterBackground(_ application: UIApplication) {
  278. isBackgroudRun = true
  279. print("====go Background===")
  280. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "defulat_notification_go_backgroud"), object: nil, userInfo: nil)
  281. // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
  282. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
  283. }
  284. func applicationWillEnterForeground(_ application: UIApplication) {
  285. reloadUserInfo()
  286. print("====go Foreground===")
  287. UIApplication.shared.applicationIconBadgeNumber = 0
  288. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "defulat_notification_go_foreground"), object: nil, userInfo: nil)
  289. // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
  290. }
  291. func applicationDidBecomeActive(_ application: UIApplication) {
  292. self.perform(#selector(AppDelegate.timerAction), with: nil, afterDelay: 2)
  293. print("====go BecomeActive===")
  294. if CommonValue.getIsValitePassword() {
  295. let guest = GuesturePasswordViewController()
  296. guest.type = 1
  297. appDelegate.navController.pushViewController(guest, animated: true)
  298. }
  299. // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
  300. }
  301. func applicationWillTerminate(_ application: UIApplication) {
  302. // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
  303. }
  304. var viewGuangGao: UIView!
  305. var imgGuangGao: UIImageView!
  306. var lblCloseTime: UILabel!
  307. var dicImageInfo: NSDictionary!
  308. //加载广告View
  309. func loadGuangGao() {
  310. viewGuangGao = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  311. //640*920 744
  312. if ScreenHeight <= 480 {
  313. imgGuangGao = UIImageView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenWidth * 1.16))
  314. } else {
  315. imgGuangGao = UIImageView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenWidth * 1.4375))
  316. }
  317. viewGuangGao.addSubview(imgGuangGao)
  318. //860*294
  319. let imgView = UIImageView(frame: CGRect(x: 0, y: ScreenHeight - (ScreenWidth * 0.34), width: ScreenWidth, height: ScreenWidth * 0.34))
  320. imgView.image = UIImage(named: "ad_logo_860x294_@1x")
  321. viewGuangGao.addSubview(imgView)
  322. viewGuangGao.layer.zPosition = 9999999
  323. lblCloseTime = UILabel(frame: CGRect(x: ScreenWidth - 85, y: 30, width: 70, height: 30))
  324. lblCloseTime.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x000000, alpha: 0.5)
  325. lblCloseTime.textColor = UIColor.white
  326. lblCloseTime.font = UIFont.systemFont(ofSize: 13)
  327. lblCloseTime.textAlignment = .center
  328. lblCloseTime.setCornerRadius(size: 4)
  329. lblCloseTime.isHidden = true
  330. viewGuangGao.addSubview(lblCloseTime)
  331. // window?.addSubview(viewGuangGao)
  332. appDelegate.navController.view.addSubview(viewGuangGao)
  333. //5秒后,未取回初始化数据就隐藏
  334. self.perform(#selector(autoHiddenGuangGao), with: nil, afterDelay: 6)
  335. }
  336. var isLoadGuangGao = false
  337. @objc func autoHiddenGuangGao() {
  338. if !isLoadGuangGao {
  339. hiddenGuangGao()
  340. }
  341. }
  342. //图片地址获取到后,调用显示图片,开始倒计时
  343. func loadGuangGaoImage(dic: NSDictionary) {
  344. isLoadGuangGao = true
  345. var imgUrl = ""
  346. if CommonUntils.isIphonex() {
  347. if dic["imageSpe"] != nil {
  348. imgUrl = dic["imageSpe"] as! String
  349. }
  350. } else {
  351. if dic["image"] != nil {
  352. imgUrl = dic["image"] as! String
  353. }
  354. }
  355. if imgUrl == "" {
  356. hiddenGuangGao()
  357. } else {
  358. lblCloseTime.isHidden = false
  359. imgGuangGao.sd_setImage(with: URL(string: imgUrl)!) {[weak self] (img, _, _, _) in
  360. self!.imgGuangGao.setSizeWidth(width: ScreenWidth)
  361. self!.imgGuangGao.setSizeHeight(height: ScreenWidth / img!.size.width * img!.size.height)
  362. self!.timerAD = Timer.scheduledTimer(timeInterval: 1, target: self!, selector: #selector(self!.refreshTime), userInfo: nil, repeats: true)
  363. self!.timerAD.fireDate = Date.distantPast
  364. }
  365. let btn = UIButton(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  366. viewGuangGao.addSubview(btn)
  367. btn.addTarget(self, action: #selector(btnGuangGaoClick), for: .touchUpInside)
  368. lblCloseTime.text = "\(count)s跳过"
  369. // self.perform(#selector(refreshTime), with: nil, afterDelay: 1) //好用
  370. // self.perform(#selector(refreshTime), with: nil, afterDelay: 2) //好用
  371. // self.perform(#selector(refreshTime), with: nil, afterDelay: 3) //好用
  372. }
  373. }
  374. var timerAD: Timer!
  375. //点击跳转到广告页
  376. @objc func btnGuangGaoClick() {
  377. count = 1
  378. hiddenGuangGao()
  379. // let view = CommonWebViewViewController()
  380. // view.isUseCurrentTitle = true;
  381. //
  382. // view.url = RequestURL.hostMain1 + (dicImageInfo["jump_url"] as! String) + "&_token=\(CommonValue.getUserToken())&build=9.3.4.0&appversion=\(CommonUntils.getSystemVersion())&deviceid=\(CommonUntils.getImei())&jssdk=1&clienttype=ios&version=56&network=&themecolor=12b8f6";
  383. // appDelegate.toViewController(vc: view)
  384. }
  385. var count = 3
  386. @objc func refreshTime() {
  387. if count == 1 {
  388. if timerAD != nil {
  389. timerAD.fireDate = Date.distantFuture
  390. }
  391. hiddenGuangGao()
  392. return
  393. } else if count < 1 {
  394. if timerAD != nil {
  395. timerAD.fireDate = Date.distantFuture
  396. }
  397. hiddenGuangGao()
  398. return
  399. }
  400. count -= 1
  401. lblCloseTime.text = "\(count)s跳过"
  402. }
  403. ///广告是否已经隐藏
  404. var isHiddenGuangeGao = false
  405. func hiddenGuangGao() {
  406. if isHiddenGuangeGao {
  407. return
  408. }
  409. isHiddenGuangeGao = true
  410. if viewGuangGao != nil {
  411. UIView.animate(withDuration: 0.6, animations: {
  412. self.viewGuangGao.alpha = 0
  413. self.viewGuangGao.transform = CGAffineTransform(scaleX: 1.1, y: 1.1)
  414. }, completion: { (_) in
  415. self.viewGuangGao.isHidden = true
  416. //弹屏广告放在这
  417. })
  418. }
  419. }
  420. var isInitSysteming = false
  421. var initSystemIsSucces = false
  422. ///初始化系统
  423. func initSystem() {
  424. if initSystemIsSucces || isInitSysteming {
  425. return
  426. }
  427. isInitSysteming = true
  428. let params = NSMutableDictionary()
  429. if CommonValue.getUserId() == "" {
  430. params.setValue("", forKey: "aid")
  431. } else {
  432. params.setValue(CommonValue.getUserId(), forKey: "aid")
  433. }
  434. let http = CommonValue.getHttp()
  435. let url = RequestURL.initProgram
  436. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  437. self!.isInitSysteming = false
  438. self!.initSystemIsSucces = true
  439. let json = json1 as! NSDictionary
  440. if isPrintLog {
  441. print(json)
  442. }
  443. let succeed = json.object(forKey: "succeed") as! String
  444. if succeed == "000" {
  445. let dataInfo = json["dataInfo"] as? NSDictionary
  446. CommonValue.setDefaultUserInfoForObject(value: dataInfo!, key: "common_default_init_data")
  447. self!.dicDefault.setDictionary(dataInfo! as! [AnyHashable: Any])
  448. RequestURL.qiNiuImageUrl = dataInfo!["qnUrl"] as! String
  449. //加载广告
  450. //self!.loadGuangGaoImage(dic: dataInfo!);
  451. self!.upgradeSystem()
  452. self!.reloadUserInfo()
  453. if self!.menu1.headerView != nil {
  454. self!.menu1.headerView.initView()
  455. }
  456. if self!.menu1.tableView != nil {
  457. self!.menu1.tableView.reloadData()
  458. }
  459. }
  460. }, failure: {[weak self] (_, _) -> Void in
  461. self!.isInitSysteming = false
  462. self!.reloadUserInfo()
  463. let obj = CommonValue.getDefaultUserInfoForObject(key: "common_default_init_data")
  464. if obj != nil && (obj as? NSDictionary) != nil {
  465. self!.dicDefault.setDictionary((obj as! NSDictionary) as! [AnyHashable: Any])
  466. RequestURL.qiNiuImageUrl = self!.dicDefault["qnUrl"] as! String
  467. //加载广告
  468. //self!.loadGuangGaoImage(dic: self!.dicDefault);
  469. } else {
  470. self!.hiddenGuangGao()
  471. }
  472. })
  473. }
  474. func upgradeSystem() {
  475. if UserDefault.object(forKey: launchView) == nil {
  476. return
  477. }
  478. if dicDefault["apkVersion"] as? NSDictionary != nil {
  479. let dicApkVersion = dicDefault["apkVersion"] as! NSDictionary
  480. if CommonUntils.getSystemVersion() != dicApkVersion.getString(key: "apkversion") {
  481. if CommonUntils.checkVersionIsUpload(serverVersion: dicApkVersion.getString(key: "apkversion")) {
  482. let viewAlert = CommonViewUntils.getViewForXIB(xibName: "UpdateAlertView") as! UpdateAlertView
  483. viewAlert.initView(alert: dicApkVersion.getString(key: "detail"), upgradeUrl: dicApkVersion.getString(key: "apkurl"))
  484. appDelegate.navController.showBackgroudView(viewContent: viewAlert, isCenter: true, clickOtherIsClose: false)
  485. return
  486. }
  487. }
  488. }
  489. }
  490. ///更新用户信息
  491. func reloadUserInfo() {
  492. if CommonValue.getUserId() == "" {
  493. return
  494. }
  495. let params = NSMutableDictionary()
  496. // let http = AFHTTPSessionManager()
  497. // http.requestSerializer.setValue(CommonValue.getUserId(), forHTTPHeaderField: "userId")
  498. // http.requestSerializer.setValue("1", forHTTPHeaderField: "phoneType")
  499. // http.requestSerializer.setValue(CommonUntils.getSystemVersion(), forHTTPHeaderField: "apkVersion")
  500. let http = CommonValue.getHttp()
  501. params.setValue(CommonValue.getUserId(), forKey: "userId")
  502. let url = RequestURL.findUserById
  503. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  504. print(json1)
  505. let json = json1 as! NSDictionary
  506. let succeed = json.object(forKey: "succeed") as! String
  507. self!.initCusServiceUserInfo()
  508. if succeed == "000" {
  509. let dataInfo = json["dataInfo"] as? NSDictionary
  510. if dataInfo != nil {
  511. CommonValue.setLoginUserInfo(loginUser: NSMutableDictionary(dictionary: dataInfo!))
  512. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "noti_reload_user"), object: nil, userInfo: nil)
  513. //self.jpushSetAlias(alias: CommonValue.getUserId())
  514. }
  515. }
  516. }, failure: { (_, _) -> Void in
  517. })
  518. }
  519. ///获取省市县并存到本地
  520. func getAddressSavePlist() {
  521. let params = NSMutableDictionary()
  522. let http = AFHTTPSessionManager()
  523. http.requestSerializer.setValue(CommonValue.getUserId(), forHTTPHeaderField: "userId")
  524. http.requestSerializer.setValue("1", forHTTPHeaderField: "phoneType")
  525. http.requestSerializer.setValue(CommonUntils.getSystemVersion(), forHTTPHeaderField: "apkVersion")
  526. params.setValue(CommonValue.getUserId(), forKey: "userId")
  527. let url = RequestURL.getProvincesOrCity
  528. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  529. let json = json1 as! NSDictionary
  530. let succeed = json.object(forKey: "succeed") as! String
  531. if succeed == "000" {
  532. let dataInfo = json["dataInfo"] as? NSArray
  533. if dataInfo != nil {
  534. dataInfo!.write(toFile: "\(CommonUntils.getAppPath())address1111.plist", atomically: true)
  535. print(CommonUntils.getAppPath())
  536. print("====保存成功=")
  537. }
  538. }
  539. }, failure: { (_, _) -> Void in
  540. })
  541. }
  542. // MARK: 状态栏点击事件
  543. override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
  544. for touch: AnyObject in touches {
  545. let t = touch as! UITouch
  546. if t.location(in: nil).y > 20 {
  547. return
  548. }
  549. }
  550. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "commo_stateBarClick"), object: nil)
  551. }
  552. // MARK: =========支付宝=========
  553. func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
  554. if url.host!.has(s: "safepay") {
  555. AlipaySDK.defaultService().processOrder(withPaymentResult: url, standbyCallback: { (content) in
  556. let nc = NotificationCenter.default
  557. nc.post(name: NSNotification.Name(rawValue: "notification_alipay"), object: String((content as! NSDictionary)["resultStatus"] as! String))
  558. })
  559. }
  560. UMSocialManager.default().handleOpen(url)
  561. WXApi.handleOpen(url, delegate: self)
  562. return true
  563. }
  564. func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
  565. if url.host!.has(s: "safepay") {
  566. AlipaySDK.defaultService().processOrder(withPaymentResult: url, standbyCallback: { (content) in
  567. let nc = NotificationCenter.default
  568. nc.post(name: NSNotification.Name(rawValue: "notification_alipay"), object: String((content as! NSDictionary)["resultStatus"] as! String))
  569. })
  570. }
  571. UMSocialManager.default().handleOpen(url)
  572. WXApi.handleOpen(url, delegate: self)
  573. return true
  574. }
  575. // MARK: 微信回调
  576. func onResp(_ resp: BaseResp) {
  577. print("微信回调\n\(resp.type)")
  578. print("微信回调\n\(resp.errCode)")
  579. print("微信回调\n\(resp.errStr)")
  580. let nc = NotificationCenter.default
  581. nc.post(name: NSNotification.Name(rawValue: "notification_weixinpay"), object: String(resp.errCode))
  582. }
  583. func setNavigationBarHidden(isHidden: Bool) {
  584. if navController != nil {
  585. navController.setNavigationBarHidden(isHidden, animated: false)
  586. }
  587. }
  588. }