activerecord 5.2.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activerecord might be problematic. Click here for more details.

Files changed (244) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +937 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +217 -0
  5. data/examples/performance.rb +185 -0
  6. data/examples/simple.rb +15 -0
  7. data/lib/active_record.rb +188 -0
  8. data/lib/active_record/aggregations.rb +283 -0
  9. data/lib/active_record/association_relation.rb +40 -0
  10. data/lib/active_record/associations.rb +1860 -0
  11. data/lib/active_record/associations/alias_tracker.rb +81 -0
  12. data/lib/active_record/associations/association.rb +299 -0
  13. data/lib/active_record/associations/association_scope.rb +168 -0
  14. data/lib/active_record/associations/belongs_to_association.rb +130 -0
  15. data/lib/active_record/associations/belongs_to_polymorphic_association.rb +40 -0
  16. data/lib/active_record/associations/builder/association.rb +140 -0
  17. data/lib/active_record/associations/builder/belongs_to.rb +163 -0
  18. data/lib/active_record/associations/builder/collection_association.rb +82 -0
  19. data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +135 -0
  20. data/lib/active_record/associations/builder/has_many.rb +17 -0
  21. data/lib/active_record/associations/builder/has_one.rb +30 -0
  22. data/lib/active_record/associations/builder/singular_association.rb +42 -0
  23. data/lib/active_record/associations/collection_association.rb +513 -0
  24. data/lib/active_record/associations/collection_proxy.rb +1131 -0
  25. data/lib/active_record/associations/foreign_association.rb +13 -0
  26. data/lib/active_record/associations/has_many_association.rb +144 -0
  27. data/lib/active_record/associations/has_many_through_association.rb +227 -0
  28. data/lib/active_record/associations/has_one_association.rb +120 -0
  29. data/lib/active_record/associations/has_one_through_association.rb +45 -0
  30. data/lib/active_record/associations/join_dependency.rb +262 -0
  31. data/lib/active_record/associations/join_dependency/join_association.rb +60 -0
  32. data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
  33. data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
  34. data/lib/active_record/associations/preloader.rb +193 -0
  35. data/lib/active_record/associations/preloader/association.rb +131 -0
  36. data/lib/active_record/associations/preloader/through_association.rb +107 -0
  37. data/lib/active_record/associations/singular_association.rb +73 -0
  38. data/lib/active_record/associations/through_association.rb +121 -0
  39. data/lib/active_record/attribute_assignment.rb +88 -0
  40. data/lib/active_record/attribute_decorators.rb +90 -0
  41. data/lib/active_record/attribute_methods.rb +492 -0
  42. data/lib/active_record/attribute_methods/before_type_cast.rb +78 -0
  43. data/lib/active_record/attribute_methods/dirty.rb +150 -0
  44. data/lib/active_record/attribute_methods/primary_key.rb +143 -0
  45. data/lib/active_record/attribute_methods/query.rb +42 -0
  46. data/lib/active_record/attribute_methods/read.rb +85 -0
  47. data/lib/active_record/attribute_methods/serialization.rb +90 -0
  48. data/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
  49. data/lib/active_record/attribute_methods/write.rb +68 -0
  50. data/lib/active_record/attributes.rb +266 -0
  51. data/lib/active_record/autosave_association.rb +498 -0
  52. data/lib/active_record/base.rb +329 -0
  53. data/lib/active_record/callbacks.rb +353 -0
  54. data/lib/active_record/coders/json.rb +15 -0
  55. data/lib/active_record/coders/yaml_column.rb +50 -0
  56. data/lib/active_record/collection_cache_key.rb +53 -0
  57. data/lib/active_record/connection_adapters/abstract/connection_pool.rb +1068 -0
  58. data/lib/active_record/connection_adapters/abstract/database_limits.rb +72 -0
  59. data/lib/active_record/connection_adapters/abstract/database_statements.rb +540 -0
  60. data/lib/active_record/connection_adapters/abstract/query_cache.rb +145 -0
  61. data/lib/active_record/connection_adapters/abstract/quoting.rb +200 -0
  62. data/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
  63. data/lib/active_record/connection_adapters/abstract/schema_creation.rb +146 -0
  64. data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +685 -0
  65. data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
  66. data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1396 -0
  67. data/lib/active_record/connection_adapters/abstract/transaction.rb +283 -0
  68. data/lib/active_record/connection_adapters/abstract_adapter.rb +628 -0
  69. data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +887 -0
  70. data/lib/active_record/connection_adapters/column.rb +91 -0
  71. data/lib/active_record/connection_adapters/connection_specification.rb +287 -0
  72. data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +33 -0
  73. data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
  74. data/lib/active_record/connection_adapters/mysql/database_statements.rb +140 -0
  75. data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
  76. data/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
  77. data/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
  78. data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +87 -0
  79. data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +80 -0
  80. data/lib/active_record/connection_adapters/mysql/schema_statements.rb +148 -0
  81. data/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
  82. data/lib/active_record/connection_adapters/mysql2_adapter.rb +129 -0
  83. data/lib/active_record/connection_adapters/postgresql/column.rb +44 -0
  84. data/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
  85. data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
  86. data/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
  87. data/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
  88. data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
  89. data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
  90. data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
  91. data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
  92. data/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
  93. data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
  94. data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
  95. data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
  96. data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
  97. data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
  98. data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
  99. data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
  100. data/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
  101. data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
  102. data/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
  103. data/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
  104. data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
  105. data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
  106. data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
  107. data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
  108. data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
  109. data/lib/active_record/connection_adapters/postgresql/quoting.rb +168 -0
  110. data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
  111. data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +65 -0
  112. data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +206 -0
  113. data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
  114. data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +774 -0
  115. data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
  116. data/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
  117. data/lib/active_record/connection_adapters/postgresql_adapter.rb +863 -0
  118. data/lib/active_record/connection_adapters/schema_cache.rb +118 -0
  119. data/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
  120. data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
  121. data/lib/active_record/connection_adapters/sqlite3/quoting.rb +67 -0
  122. data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
  123. data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
  124. data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
  125. data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +106 -0
  126. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +573 -0
  127. data/lib/active_record/connection_adapters/statement_pool.rb +61 -0
  128. data/lib/active_record/connection_handling.rb +145 -0
  129. data/lib/active_record/core.rb +559 -0
  130. data/lib/active_record/counter_cache.rb +218 -0
  131. data/lib/active_record/define_callbacks.rb +22 -0
  132. data/lib/active_record/dynamic_matchers.rb +122 -0
  133. data/lib/active_record/enum.rb +244 -0
  134. data/lib/active_record/errors.rb +380 -0
  135. data/lib/active_record/explain.rb +50 -0
  136. data/lib/active_record/explain_registry.rb +32 -0
  137. data/lib/active_record/explain_subscriber.rb +34 -0
  138. data/lib/active_record/fixture_set/file.rb +82 -0
  139. data/lib/active_record/fixtures.rb +1065 -0
  140. data/lib/active_record/gem_version.rb +17 -0
  141. data/lib/active_record/inheritance.rb +283 -0
  142. data/lib/active_record/integration.rb +155 -0
  143. data/lib/active_record/internal_metadata.rb +45 -0
  144. data/lib/active_record/legacy_yaml_adapter.rb +48 -0
  145. data/lib/active_record/locale/en.yml +48 -0
  146. data/lib/active_record/locking/optimistic.rb +198 -0
  147. data/lib/active_record/locking/pessimistic.rb +89 -0
  148. data/lib/active_record/log_subscriber.rb +137 -0
  149. data/lib/active_record/migration.rb +1378 -0
  150. data/lib/active_record/migration/command_recorder.rb +240 -0
  151. data/lib/active_record/migration/compatibility.rb +217 -0
  152. data/lib/active_record/migration/join_table.rb +17 -0
  153. data/lib/active_record/model_schema.rb +521 -0
  154. data/lib/active_record/nested_attributes.rb +600 -0
  155. data/lib/active_record/no_touching.rb +58 -0
  156. data/lib/active_record/null_relation.rb +68 -0
  157. data/lib/active_record/persistence.rb +763 -0
  158. data/lib/active_record/query_cache.rb +45 -0
  159. data/lib/active_record/querying.rb +70 -0
  160. data/lib/active_record/railtie.rb +226 -0
  161. data/lib/active_record/railties/console_sandbox.rb +7 -0
  162. data/lib/active_record/railties/controller_runtime.rb +56 -0
  163. data/lib/active_record/railties/databases.rake +377 -0
  164. data/lib/active_record/readonly_attributes.rb +24 -0
  165. data/lib/active_record/reflection.rb +1044 -0
  166. data/lib/active_record/relation.rb +629 -0
  167. data/lib/active_record/relation/batches.rb +287 -0
  168. data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
  169. data/lib/active_record/relation/calculations.rb +417 -0
  170. data/lib/active_record/relation/delegation.rb +147 -0
  171. data/lib/active_record/relation/finder_methods.rb +565 -0
  172. data/lib/active_record/relation/from_clause.rb +26 -0
  173. data/lib/active_record/relation/merger.rb +193 -0
  174. data/lib/active_record/relation/predicate_builder.rb +152 -0
  175. data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
  176. data/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
  177. data/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
  178. data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
  179. data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +56 -0
  180. data/lib/active_record/relation/predicate_builder/range_handler.rb +42 -0
  181. data/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
  182. data/lib/active_record/relation/query_attribute.rb +45 -0
  183. data/lib/active_record/relation/query_methods.rb +1231 -0
  184. data/lib/active_record/relation/record_fetch_warning.rb +51 -0
  185. data/lib/active_record/relation/spawn_methods.rb +77 -0
  186. data/lib/active_record/relation/where_clause.rb +186 -0
  187. data/lib/active_record/relation/where_clause_factory.rb +34 -0
  188. data/lib/active_record/result.rb +149 -0
  189. data/lib/active_record/runtime_registry.rb +24 -0
  190. data/lib/active_record/sanitization.rb +222 -0
  191. data/lib/active_record/schema.rb +70 -0
  192. data/lib/active_record/schema_dumper.rb +255 -0
  193. data/lib/active_record/schema_migration.rb +56 -0
  194. data/lib/active_record/scoping.rb +106 -0
  195. data/lib/active_record/scoping/default.rb +152 -0
  196. data/lib/active_record/scoping/named.rb +213 -0
  197. data/lib/active_record/secure_token.rb +40 -0
  198. data/lib/active_record/serialization.rb +22 -0
  199. data/lib/active_record/statement_cache.rb +121 -0
  200. data/lib/active_record/store.rb +211 -0
  201. data/lib/active_record/suppressor.rb +61 -0
  202. data/lib/active_record/table_metadata.rb +82 -0
  203. data/lib/active_record/tasks/database_tasks.rb +337 -0
  204. data/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
  205. data/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
  206. data/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
  207. data/lib/active_record/timestamp.rb +153 -0
  208. data/lib/active_record/touch_later.rb +64 -0
  209. data/lib/active_record/transactions.rb +502 -0
  210. data/lib/active_record/translation.rb +24 -0
  211. data/lib/active_record/type.rb +79 -0
  212. data/lib/active_record/type/adapter_specific_registry.rb +136 -0
  213. data/lib/active_record/type/date.rb +9 -0
  214. data/lib/active_record/type/date_time.rb +9 -0
  215. data/lib/active_record/type/decimal_without_scale.rb +15 -0
  216. data/lib/active_record/type/hash_lookup_type_map.rb +25 -0
  217. data/lib/active_record/type/internal/timezone.rb +17 -0
  218. data/lib/active_record/type/json.rb +30 -0
  219. data/lib/active_record/type/serialized.rb +71 -0
  220. data/lib/active_record/type/text.rb +11 -0
  221. data/lib/active_record/type/time.rb +21 -0
  222. data/lib/active_record/type/type_map.rb +62 -0
  223. data/lib/active_record/type/unsigned_integer.rb +17 -0
  224. data/lib/active_record/type_caster.rb +9 -0
  225. data/lib/active_record/type_caster/connection.rb +33 -0
  226. data/lib/active_record/type_caster/map.rb +23 -0
  227. data/lib/active_record/validations.rb +93 -0
  228. data/lib/active_record/validations/absence.rb +25 -0
  229. data/lib/active_record/validations/associated.rb +60 -0
  230. data/lib/active_record/validations/length.rb +26 -0
  231. data/lib/active_record/validations/presence.rb +68 -0
  232. data/lib/active_record/validations/uniqueness.rb +238 -0
  233. data/lib/active_record/version.rb +10 -0
  234. data/lib/rails/generators/active_record.rb +19 -0
  235. data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
  236. data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
  237. data/lib/rails/generators/active_record/migration.rb +35 -0
  238. data/lib/rails/generators/active_record/migration/migration_generator.rb +78 -0
  239. data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
  240. data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +46 -0
  241. data/lib/rails/generators/active_record/model/model_generator.rb +48 -0
  242. data/lib/rails/generators/active_record/model/templates/model.rb.tt +13 -0
  243. data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
  244. metadata +333 -0
@@ -0,0 +1,147 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Delegation # :nodoc:
5
+ module DelegateCache # :nodoc:
6
+ def relation_delegate_class(klass)
7
+ @relation_delegate_cache[klass]
8
+ end
9
+
10
+ def initialize_relation_delegate_cache
11
+ @relation_delegate_cache = cache = {}
12
+ [
13
+ ActiveRecord::Relation,
14
+ ActiveRecord::Associations::CollectionProxy,
15
+ ActiveRecord::AssociationRelation
16
+ ].each do |klass|
17
+ delegate = Class.new(klass) {
18
+ include ClassSpecificRelation
19
+ }
20
+ include_relation_methods(delegate)
21
+ mangled_name = klass.name.gsub("::".freeze, "_".freeze)
22
+ const_set mangled_name, delegate
23
+ private_constant mangled_name
24
+
25
+ cache[klass] = delegate
26
+ end
27
+ end
28
+
29
+ def inherited(child_class)
30
+ child_class.initialize_relation_delegate_cache
31
+ super
32
+ end
33
+
34
+ protected
35
+ def include_relation_methods(delegate)
36
+ superclass.include_relation_methods(delegate) unless base_class == self
37
+ delegate.include generated_relation_methods
38
+ end
39
+
40
+ private
41
+ def generated_relation_methods
42
+ @generated_relation_methods ||= Module.new.tap do |mod|
43
+ mod_name = "GeneratedRelationMethods"
44
+ const_set mod_name, mod
45
+ private_constant mod_name
46
+ end
47
+ end
48
+
49
+ def generate_relation_method(method)
50
+ if /\A[a-zA-Z_]\w*[!?]?\z/.match?(method)
51
+ generated_relation_methods.module_eval <<-RUBY, __FILE__, __LINE__ + 1
52
+ def #{method}(*args, &block)
53
+ scoping { klass.#{method}(*args, &block) }
54
+ end
55
+ RUBY
56
+ else
57
+ generated_relation_methods.send(:define_method, method) do |*args, &block|
58
+ scoping { klass.public_send(method, *args, &block) }
59
+ end
60
+ end
61
+ end
62
+ end
63
+
64
+ extend ActiveSupport::Concern
65
+
66
+ # This module creates compiled delegation methods dynamically at runtime, which makes
67
+ # subsequent calls to that method faster by avoiding method_missing. The delegations
68
+ # may vary depending on the klass of a relation, so we create a subclass of Relation
69
+ # for each different klass, and the delegations are compiled into that subclass only.
70
+
71
+ delegate :to_xml, :encode_with, :length, :each, :uniq, :join,
72
+ :[], :&, :|, :+, :-, :sample, :reverse, :rotate, :compact, :in_groups, :in_groups_of,
73
+ :to_sentence, :to_formatted_s, :as_json,
74
+ :shuffle, :split, :slice, :index, :rindex, to: :records
75
+
76
+ delegate :primary_key, :connection, to: :klass
77
+
78
+ module ClassSpecificRelation # :nodoc:
79
+ extend ActiveSupport::Concern
80
+
81
+ included do
82
+ @delegation_mutex = Mutex.new
83
+ end
84
+
85
+ module ClassMethods # :nodoc:
86
+ def name
87
+ superclass.name
88
+ end
89
+
90
+ def delegate_to_scoped_klass(method)
91
+ @delegation_mutex.synchronize do
92
+ return if method_defined?(method)
93
+
94
+ if /\A[a-zA-Z_]\w*[!?]?\z/.match?(method)
95
+ module_eval <<-RUBY, __FILE__, __LINE__ + 1
96
+ def #{method}(*args, &block)
97
+ scoping { @klass.#{method}(*args, &block) }
98
+ end
99
+ RUBY
100
+ else
101
+ define_method method do |*args, &block|
102
+ scoping { @klass.public_send(method, *args, &block) }
103
+ end
104
+ end
105
+ end
106
+ end
107
+ end
108
+
109
+ private
110
+
111
+ def method_missing(method, *args, &block)
112
+ if @klass.respond_to?(method)
113
+ self.class.delegate_to_scoped_klass(method)
114
+ scoping { @klass.public_send(method, *args, &block) }
115
+ elsif @delegate_to_klass && @klass.respond_to?(method, true)
116
+ ActiveSupport::Deprecation.warn \
117
+ "Delegating missing #{method} method to #{@klass}. " \
118
+ "Accessibility of private/protected class methods in :scope is deprecated and will be removed in Rails 6.0."
119
+ @klass.send(method, *args, &block)
120
+ elsif arel.respond_to?(method)
121
+ ActiveSupport::Deprecation.warn \
122
+ "Delegating #{method} to arel is deprecated and will be removed in Rails 6.0."
123
+ arel.public_send(method, *args, &block)
124
+ else
125
+ super
126
+ end
127
+ end
128
+ end
129
+
130
+ module ClassMethods # :nodoc:
131
+ def create(klass, *args)
132
+ relation_class_for(klass).new(klass, *args)
133
+ end
134
+
135
+ private
136
+
137
+ def relation_class_for(klass)
138
+ klass.relation_delegate_class(self)
139
+ end
140
+ end
141
+
142
+ private
143
+ def respond_to_missing?(method, _)
144
+ super || @klass.respond_to?(method) || arel.respond_to?(method)
145
+ end
146
+ end
147
+ end
@@ -0,0 +1,565 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/core_ext/string/filters"
4
+
5
+ module ActiveRecord
6
+ module FinderMethods
7
+ ONE_AS_ONE = "1 AS one"
8
+
9
+ # Find by id - This can either be a specific id (1), a list of ids (1, 5, 6), or an array of ids ([5, 6, 10]).
10
+ # If one or more records can not be found for the requested ids, then RecordNotFound will be raised. If the primary key
11
+ # is an integer, find by id coerces its arguments using +to_i+.
12
+ #
13
+ # Person.find(1) # returns the object for ID = 1
14
+ # Person.find("1") # returns the object for ID = 1
15
+ # Person.find("31-sarah") # returns the object for ID = 31
16
+ # Person.find(1, 2, 6) # returns an array for objects with IDs in (1, 2, 6)
17
+ # Person.find([7, 17]) # returns an array for objects with IDs in (7, 17)
18
+ # Person.find([1]) # returns an array for the object with ID = 1
19
+ # Person.where("administrator = 1").order("created_on DESC").find(1)
20
+ #
21
+ # NOTE: The returned records are in the same order as the ids you provide.
22
+ # If you want the results to be sorted by database, you can use ActiveRecord::QueryMethods#where
23
+ # method and provide an explicit ActiveRecord::QueryMethods#order option.
24
+ # But ActiveRecord::QueryMethods#where method doesn't raise ActiveRecord::RecordNotFound.
25
+ #
26
+ # ==== Find with lock
27
+ #
28
+ # Example for find with a lock: Imagine two concurrent transactions:
29
+ # each will read <tt>person.visits == 2</tt>, add 1 to it, and save, resulting
30
+ # in two saves of <tt>person.visits = 3</tt>. By locking the row, the second
31
+ # transaction has to wait until the first is finished; we get the
32
+ # expected <tt>person.visits == 4</tt>.
33
+ #
34
+ # Person.transaction do
35
+ # person = Person.lock(true).find(1)
36
+ # person.visits += 1
37
+ # person.save!
38
+ # end
39
+ #
40
+ # ==== Variations of #find
41
+ #
42
+ # Person.where(name: 'Spartacus', rating: 4)
43
+ # # returns a chainable list (which can be empty).
44
+ #
45
+ # Person.find_by(name: 'Spartacus', rating: 4)
46
+ # # returns the first item or nil.
47
+ #
48
+ # Person.find_or_initialize_by(name: 'Spartacus', rating: 4)
49
+ # # returns the first item or returns a new instance (requires you call .save to persist against the database).
50
+ #
51
+ # Person.find_or_create_by(name: 'Spartacus', rating: 4)
52
+ # # returns the first item or creates it and returns it.
53
+ #
54
+ # ==== Alternatives for #find
55
+ #
56
+ # Person.where(name: 'Spartacus', rating: 4).exists?(conditions = :none)
57
+ # # returns a boolean indicating if any record with the given conditions exist.
58
+ #
59
+ # Person.where(name: 'Spartacus', rating: 4).select("field1, field2, field3")
60
+ # # returns a chainable list of instances with only the mentioned fields.
61
+ #
62
+ # Person.where(name: 'Spartacus', rating: 4).ids
63
+ # # returns an Array of ids.
64
+ #
65
+ # Person.where(name: 'Spartacus', rating: 4).pluck(:field1, :field2)
66
+ # # returns an Array of the required fields.
67
+ def find(*args)
68
+ return super if block_given?
69
+ find_with_ids(*args)
70
+ end
71
+
72
+ # Finds the first record matching the specified conditions. There
73
+ # is no implied ordering so if order matters, you should specify it
74
+ # yourself.
75
+ #
76
+ # If no record is found, returns <tt>nil</tt>.
77
+ #
78
+ # Post.find_by name: 'Spartacus', rating: 4
79
+ # Post.find_by "published_at < ?", 2.weeks.ago
80
+ def find_by(arg, *args)
81
+ where(arg, *args).take
82
+ rescue ::RangeError
83
+ nil
84
+ end
85
+
86
+ # Like #find_by, except that if no record is found, raises
87
+ # an ActiveRecord::RecordNotFound error.
88
+ def find_by!(arg, *args)
89
+ where(arg, *args).take!
90
+ rescue ::RangeError
91
+ raise RecordNotFound.new("Couldn't find #{@klass.name} with an out of range value",
92
+ @klass.name, @klass.primary_key)
93
+ end
94
+
95
+ # Gives a record (or N records if a parameter is supplied) without any implied
96
+ # order. The order will depend on the database implementation.
97
+ # If an order is supplied it will be respected.
98
+ #
99
+ # Person.take # returns an object fetched by SELECT * FROM people LIMIT 1
100
+ # Person.take(5) # returns 5 objects fetched by SELECT * FROM people LIMIT 5
101
+ # Person.where(["name LIKE '%?'", name]).take
102
+ def take(limit = nil)
103
+ limit ? find_take_with_limit(limit) : find_take
104
+ end
105
+
106
+ # Same as #take but raises ActiveRecord::RecordNotFound if no record
107
+ # is found. Note that #take! accepts no arguments.
108
+ def take!
109
+ take || raise_record_not_found_exception!
110
+ end
111
+
112
+ # Find the first record (or first N records if a parameter is supplied).
113
+ # If no order is defined it will order by primary key.
114
+ #
115
+ # Person.first # returns the first object fetched by SELECT * FROM people ORDER BY people.id LIMIT 1
116
+ # Person.where(["user_name = ?", user_name]).first
117
+ # Person.where(["user_name = :u", { u: user_name }]).first
118
+ # Person.order("created_on DESC").offset(5).first
119
+ # Person.first(3) # returns the first three objects fetched by SELECT * FROM people ORDER BY people.id LIMIT 3
120
+ #
121
+ def first(limit = nil)
122
+ if limit
123
+ find_nth_with_limit(0, limit)
124
+ else
125
+ find_nth 0
126
+ end
127
+ end
128
+
129
+ # Same as #first but raises ActiveRecord::RecordNotFound if no record
130
+ # is found. Note that #first! accepts no arguments.
131
+ def first!
132
+ first || raise_record_not_found_exception!
133
+ end
134
+
135
+ # Find the last record (or last N records if a parameter is supplied).
136
+ # If no order is defined it will order by primary key.
137
+ #
138
+ # Person.last # returns the last object fetched by SELECT * FROM people
139
+ # Person.where(["user_name = ?", user_name]).last
140
+ # Person.order("created_on DESC").offset(5).last
141
+ # Person.last(3) # returns the last three objects fetched by SELECT * FROM people.
142
+ #
143
+ # Take note that in that last case, the results are sorted in ascending order:
144
+ #
145
+ # [#<Person id:2>, #<Person id:3>, #<Person id:4>]
146
+ #
147
+ # and not:
148
+ #
149
+ # [#<Person id:4>, #<Person id:3>, #<Person id:2>]
150
+ def last(limit = nil)
151
+ return find_last(limit) if loaded? || has_limit_or_offset?
152
+
153
+ result = ordered_relation.limit(limit)
154
+ result = result.reverse_order!
155
+
156
+ limit ? result.reverse : result.first
157
+ end
158
+
159
+ # Same as #last but raises ActiveRecord::RecordNotFound if no record
160
+ # is found. Note that #last! accepts no arguments.
161
+ def last!
162
+ last || raise_record_not_found_exception!
163
+ end
164
+
165
+ # Find the second record.
166
+ # If no order is defined it will order by primary key.
167
+ #
168
+ # Person.second # returns the second object fetched by SELECT * FROM people
169
+ # Person.offset(3).second # returns the second object from OFFSET 3 (which is OFFSET 4)
170
+ # Person.where(["user_name = :u", { u: user_name }]).second
171
+ def second
172
+ find_nth 1
173
+ end
174
+
175
+ # Same as #second but raises ActiveRecord::RecordNotFound if no record
176
+ # is found.
177
+ def second!
178
+ second || raise_record_not_found_exception!
179
+ end
180
+
181
+ # Find the third record.
182
+ # If no order is defined it will order by primary key.
183
+ #
184
+ # Person.third # returns the third object fetched by SELECT * FROM people
185
+ # Person.offset(3).third # returns the third object from OFFSET 3 (which is OFFSET 5)
186
+ # Person.where(["user_name = :u", { u: user_name }]).third
187
+ def third
188
+ find_nth 2
189
+ end
190
+
191
+ # Same as #third but raises ActiveRecord::RecordNotFound if no record
192
+ # is found.
193
+ def third!
194
+ third || raise_record_not_found_exception!
195
+ end
196
+
197
+ # Find the fourth record.
198
+ # If no order is defined it will order by primary key.
199
+ #
200
+ # Person.fourth # returns the fourth object fetched by SELECT * FROM people
201
+ # Person.offset(3).fourth # returns the fourth object from OFFSET 3 (which is OFFSET 6)
202
+ # Person.where(["user_name = :u", { u: user_name }]).fourth
203
+ def fourth
204
+ find_nth 3
205
+ end
206
+
207
+ # Same as #fourth but raises ActiveRecord::RecordNotFound if no record
208
+ # is found.
209
+ def fourth!
210
+ fourth || raise_record_not_found_exception!
211
+ end
212
+
213
+ # Find the fifth record.
214
+ # If no order is defined it will order by primary key.
215
+ #
216
+ # Person.fifth # returns the fifth object fetched by SELECT * FROM people
217
+ # Person.offset(3).fifth # returns the fifth object from OFFSET 3 (which is OFFSET 7)
218
+ # Person.where(["user_name = :u", { u: user_name }]).fifth
219
+ def fifth
220
+ find_nth 4
221
+ end
222
+
223
+ # Same as #fifth but raises ActiveRecord::RecordNotFound if no record
224
+ # is found.
225
+ def fifth!
226
+ fifth || raise_record_not_found_exception!
227
+ end
228
+
229
+ # Find the forty-second record. Also known as accessing "the reddit".
230
+ # If no order is defined it will order by primary key.
231
+ #
232
+ # Person.forty_two # returns the forty-second object fetched by SELECT * FROM people
233
+ # Person.offset(3).forty_two # returns the forty-second object from OFFSET 3 (which is OFFSET 44)
234
+ # Person.where(["user_name = :u", { u: user_name }]).forty_two
235
+ def forty_two
236
+ find_nth 41
237
+ end
238
+
239
+ # Same as #forty_two but raises ActiveRecord::RecordNotFound if no record
240
+ # is found.
241
+ def forty_two!
242
+ forty_two || raise_record_not_found_exception!
243
+ end
244
+
245
+ # Find the third-to-last record.
246
+ # If no order is defined it will order by primary key.
247
+ #
248
+ # Person.third_to_last # returns the third-to-last object fetched by SELECT * FROM people
249
+ # Person.offset(3).third_to_last # returns the third-to-last object from OFFSET 3
250
+ # Person.where(["user_name = :u", { u: user_name }]).third_to_last
251
+ def third_to_last
252
+ find_nth_from_last 3
253
+ end
254
+
255
+ # Same as #third_to_last but raises ActiveRecord::RecordNotFound if no record
256
+ # is found.
257
+ def third_to_last!
258
+ third_to_last || raise_record_not_found_exception!
259
+ end
260
+
261
+ # Find the second-to-last record.
262
+ # If no order is defined it will order by primary key.
263
+ #
264
+ # Person.second_to_last # returns the second-to-last object fetched by SELECT * FROM people
265
+ # Person.offset(3).second_to_last # returns the second-to-last object from OFFSET 3
266
+ # Person.where(["user_name = :u", { u: user_name }]).second_to_last
267
+ def second_to_last
268
+ find_nth_from_last 2
269
+ end
270
+
271
+ # Same as #second_to_last but raises ActiveRecord::RecordNotFound if no record
272
+ # is found.
273
+ def second_to_last!
274
+ second_to_last || raise_record_not_found_exception!
275
+ end
276
+
277
+ # Returns true if a record exists in the table that matches the +id+ or
278
+ # conditions given, or false otherwise. The argument can take six forms:
279
+ #
280
+ # * Integer - Finds the record with this primary key.
281
+ # * String - Finds the record with a primary key corresponding to this
282
+ # string (such as <tt>'5'</tt>).
283
+ # * Array - Finds the record that matches these +find+-style conditions
284
+ # (such as <tt>['name LIKE ?', "%#{query}%"]</tt>).
285
+ # * Hash - Finds the record that matches these +find+-style conditions
286
+ # (such as <tt>{name: 'David'}</tt>).
287
+ # * +false+ - Returns always +false+.
288
+ # * No args - Returns +false+ if the relation is empty, +true+ otherwise.
289
+ #
290
+ # For more information about specifying conditions as a hash or array,
291
+ # see the Conditions section in the introduction to ActiveRecord::Base.
292
+ #
293
+ # Note: You can't pass in a condition as a string (like <tt>name =
294
+ # 'Jamie'</tt>), since it would be sanitized and then queried against
295
+ # the primary key column, like <tt>id = 'name = \'Jamie\''</tt>.
296
+ #
297
+ # Person.exists?(5)
298
+ # Person.exists?('5')
299
+ # Person.exists?(['name LIKE ?', "%#{query}%"])
300
+ # Person.exists?(id: [1, 4, 8])
301
+ # Person.exists?(name: 'David')
302
+ # Person.exists?(false)
303
+ # Person.exists?
304
+ # Person.where(name: 'Spartacus', rating: 4).exists?
305
+ def exists?(conditions = :none)
306
+ if Base === conditions
307
+ raise ArgumentError, <<-MSG.squish
308
+ You are passing an instance of ActiveRecord::Base to `exists?`.
309
+ Please pass the id of the object by calling `.id`.
310
+ MSG
311
+ end
312
+
313
+ return false if !conditions || limit_value == 0
314
+
315
+ if eager_loading?
316
+ relation = apply_join_dependency(eager_loading: false)
317
+ return relation.exists?(conditions)
318
+ end
319
+
320
+ relation = construct_relation_for_exists(conditions)
321
+
322
+ skip_query_cache_if_necessary { connection.select_one(relation.arel, "#{name} Exists") } ? true : false
323
+ rescue ::RangeError
324
+ false
325
+ end
326
+
327
+ # This method is called whenever no records are found with either a single
328
+ # id or multiple ids and raises an ActiveRecord::RecordNotFound exception.
329
+ #
330
+ # The error message is different depending on whether a single id or
331
+ # multiple ids are provided. If multiple ids are provided, then the number
332
+ # of results obtained should be provided in the +result_size+ argument and
333
+ # the expected number of results should be provided in the +expected_size+
334
+ # argument.
335
+ def raise_record_not_found_exception!(ids = nil, result_size = nil, expected_size = nil, key = primary_key, not_found_ids = nil) # :nodoc:
336
+ conditions = arel.where_sql(@klass)
337
+ conditions = " [#{conditions}]" if conditions
338
+ name = @klass.name
339
+
340
+ if ids.nil?
341
+ error = "Couldn't find #{name}".dup
342
+ error << " with#{conditions}" if conditions
343
+ raise RecordNotFound.new(error, name, key)
344
+ elsif Array(ids).size == 1
345
+ error = "Couldn't find #{name} with '#{key}'=#{ids}#{conditions}"
346
+ raise RecordNotFound.new(error, name, key, ids)
347
+ else
348
+ error = "Couldn't find all #{name.pluralize} with '#{key}': ".dup
349
+ error << "(#{ids.join(", ")})#{conditions} (found #{result_size} results, but was looking for #{expected_size})."
350
+ error << " Couldn't find #{name.pluralize(not_found_ids.size)} with #{key.to_s.pluralize(not_found_ids.size)} #{not_found_ids.join(', ')}." if not_found_ids
351
+ raise RecordNotFound.new(error, name, key, ids)
352
+ end
353
+ end
354
+
355
+ private
356
+
357
+ def offset_index
358
+ offset_value || 0
359
+ end
360
+
361
+ def construct_relation_for_exists(conditions)
362
+ if distinct_value && offset_value
363
+ relation = limit(1)
364
+ else
365
+ relation = except(:select, :distinct, :order)._select!(ONE_AS_ONE).limit!(1)
366
+ end
367
+
368
+ case conditions
369
+ when Array, Hash
370
+ relation.where!(conditions) unless conditions.empty?
371
+ else
372
+ relation.where!(primary_key => conditions) unless conditions == :none
373
+ end
374
+
375
+ relation
376
+ end
377
+
378
+ def construct_join_dependency
379
+ including = eager_load_values + includes_values
380
+ ActiveRecord::Associations::JoinDependency.new(
381
+ klass, table, including
382
+ )
383
+ end
384
+
385
+ def apply_join_dependency(eager_loading: group_values.empty?)
386
+ join_dependency = construct_join_dependency
387
+ relation = except(:includes, :eager_load, :preload).joins!(join_dependency)
388
+
389
+ if eager_loading && !using_limitable_reflections?(join_dependency.reflections)
390
+ if has_limit_or_offset?
391
+ limited_ids = limited_ids_for(relation)
392
+ limited_ids.empty? ? relation.none! : relation.where!(primary_key => limited_ids)
393
+ end
394
+ relation.limit_value = relation.offset_value = nil
395
+ end
396
+
397
+ if block_given?
398
+ yield relation, join_dependency
399
+ else
400
+ relation
401
+ end
402
+ end
403
+
404
+ def limited_ids_for(relation)
405
+ values = @klass.connection.columns_for_distinct(
406
+ connection.column_name_from_arel_node(arel_attribute(primary_key)),
407
+ relation.order_values
408
+ )
409
+
410
+ relation = relation.except(:select).select(values).distinct!
411
+
412
+ id_rows = skip_query_cache_if_necessary { @klass.connection.select_all(relation.arel, "SQL") }
413
+ id_rows.map { |row| row[primary_key] }
414
+ end
415
+
416
+ def using_limitable_reflections?(reflections)
417
+ reflections.none?(&:collection?)
418
+ end
419
+
420
+ def find_with_ids(*ids)
421
+ raise UnknownPrimaryKey.new(@klass) if primary_key.nil?
422
+
423
+ expects_array = ids.first.kind_of?(Array)
424
+ return [] if expects_array && ids.first.empty?
425
+
426
+ ids = ids.flatten.compact.uniq
427
+
428
+ model_name = @klass.name
429
+
430
+ case ids.size
431
+ when 0
432
+ error_message = "Couldn't find #{model_name} without an ID"
433
+ raise RecordNotFound.new(error_message, model_name, primary_key)
434
+ when 1
435
+ result = find_one(ids.first)
436
+ expects_array ? [ result ] : result
437
+ else
438
+ find_some(ids)
439
+ end
440
+ rescue ::RangeError
441
+ error_message = "Couldn't find #{model_name} with an out of range ID"
442
+ raise RecordNotFound.new(error_message, model_name, primary_key, ids)
443
+ end
444
+
445
+ def find_one(id)
446
+ if ActiveRecord::Base === id
447
+ raise ArgumentError, <<-MSG.squish
448
+ You are passing an instance of ActiveRecord::Base to `find`.
449
+ Please pass the id of the object by calling `.id`.
450
+ MSG
451
+ end
452
+
453
+ relation = where(primary_key => id)
454
+ record = relation.take
455
+
456
+ raise_record_not_found_exception!(id, 0, 1) unless record
457
+
458
+ record
459
+ end
460
+
461
+ def find_some(ids)
462
+ return find_some_ordered(ids) unless order_values.present?
463
+
464
+ result = where(primary_key => ids).to_a
465
+
466
+ expected_size =
467
+ if limit_value && ids.size > limit_value
468
+ limit_value
469
+ else
470
+ ids.size
471
+ end
472
+
473
+ # 11 ids with limit 3, offset 9 should give 2 results.
474
+ if offset_value && (ids.size - offset_value < expected_size)
475
+ expected_size = ids.size - offset_value
476
+ end
477
+
478
+ if result.size == expected_size
479
+ result
480
+ else
481
+ raise_record_not_found_exception!(ids, result.size, expected_size)
482
+ end
483
+ end
484
+
485
+ def find_some_ordered(ids)
486
+ ids = ids.slice(offset_value || 0, limit_value || ids.size) || []
487
+
488
+ result = except(:limit, :offset).where(primary_key => ids).records
489
+
490
+ if result.size == ids.size
491
+ pk_type = @klass.type_for_attribute(primary_key)
492
+
493
+ records_by_id = result.index_by(&:id)
494
+ ids.map { |id| records_by_id.fetch(pk_type.cast(id)) }
495
+ else
496
+ raise_record_not_found_exception!(ids, result.size, ids.size)
497
+ end
498
+ end
499
+
500
+ def find_take
501
+ if loaded?
502
+ records.first
503
+ else
504
+ @take ||= limit(1).records.first
505
+ end
506
+ end
507
+
508
+ def find_take_with_limit(limit)
509
+ if loaded?
510
+ records.take(limit)
511
+ else
512
+ limit(limit).to_a
513
+ end
514
+ end
515
+
516
+ def find_nth(index)
517
+ @offsets[offset_index + index] ||= find_nth_with_limit(index, 1).first
518
+ end
519
+
520
+ def find_nth_with_limit(index, limit)
521
+ if loaded?
522
+ records[index, limit] || []
523
+ else
524
+ relation = ordered_relation
525
+
526
+ if limit_value
527
+ limit = [limit_value - index, limit].min
528
+ end
529
+
530
+ if limit > 0
531
+ relation = relation.offset(offset_index + index) unless index.zero?
532
+ relation.limit(limit).to_a
533
+ else
534
+ []
535
+ end
536
+ end
537
+ end
538
+
539
+ def find_nth_from_last(index)
540
+ if loaded?
541
+ records[-index]
542
+ else
543
+ relation = ordered_relation
544
+
545
+ if equal?(relation) || has_limit_or_offset?
546
+ relation.records[-index]
547
+ else
548
+ relation.last(index)[-index]
549
+ end
550
+ end
551
+ end
552
+
553
+ def find_last(limit)
554
+ limit ? records.last(limit) : records.last
555
+ end
556
+
557
+ def ordered_relation
558
+ if order_values.empty? && primary_key
559
+ order(arel_attribute(primary_key).asc)
560
+ else
561
+ self
562
+ end
563
+ end
564
+ end
565
+ end