OCWebDAVClient.h 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. //
  2. // OCWebDAVClient.h
  3. // OCWebDAVClient
  4. //
  5. // This class is based in https://github.com/zwaldowski/DZWebDAVClient. Copyright (c) 2012 Zachary Waldowski, Troy Brant, Marcus Rohrmoser, and Sam Soffes.
  6. //
  7. // Copyright (C) 2016, ownCloud GmbH. ( http://www.owncloud.org/ )
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining a copy
  10. // of this software and associated documentation files (the "Software"), to deal
  11. // in the Software without restriction, including without limitation the rights
  12. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. // copies of the Software, and to permit persons to whom the Software is
  14. // furnished to do so, subject to the following conditions:
  15. // The above copyright notice and this permission notice shall be included in
  16. // all copies or substantial portions of the Software.
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. // THE SOFTWARE.
  24. //
  25. //
  26. // Add : getNotificationServer & setNotificationServer
  27. // Add : getUserProfileServer
  28. // Add : Support for Favorite
  29. // Add : getActivityServer
  30. //
  31. // Author Marino Faggiana <m.faggiana@twsweb.it>
  32. // Copyright (c) 2017 TWS. All rights reserved.
  33. //
  34. #import "AFHTTPSessionManager.h"
  35. #import "OCHTTPRequestOperation.h"
  36. @class OCCommunication;
  37. @class OCChunkDto;
  38. /** The key for a uniform (MIME) type identifier returned from the property request methods. */
  39. extern NSString * _Nullable OCWebDAVContentTypeKey;
  40. /** The key for a unique entity identifier returned from the property request methods. */
  41. extern NSString * _Nullable OCWebDAVETagKey;
  42. /** The key for a content identifier tag returned from the property request methods. This is only supported on some servers, and usually defines whether the contents of a collection (folder) have changed. */
  43. extern NSString * _Nullable OCWebDAVCTagKey;
  44. /** The key for the creation date of an entity. */
  45. extern NSString * _Nullable OCWebDAVCreationDateKey;
  46. /** The key for last modification date of an entity. */
  47. extern NSString * _Nullable OCWebDAVModificationDateKey;
  48. @interface OCWebDAVClient : NSObject
  49. @property (readwrite, nonatomic, strong) NSMutableDictionary * _Nullable defaultHeaders;
  50. //On redirections AFNetworking lose the request method on iOS6 and set a GET, we use this as workarround
  51. @property (nonatomic, strong) NSString * _Nullable requestMethod;
  52. //We use this variable to return the url of a redirected server to detect if we receive any sesion expired on SSO server
  53. @property (nonatomic, strong) NSString * _Nullable redirectedServer;
  54. //We use this variable to get the Cookies from the storage provider
  55. @property (nonatomic, strong) NSString * _Nullable originalUrlServer;
  56. @property (nonatomic, strong) NSString * _Nullable postStringForShare;
  57. /**
  58. Sets the "Authorization" HTTP header set in request objects made by the HTTP client to a basic authentication value with Base64-encoded username and password. This overwrites any existing value for this header.
  59. @param username The HTTP basic auth username
  60. @param password The HTTP basic auth password
  61. */
  62. - (void)setAuthorizationHeaderWithUsername:(NSString * _Nonnull)username
  63. password:(NSString * _Nonnull)password;
  64. /**
  65. Sets the "Authorization" HTTP header set in request objects made by the HTTP client to a basic authentication value with Base64-encoded username and password. This overwrites any existing value for this header.
  66. @param cookieString The HTTP token to login on SSO Servers
  67. */
  68. - (void)setAuthorizationHeaderWithCookie:(NSString * _Nonnull) cookieString;
  69. /**
  70. Sets the "Authorization" HTTP header set in request objects made by the HTTP client to a token-based authentication value, such as an OAuth access token. This overwrites any existing value for this header.
  71. @param token The authentication token
  72. */
  73. - (void)setAuthorizationHeaderWithToken:(NSString * _Nonnull)token;
  74. /**
  75. Sets the "User-Agent" HTTP header
  76. @param userAgent -> String that indentifies the client app. Ex: "iOS-ownCloud"
  77. */
  78. - (void)setUserAgent:(NSString * _Nonnull)userAgent;
  79. /**
  80. Add Header
  81. */
  82. - (void)setDefaultHeader:(NSString *)header value:(NSString *)value;
  83. /**
  84. Enqueues an operation to move the object at a path to another path using a `MOVE` request.
  85. @param source The path to move.
  86. @param destination The path to move the item to.
  87. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  88. @param success A block callback, to be fired upon successful completion, with no arguments.
  89. @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and the network error that occurred.
  90. */
  91. - (void)movePath:(NSString * _Nonnull)source toPath:(NSString * _Nonnull)destination
  92. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  93. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  94. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  95. /**
  96. Enqueues an operation to delete the object at a path using a `DELETE` request.
  97. @param path The path for which to create a directory.
  98. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  99. @param success A block callback, to be fired upon successful completion, with no arguments.
  100. @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and the network error that occurred.
  101. */
  102. - (void)deletePath:(NSString * _Nonnull)path
  103. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  104. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  105. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  106. /**
  107. Enqueues a request to list the properties of a single entity using a `PROPFIND` request for the specified path.
  108. @param path The path for which to list the properties.
  109. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  110. @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a dictionary with the properties of the entity.
  111. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  112. @see listPath:success:failure:
  113. @see recursiveListPath:success:failure:
  114. */
  115. - (void)propertiesOfPath:(NSString * _Nonnull)path
  116. onCommunication: (OCCommunication * _Nonnull)sharedOCCommunication
  117. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  118. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  119. /**
  120. Enqueues a request to list the contents of a single collection and
  121. the properties of each object, including the properties of the
  122. collection itself, using a `PROPFIND` request.
  123. @param path The directory for which to list the contents.
  124. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  125. @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a dictionary with the properties of the directory and its contents.
  126. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  127. @see propertiesOfPath:success:failure:
  128. @see recursiveListPath:success:failure:
  129. */
  130. - (void)listPath:(NSString * _Nonnull)path depth:(NSString * _Nonnull)depth
  131. onCommunication: (OCCommunication * _Nonnull)sharedOCCommunication
  132. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject))success
  133. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  134. /**
  135. Enqueues a request to list the contents of a single collection and
  136. the properties of each object, including the properties of the
  137. collection itself, using a `PROPFIND` request.
  138. @param path The directory for which to list the contents.
  139. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  140. @param token User Session token
  141. @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a dictionary with the properties of the directory and its contents.
  142. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  143. @see propertiesOfPath:success:failure:
  144. @see recursiveListPath:success:failure:
  145. */
  146. - (void)listPath:(NSString * _Nonnull)path depth:(NSString * _Nonnull)depth
  147. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication withUserSessionToken:(NSString * _Nonnull)token
  148. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull, NSString * _Nonnull token))success
  149. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull, NSString * _Nonnull token))failure;
  150. /**
  151. */
  152. - (void)search:(NSString * _Nonnull)path folder:(NSString * _Nonnull)folder fileName:(NSString * _Nonnull)fileName depth:(NSString * _Nonnull)depth dateLastModified:(NSString * _Nonnull)dateLastModified contentType:(NSString * _Nonnull)contentType user:(NSString * _Nonnull)user userID:(NSString * _Nonnull)userID onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication withUserSessionToken:(NSString * _Nonnull)token success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull, NSString * _Nonnull token))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull, NSString * _Nonnull token))failure;
  153. /**
  154. */
  155. - (void)settingFavorite:(NSString * _Nonnull)path favorite:(BOOL)favorite onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication withUserSessionToken:(NSString * _Nonnull)token success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull, NSString * _Nonnull token))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull, NSString * _Nonnull token))failure;
  156. /**
  157. */
  158. - (void)listingFavorites:(NSString * _Nonnull)path folder:(NSString * _Nonnull)folder user:(NSString * _Nonnull)user userID:(NSString * _Nonnull)userID onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication withUserSessionToken:(NSString * _Nonnull)token success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull, NSString * _Nonnull token))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull, NSString * _Nonnull token))failure;
  159. /**
  160. Creates an `NSURLSessionDownloadTask` with the specified request for a local file.
  161. @param remoteSource is a string with the path of the file in the server
  162. @param localDestination is a string with the local device path for store the file
  163. @param defaultPriority is a bool with a flag to indicate if the download must be download inmediately of not.
  164. @param progress A progress object monitoring the current upload progress.
  165. @param success A block callback, to be fired upon successful completion, with NSURLResponse and string of URL of the filePath
  166. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  167. *
  168. @warning NSURLSession and NSRULSessionUploadTask only can be supported in iOS 7.
  169. */
  170. - (NSURLSessionDownloadTask * _Nonnull)downloadWithSessionPath:(NSString * _Nonnull)remoteSource toPath:(NSString * _Nonnull)localDestination defaultPriority:(BOOL)defaultPriority onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication progress:(void(^ _Nonnull)(NSProgress * _Nonnull progress))downloadProgress success:(void(^ _Nonnull)(NSURLResponse * _Nonnull response, NSURL * _Nonnull filePath))success failure:(void(^ _Nonnull)(NSURLResponse * _Nonnull response, NSError * _Nonnull error))failure;
  171. /**
  172. Enqueues a request to check the server to know the kind of authentication needed.
  173. @param path The path of the server.
  174. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  175. @param success A block callback, to be fired upon successful completion, with no arguments.
  176. @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and the network error that occurred.
  177. */
  178. - (void)checkServer:(NSString * _Nonnull)path onCommunication:
  179. (OCCommunication * _Nonnull)sharedOCCommunication
  180. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  181. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  182. /**
  183. Enqueues a request to creates a directory using a `MKCOL` request for the specified path.
  184. @param path The path for which to create a directory.
  185. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  186. @param success A block callback, to be fired upon successful completion, with no arguments.
  187. @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and the network error that occurred.
  188. */
  189. - (void)makeCollection:(NSString * _Nonnull)path
  190. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  191. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  192. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  193. /**
  194. Creates an `NSURLSessionUploadTask` with the specified request for a local file.
  195. @param localSource is a string with the path of the file to upload
  196. @param remoteDestination A remote path, relative to the HTTP client's base URL, to write the data to.
  197. @param progress A progress object monitoring the current upload progress.
  198. @param success A block callback, to be fired upon successful completion, with NSURLResponse and string of redirected server.
  199. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  200. *
  201. @warning NSURLSession and NSRULSessionUploadTask only can be supported in iOS 7.
  202. */
  203. - (NSURLSessionUploadTask * _Nonnull)putWithSessionLocalPath:(NSString * _Nonnull)localSource atRemotePath:(NSString * _Nonnull)remoteDestination onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication progress:(void(^ _Nonnull)(NSProgress * _Nonnull progress))uploadProgress success:(void(^ _Nonnull)(NSURLResponse * _Nonnull, NSString * _Nonnull))success failure:(void(^ _Nonnull)(NSURLResponse * _Nonnull, id _Nonnull, NSError * _Nonnull))failure failureBeforeRequest:(void(^ _Nonnull)(NSError * _Nonnull)) failureBeforeRequest;
  204. ///-----------------------------------
  205. /// @name requestForUserNameByCookie
  206. ///-----------------------------------
  207. /**
  208. * Method to obtain the User name by the cookie of the session
  209. *
  210. * @param NSString the cookie of the session
  211. *
  212. */
  213. - (void) requestUserNameOfServer:(NSString * _Nonnull) path byCookie:(NSString * _Nonnull) cookieString onCommunication:
  214. (OCCommunication * _Nonnull)sharedOCCommunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  215. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  216. ///-----------------------------------
  217. /// @name Get status of the server
  218. ///-----------------------------------
  219. /**
  220. * Method to get the json of the status.php common in the ownCloud servers
  221. *
  222. * @param serverPath -> url of the server
  223. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  224. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  225. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  226. *
  227. */
  228. - (void) getStatusOfTheServer:(NSString * _Nonnull)serverPath onCommunication:
  229. (OCCommunication * _Nonnull)sharedOCCommunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull responseObject))success
  230. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  231. ///-----------------------------------
  232. /// @name Get All the shared files and folders of a server
  233. ///-----------------------------------
  234. /**
  235. Method to get all the shared files fo an account by the server path and api
  236. @param serverPath -> The url of the server including the path of the Share API.
  237. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  238. @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a dictionary with the properties of the directory and its contents.
  239. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  240. */
  241. - (void)listSharedByServer:(NSString * _Nonnull)serverPath
  242. onCommunication: (OCCommunication * _Nonnull)sharedOCCommunication
  243. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull responseObject))success
  244. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  245. ///-----------------------------------
  246. /// @name Get All the shared files and folders of concrete folder
  247. ///-----------------------------------
  248. /**
  249. Method to get all the shared files fo an account by the server path and api
  250. @param serverPath -> The url of the server including the path of the Share API.
  251. @param path -> The path of the folder that we want to know the shared
  252. @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  253. @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a dictionary with the properties of the directory and its contents.
  254. @param failure A block callback, to be fired upon the failure of either the request or the parsing of the request's data, with two arguments: the request operation and the network or parsing error that occurred.
  255. */
  256. - (void)listSharedByServer:(NSString * _Nonnull)serverPath andPath:(NSString * _Nonnull) path
  257. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  258. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  259. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  260. ///-----------------------------------
  261. /// @name shareFileOrFolderByServer
  262. ///-----------------------------------
  263. /**
  264. * Method to share a file or folder with password
  265. *
  266. * @param serverPath -> NSString: Server path where we want to share a file or folder. Ex: http://10.40.40.20/owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares
  267. * @param filePath -> NSString: Path of the server where is the file. Ex: /File.pdf
  268. * @param password -> NSString: Password
  269. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  270. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  271. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  272. *
  273. */
  274. - (void)shareByLinkFileOrFolderByServer:(NSString * _Nonnull)serverPath andPath:(NSString * _Nonnull) filePath andPassword:(NSString * _Nonnull)password
  275. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  276. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  277. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  278. ///-----------------------------------
  279. /// @name shareFileOrFolderByServer
  280. ///-----------------------------------
  281. /**
  282. * Method to share a file or folder
  283. *
  284. * @param serverPath -> NSString: Server path where we want to share a file or folder. Ex: http://10.40.40.20/owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares
  285. * @param filePath -> NSString: Path of the server where is the file. Ex: /File.pdf
  286. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  287. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  288. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  289. *
  290. */
  291. - (void)shareByLinkFileOrFolderByServer:(NSString * _Nonnull)serverPath andPath:(NSString * _Nonnull) filePath
  292. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  293. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  294. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  295. ///-----------------------------------
  296. /// @name shareWith
  297. ///-----------------------------------
  298. /**
  299. * Method to share a file or folder with user and group
  300. *
  301. * @param userOrGroup -> NSString: user or group (You can get the shares id in the calls searchUsersAndGroupsWith....)
  302. * @param shareeType -> NSInteger: to set the type of sharee (user/group/federated)
  303. * @param serverPath -> NSString: Server path where we want to share a file or folder. Ex: http://10.40.40.20/owncloud/ocs/v2.php/apps/files_sharing/api/v1/sharees?format=json
  304. * @param filePath -> NSString: Path of the server where is the file. Ex: /File.pdf
  305. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  306. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  307. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  308. *
  309. */
  310. - (void)shareWith:(NSString * _Nonnull)userOrGroup shareeType:(NSInteger)shareeType inServer:(NSString * _Nonnull) serverPath andPath:(NSString * _Nonnull) filePath andPermissions:(NSInteger) permissions onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  311. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  312. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  313. ///-----------------------------------
  314. /// @name unShareFileOrFolderByServer
  315. ///-----------------------------------
  316. /**
  317. * Method to unshare a file or folder
  318. *
  319. * @param serverPath -> NSString: Server path with the id of the file or folder that we want to unshare Ex: http://10.40.40.20/owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares/44
  320. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  321. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  322. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  323. */
  324. - (void)unShareFileOrFolderByServer:(NSString * _Nonnull)serverPath
  325. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  326. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  327. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  328. ///-----------------------------------
  329. /// @name isShareFileOrFolderByServer
  330. ///-----------------------------------
  331. /**
  332. * Method to know if a share item still shared
  333. *
  334. * @param serverPath -> NSString: Server path with the id of the file or folder that we want know if is shared Ex: http://10.40.40.20/owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares/44
  335. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  336. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  337. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  338. */
  339. - (void)isShareFileOrFolderByServer:(NSString * _Nonnull)serverPath
  340. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  341. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success
  342. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  343. ///-----------------------------------
  344. /// @name updateShareItem
  345. ///-----------------------------------
  346. /**
  347. * Method to update a share link
  348. *
  349. * @param shareId -> NSInterger: Share id (You can get the shares id in the calls listSharedByServer....)
  350. * @param serverPath -> NSString: Server path with the id of the file or folder that we want know if is shared Ex: http://10.40.40.20/owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares/44
  351. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  352. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  353. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  354. */
  355. - (void) updateShareItem:(NSInteger)shareId ofServerPath:(NSString * _Nonnull)serverPath withPasswordProtect:(NSString * _Nonnull)password andExpirationTime:(NSString * _Nonnull)expirationTime andPermissions:(NSInteger)permissions
  356. onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication
  357. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success
  358. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  359. ///-----------------------------------
  360. /// @name searchUsersAndGroupsWith
  361. ///-----------------------------------
  362. /**
  363. * Method to search users or groups
  364. *
  365. * @param searchString -> NSString: Search string
  366. * @param serverPath -> NSString: Server path with the id of the file or folder that we want know if is shared Ex: http://10.40.40.20/owncloud/ocs/v2.php/apps/files_sharing/api/v1/sharees?format=json
  367. * @param page -> NSInteger: Number of page of the results (pagination support)
  368. * @param resultsPerPage -> NSInteger: Number of results per page (pagination support)
  369. * @param sharedOCCommunication Singleton of communication to add the operation on the queue.
  370. * @param success A block callback, to be fired upon successful completion, with two arguments: the request operation and a data with the json file.
  371. * @param failure A block callback, to be fired upon the failure of the request, with two arguments: the request operation and error.
  372. */
  373. - (void) searchUsersAndGroupsWith:(NSString * _Nonnull)searchString forPage:(NSInteger)page with:(NSInteger)resultsPerPage ofServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication
  374. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success
  375. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  376. - (void) getSharePermissionsFile:(NSString * _Nonnull)fileName onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success
  377. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  378. ///-----------------------------------
  379. /// @name Get the server capabilities
  380. ///-----------------------------------
  381. /**
  382. * Method read the capabilities of the server
  383. *
  384. * @param serverPath -> NSString server
  385. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  386. *
  387. * @return capabilities -> OCCapabilities
  388. *
  389. */
  390. - (void) getCapabilitiesOfServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success
  391. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  392. #pragma mark - Remote thumbnails
  393. ///-----------------------------------
  394. /// @name Get the thumbnail for a file
  395. ///-----------------------------------
  396. /**
  397. * Method to get the remote thumbnail for a file
  398. *
  399. * @param serverPath -> NSString server
  400. * @param filePath -> NSString file path
  401. * @param fileWidth -> NSInteger with the width size
  402. * @param fileHeight -> NSInteger with the height size
  403. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  404. *
  405. * @return nsData -> thumbnail of the file with the size requested
  406. *
  407. */
  408. - (OCHTTPRequestOperation * _Nonnull) getRemoteThumbnailByServer:(NSString * _Nonnull)serverPath ofFilePath:(NSString * _Nonnull)filePath withWidth:(NSInteger)fileWidth andHeight:(NSInteger)fileHeight onCommunication:(OCCommunication * _Nonnull)sharedOCComunication
  409. success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success
  410. failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  411. #pragma mark - Notification
  412. ///-----------------------------------
  413. /// @name Get the server Notification
  414. ///-----------------------------------
  415. /**
  416. * Method read the notification of the server
  417. *
  418. * @param serverPath -> NSString server
  419. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  420. *
  421. * @return listOfNotifications -> OCNotification
  422. *
  423. */
  424. - (void) getNotificationServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  425. ///-----------------------------------
  426. /// @name set server Notification
  427. ///-----------------------------------
  428. /**
  429. * Method read the notification of the server
  430. *
  431. * @param serverPath -> NSString server
  432. * @param type -> NSString "POST" "DELETE"
  433. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  434. *
  435. */
  436. - (void)setNotificationServer:(NSString * _Nonnull)serverPath type:(NSString * _Nonnull)type onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  437. ///-----------------------------------
  438. /// @name Subscribing at the Nextcloud server
  439. ///-----------------------------------
  440. /**
  441. * Method read the notification of the server
  442. *
  443. * @param serverPath -> NSString server
  444. * @param type -> NSString "POST" "DELETE"
  445. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  446. *
  447. */
  448. - (void)subscribingNextcloudServerPush:(NSString * _Nonnull)serverPath authorizationToken:(NSString * _Nonnull)authorizationToken pushTokenHash:(NSString * _Nonnull)pushTokenHash devicePublicKey:(NSString * _Nonnull)devicePublicKey proxyServerPath:(NSString * _Nonnull)proxyServerPath onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  449. - (void)subscribingPushProxy:(NSString * _Nonnull)serverPath authorizationToken:(NSString * _Nonnull)authorizationToken pushToken:(NSString * _Nonnull)pushToken deviceIdentifier:(NSString * _Nonnull)deviceIdentifier deviceIdentifierSignature:(NSString * _Nonnull)deviceIdentifierSignature userPublicKey:(NSString * _Nonnull)userPublicKey onCommunication:(OCCommunication * _Nonnull)sharedOCCommunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nonnull))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull, id _Nullable responseObject, NSError * _Nonnull))failure;
  450. ///-----------------------------------
  451. /// @name Get the server Notification
  452. ///-----------------------------------
  453. /**
  454. * Method read the notification of the server
  455. *
  456. * @param serverPath -> NSString server
  457. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  458. *
  459. * @return listOfActivity -> OCActivity
  460. *
  461. */
  462. - (void) getActivityServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  463. ///-----------------------------------
  464. /// @name Get the list of External sites
  465. ///-----------------------------------
  466. /**
  467. * Method read the notification of the server
  468. *
  469. * @param serverPath -> NSString server
  470. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  471. *
  472. * @return listOfExternalSites -> OCExternalSites
  473. *
  474. */
  475. - (void) getExternalSitesServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  476. ///-----------------------------------
  477. /// @name Get User Profile
  478. ///-----------------------------------
  479. /**
  480. * Method read the notification of the server
  481. *
  482. * @param serverPath -> NSString server
  483. * @param sharedOCCommunication -> OCCommunication Singleton of communication to add the operation on the queue.
  484. *
  485. * @return userProfile -> OCUserProfile
  486. *
  487. */
  488. - (void) getUserProfileServer:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  489. ///-----------------------------------
  490. /// End-to-End Encryption
  491. ///-----------------------------------
  492. - (void)getEndToEndPublicKeys:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  493. - (void)getEndToEndPrivateKeyCipher:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  494. - (void)getEndToEndServerPublicKey:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  495. - (void)signEndToEndPublicKey:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  496. - (void)storeEndToEndPrivateKeyCipher:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  497. - (void)deleteEndToEndPublicKey:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  498. - (void)deleteEndToEndPrivateKey:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  499. - (void)markEndToEndFolderEncrypted:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  500. - (void)deletemarkEndToEndFolderEncrypted:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  501. - (void)lockEndToEndFolderEncrypted:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  502. - (void)unlockEndToEndFolderEncrypted:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  503. - (void)getEndToEndMetadata:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  504. - (void)storeEndToEndMetadata:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  505. - (void)updateEndToEndMetadata:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  506. - (void)deleteEndToEndMetadata:(NSString * _Nonnull)serverPath onCommunication:(OCCommunication * _Nonnull)sharedOCComunication success:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nonnull response))success failure:(void(^ _Nonnull)(NSHTTPURLResponse * _Nonnull operation, id _Nullable responseObject, NSError * _Nonnull error))failure;
  507. @end