sepastian-mongoid-rails4 4.0.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (660) hide show
  1. data/CHANGELOG.md +3290 -0
  2. data/LICENSE +20 -0
  3. data/README.md +62 -0
  4. data/Rakefile +35 -0
  5. data/lib/config/locales/en.yml +452 -0
  6. data/lib/mongoid/atomic/modifiers.rb +317 -0
  7. data/lib/mongoid/atomic/paths/embedded/many.rb +44 -0
  8. data/lib/mongoid/atomic/paths/embedded/one.rb +43 -0
  9. data/lib/mongoid/atomic/paths/embedded.rb +28 -0
  10. data/lib/mongoid/atomic/paths/root.rb +39 -0
  11. data/lib/mongoid/atomic/paths.rb +3 -0
  12. data/lib/mongoid/atomic.rb +384 -0
  13. data/lib/mongoid/attributes/dynamic.rb +154 -0
  14. data/lib/mongoid/attributes/nested.rb +82 -0
  15. data/lib/mongoid/attributes/processing.rb +147 -0
  16. data/lib/mongoid/attributes/readonly.rb +56 -0
  17. data/lib/mongoid/attributes.rb +305 -0
  18. data/lib/mongoid/changeable.rb +379 -0
  19. data/lib/mongoid/composable.rb +104 -0
  20. data/lib/mongoid/config/environment.rb +44 -0
  21. data/lib/mongoid/config/options.rb +74 -0
  22. data/lib/mongoid/config/validators/option.rb +25 -0
  23. data/lib/mongoid/config/validators/session.rb +140 -0
  24. data/lib/mongoid/config/validators.rb +3 -0
  25. data/lib/mongoid/config.rb +263 -0
  26. data/lib/mongoid/contextual/aggregable/memory.rb +109 -0
  27. data/lib/mongoid/contextual/aggregable/mongo.rb +145 -0
  28. data/lib/mongoid/contextual/atomic.rb +180 -0
  29. data/lib/mongoid/contextual/command.rb +61 -0
  30. data/lib/mongoid/contextual/eager.rb +158 -0
  31. data/lib/mongoid/contextual/find_and_modify.rb +69 -0
  32. data/lib/mongoid/contextual/geo_near.rb +238 -0
  33. data/lib/mongoid/contextual/map_reduce.rb +324 -0
  34. data/lib/mongoid/contextual/memory.rb +440 -0
  35. data/lib/mongoid/contextual/mongo.rb +676 -0
  36. data/lib/mongoid/contextual/queryable.rb +25 -0
  37. data/lib/mongoid/contextual/text_search.rb +180 -0
  38. data/lib/mongoid/contextual.rb +54 -0
  39. data/lib/mongoid/copyable.rb +67 -0
  40. data/lib/mongoid/criteria/findable.rb +179 -0
  41. data/lib/mongoid/criteria/inspectable.rb +25 -0
  42. data/lib/mongoid/criteria/marshalable.rb +50 -0
  43. data/lib/mongoid/criteria/modifiable.rb +189 -0
  44. data/lib/mongoid/criteria/scopable.rb +158 -0
  45. data/lib/mongoid/criteria.rb +562 -0
  46. data/lib/mongoid/document.rb +361 -0
  47. data/lib/mongoid/equality.rb +66 -0
  48. data/lib/mongoid/errors/ambiguous_relationship.rb +51 -0
  49. data/lib/mongoid/errors/callback.rb +25 -0
  50. data/lib/mongoid/errors/delete_restriction.rb +29 -0
  51. data/lib/mongoid/errors/document_not_found.rb +111 -0
  52. data/lib/mongoid/errors/eager_load.rb +22 -0
  53. data/lib/mongoid/errors/invalid_collection.rb +18 -0
  54. data/lib/mongoid/errors/invalid_config_option.rb +27 -0
  55. data/lib/mongoid/errors/invalid_field.rb +64 -0
  56. data/lib/mongoid/errors/invalid_field_option.rb +35 -0
  57. data/lib/mongoid/errors/invalid_find.rb +19 -0
  58. data/lib/mongoid/errors/invalid_includes.rb +32 -0
  59. data/lib/mongoid/errors/invalid_index.rb +28 -0
  60. data/lib/mongoid/errors/invalid_options.rb +28 -0
  61. data/lib/mongoid/errors/invalid_path.rb +21 -0
  62. data/lib/mongoid/errors/invalid_scope.rb +24 -0
  63. data/lib/mongoid/errors/invalid_set_polymorphic_relation.rb +38 -0
  64. data/lib/mongoid/errors/invalid_storage_options.rb +27 -0
  65. data/lib/mongoid/errors/invalid_time.rb +22 -0
  66. data/lib/mongoid/errors/invalid_value.rb +16 -0
  67. data/lib/mongoid/errors/inverse_not_found.rb +29 -0
  68. data/lib/mongoid/errors/mixed_relations.rb +32 -0
  69. data/lib/mongoid/errors/mixed_session_configuration.rb +28 -0
  70. data/lib/mongoid/errors/mongoid_error.rb +92 -0
  71. data/lib/mongoid/errors/nested_attributes_metadata_not_found.rb +28 -0
  72. data/lib/mongoid/errors/no_default_session.rb +23 -0
  73. data/lib/mongoid/errors/no_environment.rb +19 -0
  74. data/lib/mongoid/errors/no_map_reduce_output.rb +24 -0
  75. data/lib/mongoid/errors/no_metadata.rb +21 -0
  76. data/lib/mongoid/errors/no_parent.rb +24 -0
  77. data/lib/mongoid/errors/no_session_config.rb +22 -0
  78. data/lib/mongoid/errors/no_session_database.rb +27 -0
  79. data/lib/mongoid/errors/no_session_hosts.rb +27 -0
  80. data/lib/mongoid/errors/no_sessions_config.rb +20 -0
  81. data/lib/mongoid/errors/readonly_attribute.rb +25 -0
  82. data/lib/mongoid/errors/scope_overwrite.rb +21 -0
  83. data/lib/mongoid/errors/too_many_nested_attribute_records.rb +20 -0
  84. data/lib/mongoid/errors/unknown_attribute.rb +25 -0
  85. data/lib/mongoid/errors/unsaved_document.rb +19 -0
  86. data/lib/mongoid/errors/unsupported_javascript.rb +27 -0
  87. data/lib/mongoid/errors/validations.rb +29 -0
  88. data/lib/mongoid/errors.rb +41 -0
  89. data/lib/mongoid/evolvable.rb +19 -0
  90. data/lib/mongoid/extensions/array.rb +180 -0
  91. data/lib/mongoid/extensions/big_decimal.rb +69 -0
  92. data/lib/mongoid/extensions/boolean.rb +21 -0
  93. data/lib/mongoid/extensions/date.rb +77 -0
  94. data/lib/mongoid/extensions/date_time.rb +73 -0
  95. data/lib/mongoid/extensions/false_class.rb +38 -0
  96. data/lib/mongoid/extensions/float.rb +56 -0
  97. data/lib/mongoid/extensions/hash.rb +217 -0
  98. data/lib/mongoid/extensions/integer.rb +67 -0
  99. data/lib/mongoid/extensions/module.rb +28 -0
  100. data/lib/mongoid/extensions/nil_class.rb +33 -0
  101. data/lib/mongoid/extensions/object.rb +274 -0
  102. data/lib/mongoid/extensions/object_id.rb +54 -0
  103. data/lib/mongoid/extensions/range.rb +85 -0
  104. data/lib/mongoid/extensions/regexp.rb +27 -0
  105. data/lib/mongoid/extensions/set.rb +55 -0
  106. data/lib/mongoid/extensions/string.rb +199 -0
  107. data/lib/mongoid/extensions/symbol.rb +54 -0
  108. data/lib/mongoid/extensions/time.rb +88 -0
  109. data/lib/mongoid/extensions/time_with_zone.rb +56 -0
  110. data/lib/mongoid/extensions/true_class.rb +38 -0
  111. data/lib/mongoid/extensions.rb +35 -0
  112. data/lib/mongoid/factory.rb +46 -0
  113. data/lib/mongoid/fields/foreign_key.rb +174 -0
  114. data/lib/mongoid/fields/localized.rb +73 -0
  115. data/lib/mongoid/fields/standard.rb +273 -0
  116. data/lib/mongoid/fields/validators/macro.rb +92 -0
  117. data/lib/mongoid/fields/validators.rb +2 -0
  118. data/lib/mongoid/fields.rb +542 -0
  119. data/lib/mongoid/findable.rb +133 -0
  120. data/lib/mongoid/identity_map.rb +163 -0
  121. data/lib/mongoid/indexable/specification.rb +115 -0
  122. data/lib/mongoid/indexable/validators/options.rb +103 -0
  123. data/lib/mongoid/indexable.rb +147 -0
  124. data/lib/mongoid/inspectable.rb +59 -0
  125. data/lib/mongoid/interceptable.rb +265 -0
  126. data/lib/mongoid/log_subscriber.rb +16 -0
  127. data/lib/mongoid/loggable.rb +69 -0
  128. data/lib/mongoid/matchable/all.rb +27 -0
  129. data/lib/mongoid/matchable/and.rb +30 -0
  130. data/lib/mongoid/matchable/default.rb +72 -0
  131. data/lib/mongoid/matchable/exists.rb +23 -0
  132. data/lib/mongoid/matchable/gt.rb +21 -0
  133. data/lib/mongoid/matchable/gte.rb +21 -0
  134. data/lib/mongoid/matchable/in.rb +24 -0
  135. data/lib/mongoid/matchable/lt.rb +21 -0
  136. data/lib/mongoid/matchable/lte.rb +21 -0
  137. data/lib/mongoid/matchable/ne.rb +21 -0
  138. data/lib/mongoid/matchable/nin.rb +21 -0
  139. data/lib/mongoid/matchable/or.rb +33 -0
  140. data/lib/mongoid/matchable/size.rb +21 -0
  141. data/lib/mongoid/matchable.rb +152 -0
  142. data/lib/mongoid/persistable/creatable.rb +189 -0
  143. data/lib/mongoid/persistable/deletable.rb +149 -0
  144. data/lib/mongoid/persistable/destroyable.rb +55 -0
  145. data/lib/mongoid/persistable/incrementable.rb +36 -0
  146. data/lib/mongoid/persistable/logical.rb +38 -0
  147. data/lib/mongoid/persistable/poppable.rb +39 -0
  148. data/lib/mongoid/persistable/pullable.rb +55 -0
  149. data/lib/mongoid/persistable/pushable.rb +62 -0
  150. data/lib/mongoid/persistable/renamable.rb +35 -0
  151. data/lib/mongoid/persistable/savable.rb +52 -0
  152. data/lib/mongoid/persistable/settable.rb +33 -0
  153. data/lib/mongoid/persistable/unsettable.rb +36 -0
  154. data/lib/mongoid/persistable/updatable.rb +151 -0
  155. data/lib/mongoid/persistable/upsertable.rb +55 -0
  156. data/lib/mongoid/persistable.rb +212 -0
  157. data/lib/mongoid/positional.rb +71 -0
  158. data/lib/mongoid/railtie.rb +156 -0
  159. data/lib/mongoid/railties/database.rake +95 -0
  160. data/lib/mongoid/railties/document.rb +12 -0
  161. data/lib/mongoid/relations/accessors.rb +280 -0
  162. data/lib/mongoid/relations/auto_save.rb +106 -0
  163. data/lib/mongoid/relations/binding.rb +218 -0
  164. data/lib/mongoid/relations/bindings/embedded/in.rb +63 -0
  165. data/lib/mongoid/relations/bindings/embedded/many.rb +50 -0
  166. data/lib/mongoid/relations/bindings/embedded/one.rb +55 -0
  167. data/lib/mongoid/relations/bindings/referenced/in.rb +65 -0
  168. data/lib/mongoid/relations/bindings/referenced/many.rb +42 -0
  169. data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +69 -0
  170. data/lib/mongoid/relations/bindings/referenced/one.rb +44 -0
  171. data/lib/mongoid/relations/bindings.rb +9 -0
  172. data/lib/mongoid/relations/builder.rb +57 -0
  173. data/lib/mongoid/relations/builders/embedded/in.rb +29 -0
  174. data/lib/mongoid/relations/builders/embedded/many.rb +36 -0
  175. data/lib/mongoid/relations/builders/embedded/one.rb +30 -0
  176. data/lib/mongoid/relations/builders/nested_attributes/many.rb +174 -0
  177. data/lib/mongoid/relations/builders/nested_attributes/one.rb +126 -0
  178. data/lib/mongoid/relations/builders/referenced/in.rb +26 -0
  179. data/lib/mongoid/relations/builders/referenced/many.rb +27 -0
  180. data/lib/mongoid/relations/builders/referenced/many_to_many.rb +40 -0
  181. data/lib/mongoid/relations/builders/referenced/one.rb +26 -0
  182. data/lib/mongoid/relations/builders.rb +104 -0
  183. data/lib/mongoid/relations/cascading/delete.rb +44 -0
  184. data/lib/mongoid/relations/cascading/destroy.rb +43 -0
  185. data/lib/mongoid/relations/cascading/nullify.rb +35 -0
  186. data/lib/mongoid/relations/cascading/restrict.rb +39 -0
  187. data/lib/mongoid/relations/cascading.rb +56 -0
  188. data/lib/mongoid/relations/constraint.rb +49 -0
  189. data/lib/mongoid/relations/conversions.rb +34 -0
  190. data/lib/mongoid/relations/counter_cache.rb +118 -0
  191. data/lib/mongoid/relations/cyclic.rb +107 -0
  192. data/lib/mongoid/relations/embedded/batchable.rb +355 -0
  193. data/lib/mongoid/relations/embedded/in.rb +231 -0
  194. data/lib/mongoid/relations/embedded/many.rb +639 -0
  195. data/lib/mongoid/relations/embedded/one.rb +223 -0
  196. data/lib/mongoid/relations/macros.rb +356 -0
  197. data/lib/mongoid/relations/many.rb +208 -0
  198. data/lib/mongoid/relations/marshalable.rb +32 -0
  199. data/lib/mongoid/relations/metadata.rb +1172 -0
  200. data/lib/mongoid/relations/nested_builder.rb +74 -0
  201. data/lib/mongoid/relations/one.rb +60 -0
  202. data/lib/mongoid/relations/options.rb +48 -0
  203. data/lib/mongoid/relations/polymorphic.rb +39 -0
  204. data/lib/mongoid/relations/proxy.rb +270 -0
  205. data/lib/mongoid/relations/referenced/in.rb +314 -0
  206. data/lib/mongoid/relations/referenced/many.rb +787 -0
  207. data/lib/mongoid/relations/referenced/many_to_many.rb +486 -0
  208. data/lib/mongoid/relations/referenced/one.rb +290 -0
  209. data/lib/mongoid/relations/reflections.rb +62 -0
  210. data/lib/mongoid/relations/synchronization.rb +169 -0
  211. data/lib/mongoid/relations/targets/enumerable.rb +473 -0
  212. data/lib/mongoid/relations/targets.rb +2 -0
  213. data/lib/mongoid/relations/touchable.rb +94 -0
  214. data/lib/mongoid/relations.rb +162 -0
  215. data/lib/mongoid/reloadable.rb +95 -0
  216. data/lib/mongoid/scopable.rb +379 -0
  217. data/lib/mongoid/selectable.rb +59 -0
  218. data/lib/mongoid/serializable.rb +170 -0
  219. data/lib/mongoid/sessions/factory.rb +131 -0
  220. data/lib/mongoid/sessions/mongo_uri.rb +93 -0
  221. data/lib/mongoid/sessions/options.rb +141 -0
  222. data/lib/mongoid/sessions/validators/storage.rb +49 -0
  223. data/lib/mongoid/sessions/validators.rb +2 -0
  224. data/lib/mongoid/sessions.rb +330 -0
  225. data/lib/mongoid/shardable.rb +65 -0
  226. data/lib/mongoid/state.rb +97 -0
  227. data/lib/mongoid/threaded/lifecycle.rb +164 -0
  228. data/lib/mongoid/threaded.rb +383 -0
  229. data/lib/mongoid/timestamps/created/short.rb +19 -0
  230. data/lib/mongoid/timestamps/created.rb +34 -0
  231. data/lib/mongoid/timestamps/short.rb +10 -0
  232. data/lib/mongoid/timestamps/timeless.rb +81 -0
  233. data/lib/mongoid/timestamps/updated/short.rb +19 -0
  234. data/lib/mongoid/timestamps/updated.rb +45 -0
  235. data/lib/mongoid/timestamps.rb +16 -0
  236. data/lib/mongoid/traversable.rb +192 -0
  237. data/lib/mongoid/unit_of_work.rb +61 -0
  238. data/lib/mongoid/validatable/associated.rb +48 -0
  239. data/lib/mongoid/validatable/format.rb +20 -0
  240. data/lib/mongoid/validatable/length.rb +20 -0
  241. data/lib/mongoid/validatable/localizable.rb +30 -0
  242. data/lib/mongoid/validatable/macros.rb +94 -0
  243. data/lib/mongoid/validatable/presence.rb +86 -0
  244. data/lib/mongoid/validatable/queryable.rb +30 -0
  245. data/lib/mongoid/validatable/uniqueness.rb +330 -0
  246. data/lib/mongoid/validatable.rb +180 -0
  247. data/lib/mongoid/version.rb +4 -0
  248. data/lib/mongoid.rb +105 -0
  249. data/lib/rack/mongoid/middleware/identity_map.rb +39 -0
  250. data/lib/rack/mongoid.rb +2 -0
  251. data/lib/rails/generators/mongoid/config/config_generator.rb +25 -0
  252. data/lib/rails/generators/mongoid/config/templates/mongoid.yml +76 -0
  253. data/lib/rails/generators/mongoid/model/model_generator.rb +25 -0
  254. data/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
  255. data/lib/rails/generators/mongoid_generator.rb +65 -0
  256. data/lib/rails/mongoid.rb +180 -0
  257. data/lib/support/ruby_version.rb +26 -0
  258. data/spec/app/models/account.rb +28 -0
  259. data/spec/app/models/acolyte.rb +17 -0
  260. data/spec/app/models/actor.rb +18 -0
  261. data/spec/app/models/actress.rb +2 -0
  262. data/spec/app/models/address.rb +77 -0
  263. data/spec/app/models/address_component.rb +5 -0
  264. data/spec/app/models/address_number.rb +6 -0
  265. data/spec/app/models/agency.rb +5 -0
  266. data/spec/app/models/agent.rb +12 -0
  267. data/spec/app/models/album.rb +14 -0
  268. data/spec/app/models/alert.rb +5 -0
  269. data/spec/app/models/animal.rb +25 -0
  270. data/spec/app/models/answer.rb +4 -0
  271. data/spec/app/models/appointment.rb +7 -0
  272. data/spec/app/models/article.rb +10 -0
  273. data/spec/app/models/artist.rb +66 -0
  274. data/spec/app/models/artwork.rb +4 -0
  275. data/spec/app/models/audio.rb +5 -0
  276. data/spec/app/models/augmentation.rb +11 -0
  277. data/spec/app/models/author.rb +4 -0
  278. data/spec/app/models/band.rb +26 -0
  279. data/spec/app/models/bar.rb +10 -0
  280. data/spec/app/models/basic.rb +6 -0
  281. data/spec/app/models/bed.rb +1 -0
  282. data/spec/app/models/big_palette.rb +2 -0
  283. data/spec/app/models/birthday.rb +13 -0
  284. data/spec/app/models/book.rb +13 -0
  285. data/spec/app/models/breed.rb +4 -0
  286. data/spec/app/models/browser.rb +6 -0
  287. data/spec/app/models/building.rb +5 -0
  288. data/spec/app/models/building_address.rb +5 -0
  289. data/spec/app/models/bus.rb +7 -0
  290. data/spec/app/models/business.rb +5 -0
  291. data/spec/app/models/callback_test.rb +9 -0
  292. data/spec/app/models/canvas.rb +25 -0
  293. data/spec/app/models/car.rb +1 -0
  294. data/spec/app/models/cat.rb +8 -0
  295. data/spec/app/models/category.rb +8 -0
  296. data/spec/app/models/child.rb +4 -0
  297. data/spec/app/models/child_doc.rb +22 -0
  298. data/spec/app/models/church.rb +4 -0
  299. data/spec/app/models/circle.rb +3 -0
  300. data/spec/app/models/circuit.rb +4 -0
  301. data/spec/app/models/circus.rb +7 -0
  302. data/spec/app/models/code.rb +5 -0
  303. data/spec/app/models/comment.rb +16 -0
  304. data/spec/app/models/contractor.rb +5 -0
  305. data/spec/app/models/cookie.rb +6 -0
  306. data/spec/app/models/country_code.rb +8 -0
  307. data/spec/app/models/definition.rb +8 -0
  308. data/spec/app/models/description.rb +11 -0
  309. data/spec/app/models/dictionary.rb +10 -0
  310. data/spec/app/models/division.rb +10 -0
  311. data/spec/app/models/doctor.rb +12 -0
  312. data/spec/app/models/dog.rb +7 -0
  313. data/spec/app/models/dokument.rb +5 -0
  314. data/spec/app/models/dragon.rb +4 -0
  315. data/spec/app/models/driver.rb +7 -0
  316. data/spec/app/models/drug.rb +6 -0
  317. data/spec/app/models/dungeon.rb +4 -0
  318. data/spec/app/models/email.rb +6 -0
  319. data/spec/app/models/employer.rb +5 -0
  320. data/spec/app/models/entry.rb +6 -0
  321. data/spec/app/models/eraser.rb +1 -0
  322. data/spec/app/models/event.rb +22 -0
  323. data/spec/app/models/exhibition.rb +4 -0
  324. data/spec/app/models/exhibitor.rb +5 -0
  325. data/spec/app/models/eye.rb +9 -0
  326. data/spec/app/models/eye_bowl.rb +9 -0
  327. data/spec/app/models/face.rb +8 -0
  328. data/spec/app/models/favorite.rb +6 -0
  329. data/spec/app/models/filesystem.rb +5 -0
  330. data/spec/app/models/fire_hydrant.rb +6 -0
  331. data/spec/app/models/firefox.rb +4 -0
  332. data/spec/app/models/fish.rb +7 -0
  333. data/spec/app/models/folder.rb +7 -0
  334. data/spec/app/models/folder_item.rb +9 -0
  335. data/spec/app/models/fruits.rb +34 -0
  336. data/spec/app/models/game.rb +19 -0
  337. data/spec/app/models/ghost.rb +7 -0
  338. data/spec/app/models/home.rb +4 -0
  339. data/spec/app/models/house.rb +6 -0
  340. data/spec/app/models/html_writer.rb +3 -0
  341. data/spec/app/models/image.rb +22 -0
  342. data/spec/app/models/implant.rb +16 -0
  343. data/spec/app/models/item.rb +8 -0
  344. data/spec/app/models/jar.rb +7 -0
  345. data/spec/app/models/label.rb +40 -0
  346. data/spec/app/models/language.rb +5 -0
  347. data/spec/app/models/lat_lng.rb +15 -0
  348. data/spec/app/models/league.rb +11 -0
  349. data/spec/app/models/learner.rb +2 -0
  350. data/spec/app/models/line_item.rb +6 -0
  351. data/spec/app/models/location.rb +8 -0
  352. data/spec/app/models/login.rb +8 -0
  353. data/spec/app/models/manufacturer.rb +7 -0
  354. data/spec/app/models/meat.rb +4 -0
  355. data/spec/app/models/membership.rb +4 -0
  356. data/spec/app/models/mixed_drink.rb +4 -0
  357. data/spec/app/models/movie.rb +13 -0
  358. data/spec/app/models/my_hash.rb +2 -0
  359. data/spec/app/models/name.rb +23 -0
  360. data/spec/app/models/node.rb +5 -0
  361. data/spec/app/models/note.rb +12 -0
  362. data/spec/app/models/ordered_post.rb +6 -0
  363. data/spec/app/models/ordered_preference.rb +6 -0
  364. data/spec/app/models/oscar.rb +15 -0
  365. data/spec/app/models/override.rb +16 -0
  366. data/spec/app/models/ownable.rb +6 -0
  367. data/spec/app/models/owner.rb +6 -0
  368. data/spec/app/models/pack.rb +3 -0
  369. data/spec/app/models/page.rb +5 -0
  370. data/spec/app/models/page_question.rb +4 -0
  371. data/spec/app/models/palette.rb +7 -0
  372. data/spec/app/models/parent.rb +5 -0
  373. data/spec/app/models/parent_doc.rb +6 -0
  374. data/spec/app/models/passport.rb +5 -0
  375. data/spec/app/models/patient.rb +9 -0
  376. data/spec/app/models/pdf_writer.rb +3 -0
  377. data/spec/app/models/pencil.rb +1 -0
  378. data/spec/app/models/person.rb +206 -0
  379. data/spec/app/models/pet.rb +23 -0
  380. data/spec/app/models/pet_owner.rb +6 -0
  381. data/spec/app/models/phone.rb +9 -0
  382. data/spec/app/models/pizza.rb +7 -0
  383. data/spec/app/models/player.rb +35 -0
  384. data/spec/app/models/post.rb +44 -0
  385. data/spec/app/models/powerup.rb +11 -0
  386. data/spec/app/models/preference.rb +9 -0
  387. data/spec/app/models/princess.rb +8 -0
  388. data/spec/app/models/product.rb +17 -0
  389. data/spec/app/models/profile.rb +5 -0
  390. data/spec/app/models/pronunciation.rb +5 -0
  391. data/spec/app/models/purchase.rb +4 -0
  392. data/spec/app/models/question.rb +8 -0
  393. data/spec/app/models/quiz.rb +7 -0
  394. data/spec/app/models/rating.rb +8 -0
  395. data/spec/app/models/record.rb +46 -0
  396. data/spec/app/models/registry.rb +4 -0
  397. data/spec/app/models/role.rb +7 -0
  398. data/spec/app/models/root_category.rb +4 -0
  399. data/spec/app/models/sandwich.rb +4 -0
  400. data/spec/app/models/scheduler.rb +7 -0
  401. data/spec/app/models/seo.rb +7 -0
  402. data/spec/app/models/series.rb +4 -0
  403. data/spec/app/models/server.rb +13 -0
  404. data/spec/app/models/service.rb +22 -0
  405. data/spec/app/models/shape.rb +12 -0
  406. data/spec/app/models/shelf.rb +5 -0
  407. data/spec/app/models/shipping_container.rb +5 -0
  408. data/spec/app/models/shipping_pack.rb +3 -0
  409. data/spec/app/models/shop.rb +6 -0
  410. data/spec/app/models/short_agent.rb +4 -0
  411. data/spec/app/models/short_quiz.rb +5 -0
  412. data/spec/app/models/slave.rb +6 -0
  413. data/spec/app/models/song.rb +8 -0
  414. data/spec/app/models/sound.rb +5 -0
  415. data/spec/app/models/square.rb +4 -0
  416. data/spec/app/models/strategy.rb +3 -0
  417. data/spec/app/models/sub_item.rb +3 -0
  418. data/spec/app/models/subscription.rb +4 -0
  419. data/spec/app/models/survey.rb +5 -0
  420. data/spec/app/models/symptom.rb +6 -0
  421. data/spec/app/models/tag.rb +8 -0
  422. data/spec/app/models/target.rb +5 -0
  423. data/spec/app/models/template.rb +5 -0
  424. data/spec/app/models/thing.rb +9 -0
  425. data/spec/app/models/title.rb +3 -0
  426. data/spec/app/models/tool.rb +8 -0
  427. data/spec/app/models/topping.rb +5 -0
  428. data/spec/app/models/track.rb +38 -0
  429. data/spec/app/models/translation.rb +5 -0
  430. data/spec/app/models/tree.rb +9 -0
  431. data/spec/app/models/truck.rb +3 -0
  432. data/spec/app/models/user.rb +21 -0
  433. data/spec/app/models/user_account.rb +10 -0
  434. data/spec/app/models/validation_callback.rb +10 -0
  435. data/spec/app/models/vehicle.rb +11 -0
  436. data/spec/app/models/version.rb +5 -0
  437. data/spec/app/models/vet_visit.rb +5 -0
  438. data/spec/app/models/video.rb +13 -0
  439. data/spec/app/models/video_game.rb +1 -0
  440. data/spec/app/models/weapon.rb +11 -0
  441. data/spec/app/models/wiki_page.rb +14 -0
  442. data/spec/app/models/word.rb +15 -0
  443. data/spec/app/models/word_origin.rb +11 -0
  444. data/spec/app/models/writer.rb +11 -0
  445. data/spec/config/mongoid.yml +40 -0
  446. data/spec/mongoid/atomic/modifiers_spec.rb +456 -0
  447. data/spec/mongoid/atomic/paths/embedded/many_spec.rb +118 -0
  448. data/spec/mongoid/atomic/paths/embedded/one_spec.rb +110 -0
  449. data/spec/mongoid/atomic/paths/root_spec.rb +48 -0
  450. data/spec/mongoid/atomic/paths_spec.rb +270 -0
  451. data/spec/mongoid/atomic_spec.rb +365 -0
  452. data/spec/mongoid/attributes/nested_spec.rb +4832 -0
  453. data/spec/mongoid/attributes/readonly_spec.rb +169 -0
  454. data/spec/mongoid/attributes_spec.rb +1467 -0
  455. data/spec/mongoid/changeable_spec.rb +1507 -0
  456. data/spec/mongoid/composable_spec.rb +24 -0
  457. data/spec/mongoid/config/environment_spec.rb +83 -0
  458. data/spec/mongoid/config/options_spec.rb +56 -0
  459. data/spec/mongoid/config_spec.rb +318 -0
  460. data/spec/mongoid/contextual/aggregable/memory_spec.rb +293 -0
  461. data/spec/mongoid/contextual/aggregable/mongo_spec.rb +495 -0
  462. data/spec/mongoid/contextual/atomic_spec.rb +529 -0
  463. data/spec/mongoid/contextual/find_and_modify_spec.rb +220 -0
  464. data/spec/mongoid/contextual/geo_near_spec.rb +405 -0
  465. data/spec/mongoid/contextual/map_reduce_spec.rb +464 -0
  466. data/spec/mongoid/contextual/memory_spec.rb +1236 -0
  467. data/spec/mongoid/contextual/mongo_spec.rb +1863 -0
  468. data/spec/mongoid/contextual/text_search_spec.rb +207 -0
  469. data/spec/mongoid/copyable_spec.rb +393 -0
  470. data/spec/mongoid/criteria/findable_spec.rb +1222 -0
  471. data/spec/mongoid/criteria/inspectable_spec.rb +27 -0
  472. data/spec/mongoid/criteria/marshalable_spec.rb +28 -0
  473. data/spec/mongoid/criteria/modifiable_spec.rb +1063 -0
  474. data/spec/mongoid/criteria/scopable_spec.rb +391 -0
  475. data/spec/mongoid/criteria_spec.rb +3821 -0
  476. data/spec/mongoid/document_spec.rb +1205 -0
  477. data/spec/mongoid/equality_spec.rb +241 -0
  478. data/spec/mongoid/errors/ambiguous_relationship_spec.rb +29 -0
  479. data/spec/mongoid/errors/callback_spec.rb +29 -0
  480. data/spec/mongoid/errors/delete_restriction_spec.rb +29 -0
  481. data/spec/mongoid/errors/document_not_found_spec.rb +104 -0
  482. data/spec/mongoid/errors/eager_load_spec.rb +29 -0
  483. data/spec/mongoid/errors/invalid_collection_spec.rb +36 -0
  484. data/spec/mongoid/errors/invalid_config_option_spec.rb +29 -0
  485. data/spec/mongoid/errors/invalid_field_option_spec.rb +29 -0
  486. data/spec/mongoid/errors/invalid_field_spec.rb +37 -0
  487. data/spec/mongoid/errors/invalid_find_spec.rb +29 -0
  488. data/spec/mongoid/errors/invalid_includes_spec.rb +40 -0
  489. data/spec/mongoid/errors/invalid_index_spec.rb +29 -0
  490. data/spec/mongoid/errors/invalid_options_spec.rb +29 -0
  491. data/spec/mongoid/errors/invalid_path_spec.rb +23 -0
  492. data/spec/mongoid/errors/invalid_scope_spec.rb +29 -0
  493. data/spec/mongoid/errors/invalid_set_polymorphic_relation_spec.rb +17 -0
  494. data/spec/mongoid/errors/invalid_storage_options_spec.rb +29 -0
  495. data/spec/mongoid/errors/invalid_time_spec.rb +29 -0
  496. data/spec/mongoid/errors/inverse_not_found_spec.rb +29 -0
  497. data/spec/mongoid/errors/mixed_relations_spec.rb +29 -0
  498. data/spec/mongoid/errors/mixed_session_configuration_spec.rb +29 -0
  499. data/spec/mongoid/errors/mongoid_error_spec.rb +48 -0
  500. data/spec/mongoid/errors/nested_attributes_metadata_not_found_spec.rb +29 -0
  501. data/spec/mongoid/errors/no_environment_spec.rb +29 -0
  502. data/spec/mongoid/errors/no_map_reduce_output_spec.rb +29 -0
  503. data/spec/mongoid/errors/no_metadata_spec.rb +23 -0
  504. data/spec/mongoid/errors/no_parent_spec.rb +29 -0
  505. data/spec/mongoid/errors/no_session_config_spec.rb +29 -0
  506. data/spec/mongoid/errors/no_session_database_spec.rb +29 -0
  507. data/spec/mongoid/errors/no_session_hosts_spec.rb +29 -0
  508. data/spec/mongoid/errors/no_sessions_config_spec.rb +29 -0
  509. data/spec/mongoid/errors/readonly_attribute_spec.rb +29 -0
  510. data/spec/mongoid/errors/scope_overwrite_spec.rb +29 -0
  511. data/spec/mongoid/errors/too_many_nested_attribute_records_spec.rb +29 -0
  512. data/spec/mongoid/errors/unknown_attribute_spec.rb +29 -0
  513. data/spec/mongoid/errors/unsaved_document_spec.rb +37 -0
  514. data/spec/mongoid/errors/unsupported_javascript_spec.rb +29 -0
  515. data/spec/mongoid/errors/validations_spec.rb +45 -0
  516. data/spec/mongoid/extensions/array_spec.rb +638 -0
  517. data/spec/mongoid/extensions/big_decimal_spec.rb +104 -0
  518. data/spec/mongoid/extensions/binary_spec.rb +60 -0
  519. data/spec/mongoid/extensions/boolean_spec.rb +135 -0
  520. data/spec/mongoid/extensions/date_spec.rb +235 -0
  521. data/spec/mongoid/extensions/date_time_spec.rb +155 -0
  522. data/spec/mongoid/extensions/false_class_spec.rb +42 -0
  523. data/spec/mongoid/extensions/float_spec.rb +133 -0
  524. data/spec/mongoid/extensions/hash_spec.rb +333 -0
  525. data/spec/mongoid/extensions/integer_spec.rb +136 -0
  526. data/spec/mongoid/extensions/module_spec.rb +42 -0
  527. data/spec/mongoid/extensions/nil_class_spec.rb +11 -0
  528. data/spec/mongoid/extensions/object_id_spec.rb +946 -0
  529. data/spec/mongoid/extensions/object_spec.rb +292 -0
  530. data/spec/mongoid/extensions/range_spec.rb +154 -0
  531. data/spec/mongoid/extensions/regexp_spec.rb +47 -0
  532. data/spec/mongoid/extensions/set_spec.rb +33 -0
  533. data/spec/mongoid/extensions/string_spec.rb +357 -0
  534. data/spec/mongoid/extensions/symbol_spec.rb +76 -0
  535. data/spec/mongoid/extensions/time_spec.rb +467 -0
  536. data/spec/mongoid/extensions/time_with_zone_spec.rb +405 -0
  537. data/spec/mongoid/extensions/true_class_spec.rb +42 -0
  538. data/spec/mongoid/extensions_spec.rb +15 -0
  539. data/spec/mongoid/factory_spec.rb +185 -0
  540. data/spec/mongoid/fields/foreign_key_spec.rb +694 -0
  541. data/spec/mongoid/fields/internal/foreign_keys/array_spec.rb +184 -0
  542. data/spec/mongoid/fields/internal/foreign_keys/object_spec.rb +201 -0
  543. data/spec/mongoid/fields/localized_spec.rb +386 -0
  544. data/spec/mongoid/fields/standard_spec.rb +166 -0
  545. data/spec/mongoid/fields_spec.rb +1229 -0
  546. data/spec/mongoid/findable_spec.rb +342 -0
  547. data/spec/mongoid/identity_map_spec.rb +564 -0
  548. data/spec/mongoid/indexable/specification_spec.rb +87 -0
  549. data/spec/mongoid/indexable_spec.rb +504 -0
  550. data/spec/mongoid/inspectable_spec.rb +49 -0
  551. data/spec/mongoid/interceptable_spec.rb +1564 -0
  552. data/spec/mongoid/loggable_spec.rb +21 -0
  553. data/spec/mongoid/matchable/all_spec.rb +31 -0
  554. data/spec/mongoid/matchable/and_spec.rb +162 -0
  555. data/spec/mongoid/matchable/default_spec.rb +130 -0
  556. data/spec/mongoid/matchable/exists_spec.rb +57 -0
  557. data/spec/mongoid/matchable/gt_spec.rb +75 -0
  558. data/spec/mongoid/matchable/gte_spec.rb +74 -0
  559. data/spec/mongoid/matchable/in_spec.rb +25 -0
  560. data/spec/mongoid/matchable/lt_spec.rb +74 -0
  561. data/spec/mongoid/matchable/lte_spec.rb +74 -0
  562. data/spec/mongoid/matchable/ne_spec.rb +25 -0
  563. data/spec/mongoid/matchable/nin_spec.rb +25 -0
  564. data/spec/mongoid/matchable/or_spec.rb +106 -0
  565. data/spec/mongoid/matchable/size_spec.rb +25 -0
  566. data/spec/mongoid/matchable_spec.rb +532 -0
  567. data/spec/mongoid/persistable/creatable_spec.rb +512 -0
  568. data/spec/mongoid/persistable/deletable_spec.rb +205 -0
  569. data/spec/mongoid/persistable/destroyable_spec.rb +148 -0
  570. data/spec/mongoid/persistable/incrementable_spec.rb +173 -0
  571. data/spec/mongoid/persistable/logical_spec.rb +143 -0
  572. data/spec/mongoid/persistable/poppable_spec.rb +115 -0
  573. data/spec/mongoid/persistable/pullable_spec.rb +228 -0
  574. data/spec/mongoid/persistable/pushable_spec.rb +258 -0
  575. data/spec/mongoid/persistable/renamable_spec.rb +135 -0
  576. data/spec/mongoid/persistable/savable_spec.rb +432 -0
  577. data/spec/mongoid/persistable/settable_spec.rb +139 -0
  578. data/spec/mongoid/persistable/unsettable_spec.rb +155 -0
  579. data/spec/mongoid/persistable/updatable_spec.rb +558 -0
  580. data/spec/mongoid/persistable/upsertable_spec.rb +106 -0
  581. data/spec/mongoid/persistable_spec.rb +206 -0
  582. data/spec/mongoid/positional_spec.rb +227 -0
  583. data/spec/mongoid/railties/document_spec.rb +24 -0
  584. data/spec/mongoid/relations/accessors_spec.rb +752 -0
  585. data/spec/mongoid/relations/auto_save_spec.rb +261 -0
  586. data/spec/mongoid/relations/bindings/embedded/in_spec.rb +171 -0
  587. data/spec/mongoid/relations/bindings/embedded/many_spec.rb +54 -0
  588. data/spec/mongoid/relations/bindings/embedded/one_spec.rb +77 -0
  589. data/spec/mongoid/relations/bindings/referenced/in_spec.rb +241 -0
  590. data/spec/mongoid/relations/bindings/referenced/many_spec.rb +153 -0
  591. data/spec/mongoid/relations/bindings/referenced/many_to_many_spec.rb +178 -0
  592. data/spec/mongoid/relations/bindings/referenced/one_spec.rb +131 -0
  593. data/spec/mongoid/relations/builders/embedded/in_spec.rb +34 -0
  594. data/spec/mongoid/relations/builders/embedded/many_spec.rb +132 -0
  595. data/spec/mongoid/relations/builders/embedded/one_spec.rb +99 -0
  596. data/spec/mongoid/relations/builders/nested_attributes/many_spec.rb +234 -0
  597. data/spec/mongoid/relations/builders/nested_attributes/one_spec.rb +250 -0
  598. data/spec/mongoid/relations/builders/referenced/in_spec.rb +242 -0
  599. data/spec/mongoid/relations/builders/referenced/many_spec.rb +137 -0
  600. data/spec/mongoid/relations/builders/referenced/many_to_many_spec.rb +178 -0
  601. data/spec/mongoid/relations/builders/referenced/one_spec.rb +124 -0
  602. data/spec/mongoid/relations/builders_spec.rb +226 -0
  603. data/spec/mongoid/relations/cascading/delete_spec.rb +101 -0
  604. data/spec/mongoid/relations/cascading/destroy_spec.rb +47 -0
  605. data/spec/mongoid/relations/cascading/nullify_spec.rb +32 -0
  606. data/spec/mongoid/relations/cascading/restrict_spec.rb +68 -0
  607. data/spec/mongoid/relations/cascading_spec.rb +355 -0
  608. data/spec/mongoid/relations/constraint_spec.rb +74 -0
  609. data/spec/mongoid/relations/conversions_spec.rb +126 -0
  610. data/spec/mongoid/relations/counter_cache_spec.rb +205 -0
  611. data/spec/mongoid/relations/cyclic_spec.rb +156 -0
  612. data/spec/mongoid/relations/embedded/dirty_spec.rb +65 -0
  613. data/spec/mongoid/relations/embedded/in_spec.rb +579 -0
  614. data/spec/mongoid/relations/embedded/many_spec.rb +3781 -0
  615. data/spec/mongoid/relations/embedded/one_spec.rb +1014 -0
  616. data/spec/mongoid/relations/macros_spec.rb +631 -0
  617. data/spec/mongoid/relations/metadata_spec.rb +1936 -0
  618. data/spec/mongoid/relations/options_spec.rb +35 -0
  619. data/spec/mongoid/relations/polymorphic_spec.rb +128 -0
  620. data/spec/mongoid/relations/proxy_spec.rb +48 -0
  621. data/spec/mongoid/relations/referenced/in_spec.rb +1435 -0
  622. data/spec/mongoid/relations/referenced/many_spec.rb +3600 -0
  623. data/spec/mongoid/relations/referenced/many_to_many_spec.rb +3566 -0
  624. data/spec/mongoid/relations/referenced/one_spec.rb +1289 -0
  625. data/spec/mongoid/relations/reflections_spec.rb +101 -0
  626. data/spec/mongoid/relations/synchronization_spec.rb +449 -0
  627. data/spec/mongoid/relations/targets/enumerable_spec.rb +1710 -0
  628. data/spec/mongoid/relations/touchable_spec.rb +296 -0
  629. data/spec/mongoid/relations_spec.rb +188 -0
  630. data/spec/mongoid/reloadable_spec.rb +305 -0
  631. data/spec/mongoid/scopable_spec.rb +926 -0
  632. data/spec/mongoid/selectable_spec.rb +134 -0
  633. data/spec/mongoid/serializable_spec.rb +862 -0
  634. data/spec/mongoid/sessions/factory_spec.rb +333 -0
  635. data/spec/mongoid/sessions/mongo_uri_spec.rb +103 -0
  636. data/spec/mongoid/sessions/options_spec.rb +71 -0
  637. data/spec/mongoid/sessions_spec.rb +1078 -0
  638. data/spec/mongoid/shardable_spec.rb +61 -0
  639. data/spec/mongoid/state_spec.rb +102 -0
  640. data/spec/mongoid/threaded_spec.rb +258 -0
  641. data/spec/mongoid/timestamps/created/short_spec.rb +51 -0
  642. data/spec/mongoid/timestamps/created_spec.rb +44 -0
  643. data/spec/mongoid/timestamps/timeless_spec.rb +130 -0
  644. data/spec/mongoid/timestamps/updated/short_spec.rb +90 -0
  645. data/spec/mongoid/timestamps/updated_spec.rb +86 -0
  646. data/spec/mongoid/timestamps_spec.rb +112 -0
  647. data/spec/mongoid/traversable_spec.rb +244 -0
  648. data/spec/mongoid/unit_of_work_spec.rb +196 -0
  649. data/spec/mongoid/validatable/associated_spec.rb +183 -0
  650. data/spec/mongoid/validatable/format_spec.rb +83 -0
  651. data/spec/mongoid/validatable/length_spec.rb +223 -0
  652. data/spec/mongoid/validatable/numericality_spec.rb +30 -0
  653. data/spec/mongoid/validatable/presence_spec.rb +592 -0
  654. data/spec/mongoid/validatable/uniqueness_spec.rb +2342 -0
  655. data/spec/mongoid/validatable_spec.rb +309 -0
  656. data/spec/mongoid_spec.rb +74 -0
  657. data/spec/rack/mongoid/middleware/identity_map_spec.rb +72 -0
  658. data/spec/rails/mongoid_spec.rb +462 -0
  659. data/spec/spec_helper.rb +103 -0
  660. metadata +1174 -0
@@ -0,0 +1,55 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for $pull and $pullAll operations.
6
+ #
7
+ # @since 4.0.0
8
+ module Pullable
9
+ extend ActiveSupport::Concern
10
+
11
+ # Pull single values from the provided arrays.
12
+ #
13
+ # @example Pull a value from the array.
14
+ # document.pull(names: "Jeff", levels: 5)
15
+ #
16
+ # @note If duplicate values are found they will all be pulled.
17
+ #
18
+ # @param [ Hash ] pulls The field/value pull pairs.
19
+ #
20
+ # @return [ true, false ] If the operation succeeded.
21
+ #
22
+ # @since 4.0.0
23
+ def pull(pulls)
24
+ prepare_atomic_operation do |ops|
25
+ process_atomic_operations(pulls) do |field, value|
26
+ (send(field) || []).delete(value)
27
+ ops[atomic_attribute_name(field)] = value
28
+ end
29
+ { "$pull" => ops }
30
+ end
31
+ end
32
+
33
+ # Pull multiple values from the provided array fields.
34
+ #
35
+ # @example Pull values from the arrays.
36
+ # document.pull_all(names: [ "Jeff", "Bob" ], levels: [ 5, 6 ])
37
+ #
38
+ # @param [ Hash ] pulls The pull all operations.
39
+ #
40
+ # @return [ true, false ] If the operation succeeded.
41
+ #
42
+ # @since 4.0.0
43
+ def pull_all(pulls)
44
+ prepare_atomic_operation do |ops|
45
+ process_atomic_operations(pulls) do |field, value|
46
+ existing = send(field) || []
47
+ value.each{ |val| existing.delete(val) }
48
+ ops[atomic_attribute_name(field)] = value
49
+ end
50
+ { "$pullAll" => ops }
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,62 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for $push and $addToSet operations.
6
+ #
7
+ # @since 4.0.0
8
+ module Pushable
9
+ extend ActiveSupport::Concern
10
+
11
+ # Add the single values to the arrays only if the value does not already
12
+ # exist in the array.
13
+ #
14
+ # @example Add the values to the sets.
15
+ # document.add_to_set(names: "James", aliases: "Bond")
16
+ #
17
+ # @param [ Hash ] adds The field/value pairs to add.
18
+ #
19
+ # @return [ true, false ] If the operation succeeded.
20
+ #
21
+ # @since 4.0.0
22
+ def add_to_set(adds)
23
+ prepare_atomic_operation do |ops|
24
+ process_atomic_operations(adds) do |field, value|
25
+ existing = send(field) || (attributes[field] ||= [])
26
+ values = [ value ].flatten(1)
27
+ values.each do |val|
28
+ existing.push(val) unless existing.include?(val)
29
+ end
30
+ ops[atomic_attribute_name(field)] = { "$each" => values }
31
+ end
32
+ { "$addToSet" => ops }
33
+ end
34
+ end
35
+
36
+ # Push a single value or multiple values onto arrays.
37
+ #
38
+ # @example Push a single value onto arrays.
39
+ # document.push(names: "James", aliases: "007")
40
+ #
41
+ # @example Push multiple values onto arrays.
42
+ # document.push(names: [ "James", "Bond" ])
43
+ #
44
+ # @param [ Hash ] pushes The $push operations.
45
+ #
46
+ # @return [ true, false ] If the operation succeeded.
47
+ #
48
+ # @since 4.0.0
49
+ def push(pushes)
50
+ prepare_atomic_operation do |ops|
51
+ process_atomic_operations(pushes) do |field, value|
52
+ existing = send(field) || (attributes[field] ||= [])
53
+ values = [ value ].flatten(1)
54
+ values.each{ |val| existing.push(val) }
55
+ ops[atomic_attribute_name(field)] = { "$each" => values }
56
+ end
57
+ { "$push" => ops }
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,35 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for $rename operations.
6
+ #
7
+ # @since 4.0.0
8
+ module Renamable
9
+ extend ActiveSupport::Concern
10
+
11
+ # Rename fields from one value to another via $rename.
12
+ #
13
+ # @example Rename the fields.
14
+ # document.rename(title: "salutation", name: "nombre")
15
+ #
16
+ # @note This does not work for fields in embeds many relations.
17
+ #
18
+ # @param [ Hash ] renames The rename pairs of old name/new name.
19
+ #
20
+ # @return [ true, false ] If the rename suceeded.
21
+ #
22
+ # @since 4.0.0
23
+ def rename(renames)
24
+ prepare_atomic_operation do |ops|
25
+ process_atomic_operations(renames) do |old_field, new_field|
26
+ new_name = new_field.to_s
27
+ attributes[new_name] = attributes.delete(old_field)
28
+ ops[atomic_attribute_name(old_field)] = atomic_attribute_name(new_name)
29
+ end
30
+ { "$rename" => ops }
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,52 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for persistence operations that save documents.
6
+ #
7
+ # @since 4.0.0
8
+ module Savable
9
+
10
+ # Save the document - will perform an insert if the document is new, and
11
+ # update if not.
12
+ #
13
+ # @example Save the document.
14
+ # document.save
15
+ #
16
+ # @param [ Hash ] options Options to pass to the save.
17
+ #
18
+ # @return [ true, false ] True is success, false if not.
19
+ #
20
+ # @since 1.0.0
21
+ def save(options = {})
22
+ if new_record?
23
+ !insert(options).new_record?
24
+ else
25
+ update_document(options)
26
+ end
27
+ end
28
+
29
+ # Save the document - will perform an insert if the document is new, and
30
+ # update if not. If a validation error occurs an error will get raised.
31
+ #
32
+ # @example Save the document.
33
+ # document.save!
34
+ #
35
+ # @param [ Hash ] options Options to pass to the save.
36
+ #
37
+ # @raise [ Errors::Validations ] If validation failed.
38
+ # @raise [ Errors::Callback ] If a callback returns false.
39
+ #
40
+ # @return [ true, false ] True if validation passed.
41
+ #
42
+ # @since 1.0.0
43
+ def save!(options = {})
44
+ unless save(options)
45
+ fail_due_to_validation! unless errors.empty?
46
+ fail_due_to_callback!(:save!)
47
+ end
48
+ true
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,33 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for $set operations.
6
+ #
7
+ # @since 4.0.0
8
+ module Settable
9
+ extend ActiveSupport::Concern
10
+
11
+ # Perform a $set operation on the provided field/value pairs and set the
12
+ # values in the document in memory.
13
+ #
14
+ # @example Set the values.
15
+ # document.set(title: "sir", dob: Date.new(1970, 1, 1))
16
+ #
17
+ # @param [ Hash ] setters The field/value pairs to set.
18
+ #
19
+ # @return [ true ] If the operation succeeded.
20
+ #
21
+ # @since 4.0.0
22
+ def set(setters)
23
+ prepare_atomic_operation do |ops|
24
+ process_atomic_operations(setters) do |field, value|
25
+ send("#{field}=", value)
26
+ ops[atomic_attribute_name(field)] = attributes[field]
27
+ end
28
+ { "$set" => ops }
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,36 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for $unset operations.
6
+ #
7
+ # @since 4.0.0
8
+ module Unsettable
9
+ extend ActiveSupport::Concern
10
+
11
+ # Perform an $unset operation on the provided fields and in the
12
+ # values in the document in memory.
13
+ #
14
+ # @example Unset the values.
15
+ # document.unset(:first_name, :last_name, :middle)
16
+ #
17
+ # @param [ Array<String, Symbol> ] fields The names of the fields to
18
+ # unset.
19
+ #
20
+ # @return [ true ] If the operation succeeded.
21
+ #
22
+ # @since 4.0.0
23
+ def unset(*fields)
24
+ prepare_atomic_operation do |ops|
25
+ fields.flatten.each do |field|
26
+ normalized = database_field_name(field)
27
+ attributes.delete(normalized)
28
+ ops[atomic_attribute_name(normalized)] = true
29
+ end
30
+ { "$unset" => ops }
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+
@@ -0,0 +1,151 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for persistence operations that update existing
6
+ # documents.
7
+ #
8
+ # @since 4.0.0
9
+ module Updatable
10
+
11
+ # Update the document in the database.
12
+ #
13
+ # @example Update an existing document.
14
+ # document.update
15
+ #
16
+ # @param [ Hash ] options Options to pass to update.
17
+ #
18
+ # @option options [ true, false ] :validate Whether or not to validate.
19
+ #
20
+ # @return [ true, false ] True if succeeded, false if not.
21
+ #
22
+ # @since 1.0.0
23
+ def update_document(options = {})
24
+ prepare_update(options) do
25
+ updates, conflicts = init_atomic_updates
26
+ unless updates.empty?
27
+ coll = _root.collection
28
+ selector = atomic_selector
29
+ coll.find(selector).update(positionally(selector, updates))
30
+ conflicts.each_pair do |key, value|
31
+ coll.find(selector).update(positionally(selector, { key => value }))
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ # Update a single attribute and persist the entire document.
38
+ # This skips validation but fires the callbacks.
39
+ #
40
+ # @example Update the attribute.
41
+ # person.update_attribute(:title, "Sir")
42
+ #
43
+ # @param [ Symbol, String ] name The name of the attribute.
44
+ # @param [ Object ] value The new value of the attribute.a
45
+ #
46
+ # @raise [ Errors::ReadonlyAttribute ] If the field cannot be changed due
47
+ # to being flagged as reaodnly.
48
+ #
49
+ # @return [ true, false ] True if save was successfull, false if not.
50
+ #
51
+ # @since 2.0.0
52
+ def update_attribute(name, value)
53
+ normalized = name.to_s
54
+ unless attribute_writable?(normalized)
55
+ raise Errors::ReadonlyAttribute.new(normalized, value)
56
+ end
57
+ setter = "#{normalized}="
58
+ if respond_to?(setter)
59
+ send(setter, value)
60
+ else
61
+ write_attribute(database_field_name(normalized), value)
62
+ end
63
+ save(validate: false)
64
+ end
65
+
66
+ # Update the document attributes in the database.
67
+ #
68
+ # @example Update the document's attributes
69
+ # document.update(:title => "Sir")
70
+ #
71
+ # @param [ Hash ] attributes The attributes to update.
72
+ #
73
+ # @return [ true, false ] True if validation passed, false if not.
74
+ #
75
+ # @since 1.0.0
76
+ def update(attributes = {})
77
+ assign_attributes(attributes)
78
+ save
79
+ end
80
+ alias :update_attributes :update
81
+
82
+ # Update the document attributes in the database and raise an error if
83
+ # validation failed.
84
+ #
85
+ # @example Update the document's attributes.
86
+ # document.update!(:title => "Sir")
87
+ #
88
+ # @param [ Hash ] attributes The attributes to update.
89
+ #
90
+ # @raise [ Errors::Validations ] If validation failed.
91
+ # @raise [ Errors::Callbacks ] If a callback returns false.
92
+ #
93
+ # @return [ true, false ] True if validation passed.
94
+ #
95
+ # @since 1.0.0
96
+ def update!(attributes = {})
97
+ result = update_attributes(attributes)
98
+ unless result
99
+ fail_due_to_validation! unless errors.empty?
100
+ fail_due_to_callback!(:update_attributes!)
101
+ end
102
+ result
103
+ end
104
+ alias :update_attributes! :update!
105
+
106
+ private
107
+
108
+ # Initialize the atomic updates.
109
+ #
110
+ # @api private
111
+ #
112
+ # @example Initialize the atomic updates.
113
+ # document.init_atomic_updates
114
+ #
115
+ # @return [ Array<Hash> ] The updates and conflicts.
116
+ #
117
+ # @since 4.0.0
118
+ def init_atomic_updates
119
+ updates = atomic_updates
120
+ conflicts = updates.delete(:conflicts) || {}
121
+ [ updates, conflicts ]
122
+ end
123
+
124
+ # Prepare the update for execution. Validates and runs callbacks, etc.
125
+ #
126
+ # @api private
127
+ #
128
+ # @example Prepare for update.
129
+ # document.prepare_update do
130
+ # collection.update(atomic_selector)
131
+ # end
132
+ #
133
+ # @param [ Hash ] options The options.
134
+ #
135
+ # @return [ true, false ] The result of the update.
136
+ #
137
+ # @since 4.0.0
138
+ def prepare_update(options = {})
139
+ return false if performing_validations?(options) && invalid?(:update)
140
+ process_flagged_destroys
141
+ result = run_callbacks(:save) do
142
+ run_callbacks(:update) do
143
+ yield(self)
144
+ true
145
+ end
146
+ end
147
+ post_process_persist(result, options) and result
148
+ end
149
+ end
150
+ end
151
+ end
@@ -0,0 +1,55 @@
1
+ # encoding: utf-8
2
+ module Mongoid
3
+ module Persistable
4
+
5
+ # Defines behaviour for persistence operations that upsert documents.
6
+ #
7
+ # @since 4.0.0
8
+ module Upsertable
9
+
10
+ # Perform an upsert of the document. If the document does not exist in the
11
+ # database, then Mongo will insert a new one, otherwise the fields will get
12
+ # overwritten with new values on the existing document.
13
+ #
14
+ # @example Upsert the document.
15
+ # document.upsert
16
+ #
17
+ # @param [ Hash ] options The validation options.
18
+ #
19
+ # @return [ true ] True.
20
+ #
21
+ # @since 3.0.0
22
+ def upsert(options = {})
23
+ prepare_upsert(options) do
24
+ collection.find(atomic_selector).update(as_document, [ :upsert ])
25
+ end
26
+ end
27
+
28
+ private
29
+
30
+ # Prepare the upsert for execution.
31
+ #
32
+ # @api private
33
+ #
34
+ # @example Prepare the upsert
35
+ # document.prepare_upsert do
36
+ # collection.find(selector).update(as_document)
37
+ # end
38
+ #
39
+ # @param [ Hash ] options The options hash.
40
+ #
41
+ # @return [ true, false ] If the operation succeeded.
42
+ #
43
+ # @since 4.0.0
44
+ def prepare_upsert(options = {})
45
+ return false if performing_validations?(options) && invalid?(:upsert)
46
+ result = run_callbacks(:upsert) do
47
+ yield(self)
48
+ true
49
+ end
50
+ self.new_record = false
51
+ post_process_persist(result, options) and result
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,212 @@
1
+ # encoding: utf-8
2
+ require "mongoid/persistable/creatable"
3
+ require "mongoid/persistable/deletable"
4
+ require "mongoid/persistable/destroyable"
5
+ require "mongoid/persistable/incrementable"
6
+ require "mongoid/persistable/logical"
7
+ require "mongoid/persistable/poppable"
8
+ require "mongoid/persistable/pullable"
9
+ require "mongoid/persistable/pushable"
10
+ require "mongoid/persistable/renamable"
11
+ require "mongoid/persistable/savable"
12
+ require "mongoid/persistable/settable"
13
+ require "mongoid/persistable/updatable"
14
+ require "mongoid/persistable/upsertable"
15
+ require "mongoid/persistable/unsettable"
16
+
17
+ module Mongoid
18
+
19
+ # Contains general behaviour for persistence operations.
20
+ #
21
+ # @since 2.0.0
22
+ module Persistable
23
+ extend ActiveSupport::Concern
24
+ include Creatable
25
+ include Deletable
26
+ include Destroyable
27
+ include Incrementable
28
+ include Logical
29
+ include Poppable
30
+ include Positional
31
+ include Pullable
32
+ include Pushable
33
+ include Renamable
34
+ include Savable
35
+ include Settable
36
+ include Updatable
37
+ include Upsertable
38
+ include Unsettable
39
+
40
+ # The atomic operations that deal with arrays or sets in the db.
41
+ #
42
+ # @since 4.0.0
43
+ LIST_OPERATIONS = [ "$addToSet", "$push", "$pull", "$pullAll" ].freeze
44
+
45
+ # Execute operations atomically (in a single database call) for everything
46
+ # that would happen inside the block.
47
+ #
48
+ # @example Execute the operations atomically.
49
+ # document.atomically do
50
+ # document.set(name: "Tool").inc(likes: 10)
51
+ # end
52
+ #
53
+ # @return [ true, false ] If the operation succeeded.
54
+ #
55
+ # @since 4.0.0
56
+ def atomically
57
+ begin
58
+ @atomic_updates_to_execute = {}
59
+ yield(self) if block_given?
60
+ persist_atomic_operations(@atomic_updates_to_execute)
61
+ true
62
+ ensure
63
+ @atomic_updates_to_execute = nil
64
+ end
65
+ end
66
+
67
+ # Raise an error if validation failed.
68
+ #
69
+ # @example Raise the validation error.
70
+ # Person.fail_due_to_validation!(person)
71
+ #
72
+ # @param [ Document ] document The document to fail.
73
+ #
74
+ # @raise [ Errors::Validations ] The validation error.
75
+ #
76
+ # @since 4.0.0
77
+ def fail_due_to_validation!
78
+ raise Errors::Validations.new(self)
79
+ end
80
+
81
+ # Raise an error if a callback failed.
82
+ #
83
+ # @example Raise the callback error.
84
+ # Person.fail_due_to_callback!(person, :create!)
85
+ #
86
+ # @param [ Document ] document The document to fail.
87
+ # @param [ Symbol ] method The method being called.
88
+ #
89
+ # @raise [ Errors::Callback ] The callback error.
90
+ #
91
+ # @since 4.0.0
92
+ def fail_due_to_callback!(method)
93
+ raise Errors::Callback.new(self.class, method)
94
+ end
95
+
96
+ private
97
+
98
+ # Are we executing an atomically block on the current document?
99
+ #
100
+ # @api private
101
+ #
102
+ # @example Are we executing atomically?
103
+ # document.executing_atomically?
104
+ #
105
+ # @return [ true, false ] If we are current executing atomically.
106
+ #
107
+ # @since 4.0.0
108
+ def executing_atomically?
109
+ !@atomic_updates_to_execute.nil?
110
+ end
111
+
112
+ # Post process the persistence operation.
113
+ #
114
+ # @api private
115
+ #
116
+ # @example Post process the persistence operation.
117
+ # document.post_process_persist(true)
118
+ #
119
+ # @param [ Object ] result The result of the operation.
120
+ # @param [ Hash ] options The options.
121
+ #
122
+ # @return [ true ] true.
123
+ #
124
+ # @since 4.0.0
125
+ def post_process_persist(result, options = {})
126
+ post_persist unless result == false
127
+ errors.clear unless performing_validations?(options)
128
+ true
129
+ end
130
+
131
+ # Prepare an atomic persistence operation. Yields an empty hash to be sent
132
+ # to the update.
133
+ #
134
+ # @api private
135
+ #
136
+ # @example Prepare the atomic operation.
137
+ # document.prepare_atomic_operation do |coll, selector, opts|
138
+ # ...
139
+ # end
140
+ #
141
+ # @return [ Object ] The result of the operation.
142
+ #
143
+ # @since 4.0.0
144
+ def prepare_atomic_operation
145
+ # @todo: Check if the document is persisted here.
146
+ operations = yield({})
147
+ persist_or_delay_atomic_operation(operations)
148
+ self
149
+ end
150
+
151
+ # Process the atomic operations - this handles the common behaviour of
152
+ # iterating through each op, getting the aliased field name, and removing
153
+ # appropriate dirty changes.
154
+ #
155
+ # @api private
156
+ #
157
+ # @example Process the atomic operations.
158
+ # document.process_atomic_operations(pulls) do |field, value|
159
+ # ...
160
+ # end
161
+ #
162
+ # @param [ Hash ] operations The atomic operations.
163
+ #
164
+ # @return [ Hash ] The operations.
165
+ #
166
+ # @since 4.0.0
167
+ def process_atomic_operations(operations)
168
+ operations.each do |field, value|
169
+ normalized = database_field_name(field)
170
+ yield(normalized, value)
171
+ remove_change(normalized)
172
+ end
173
+ end
174
+
175
+ # If we are in an atomically block, add the operations to the delayed group,
176
+ # otherwise persist immediately.
177
+ #
178
+ # @api private
179
+ #
180
+ # @example Persist immediately or delay the operations.
181
+ # document.persist_or_delay_atomic_operation(ops)
182
+ #
183
+ # @param [ Hash ] operation The operation.
184
+ #
185
+ # @since 4.0.0
186
+ def persist_or_delay_atomic_operation(operation)
187
+ if executing_atomically?
188
+ operation.each do |(name, hash)|
189
+ @atomic_updates_to_execute[name] ||= {}
190
+ @atomic_updates_to_execute[name].merge!(hash)
191
+ end
192
+ else
193
+ persist_atomic_operations(operation)
194
+ end
195
+ end
196
+
197
+ # Persist the atomic operations.
198
+ #
199
+ # @api private
200
+ #
201
+ # @example Persist the atomic operations.
202
+ # persist_atomic_operations(ops)
203
+ #
204
+ # @param [ Hash ] operations The atomic operations.
205
+ #
206
+ # @since 4.0.0
207
+ def persist_atomic_operations(operations)
208
+ selector = atomic_selector
209
+ _root.collection.find(selector).update(positionally(selector, operations))
210
+ end
211
+ end
212
+ end