tilia-dav 3.1.0.pre.alpha2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (499) hide show
  1. checksums.yaml +7 -0
  2. data/.database.travis.yml +6 -0
  3. data/.gitignore +25 -0
  4. data/.rubocop.yml +35 -0
  5. data/.simplecov +4 -0
  6. data/.travis.yml +10 -0
  7. data/CHANGELOG.sabre.md +2084 -0
  8. data/CONTRIBUTING.md +25 -0
  9. data/Gemfile +25 -0
  10. data/Gemfile.lock +103 -0
  11. data/LICENSE +27 -0
  12. data/LICENSE.sabre +27 -0
  13. data/README.md +40 -0
  14. data/Rakefile +18 -0
  15. data/database.sample.yml +6 -0
  16. data/examples/minimal.rb +25 -0
  17. data/lib/tilia/cal_dav.rb +27 -0
  18. data/lib/tilia/cal_dav/backend.rb +17 -0
  19. data/lib/tilia/cal_dav/backend/abstract_backend.rb +194 -0
  20. data/lib/tilia/cal_dav/backend/backend_interface.rb +250 -0
  21. data/lib/tilia/cal_dav/backend/notification_support.rb +38 -0
  22. data/lib/tilia/cal_dav/backend/scheduling_support.rb +57 -0
  23. data/lib/tilia/cal_dav/backend/sequel.rb +1118 -0
  24. data/lib/tilia/cal_dav/backend/sharing_support.rb +239 -0
  25. data/lib/tilia/cal_dav/backend/subscription_support.rb +79 -0
  26. data/lib/tilia/cal_dav/backend/sync_support.rb +75 -0
  27. data/lib/tilia/cal_dav/calendar.rb +426 -0
  28. data/lib/tilia/cal_dav/calendar_home.rb +335 -0
  29. data/lib/tilia/cal_dav/calendar_object.rb +219 -0
  30. data/lib/tilia/cal_dav/calendar_query_validator.rb +294 -0
  31. data/lib/tilia/cal_dav/calendar_root.rb +57 -0
  32. data/lib/tilia/cal_dav/exception.rb +7 -0
  33. data/lib/tilia/cal_dav/exception/invalid_component_type.rb +21 -0
  34. data/lib/tilia/cal_dav/i_calendar.rb +11 -0
  35. data/lib/tilia/cal_dav/i_calendar_object.rb +13 -0
  36. data/lib/tilia/cal_dav/i_calendar_object_container.rb +32 -0
  37. data/lib/tilia/cal_dav/i_shareable_calendar.rb +40 -0
  38. data/lib/tilia/cal_dav/i_shared_calendar.rb +28 -0
  39. data/lib/tilia/cal_dav/ics_export_plugin.rb +327 -0
  40. data/lib/tilia/cal_dav/notifications.rb +12 -0
  41. data/lib/tilia/cal_dav/notifications/collection.rb +131 -0
  42. data/lib/tilia/cal_dav/notifications/i_collection.rb +17 -0
  43. data/lib/tilia/cal_dav/notifications/i_node.rb +30 -0
  44. data/lib/tilia/cal_dav/notifications/node.rb +142 -0
  45. data/lib/tilia/cal_dav/notifications/plugin.rb +138 -0
  46. data/lib/tilia/cal_dav/plugin.rb +891 -0
  47. data/lib/tilia/cal_dav/principal.rb +12 -0
  48. data/lib/tilia/cal_dav/principal/collection.rb +21 -0
  49. data/lib/tilia/cal_dav/principal/i_proxy_read.rb +13 -0
  50. data/lib/tilia/cal_dav/principal/i_proxy_write.rb +13 -0
  51. data/lib/tilia/cal_dav/principal/proxy_read.rb +127 -0
  52. data/lib/tilia/cal_dav/principal/proxy_write.rb +127 -0
  53. data/lib/tilia/cal_dav/principal/user.rb +96 -0
  54. data/lib/tilia/cal_dav/schedule.rb +14 -0
  55. data/lib/tilia/cal_dav/schedule/i_inbox.rb +12 -0
  56. data/lib/tilia/cal_dav/schedule/i_mip_plugin.rb +156 -0
  57. data/lib/tilia/cal_dav/schedule/i_outbox.rb +12 -0
  58. data/lib/tilia/cal_dav/schedule/i_scheduling_object.rb +10 -0
  59. data/lib/tilia/cal_dav/schedule/inbox.rb +211 -0
  60. data/lib/tilia/cal_dav/schedule/outbox.rb +143 -0
  61. data/lib/tilia/cal_dav/schedule/plugin.rb +851 -0
  62. data/lib/tilia/cal_dav/schedule/scheduling_object.rb +126 -0
  63. data/lib/tilia/cal_dav/shareable_calendar.rb +54 -0
  64. data/lib/tilia/cal_dav/shared_calendar.rb +120 -0
  65. data/lib/tilia/cal_dav/sharing_plugin.rb +359 -0
  66. data/lib/tilia/cal_dav/subscriptions.rb +9 -0
  67. data/lib/tilia/cal_dav/subscriptions/i_subscription.rb +37 -0
  68. data/lib/tilia/cal_dav/subscriptions/plugin.rb +83 -0
  69. data/lib/tilia/cal_dav/subscriptions/subscription.rb +205 -0
  70. data/lib/tilia/cal_dav/xml.rb +10 -0
  71. data/lib/tilia/cal_dav/xml/filter.rb +12 -0
  72. data/lib/tilia/cal_dav/xml/filter/calendar_data.rb +64 -0
  73. data/lib/tilia/cal_dav/xml/filter/comp_filter.rb +79 -0
  74. data/lib/tilia/cal_dav/xml/filter/param_filter.rb +66 -0
  75. data/lib/tilia/cal_dav/xml/filter/prop_filter.rb +80 -0
  76. data/lib/tilia/cal_dav/xml/notification.rb +13 -0
  77. data/lib/tilia/cal_dav/xml/notification/invite.rb +253 -0
  78. data/lib/tilia/cal_dav/xml/notification/invite_reply.rb +167 -0
  79. data/lib/tilia/cal_dav/xml/notification/notification_interface.rb +41 -0
  80. data/lib/tilia/cal_dav/xml/notification/system_status.rb +139 -0
  81. data/lib/tilia/cal_dav/xml/property.rb +15 -0
  82. data/lib/tilia/cal_dav/xml/property/allowed_sharing_modes.rb +64 -0
  83. data/lib/tilia/cal_dav/xml/property/email_address_set.rb +60 -0
  84. data/lib/tilia/cal_dav/xml/property/invite.rb +207 -0
  85. data/lib/tilia/cal_dav/xml/property/schedule_calendar_transp.rb +108 -0
  86. data/lib/tilia/cal_dav/xml/property/supported_calendar_component_set.rb +100 -0
  87. data/lib/tilia/cal_dav/xml/property/supported_calendar_data.rb +50 -0
  88. data/lib/tilia/cal_dav/xml/property/supported_collation_set.rb +47 -0
  89. data/lib/tilia/cal_dav/xml/request.rb +14 -0
  90. data/lib/tilia/cal_dav/xml/request/calendar_multi_get_report.rb +99 -0
  91. data/lib/tilia/cal_dav/xml/request/calendar_query_report.rb +112 -0
  92. data/lib/tilia/cal_dav/xml/request/free_busy_query_report.rb +70 -0
  93. data/lib/tilia/cal_dav/xml/request/invite_reply.rb +110 -0
  94. data/lib/tilia/cal_dav/xml/request/mk_calendar.rb +67 -0
  95. data/lib/tilia/cal_dav/xml/request/share.rb +93 -0
  96. data/lib/tilia/card_dav.rb +17 -0
  97. data/lib/tilia/card_dav/address_book.rb +338 -0
  98. data/lib/tilia/card_dav/address_book_home.rb +192 -0
  99. data/lib/tilia/card_dav/address_book_root.rb +58 -0
  100. data/lib/tilia/card_dav/backend.rb +12 -0
  101. data/lib/tilia/card_dav/backend/abstract_backend.rb +30 -0
  102. data/lib/tilia/card_dav/backend/backend_interface.rb +175 -0
  103. data/lib/tilia/card_dav/backend/sequel.rb +476 -0
  104. data/lib/tilia/card_dav/backend/sync_support.rb +80 -0
  105. data/lib/tilia/card_dav/card.rb +193 -0
  106. data/lib/tilia/card_dav/i_address_book.rb +10 -0
  107. data/lib/tilia/card_dav/i_card.rb +11 -0
  108. data/lib/tilia/card_dav/i_directory.rb +14 -0
  109. data/lib/tilia/card_dav/plugin.rb +724 -0
  110. data/lib/tilia/card_dav/vcf_export_plugin.rb +122 -0
  111. data/lib/tilia/card_dav/xml.rb +9 -0
  112. data/lib/tilia/card_dav/xml/filter.rb +11 -0
  113. data/lib/tilia/card_dav/xml/filter/address_data.rb +50 -0
  114. data/lib/tilia/card_dav/xml/filter/param_filter.rb +71 -0
  115. data/lib/tilia/card_dav/xml/filter/prop_filter.rb +77 -0
  116. data/lib/tilia/card_dav/xml/property.rb +10 -0
  117. data/lib/tilia/card_dav/xml/property/supported_address_data.rb +67 -0
  118. data/lib/tilia/card_dav/xml/property/supported_collation_set.rb +38 -0
  119. data/lib/tilia/card_dav/xml/request.rb +10 -0
  120. data/lib/tilia/card_dav/xml/request/address_book_multi_get_report.rb +91 -0
  121. data/lib/tilia/card_dav/xml/request/address_book_query_report.rb +156 -0
  122. data/lib/tilia/dav.rb +94 -0
  123. data/lib/tilia/dav/auth.rb +8 -0
  124. data/lib/tilia/dav/auth/backend.rb +15 -0
  125. data/lib/tilia/dav/auth/backend/abstract_basic.rb +119 -0
  126. data/lib/tilia/dav/auth/backend/abstract_digest.rb +132 -0
  127. data/lib/tilia/dav/auth/backend/apache.rb +85 -0
  128. data/lib/tilia/dav/auth/backend/backend_interface.rb +61 -0
  129. data/lib/tilia/dav/auth/backend/basic_call_back.rb +46 -0
  130. data/lib/tilia/dav/auth/backend/file.rb +61 -0
  131. data/lib/tilia/dav/auth/backend/sequel.rb +46 -0
  132. data/lib/tilia/dav/auth/plugin.rb +157 -0
  133. data/lib/tilia/dav/browser.rb +12 -0
  134. data/lib/tilia/dav/browser/assets/favicon.ico +0 -0
  135. data/lib/tilia/dav/browser/assets/openiconic/ICON-LICENSE +21 -0
  136. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.css +510 -0
  137. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.eot +0 -0
  138. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.otf +0 -0
  139. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.svg +543 -0
  140. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.ttf +0 -0
  141. data/lib/tilia/dav/browser/assets/openiconic/open-iconic.woff +0 -0
  142. data/lib/tilia/dav/browser/assets/sabredav.css +228 -0
  143. data/lib/tilia/dav/browser/assets/sabredav.png +0 -0
  144. data/lib/tilia/dav/browser/guess_content_type.rb +80 -0
  145. data/lib/tilia/dav/browser/html_output.rb +27 -0
  146. data/lib/tilia/dav/browser/html_output_helper.rb +86 -0
  147. data/lib/tilia/dav/browser/map_get_to_prop_find.rb +41 -0
  148. data/lib/tilia/dav/browser/plugin.rb +693 -0
  149. data/lib/tilia/dav/browser/prop_find_all.rb +95 -0
  150. data/lib/tilia/dav/client.rb +341 -0
  151. data/lib/tilia/dav/collection.rb +79 -0
  152. data/lib/tilia/dav/core_plugin.rb +824 -0
  153. data/lib/tilia/dav/exception.rb +59 -0
  154. data/lib/tilia/dav/exception/bad_request.rb +18 -0
  155. data/lib/tilia/dav/exception/conflict.rb +18 -0
  156. data/lib/tilia/dav/exception/conflicting_lock.rb +26 -0
  157. data/lib/tilia/dav/exception/forbidden.rb +18 -0
  158. data/lib/tilia/dav/exception/insufficient_storage.rb +18 -0
  159. data/lib/tilia/dav/exception/invalid_resource_type.rb +23 -0
  160. data/lib/tilia/dav/exception/invalid_sync_token.rb +26 -0
  161. data/lib/tilia/dav/exception/length_required.rb +18 -0
  162. data/lib/tilia/dav/exception/lock_token_matches_request_uri.rb +25 -0
  163. data/lib/tilia/dav/exception/locked.rb +48 -0
  164. data/lib/tilia/dav/exception/method_not_allowed.rb +29 -0
  165. data/lib/tilia/dav/exception/not_authenticated.rb +18 -0
  166. data/lib/tilia/dav/exception/not_found.rb +18 -0
  167. data/lib/tilia/dav/exception/not_implemented.rb +18 -0
  168. data/lib/tilia/dav/exception/payment_required.rb +18 -0
  169. data/lib/tilia/dav/exception/precondition_failed.rb +47 -0
  170. data/lib/tilia/dav/exception/report_not_supported.rb +21 -0
  171. data/lib/tilia/dav/exception/requested_range_not_satisfiable.rb +18 -0
  172. data/lib/tilia/dav/exception/service_unavailable.rb +18 -0
  173. data/lib/tilia/dav/exception/too_many_matches.rb +21 -0
  174. data/lib/tilia/dav/exception/unsupported_media_type.rb +18 -0
  175. data/lib/tilia/dav/file.rb +58 -0
  176. data/lib/tilia/dav/fs.rb +9 -0
  177. data/lib/tilia/dav/fs/directory.rb +119 -0
  178. data/lib/tilia/dav/fs/file.rb +69 -0
  179. data/lib/tilia/dav/fs/node.rb +57 -0
  180. data/lib/tilia/dav/fs_ext.rb +8 -0
  181. data/lib/tilia/dav/fs_ext/directory.rb +175 -0
  182. data/lib/tilia/dav/fs_ext/file.rb +118 -0
  183. data/lib/tilia/dav/i_collection.rb +65 -0
  184. data/lib/tilia/dav/i_extended_collection.rb +36 -0
  185. data/lib/tilia/dav/i_file.rb +70 -0
  186. data/lib/tilia/dav/i_move_target.rb +37 -0
  187. data/lib/tilia/dav/i_multi_get.rb +29 -0
  188. data/lib/tilia/dav/i_node.rb +33 -0
  189. data/lib/tilia/dav/i_properties.rb +39 -0
  190. data/lib/tilia/dav/i_quota.rb +19 -0
  191. data/lib/tilia/dav/locks.rb +9 -0
  192. data/lib/tilia/dav/locks/backend.rb +12 -0
  193. data/lib/tilia/dav/locks/backend/abstract_backend.rb +16 -0
  194. data/lib/tilia/dav/locks/backend/backend_interface.rb +41 -0
  195. data/lib/tilia/dav/locks/backend/file.rb +146 -0
  196. data/lib/tilia/dav/locks/backend/sequel.rb +154 -0
  197. data/lib/tilia/dav/locks/lock_info.rb +60 -0
  198. data/lib/tilia/dav/locks/plugin.rb +467 -0
  199. data/lib/tilia/dav/mk_col.rb +47 -0
  200. data/lib/tilia/dav/mount.rb +7 -0
  201. data/lib/tilia/dav/mount/plugin.rb +62 -0
  202. data/lib/tilia/dav/node.rb +36 -0
  203. data/lib/tilia/dav/partial_update.rb +8 -0
  204. data/lib/tilia/dav/partial_update/i_patch_support.rb +40 -0
  205. data/lib/tilia/dav/partial_update/plugin.rb +179 -0
  206. data/lib/tilia/dav/prop_find.rb +262 -0
  207. data/lib/tilia/dav/prop_patch.rb +278 -0
  208. data/lib/tilia/dav/property_storage.rb +8 -0
  209. data/lib/tilia/dav/property_storage/backend.rb +10 -0
  210. data/lib/tilia/dav/property_storage/backend/backend_interface.rb +69 -0
  211. data/lib/tilia/dav/property_storage/backend/sequel.rb +192 -0
  212. data/lib/tilia/dav/property_storage/plugin.rb +131 -0
  213. data/lib/tilia/dav/server.rb +1388 -0
  214. data/lib/tilia/dav/server_plugin.rb +81 -0
  215. data/lib/tilia/dav/simple_collection.rb +71 -0
  216. data/lib/tilia/dav/simple_file.rb +82 -0
  217. data/lib/tilia/dav/string_util.rb +68 -0
  218. data/lib/tilia/dav/sync.rb +8 -0
  219. data/lib/tilia/dav/sync/i_sync_collection.rb +80 -0
  220. data/lib/tilia/dav/sync/plugin.rb +225 -0
  221. data/lib/tilia/dav/temporary_file_filter_plugin.rb +248 -0
  222. data/lib/tilia/dav/tree.rb +270 -0
  223. data/lib/tilia/dav/uuid_util.rb +45 -0
  224. data/lib/tilia/dav/version.rb +9 -0
  225. data/lib/tilia/dav/xml.rb +11 -0
  226. data/lib/tilia/dav/xml/element.rb +10 -0
  227. data/lib/tilia/dav/xml/element/prop.rb +92 -0
  228. data/lib/tilia/dav/xml/element/response.rb +188 -0
  229. data/lib/tilia/dav/xml/property.rb +16 -0
  230. data/lib/tilia/dav/xml/property/complex.rb +76 -0
  231. data/lib/tilia/dav/xml/property/get_last_modified.rb +79 -0
  232. data/lib/tilia/dav/xml/property/href.rb +137 -0
  233. data/lib/tilia/dav/xml/property/lock_discovery.rb +89 -0
  234. data/lib/tilia/dav/xml/property/resource_type.rb +96 -0
  235. data/lib/tilia/dav/xml/property/supported_lock.rb +48 -0
  236. data/lib/tilia/dav/xml/property/supported_method_set.rb +101 -0
  237. data/lib/tilia/dav/xml/property/supported_report_set.rb +118 -0
  238. data/lib/tilia/dav/xml/request.rb +13 -0
  239. data/lib/tilia/dav/xml/request/lock.rb +67 -0
  240. data/lib/tilia/dav/xml/request/mk_col.rb +69 -0
  241. data/lib/tilia/dav/xml/request/prop_find.rb +70 -0
  242. data/lib/tilia/dav/xml/request/prop_patch.rb +101 -0
  243. data/lib/tilia/dav/xml/request/sync_collection_report.rb +102 -0
  244. data/lib/tilia/dav/xml/response.rb +9 -0
  245. data/lib/tilia/dav/xml/response/multi_status.rb +108 -0
  246. data/lib/tilia/dav/xml/service.rb +42 -0
  247. data/lib/tilia/dav_acl.rb +16 -0
  248. data/lib/tilia/dav_acl/abstract_principal_collection.rb +143 -0
  249. data/lib/tilia/dav_acl/exception.rb +11 -0
  250. data/lib/tilia/dav_acl/exception/ace_conflict.rb +21 -0
  251. data/lib/tilia/dav_acl/exception/need_privileges.rb +65 -0
  252. data/lib/tilia/dav_acl/exception/no_abstract.rb +21 -0
  253. data/lib/tilia/dav_acl/exception/not_recognized_principal.rb +21 -0
  254. data/lib/tilia/dav_acl/exception/not_supported_privilege.rb +21 -0
  255. data/lib/tilia/dav_acl/fs.rb +9 -0
  256. data/lib/tilia/dav_acl/fs/collection.rb +108 -0
  257. data/lib/tilia/dav_acl/fs/file.rb +87 -0
  258. data/lib/tilia/dav_acl/fs/home_collection.rb +148 -0
  259. data/lib/tilia/dav_acl/i_acl.rb +61 -0
  260. data/lib/tilia/dav_acl/i_principal.rb +63 -0
  261. data/lib/tilia/dav_acl/i_principal_collection.rb +52 -0
  262. data/lib/tilia/dav_acl/plugin.rb +1109 -0
  263. data/lib/tilia/dav_acl/principal.rb +213 -0
  264. data/lib/tilia/dav_acl/principal_backend.rb +11 -0
  265. data/lib/tilia/dav_acl/principal_backend/abstract_backend.rb +42 -0
  266. data/lib/tilia/dav_acl/principal_backend/backend_interface.rb +127 -0
  267. data/lib/tilia/dav_acl/principal_backend/create_principal_support.rb +27 -0
  268. data/lib/tilia/dav_acl/principal_backend/sequel.rb +313 -0
  269. data/lib/tilia/dav_acl/principal_collection.rb +117 -0
  270. data/lib/tilia/dav_acl/xml.rb +8 -0
  271. data/lib/tilia/dav_acl/xml/property.rb +13 -0
  272. data/lib/tilia/dav_acl/xml/property/acl.rb +222 -0
  273. data/lib/tilia/dav_acl/xml/property/acl_restrictions.rb +40 -0
  274. data/lib/tilia/dav_acl/xml/property/current_user_privilege_set.rb +125 -0
  275. data/lib/tilia/dav_acl/xml/property/principal.rb +149 -0
  276. data/lib/tilia/dav_acl/xml/property/supported_privilege_set.rb +135 -0
  277. data/lib/tilia/dav_acl/xml/request.rb +11 -0
  278. data/lib/tilia/dav_acl/xml/request/expand_property_report.rb +86 -0
  279. data/lib/tilia/dav_acl/xml/request/principal_property_search_report.rb +111 -0
  280. data/lib/tilia/dav_acl/xml/request/principal_search_property_set_report.rb +49 -0
  281. data/test/cal_dav/backend/abstract_sequel_test.rb +817 -0
  282. data/test/cal_dav/backend/abstract_test.rb +163 -0
  283. data/test/cal_dav/backend/mock.rb +169 -0
  284. data/test/cal_dav/backend/mock_scheduling.rb +84 -0
  285. data/test/cal_dav/backend/mock_sharing.rb +124 -0
  286. data/test/cal_dav/backend/mock_subscription_support.rb +123 -0
  287. data/test/cal_dav/backend/sequel_my_sql_test.rb +102 -0
  288. data/test/cal_dav/backend/sequel_sqlite_test.rb +105 -0
  289. data/test/cal_dav/calendar_home_notifications_test.rb +41 -0
  290. data/test/cal_dav/calendar_home_shared_calendars_test.rb +64 -0
  291. data/test/cal_dav/calendar_home_subscriptions_test.rb +67 -0
  292. data/test/cal_dav/calendar_home_test.rb +144 -0
  293. data/test/cal_dav/calendar_object_test.rb +317 -0
  294. data/test/cal_dav/calendar_query_v_alarm_test.rb +114 -0
  295. data/test/cal_dav/calendar_query_validator_test.rb +820 -0
  296. data/test/cal_dav/calendar_test.rb +203 -0
  297. data/test/cal_dav/expand_events_double_events_test.rb +94 -0
  298. data/test/cal_dav/expand_events_dtstar_tand_dten_dby_day_test.rb +94 -0
  299. data/test/cal_dav/expand_events_dtstar_tand_dtend_test.rb +100 -0
  300. data/test/cal_dav/expand_events_floating_time_test.rb +211 -0
  301. data/test/cal_dav/free_busy_report_test.rb +156 -0
  302. data/test/cal_dav/get_events_by_timerange_test.rb +74 -0
  303. data/test/cal_dav/ics_export_plugin_test.rb +638 -0
  304. data/test/cal_dav/issue166_test.rb +59 -0
  305. data/test/cal_dav/issue172_test.rb +139 -0
  306. data/test/cal_dav/issue203_test.rb +130 -0
  307. data/test/cal_dav/issue205_test.rb +89 -0
  308. data/test/cal_dav/issue211_test.rb +84 -0
  309. data/test/cal_dav/issue220_test.rb +94 -0
  310. data/test/cal_dav/issue228_test.rb +74 -0
  311. data/test/cal_dav/j_cal_transform_test.rb +244 -0
  312. data/test/cal_dav/notifications/collection_test.rb +67 -0
  313. data/test/cal_dav/notifications/node_test.rb +73 -0
  314. data/test/cal_dav/notifications/plugin_test.rb +144 -0
  315. data/test/cal_dav/plugin_test.rb +1049 -0
  316. data/test/cal_dav/principal/collection_test.rb +19 -0
  317. data/test/cal_dav/principal/proxy_read_test.rb +67 -0
  318. data/test/cal_dav/principal/proxy_write_test.rb +29 -0
  319. data/test/cal_dav/principal/user_test.rb +91 -0
  320. data/test/cal_dav/schedule/deliver_new_event_test.rb +81 -0
  321. data/test/cal_dav/schedule/free_busy_request_test.rb +565 -0
  322. data/test/cal_dav/schedule/i_mip/mock_plugin.rb +40 -0
  323. data/test/cal_dav/schedule/i_mip_plugin_test.rb +196 -0
  324. data/test/cal_dav/schedule/inbox_test.rb +150 -0
  325. data/test/cal_dav/schedule/outbox_post_test.rb +124 -0
  326. data/test/cal_dav/schedule/outbox_test.rb +76 -0
  327. data/test/cal_dav/schedule/plugin_basic_test.rb +39 -0
  328. data/test/cal_dav/schedule/plugin_properties_test.rb +96 -0
  329. data/test/cal_dav/schedule/plugin_properties_with_shared_calendar_test.rb +69 -0
  330. data/test/cal_dav/schedule/schedule_deliver_test.rb +605 -0
  331. data/test/cal_dav/schedule/scheduling_object_test.rb +327 -0
  332. data/test/cal_dav/shareable_calendar_test.rb +58 -0
  333. data/test/cal_dav/shared_calendar_test.rb +189 -0
  334. data/test/cal_dav/sharing_plugin_test.rb +373 -0
  335. data/test/cal_dav/subscriptions/create_subscription_test.rb +115 -0
  336. data/test/cal_dav/subscriptions/plugin_test.rb +46 -0
  337. data/test/cal_dav/subscriptions/subscription_test.rb +119 -0
  338. data/test/cal_dav/test_util.rb +164 -0
  339. data/test/cal_dav/validate_i_cal_test.rb +219 -0
  340. data/test/cal_dav/xml/notification/invite_reply_test.rb +136 -0
  341. data/test/cal_dav/xml/notification/invite_test.rb +225 -0
  342. data/test/cal_dav/xml/notification/system_status_test.rb +63 -0
  343. data/test/cal_dav/xml/property/allowed_sharing_modes_test.rb +34 -0
  344. data/test/cal_dav/xml/property/email_address_set_test.rb +35 -0
  345. data/test/cal_dav/xml/property/invite_test.rb +173 -0
  346. data/test/cal_dav/xml/property/schedule_calendar_transp_test.rb +96 -0
  347. data/test/cal_dav/xml/property/supported_calendar_component_set_test.rb +76 -0
  348. data/test/cal_dav/xml/property/supported_calendar_data_test.rb +32 -0
  349. data/test/cal_dav/xml/property/supported_collation_set_test.rb +33 -0
  350. data/test/cal_dav/xml/request/calendar_query_report_test.rb +339 -0
  351. data/test/cal_dav/xml/request/invite_reply_test.rb +68 -0
  352. data/test/cal_dav/xml/request/share_test.rb +79 -0
  353. data/test/card_dav/abstract_plugin_test.rb +24 -0
  354. data/test/card_dav/address_book_home_test.rb +128 -0
  355. data/test/card_dav/address_book_query_test.rb +303 -0
  356. data/test/card_dav/address_book_root_test.rb +26 -0
  357. data/test/card_dav/address_book_test.rb +166 -0
  358. data/test/card_dav/backend/abstract_sequel_test.rb +302 -0
  359. data/test/card_dav/backend/mock.rb +122 -0
  360. data/test/card_dav/backend/sequel_my_sql_test.rb +56 -0
  361. data/test/card_dav/backend/sequel_sqlite_test.rb +59 -0
  362. data/test/card_dav/card_test.rb +164 -0
  363. data/test/card_dav/i_directory_test.rb +22 -0
  364. data/test/card_dav/multi_get_test.rb +97 -0
  365. data/test/card_dav/plugin_test.rb +87 -0
  366. data/test/card_dav/sogo_strip_content_type_test.rb +63 -0
  367. data/test/card_dav/test_util.rb +51 -0
  368. data/test/card_dav/validate_filter_test.rb +210 -0
  369. data/test/card_dav/validate_v_card_test.rb +143 -0
  370. data/test/card_dav/vcf_export_test.rb +66 -0
  371. data/test/card_dav/xml/property/supported_address_data_test.rb +34 -0
  372. data/test/card_dav/xml/property/supported_collation_set_test.rb +34 -0
  373. data/test/card_dav/xml/request/address_book_query_report_test.rb +276 -0
  374. data/test/dav/abstract_server.rb +36 -0
  375. data/test/dav/auth/backend/abstract_basic_test.rb +74 -0
  376. data/test/dav/auth/backend/abstract_digest_test.rb +114 -0
  377. data/test/dav/auth/backend/abstract_sequel_test.rb +25 -0
  378. data/test/dav/auth/backend/apache_test.rb +60 -0
  379. data/test/dav/auth/backend/basic_call_back_test.rb +33 -0
  380. data/test/dav/auth/backend/file_test.rb +43 -0
  381. data/test/dav/auth/backend/mock.rb +73 -0
  382. data/test/dav/auth/backend/sequel_my_sql_test.rb +32 -0
  383. data/test/dav/auth/backend/sequel_sqlite_test.rb +21 -0
  384. data/test/dav/auth/plugin_test.rb +92 -0
  385. data/test/dav/basic_node_test.rb +143 -0
  386. data/test/dav/browser/guess_content_type_test.rb +44 -0
  387. data/test/dav/browser/map_get_to_prop_find_test.rb +37 -0
  388. data/test/dav/browser/plugin_test.rb +165 -0
  389. data/test/dav/browser/prop_find_all_test.rb +59 -0
  390. data/test/dav/client_mock.rb +24 -0
  391. data/test/dav/client_test.rb +231 -0
  392. data/test/dav/copy_test.rb +33 -0
  393. data/test/dav/exception/locked_test.rb +61 -0
  394. data/test/dav/exception/payment_required_test.rb +14 -0
  395. data/test/dav/exception/service_unavailable_test.rb +14 -0
  396. data/test/dav/exception/too_many_matches_test.rb +31 -0
  397. data/test/dav/exception_test.rb +24 -0
  398. data/test/dav/fs_ext/file_test.rb +72 -0
  399. data/test/dav/fs_ext/server_test.rb +251 -0
  400. data/test/dav/get_if_conditions_test.rb +299 -0
  401. data/test/dav/http_delete_test.rb +110 -0
  402. data/test/dav/http_get_test.rb +130 -0
  403. data/test/dav/http_head_test.rb +80 -0
  404. data/test/dav/http_move_test.rb +105 -0
  405. data/test/dav/http_prefer_parsing_test.rb +186 -0
  406. data/test/dav/http_put_test.rb +271 -0
  407. data/test/dav/issue33_test.rb +90 -0
  408. data/test/dav/locks/backend/abstract_test.rb +160 -0
  409. data/test/dav/locks/backend/file_test.rb +24 -0
  410. data/test/dav/locks/backend/mock.rb +82 -0
  411. data/test/dav/locks/backend/sequel_my_sql_test.rb +32 -0
  412. data/test/dav/locks/backend/sequel_test.rb +19 -0
  413. data/test/dav/locks/ms_word_test.rb +119 -0
  414. data/test/dav/locks/plugin2_test.rb +61 -0
  415. data/test/dav/locks/plugin_test.rb +896 -0
  416. data/test/dav/mock/collection.rb +113 -0
  417. data/test/dav/mock/file.rb +100 -0
  418. data/test/dav/mock/properties_collection.rb +80 -0
  419. data/test/dav/mock/streaming_file.rb +66 -0
  420. data/test/dav/mount/plugin_test.rb +48 -0
  421. data/test/dav/object_tree_test.rb +65 -0
  422. data/test/dav/partial_update/file_mock.rb +92 -0
  423. data/test/dav/partial_update/plugin_test.rb +125 -0
  424. data/test/dav/partial_update/specification_test.rb +77 -0
  425. data/test/dav/prop_find_test.rb +87 -0
  426. data/test/dav/prop_patch_test.rb +367 -0
  427. data/test/dav/property_storage/backend/abstract_sequel_test.rb +147 -0
  428. data/test/dav/property_storage/backend/mock.rb +96 -0
  429. data/test/dav/property_storage/backend/sequel_mysql_test.rb +32 -0
  430. data/test/dav/property_storage/backend/sequel_sqlite_test.rb +31 -0
  431. data/test/dav/property_storage/plugin_test.rb +90 -0
  432. data/test/dav/server_copy_move_test.rb +164 -0
  433. data/test/dav/server_events_test.rb +105 -0
  434. data/test/dav/server_mkcol_test.rb +337 -0
  435. data/test/dav/server_mock.rb +10 -0
  436. data/test/dav/server_plugin_test.rb +85 -0
  437. data/test/dav/server_precondition_test.rb +253 -0
  438. data/test/dav/server_props_infinite_depth_test.rb +144 -0
  439. data/test/dav/server_props_test.rb +182 -0
  440. data/test/dav/server_range_test.rb +262 -0
  441. data/test/dav/server_simple_test.rb +388 -0
  442. data/test/dav/server_update_properties_test.rb +93 -0
  443. data/test/dav/simple_file_test.rb +17 -0
  444. data/test/dav/string_util_test.rb +92 -0
  445. data/test/dav/sync/mock_sync_collection.rb +141 -0
  446. data/test/dav/sync/plugin_test.rb +491 -0
  447. data/test/dav/sync_token_property_test.rb +105 -0
  448. data/test/dav/temporary_file_filter_test.rb +179 -0
  449. data/test/dav/test_plugin.rb +24 -0
  450. data/test/dav/tree_test.rb +201 -0
  451. data/test/dav/uuid_util_test.rb +14 -0
  452. data/test/dav/xml/element/prop_test.rb +121 -0
  453. data/test/dav/xml/element/response_test.rb +202 -0
  454. data/test/dav/xml/property/href_test.rb +112 -0
  455. data/test/dav/xml/property/last_modified_test.rb +52 -0
  456. data/test/dav/xml/property/lock_discovery_test.rb +79 -0
  457. data/test/dav/xml/property/supported_method_set_test.rb +54 -0
  458. data/test/dav/xml/property/supported_report_set_test.rb +109 -0
  459. data/test/dav/xml/request/prop_find_test.rb +45 -0
  460. data/test/dav/xml/request/prop_patch_test.rb +47 -0
  461. data/test/dav/xml/request/sync_collection_test.rb +89 -0
  462. data/test/dav/xml/xml_tester.rb +35 -0
  463. data/test/dav_acl/acl_method_test.rb +299 -0
  464. data/test/dav_acl/allow_access_test.rb +94 -0
  465. data/test/dav_acl/block_access_test.rb +161 -0
  466. data/test/dav_acl/exception/ace_conflict_test.rb +33 -0
  467. data/test/dav_acl/exception/need_privileges_exception_test.rb +43 -0
  468. data/test/dav_acl/exception/no_abstract_test.rb +33 -0
  469. data/test/dav_acl/exception/not_recognized_principal_test.rb +33 -0
  470. data/test/dav_acl/exception/not_supported_privilege_test.rb +33 -0
  471. data/test/dav_acl/expand_properties_test.rb +265 -0
  472. data/test/dav_acl/fs/collection_test.rb +39 -0
  473. data/test/dav_acl/fs/file_test.rb +47 -0
  474. data/test/dav_acl/fs/home_collection_test.rb +82 -0
  475. data/test/dav_acl/mock_acl_node.rb +27 -0
  476. data/test/dav_acl/mock_principal.rb +27 -0
  477. data/test/dav_acl/plugin_admin_test.rb +60 -0
  478. data/test/dav_acl/plugin_properties_test.rb +346 -0
  479. data/test/dav_acl/plugin_update_properties_test.rb +82 -0
  480. data/test/dav_acl/principal_backend/abstract_sequel_test.rb +159 -0
  481. data/test/dav_acl/principal_backend/mock.rb +150 -0
  482. data/test/dav_acl/principal_backend/sequel_my_sql_test.rb +43 -0
  483. data/test/dav_acl/principal_backend/sequel_sqlite_test.rb +31 -0
  484. data/test/dav_acl/principal_collection_test.rb +44 -0
  485. data/test/dav_acl/principal_property_search_test.rb +354 -0
  486. data/test/dav_acl/principal_search_property_set_test.rb +125 -0
  487. data/test/dav_acl/principal_test.rb +181 -0
  488. data/test/dav_acl/simple_plugin_test.rb +320 -0
  489. data/test/dav_acl/xml/property/acl_restrictions_test.rb +28 -0
  490. data/test/dav_acl/xml/property/acl_test.rb +325 -0
  491. data/test/dav_acl/xml/property/current_user_privilege_set_test.rb +77 -0
  492. data/test/dav_acl/xml/property/principal_test.rb +158 -0
  493. data/test/dav_acl/xml/property/supported_privilege_set_test.rb +109 -0
  494. data/test/dav_server_test.rb +225 -0
  495. data/test/http/response_mock.rb +16 -0
  496. data/test/http/sapi_mock.rb +29 -0
  497. data/test/test_helper.rb +176 -0
  498. data/tilia-dav.gemspec +28 -0
  499. metadata +726 -0
@@ -0,0 +1,132 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # HTTP Digest authentication backend class
6
+ #
7
+ # This class can be used by authentication objects wishing to use HTTP Digest
8
+ # Most of the digest logic is handled, implementors just need to worry about
9
+ # the getDigestHash method
10
+ class AbstractDigest
11
+ include BackendInterface
12
+
13
+ # Authentication Realm.
14
+ #
15
+ # The realm is often displayed by browser clients when showing the
16
+ # authentication dialog.
17
+ #
18
+ # @var string
19
+ # RUBY: attr_accessor :realm
20
+
21
+ # This is the prefix that will be used to generate principal urls.
22
+ #
23
+ # @var string
24
+ # RUBY: attr_accessor :principal_prefix
25
+
26
+ # Sets the authentication realm for this backend.
27
+ #
28
+ # Be aware that for Digest authentication, the realm influences the digest
29
+ # hash. Choose the realm wisely, because if you change it later, all the
30
+ # existing hashes will break and nobody can authenticate.
31
+ #
32
+ # @param string realm
33
+ # @return void
34
+ attr_writer :realm
35
+
36
+ # Returns a users digest hash based on the username and realm.
37
+ #
38
+ # If the user was not known, null must be returned.
39
+ #
40
+ # @param string realm
41
+ # @param string username
42
+ # @return string|null
43
+ def digest_hash(_realm, _username)
44
+ end
45
+
46
+ # When this method is called, the backend must check if authentication was
47
+ # successful.
48
+ #
49
+ # The returned value must be one of the following
50
+ #
51
+ # [true, "principals/username"]
52
+ # [false, "reason for failure"]
53
+ #
54
+ # If authentication was successful, it's expected that the authentication
55
+ # backend returns a so-called principal url.
56
+ #
57
+ # Examples of a principal url:
58
+ #
59
+ # principals/admin
60
+ # principals/user1
61
+ # principals/users/joe
62
+ # principals/uid/123457
63
+ #
64
+ # If you don't use WebDAV ACL (RFC3744) we recommend that you simply
65
+ # return a string such as:
66
+ #
67
+ # principals/users/[username]
68
+ #
69
+ # @param RequestInterface request
70
+ # @param ResponseInterface response
71
+ # @return array
72
+ def check(request, response)
73
+ digest = Http::Auth::Digest.new(@realm, request, response)
74
+ digest.init
75
+
76
+ username = digest.username
77
+
78
+ # No username was given
79
+ unless username
80
+ return [false, "No 'Authorization: Digest' header found. Either the client didn't send one, or the server is misconfigured"]
81
+ end
82
+
83
+ hash = digest_hash(@realm, username)
84
+ # If this was false, the user account didn't exist
85
+ return [false, 'Username or password was incorrect'] unless hash
86
+ unless hash.is_a?(String)
87
+ fail Dav::Exception, 'The returned value from getDigestHash must be a string or null'
88
+ end
89
+
90
+ # If this was false, the password or part of the hash was incorrect.
91
+ unless digest.validate_a1(hash)
92
+ return [false, 'Username or password was incorrect']
93
+ end
94
+
95
+ [true, "#{@principal_prefix}#{username}"]
96
+ end
97
+
98
+ # This method is called when a user could not be authenticated, and
99
+ # authentication was required for the current request.
100
+ #
101
+ # This gives you the opportunity to set authentication headers. The 401
102
+ # status code will already be set.
103
+ #
104
+ # In this case of Basic Auth, this would for example mean that the
105
+ # following header needs to be set:
106
+ #
107
+ # response.add_header('WWW-Authenticate', 'Basic realm=SabreDAV')
108
+ #
109
+ # Keep in mind that in the case of multiple authentication backends, other
110
+ # WWW-Authenticate headers may already have been set, and you'll want to
111
+ # append your own WWW-Authenticate header instead of overwriting the
112
+ # existing one.
113
+ #
114
+ # @param RequestInterface request
115
+ # @param ResponseInterface response
116
+ # @return void
117
+ def challenge(request, response)
118
+ auth = Http::Auth::Digest.new(@realm, request, response)
119
+ auth.init
120
+ auth.require_login
121
+ end
122
+
123
+ # TODO: document
124
+ def initialize
125
+ @realm = 'TiliaDAV'
126
+ @principal_prefix = 'principals/'
127
+ end
128
+ end
129
+ end
130
+ end
131
+ end
132
+ end
@@ -0,0 +1,85 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # Apache authenticator
6
+ #
7
+ # This authentication backend assumes that authentication has been
8
+ # configured in apache, rather than within SabreDAV.
9
+ #
10
+ # Make sure apache is properly configured for this to work.
11
+ class Apache
12
+ include BackendInterface
13
+ # This is the prefix that will be used to generate principal urls.
14
+ #
15
+ # @var string
16
+ # RUBY: attr_accessor :principal_prefix
17
+
18
+ # When this method is called, the backend must check if authentication was
19
+ # successful.
20
+ #
21
+ # The returned value must be one of the following
22
+ #
23
+ # [true, "principals/username"]
24
+ # [false, "reason for failure"]
25
+ #
26
+ # If authentication was successful, it's expected that the authentication
27
+ # backend returns a so-called principal url.
28
+ #
29
+ # Examples of a principal url:
30
+ #
31
+ # principals/admin
32
+ # principals/user1
33
+ # principals/users/joe
34
+ # principals/uid/123457
35
+ #
36
+ # If you don't use WebDAV ACL (RFC3744) we recommend that you simply
37
+ # return a string such as:
38
+ #
39
+ # principals/users/[username]
40
+ #
41
+ # @param RequestInterface request
42
+ # @param ResponseInterface response
43
+ # @return array
44
+ def check(request, _response)
45
+ remote_user = request.raw_server_value('REMOTE_USER')
46
+ unless remote_user
47
+ remote_user = request.raw_server_value('REDIRECT_REMOTE_USER')
48
+ end
49
+ unless remote_user
50
+ return [false, 'No REMOTE_USER property was found in the PHP $_SERVER super-global. This likely means your server is not configured correctly']
51
+ end
52
+
53
+ [true, "#{@principal_prefix}#{remote_user}"]
54
+ end
55
+
56
+ # This method is called when a user could not be authenticated, and
57
+ # authentication was required for the current request.
58
+ #
59
+ # This gives you the opportunity to set authentication headers. The 401
60
+ # status code will already be set.
61
+ #
62
+ # In this case of Basic Auth, this would for example mean that the
63
+ # following header needs to be set:
64
+ #
65
+ # response.add_header('WWW-Authenticate', 'Basic realm=SabreDAV')
66
+ #
67
+ # Keep in mind that in the case of multiple authentication backends, other
68
+ # WWW-Authenticate headers may already have been set, and you'll want to
69
+ # append your own WWW-Authenticate header instead of overwriting the
70
+ # existing one.
71
+ #
72
+ # @param RequestInterface request
73
+ # @param ResponseInterface response
74
+ # @return void
75
+ def challenge(_request, _response)
76
+ end
77
+
78
+ def initialize
79
+ @principal_prefix = 'principals/'
80
+ end
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
@@ -0,0 +1,61 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # This is the base class for any authentication object.
6
+ module BackendInterface
7
+ # When this method is called, the backend must check if authentication was
8
+ # successful.
9
+ #
10
+ # The returned value must be one of the following
11
+ #
12
+ # [true, "principals/username"]
13
+ # [false, "reason for failure"]
14
+ #
15
+ # If authentication was successful, it's expected that the authentication
16
+ # backend returns a so-called principal url.
17
+ #
18
+ # Examples of a principal url:
19
+ #
20
+ # principals/admin
21
+ # principals/user1
22
+ # principals/users/joe
23
+ # principals/uid/123457
24
+ #
25
+ # If you don't use WebDAV ACL (RFC3744) we recommend that you simply
26
+ # return a string such as:
27
+ #
28
+ # principals/users/[username]
29
+ #
30
+ # @param RequestInterface request
31
+ # @param ResponseInterface response
32
+ # @return array
33
+ def check(_request, _response)
34
+ end
35
+
36
+ # This method is called when a user could not be authenticated, and
37
+ # authentication was required for the current request.
38
+ #
39
+ # This gives you the opportunity to set authentication headers. The 401
40
+ # status code will already be set.
41
+ #
42
+ # In this case of Basic Auth, this would for example mean that the
43
+ # following header needs to be set:
44
+ #
45
+ # response.add_header('WWW-Authenticate', 'Basic realm=SabreDAV')
46
+ #
47
+ # Keep in mind that in the case of multiple authentication backends, other
48
+ # WWW-Authenticate headers may already have been set, and you'll want to
49
+ # append your own WWW-Authenticate header instead of overwriting the
50
+ # existing one.
51
+ #
52
+ # @param RequestInterface request
53
+ # @param ResponseInterface response
54
+ # @return void
55
+ def challenge(_request, _response)
56
+ end
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,46 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # Extremely simply HTTP Basic auth backend.
6
+ #
7
+ # This backend basically works by calling a callback, which receives a
8
+ # username and password.
9
+ # The callback must return true or false depending on if authentication was
10
+ # correct.
11
+ class BasicCallBack < AbstractBasic
12
+ # Callback
13
+ #
14
+ # @var callable
15
+ # RUBY: attr_accessor :call_back
16
+
17
+ # Creates the backend.
18
+ #
19
+ # A callback must be provided to handle checking the username and
20
+ # password.
21
+ #
22
+ # @param callable call_back
23
+ # @return void
24
+ def initialize(call_back)
25
+ super()
26
+ @call_back = call_back
27
+ end
28
+
29
+ protected
30
+
31
+ # Validates a username and password
32
+ #
33
+ # This method should return true or false depending on if login
34
+ # succeeded.
35
+ #
36
+ # @param string username
37
+ # @param string password
38
+ # @return bool
39
+ def validate_user_pass(username, password)
40
+ @call_back.call(username, password)
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,61 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # This is an authentication backend that uses a file to manage passwords.
6
+ #
7
+ # The backend file must conform to Apache's htdigest format
8
+ class File < AbstractDigest
9
+ # List of users
10
+ #
11
+ # @var array
12
+ # RUBY: attr_accessor :users
13
+
14
+ # Creates the backend object.
15
+ #
16
+ # If the filename argument is passed in, it will parse out the specified file fist.
17
+ #
18
+ # @param string|null filename
19
+ def initialize(filename = nil)
20
+ super()
21
+ @users = {}
22
+
23
+ load_file(filename) if filename
24
+ end
25
+
26
+ # Loads an htdigest-formatted file. This method can be called multiple times if
27
+ # more than 1 file is used.
28
+ #
29
+ # @param string filename
30
+ # @return void
31
+ def load_file(filename)
32
+ ::File.readlines(filename).each do |line|
33
+ line.chomp!
34
+
35
+ if line.scan(':').size != 2
36
+ fail Dav::Exception, 'Malformed htdigest file. Every line should contain 2 colons'
37
+ end
38
+
39
+ (username, realm, a1) = line.split(':')
40
+
41
+ unless a1 =~ /^[a-zA-Z0-9]{32}$/
42
+ fail Dav::Exception, 'Malformed htdigest file. Invalid md5 hash'
43
+ end
44
+
45
+ @users[realm + ':' + username] = a1
46
+ end
47
+ end
48
+
49
+ # Returns a users' information
50
+ #
51
+ # @param string realm
52
+ # @param string username
53
+ # @return string
54
+ def digest_hash(realm, username)
55
+ @users["#{realm}:#{username}"]
56
+ end
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,46 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ module Backend
5
+ # This is an authentication backend that uses a database to manage passwords.
6
+ class Sequel < AbstractDigest
7
+ protected
8
+
9
+ # Reference to PDO connection
10
+ #
11
+ # @var PDO
12
+ attr_accessor :pdo
13
+
14
+ public
15
+
16
+ # PDO table name we'll be using
17
+ #
18
+ # @var string
19
+ attr_accessor :table_name
20
+
21
+ # Creates the backend object.
22
+ #
23
+ # If the filename argument is passed in, it will parse out the specified file fist.
24
+ #
25
+ # @param sequel
26
+ def initialize(sequel)
27
+ @sequel = sequel
28
+ @table_name = 'users'
29
+ end
30
+
31
+ # Returns the digest hash for a user.
32
+ #
33
+ # @param string realm
34
+ # @param string username
35
+ # @return string|null
36
+ def digest_hash(_realm, username)
37
+ @sequel.fetch("SELECT digesta1 FROM #{@table_name} WHERE username=?", username) do |row|
38
+ return row[:digesta1]
39
+ end
40
+ nil
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,157 @@
1
+ module Tilia
2
+ module Dav
3
+ module Auth
4
+ # This plugin provides Authentication for a WebDAV server.
5
+ #
6
+ # It works by providing a Auth\Backend class. Several examples of these
7
+ # classes can be found in the Backend directory.
8
+ #
9
+ # It's possible to provide more than one backend to this plugin. If more than
10
+ # one backend was provided, each backend will attempt to authenticate. Only if
11
+ # all backends fail, we throw a 401.
12
+ class Plugin < ServerPlugin
13
+ # authentication backends
14
+ # RUBY: attr_accessor :backends
15
+
16
+ # The currently logged in principal. Will be `null` if nobody is currently
17
+ # logged in.
18
+ #
19
+ # @var string|null
20
+ # RUBY: attr_accessor :current_principal
21
+
22
+ # Creates the authentication plugin
23
+ #
24
+ # @param Backend\BackendInterface auth_backend
25
+ def initialize(auth_backend = nil)
26
+ @backends = []
27
+ add_backend(auth_backend) if auth_backend
28
+ end
29
+
30
+ # Adds an authentication backend to the plugin.
31
+ #
32
+ # @param Backend\BackendInterface auth_backend
33
+ # @return void
34
+ def add_backend(auth_backend)
35
+ @backends << auth_backend
36
+ end
37
+
38
+ # Initializes the plugin. This function is automatically called by the server
39
+ #
40
+ # @param Server server
41
+ # @return void
42
+ def setup(server)
43
+ server.on('beforeMethod', method(:before_method), 10)
44
+ end
45
+
46
+ # Returns a plugin name.
47
+ #
48
+ # Using this name other plugins will be able to access other plugins
49
+ # using DAV\Server::getPlugin
50
+ #
51
+ # @return string
52
+ def plugin_name
53
+ 'auth'
54
+ end
55
+
56
+ # Returns the currently logged-in principal.
57
+ #
58
+ # This will return a string such as:
59
+ #
60
+ # principals/username
61
+ # principals/users/username
62
+ #
63
+ # This method will return null if nobody is logged in.
64
+ #
65
+ # @return string|null
66
+ attr_reader :current_principal
67
+
68
+ # Returns the current username.
69
+ #
70
+ # This method is deprecated and is only kept for backwards compatibility
71
+ # purposes. Please switch to current_principal.
72
+ #
73
+ # @deprecated Will be removed in a future version!
74
+ # @return string|null
75
+ def current_user
76
+ # We just do a 'basename' on the principal to give back a sane value
77
+ # here.
78
+ user_name = Http::UrlUtil.split_path(current_principal)[1]
79
+
80
+ user_name
81
+ end
82
+
83
+ # This method is called before any HTTP method and forces users to be authenticated
84
+ #
85
+ # @param RequestInterface request
86
+ # @param ResponseInterface response
87
+ # @return bool
88
+ def before_method(request, response)
89
+ if @current_principal
90
+ # We already have authentication information. This means that the
91
+ # event has already fired earlier, and is now likely fired for a
92
+ # sub-request.
93
+ #
94
+ # We don't want to authenticate users twice, so we simply don't do
95
+ # anything here. See Issue #700 for additional reasoning.
96
+ #
97
+ # This is not a perfect solution, but will be fixed once the
98
+ # "currently authenticated principal" is information that's not
99
+ # not associated with the plugin, but rather per-request.
100
+ #
101
+ # See issue #580 for more information about that.
102
+ return nil
103
+ end
104
+
105
+ if @backends.empty?
106
+ fail Dav::Exception, 'No authentication backends were configured on this server.'
107
+ end
108
+
109
+ reasons = []
110
+ @backends.each do |backend|
111
+ result = backend.check(request, response)
112
+
113
+ if !result.is_a?(Array) ||
114
+ result.size != 2 ||
115
+ !(result[0].is_a?(TrueClass) || result[0].is_a?(FalseClass)) ||
116
+ !result[1].is_a?(String)
117
+ fail Dav::Exception, 'The authentication backend did not return a correct value from the check method.'
118
+ end
119
+
120
+ if result[0]
121
+ @current_principal = result[1]
122
+ # Exit early
123
+ return nil
124
+ end
125
+ reasons << result[1]
126
+ end
127
+
128
+ # If we got here, it means that no authentication backend was
129
+ # successful in authenticating the user.
130
+ @current_principal = nil
131
+
132
+ @backends.each do |backend|
133
+ backend.challenge(request, response)
134
+ end
135
+ fail Exception::NotAuthenticated, reasons.join(', ')
136
+ end
137
+
138
+ # Returns a bunch of meta-data about the plugin.
139
+ #
140
+ # Providing this information is optional, and is mainly displayed by the
141
+ # Browser plugin.
142
+ #
143
+ # The description key in the returned array may contain html and will not
144
+ # be sanitized.
145
+ #
146
+ # @return array
147
+ def plugin_info
148
+ {
149
+ 'name' => plugin_name,
150
+ 'description' => 'Generic authentication plugin',
151
+ 'link' => 'http://sabre.io/dav/authentication/'
152
+ }
153
+ end
154
+ end
155
+ end
156
+ end
157
+ end