Downloader.swift 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Downloader.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 07/09/21.
  6. //
  7. import Foundation
  8. class Downloader {
  9. // class func loadFileSync(url: NSURL, completion:(_ path:String, _ error:NSError?) -> Void) {
  10. // let documentsUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first! as NSURL
  11. // let destinationUrl = documentsUrl.appendingPathComponent(url.lastPathComponent!)
  12. // if FileManager().fileExists(atPath: destinationUrl!.path) {
  13. // print("file already exists [\(String(describing: destinationUrl?.path))]")
  14. // completion(destinationUrl!.path, nil)
  15. // } else if let dataFromURL = NSData(contentsOf: url as URL){
  16. // if dataFromURL.write(to: destinationUrl!, atomically: true) {
  17. // print("file saved [\(String(describing: destinationUrl?.path))]")
  18. // completion(destinationUrl!.path, nil)
  19. // } else {
  20. // print("error saving file")
  21. // let error = NSError(domain:"Error saving file", code:1001, userInfo:nil)
  22. // completion(destinationUrl!.path, error)
  23. // }
  24. // } else {
  25. // let error = NSError(domain:"Error downloading file", code:1002, userInfo:nil)
  26. // completion(destinationUrl!.path, error)
  27. // }
  28. // }
  29. //
  30. // class func loadFileAsync(url: NSURL, completion:(_ path:String, _ error:NSError?) -> Void) {
  31. // let documentsUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first! as NSURL
  32. // let destinationUrl = documentsUrl.appendingPathComponent(url.lastPathComponent!)
  33. // if FileManager().fileExists(atPath: destinationUrl!.path) {
  34. // print("file already exists [\(String(describing: destinationUrl?.path))]")
  35. // completion(destinationUrl!.path, nil)
  36. // } else {
  37. // let sessionConfig = URLSessionConfiguration.default
  38. // let session = URLSession(configuration: sessionConfig, delegate: nil, delegateQueue: nil)
  39. // let request = NSMutableURLRequest(url: url as URL)
  40. // request.httpMethod = "GET"
  41. // let task = session.dataTask(with: request as URLRequest, completionHandler: { (data: Data?, response: URLResponse?, error: Error?) -> Void in
  42. // if (error == nil) {
  43. // if let response = response as? HTTPURLResponse {
  44. // print("response=\(response)")
  45. // if response.statusCode == 200 {
  46. // if data.writeToURL(destinationUrl, atomically: true) {
  47. // print("file saved [\(destinationUrl!.path)]")
  48. // completion(destinationUrl!.path, error as NSError?)
  49. // } else {
  50. // print("error saving file")
  51. // let error = NSError(domain:"Error saving file", code:1001, userInfo:nil)
  52. // completion(destinationUrl!.path, error)
  53. // }
  54. // }
  55. // }
  56. // }
  57. // else {
  58. // print("Failure: \(String(describing: error?.localizedDescription))");
  59. // completion(destinationUrl!.path, error as NSError?)
  60. // }
  61. // })
  62. // task.resume()
  63. // }
  64. // }
  65. }