Sync.swift 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // Copyright (C) 2016 Inigo Valentin
  2. //
  3. // This file is part of the Gasteizko Margolariak IOS app.
  4. //
  5. // The Gasteizko Margolariak IOS app is free software: you can
  6. // redistribute it and/or modify it under the terms of the
  7. // GNU General Public License as published by the Free Software
  8. // Foundation, either version 3 of the License, or (at your
  9. // option) any later version.
  10. //
  11. // The Gasteizko Margolariak IOS app is distributed in the
  12. // hope that it will be useful, but WITHOUT ANY WARRANTY;
  13. // without even the implied warranty of MERCHANTABILITY or
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
  15. // Public License for more details.
  16. //
  17. // You should have received a copy of the GNU General Public
  18. // License along with the Gasteizko Margolariak IOS app.
  19. // If not, see <http://www.gnu.org/licenses/>.
  20. import Foundation
  21. /**
  22. Class to handle server sync.
  23. */
  24. class Sync{
  25. /**
  26. Starts the sync process.
  27. */
  28. init(){
  29. let url = buildUrl();
  30. sync(url: url)
  31. }
  32. /**
  33. Builds the URL to perform the sync against.
  34. :returns: The URL.
  35. */
  36. func buildUrl() -> URL{
  37. let url = URL(string: "https://margolariak.com/API/v1/sync.php?client=com.margolariak.app")
  38. //TODO add parameters
  39. return url!
  40. }
  41. /**
  42. Performs an asynchronous sync.
  43. It fethes the info from the server and stores as Core Data
  44. :param: url The url to sync.
  45. */
  46. func sync(url: URL){
  47. //Synchronously get data
  48. let task = URLSession.shared.dataTask(with: url) { data, response, error in
  49. guard error == nil else {
  50. print("error")
  51. return
  52. }
  53. guard let data = data else {
  54. print("Data is empty")
  55. return
  56. }
  57. print("Got the Sync JSON")
  58. var strData = String(data:data, encoding: String.Encoding.utf8)
  59. let dataIdx = strData?.indexOf(target: "{\"data\"")
  60. strData = strData!.subStr(start: dataIdx!, end: strData!.length - 1)
  61. //TODO: do something with versions
  62. let dataActivities : [String] = self.getTable(data: strData!, table: "activity")
  63. }
  64. task.resume()
  65. }
  66. func getTable(data: String, table: String) -> [String]{
  67. let iS : Int? = data.indexOf(target: table)
  68. var str = data.subStr(start: iS!, end: data.length - 1)
  69. let iE : Int? = str.indexOf(target: "}]}")!
  70. str = str.subStr(start: 0, end: iE!)
  71. str = str.subStr(start: table.length + 3,end: str.length - 1)
  72. //Separate the entries
  73. var entries : [String] = str.components(separatedBy: "},{")
  74. //Modify the first and the last one to remove bracers
  75. entries[0] = entries[0].subStr(start: 1, end: entries[0].length - 1)
  76. entries[entries.count - 1] = entries[entries.count - 1].subStr(start: 0, end: entries[entries.count - 1].length - 2)
  77. //Return the array
  78. return entries
  79. }
  80. }