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,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "concurrent/map"
4
+
5
+ module ActiveRecord
6
+ module Type
7
+ class TypeMap # :nodoc:
8
+ def initialize
9
+ @mapping = {}
10
+ @cache = Concurrent::Map.new do |h, key|
11
+ h.fetch_or_store(key, Concurrent::Map.new)
12
+ end
13
+ end
14
+
15
+ def lookup(lookup_key, *args)
16
+ fetch(lookup_key, *args) { Type.default_value }
17
+ end
18
+
19
+ def fetch(lookup_key, *args, &block)
20
+ @cache[lookup_key].fetch_or_store(args) do
21
+ perform_fetch(lookup_key, *args, &block)
22
+ end
23
+ end
24
+
25
+ def register_type(key, value = nil, &block)
26
+ raise ::ArgumentError unless value || block
27
+ @cache.clear
28
+
29
+ if block
30
+ @mapping[key] = block
31
+ else
32
+ @mapping[key] = proc { value }
33
+ end
34
+ end
35
+
36
+ def alias_type(key, target_key)
37
+ register_type(key) do |sql_type, *args|
38
+ metadata = sql_type[/\(.*\)/, 0]
39
+ lookup("#{target_key}#{metadata}", *args)
40
+ end
41
+ end
42
+
43
+ def clear
44
+ @mapping.clear
45
+ end
46
+
47
+ private
48
+
49
+ def perform_fetch(lookup_key, *args)
50
+ matching_pair = @mapping.reverse_each.detect do |key, _|
51
+ key === lookup_key
52
+ end
53
+
54
+ if matching_pair
55
+ matching_pair.last.call(lookup_key, *args)
56
+ else
57
+ yield lookup_key, *args
58
+ end
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Type
5
+ class UnsignedInteger < ActiveModel::Type::Integer # :nodoc:
6
+ private
7
+
8
+ def max_value
9
+ super * 2
10
+ end
11
+
12
+ def min_value
13
+ 0
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_record/type_caster/map"
4
+ require "active_record/type_caster/connection"
5
+
6
+ module ActiveRecord
7
+ module TypeCaster # :nodoc:
8
+ end
9
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module TypeCaster
5
+ class Connection # :nodoc:
6
+ def initialize(klass, table_name)
7
+ @klass = klass
8
+ @table_name = table_name
9
+ end
10
+
11
+ def type_cast_for_database(attribute_name, value)
12
+ return value if value.is_a?(Arel::Nodes::BindParam)
13
+ column = column_for(attribute_name)
14
+ connection.type_cast_from_column(column, value)
15
+ end
16
+
17
+ # TODO Change this to private once we've dropped Ruby 2.2 support.
18
+ # Workaround for Ruby 2.2 "private attribute?" warning.
19
+ protected
20
+
21
+ attr_reader :table_name
22
+ delegate :connection, to: :@klass
23
+
24
+ private
25
+
26
+ def column_for(attribute_name)
27
+ if connection.schema_cache.data_source_exists?(table_name)
28
+ connection.schema_cache.columns_hash(table_name)[attribute_name.to_s]
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module TypeCaster
5
+ class Map # :nodoc:
6
+ def initialize(types)
7
+ @types = types
8
+ end
9
+
10
+ def type_cast_for_database(attr_name, value)
11
+ return value if value.is_a?(Arel::Nodes::BindParam)
12
+ type = types.type_for_attribute(attr_name)
13
+ type.serialize(value)
14
+ end
15
+
16
+ # TODO Change this to private once we've dropped Ruby 2.2 support.
17
+ # Workaround for Ruby 2.2 "private attribute?" warning.
18
+ protected
19
+
20
+ attr_reader :types
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,93 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ # = Active Record \RecordInvalid
5
+ #
6
+ # Raised by {ActiveRecord::Base#save!}[rdoc-ref:Persistence#save!] and
7
+ # {ActiveRecord::Base#create!}[rdoc-ref:Persistence::ClassMethods#create!] when the record is invalid.
8
+ # Use the #record method to retrieve the record which did not validate.
9
+ #
10
+ # begin
11
+ # complex_operation_that_internally_calls_save!
12
+ # rescue ActiveRecord::RecordInvalid => invalid
13
+ # puts invalid.record.errors
14
+ # end
15
+ class RecordInvalid < ActiveRecordError
16
+ attr_reader :record
17
+
18
+ def initialize(record = nil)
19
+ if record
20
+ @record = record
21
+ errors = @record.errors.full_messages.join(", ")
22
+ message = I18n.t(:"#{@record.class.i18n_scope}.errors.messages.record_invalid", errors: errors, default: :"errors.messages.record_invalid")
23
+ else
24
+ message = "Record invalid"
25
+ end
26
+
27
+ super(message)
28
+ end
29
+ end
30
+
31
+ # = Active Record \Validations
32
+ #
33
+ # Active Record includes the majority of its validations from ActiveModel::Validations
34
+ # all of which accept the <tt>:on</tt> argument to define the context where the
35
+ # validations are active. Active Record will always supply either the context of
36
+ # <tt>:create</tt> or <tt>:update</tt> dependent on whether the model is a
37
+ # {new_record?}[rdoc-ref:Persistence#new_record?].
38
+ module Validations
39
+ extend ActiveSupport::Concern
40
+ include ActiveModel::Validations
41
+
42
+ # The validation process on save can be skipped by passing <tt>validate: false</tt>.
43
+ # The regular {ActiveRecord::Base#save}[rdoc-ref:Persistence#save] method is replaced
44
+ # with this when the validations module is mixed in, which it is by default.
45
+ def save(options = {})
46
+ perform_validations(options) ? super : false
47
+ end
48
+
49
+ # Attempts to save the record just like {ActiveRecord::Base#save}[rdoc-ref:Base#save] but
50
+ # will raise an ActiveRecord::RecordInvalid exception instead of returning +false+ if the record is not valid.
51
+ def save!(options = {})
52
+ perform_validations(options) ? super : raise_validation_error
53
+ end
54
+
55
+ # Runs all the validations within the specified context. Returns +true+ if
56
+ # no errors are found, +false+ otherwise.
57
+ #
58
+ # Aliased as #validate.
59
+ #
60
+ # If the argument is +false+ (default is +nil+), the context is set to <tt>:create</tt> if
61
+ # {new_record?}[rdoc-ref:Persistence#new_record?] is +true+, and to <tt>:update</tt> if it is not.
62
+ #
63
+ # \Validations with no <tt>:on</tt> option will run no matter the context. \Validations with
64
+ # some <tt>:on</tt> option will only run in the specified context.
65
+ def valid?(context = nil)
66
+ context ||= default_validation_context
67
+ output = super(context)
68
+ errors.empty? && output
69
+ end
70
+
71
+ alias_method :validate, :valid?
72
+
73
+ private
74
+
75
+ def default_validation_context
76
+ new_record? ? :create : :update
77
+ end
78
+
79
+ def raise_validation_error
80
+ raise(RecordInvalid.new(self))
81
+ end
82
+
83
+ def perform_validations(options = {})
84
+ options[:validate] == false || valid?(options[:context])
85
+ end
86
+ end
87
+ end
88
+
89
+ require "active_record/validations/associated"
90
+ require "active_record/validations/uniqueness"
91
+ require "active_record/validations/presence"
92
+ require "active_record/validations/absence"
93
+ require "active_record/validations/length"
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Validations
5
+ class AbsenceValidator < ActiveModel::Validations::AbsenceValidator # :nodoc:
6
+ def validate_each(record, attribute, association_or_value)
7
+ if record.class._reflect_on_association(attribute)
8
+ association_or_value = Array.wrap(association_or_value).reject(&:marked_for_destruction?)
9
+ end
10
+ super
11
+ end
12
+ end
13
+
14
+ module ClassMethods
15
+ # Validates that the specified attributes are not present (as defined by
16
+ # Object#present?). If the attribute is an association, the associated object
17
+ # is considered absent if it was marked for destruction.
18
+ #
19
+ # See ActiveModel::Validations::HelperMethods.validates_absence_of for more information.
20
+ def validates_absence_of(*attr_names)
21
+ validates_with AbsenceValidator, _merge_attributes(attr_names)
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Validations
5
+ class AssociatedValidator < ActiveModel::EachValidator #:nodoc:
6
+ def validate_each(record, attribute, value)
7
+ if Array(value).reject { |r| valid_object?(r) }.any?
8
+ record.errors.add(attribute, :invalid, options.merge(value: value))
9
+ end
10
+ end
11
+
12
+ private
13
+
14
+ def valid_object?(record)
15
+ (record.respond_to?(:marked_for_destruction?) && record.marked_for_destruction?) || record.valid?
16
+ end
17
+ end
18
+
19
+ module ClassMethods
20
+ # Validates whether the associated object or objects are all valid.
21
+ # Works with any kind of association.
22
+ #
23
+ # class Book < ActiveRecord::Base
24
+ # has_many :pages
25
+ # belongs_to :library
26
+ #
27
+ # validates_associated :pages, :library
28
+ # end
29
+ #
30
+ # WARNING: This validation must not be used on both ends of an association.
31
+ # Doing so will lead to a circular dependency and cause infinite recursion.
32
+ #
33
+ # NOTE: This validation will not fail if the association hasn't been
34
+ # assigned. If you want to ensure that the association is both present and
35
+ # guaranteed to be valid, you also need to use
36
+ # {validates_presence_of}[rdoc-ref:Validations::ClassMethods#validates_presence_of].
37
+ #
38
+ # Configuration options:
39
+ #
40
+ # * <tt>:message</tt> - A custom error message (default is: "is invalid").
41
+ # * <tt>:on</tt> - Specifies the contexts where this validation is active.
42
+ # Runs in all validation contexts by default +nil+. You can pass a symbol
43
+ # or an array of symbols. (e.g. <tt>on: :create</tt> or
44
+ # <tt>on: :custom_validation_context</tt> or
45
+ # <tt>on: [:create, :custom_validation_context]</tt>)
46
+ # * <tt>:if</tt> - Specifies a method, proc or string to call to determine
47
+ # if the validation should occur (e.g. <tt>if: :allow_validation</tt>,
48
+ # or <tt>if: Proc.new { |user| user.signup_step > 2 }</tt>). The method,
49
+ # proc or string should return or evaluate to a +true+ or +false+ value.
50
+ # * <tt>:unless</tt> - Specifies a method, proc or string to call to
51
+ # determine if the validation should not occur (e.g. <tt>unless: :skip_validation</tt>,
52
+ # or <tt>unless: Proc.new { |user| user.signup_step <= 2 }</tt>). The
53
+ # method, proc or string should return or evaluate to a +true+ or +false+
54
+ # value.
55
+ def validates_associated(*attr_names)
56
+ validates_with AssociatedValidator, _merge_attributes(attr_names)
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Validations
5
+ class LengthValidator < ActiveModel::Validations::LengthValidator # :nodoc:
6
+ def validate_each(record, attribute, association_or_value)
7
+ if association_or_value.respond_to?(:loaded?) && association_or_value.loaded?
8
+ association_or_value = association_or_value.target.reject(&:marked_for_destruction?)
9
+ end
10
+ super
11
+ end
12
+ end
13
+
14
+ module ClassMethods
15
+ # Validates that the specified attributes match the length restrictions supplied.
16
+ # If the attribute is an association, records that are marked for destruction are not counted.
17
+ #
18
+ # See ActiveModel::Validations::HelperMethods.validates_length_of for more information.
19
+ def validates_length_of(*attr_names)
20
+ validates_with LengthValidator, _merge_attributes(attr_names)
21
+ end
22
+
23
+ alias_method :validates_size_of, :validates_length_of
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Validations
5
+ class PresenceValidator < ActiveModel::Validations::PresenceValidator # :nodoc:
6
+ def validate_each(record, attribute, association_or_value)
7
+ if record.class._reflect_on_association(attribute)
8
+ association_or_value = Array.wrap(association_or_value).reject(&:marked_for_destruction?)
9
+ end
10
+ super
11
+ end
12
+ end
13
+
14
+ module ClassMethods
15
+ # Validates that the specified attributes are not blank (as defined by
16
+ # Object#blank?), and, if the attribute is an association, that the
17
+ # associated object is not marked for destruction. Happens by default
18
+ # on save.
19
+ #
20
+ # class Person < ActiveRecord::Base
21
+ # has_one :face
22
+ # validates_presence_of :face
23
+ # end
24
+ #
25
+ # The face attribute must be in the object and it cannot be blank or marked
26
+ # for destruction.
27
+ #
28
+ # If you want to validate the presence of a boolean field (where the real values
29
+ # are true and false), you will want to use
30
+ # <tt>validates_inclusion_of :field_name, in: [true, false]</tt>.
31
+ #
32
+ # This is due to the way Object#blank? handles boolean values:
33
+ # <tt>false.blank? # => true</tt>.
34
+ #
35
+ # This validator defers to the Active Model validation for presence, adding the
36
+ # check to see that an associated object is not marked for destruction. This
37
+ # prevents the parent object from validating successfully and saving, which then
38
+ # deletes the associated object, thus putting the parent object into an invalid
39
+ # state.
40
+ #
41
+ # NOTE: This validation will not fail while using it with an association
42
+ # if the latter was assigned but not valid. If you want to ensure that
43
+ # it is both present and valid, you also need to use
44
+ # {validates_associated}[rdoc-ref:Validations::ClassMethods#validates_associated].
45
+ #
46
+ # Configuration options:
47
+ # * <tt>:message</tt> - A custom error message (default is: "can't be blank").
48
+ # * <tt>:on</tt> - Specifies the contexts where this validation is active.
49
+ # Runs in all validation contexts by default +nil+. You can pass a symbol
50
+ # or an array of symbols. (e.g. <tt>on: :create</tt> or
51
+ # <tt>on: :custom_validation_context</tt> or
52
+ # <tt>on: [:create, :custom_validation_context]</tt>)
53
+ # * <tt>:if</tt> - Specifies a method, proc or string to call to determine if
54
+ # the validation should occur (e.g. <tt>if: :allow_validation</tt>, or
55
+ # <tt>if: Proc.new { |user| user.signup_step > 2 }</tt>). The method, proc
56
+ # or string should return or evaluate to a +true+ or +false+ value.
57
+ # * <tt>:unless</tt> - Specifies a method, proc or string to call to determine
58
+ # if the validation should not occur (e.g. <tt>unless: :skip_validation</tt>,
59
+ # or <tt>unless: Proc.new { |user| user.signup_step <= 2 }</tt>). The method,
60
+ # proc or string should return or evaluate to a +true+ or +false+ value.
61
+ # * <tt>:strict</tt> - Specifies whether validation should be strict.
62
+ # See ActiveModel::Validations#validates! for more information.
63
+ def validates_presence_of(*attr_names)
64
+ validates_with PresenceValidator, _merge_attributes(attr_names)
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,238 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord
4
+ module Validations
5
+ class UniquenessValidator < ActiveModel::EachValidator # :nodoc:
6
+ def initialize(options)
7
+ if options[:conditions] && !options[:conditions].respond_to?(:call)
8
+ raise ArgumentError, "#{options[:conditions]} was passed as :conditions but is not callable. " \
9
+ "Pass a callable instead: `conditions: -> { where(approved: true) }`"
10
+ end
11
+ unless Array(options[:scope]).all? { |scope| scope.respond_to?(:to_sym) }
12
+ raise ArgumentError, "#{options[:scope]} is not supported format for :scope option. " \
13
+ "Pass a symbol or an array of symbols instead: `scope: :user_id`"
14
+ end
15
+ super({ case_sensitive: true }.merge!(options))
16
+ @klass = options[:class]
17
+ end
18
+
19
+ def validate_each(record, attribute, value)
20
+ finder_class = find_finder_class_for(record)
21
+ value = map_enum_attribute(finder_class, attribute, value)
22
+
23
+ relation = build_relation(finder_class, attribute, value)
24
+ if record.persisted?
25
+ if finder_class.primary_key
26
+ relation = relation.where.not(finder_class.primary_key => record.id_in_database)
27
+ else
28
+ raise UnknownPrimaryKey.new(finder_class, "Can not validate uniqueness for persisted record without primary key.")
29
+ end
30
+ end
31
+ relation = scope_relation(record, relation)
32
+ relation = relation.merge(options[:conditions]) if options[:conditions]
33
+
34
+ if relation.exists?
35
+ error_options = options.except(:case_sensitive, :scope, :conditions)
36
+ error_options[:value] = value
37
+
38
+ record.errors.add(attribute, :taken, error_options)
39
+ end
40
+ end
41
+
42
+ private
43
+ # The check for an existing value should be run from a class that
44
+ # isn't abstract. This means working down from the current class
45
+ # (self), to the first non-abstract class. Since classes don't know
46
+ # their subclasses, we have to build the hierarchy between self and
47
+ # the record's class.
48
+ def find_finder_class_for(record)
49
+ class_hierarchy = [record.class]
50
+
51
+ while class_hierarchy.first != @klass
52
+ class_hierarchy.unshift(class_hierarchy.first.superclass)
53
+ end
54
+
55
+ class_hierarchy.detect { |klass| !klass.abstract_class? }
56
+ end
57
+
58
+ def build_relation(klass, attribute, value)
59
+ if reflection = klass._reflect_on_association(attribute)
60
+ attribute = reflection.foreign_key
61
+ value = value.attributes[reflection.klass.primary_key] unless value.nil?
62
+ end
63
+
64
+ if value.nil?
65
+ return klass.unscoped.where!(attribute => value)
66
+ end
67
+
68
+ # the attribute may be an aliased attribute
69
+ if klass.attribute_alias?(attribute)
70
+ attribute = klass.attribute_alias(attribute)
71
+ end
72
+
73
+ attribute_name = attribute.to_s
74
+ value = klass.predicate_builder.build_bind_attribute(attribute_name, value)
75
+
76
+ table = klass.arel_table
77
+ column = klass.columns_hash[attribute_name]
78
+
79
+ comparison = if !options[:case_sensitive]
80
+ # will use SQL LOWER function before comparison, unless it detects a case insensitive collation
81
+ klass.connection.case_insensitive_comparison(table, attribute, column, value)
82
+ else
83
+ klass.connection.case_sensitive_comparison(table, attribute, column, value)
84
+ end
85
+ klass.unscoped.where!(comparison)
86
+ end
87
+
88
+ def scope_relation(record, relation)
89
+ Array(options[:scope]).each do |scope_item|
90
+ scope_value = if record.class._reflect_on_association(scope_item)
91
+ record.association(scope_item).reader
92
+ else
93
+ record._read_attribute(scope_item)
94
+ end
95
+ relation = relation.where(scope_item => scope_value)
96
+ end
97
+
98
+ relation
99
+ end
100
+
101
+ def map_enum_attribute(klass, attribute, value)
102
+ mapping = klass.defined_enums[attribute.to_s]
103
+ value = mapping[value] if value && mapping
104
+ value
105
+ end
106
+ end
107
+
108
+ module ClassMethods
109
+ # Validates whether the value of the specified attributes are unique
110
+ # across the system. Useful for making sure that only one user
111
+ # can be named "davidhh".
112
+ #
113
+ # class Person < ActiveRecord::Base
114
+ # validates_uniqueness_of :user_name
115
+ # end
116
+ #
117
+ # It can also validate whether the value of the specified attributes are
118
+ # unique based on a <tt>:scope</tt> parameter:
119
+ #
120
+ # class Person < ActiveRecord::Base
121
+ # validates_uniqueness_of :user_name, scope: :account_id
122
+ # end
123
+ #
124
+ # Or even multiple scope parameters. For example, making sure that a
125
+ # teacher can only be on the schedule once per semester for a particular
126
+ # class.
127
+ #
128
+ # class TeacherSchedule < ActiveRecord::Base
129
+ # validates_uniqueness_of :teacher_id, scope: [:semester_id, :class_id]
130
+ # end
131
+ #
132
+ # It is also possible to limit the uniqueness constraint to a set of
133
+ # records matching certain conditions. In this example archived articles
134
+ # are not being taken into consideration when validating uniqueness
135
+ # of the title attribute:
136
+ #
137
+ # class Article < ActiveRecord::Base
138
+ # validates_uniqueness_of :title, conditions: -> { where.not(status: 'archived') }
139
+ # end
140
+ #
141
+ # When the record is created, a check is performed to make sure that no
142
+ # record exists in the database with the given value for the specified
143
+ # attribute (that maps to a column). When the record is updated,
144
+ # the same check is made but disregarding the record itself.
145
+ #
146
+ # Configuration options:
147
+ #
148
+ # * <tt>:message</tt> - Specifies a custom error message (default is:
149
+ # "has already been taken").
150
+ # * <tt>:scope</tt> - One or more columns by which to limit the scope of
151
+ # the uniqueness constraint.
152
+ # * <tt>:conditions</tt> - Specify the conditions to be included as a
153
+ # <tt>WHERE</tt> SQL fragment to limit the uniqueness constraint lookup
154
+ # (e.g. <tt>conditions: -> { where(status: 'active') }</tt>).
155
+ # * <tt>:case_sensitive</tt> - Looks for an exact match. Ignored by
156
+ # non-text columns (+true+ by default).
157
+ # * <tt>:allow_nil</tt> - If set to +true+, skips this validation if the
158
+ # attribute is +nil+ (default is +false+).
159
+ # * <tt>:allow_blank</tt> - If set to +true+, skips this validation if the
160
+ # attribute is blank (default is +false+).
161
+ # * <tt>:if</tt> - Specifies a method, proc or string to call to determine
162
+ # if the validation should occur (e.g. <tt>if: :allow_validation</tt>,
163
+ # or <tt>if: Proc.new { |user| user.signup_step > 2 }</tt>). The method,
164
+ # proc or string should return or evaluate to a +true+ or +false+ value.
165
+ # * <tt>:unless</tt> - Specifies a method, proc or string to call to
166
+ # determine if the validation should not occur (e.g. <tt>unless: :skip_validation</tt>,
167
+ # or <tt>unless: Proc.new { |user| user.signup_step <= 2 }</tt>). The
168
+ # method, proc or string should return or evaluate to a +true+ or +false+
169
+ # value.
170
+ #
171
+ # === Concurrency and integrity
172
+ #
173
+ # Using this validation method in conjunction with
174
+ # {ActiveRecord::Base#save}[rdoc-ref:Persistence#save]
175
+ # does not guarantee the absence of duplicate record insertions, because
176
+ # uniqueness checks on the application level are inherently prone to race
177
+ # conditions. For example, suppose that two users try to post a Comment at
178
+ # the same time, and a Comment's title must be unique. At the database-level,
179
+ # the actions performed by these users could be interleaved in the following manner:
180
+ #
181
+ # User 1 | User 2
182
+ # ------------------------------------+--------------------------------------
183
+ # # User 1 checks whether there's |
184
+ # # already a comment with the title |
185
+ # # 'My Post'. This is not the case. |
186
+ # SELECT * FROM comments |
187
+ # WHERE title = 'My Post' |
188
+ # |
189
+ # | # User 2 does the same thing and also
190
+ # | # infers that their title is unique.
191
+ # | SELECT * FROM comments
192
+ # | WHERE title = 'My Post'
193
+ # |
194
+ # # User 1 inserts their comment. |
195
+ # INSERT INTO comments |
196
+ # (title, content) VALUES |
197
+ # ('My Post', 'hi!') |
198
+ # |
199
+ # | # User 2 does the same thing.
200
+ # | INSERT INTO comments
201
+ # | (title, content) VALUES
202
+ # | ('My Post', 'hello!')
203
+ # |
204
+ # | # ^^^^^^
205
+ # | # Boom! We now have a duplicate
206
+ # | # title!
207
+ #
208
+ # The best way to work around this problem is to add a unique index to the database table using
209
+ # {connection.add_index}[rdoc-ref:ConnectionAdapters::SchemaStatements#add_index].
210
+ # In the rare case that a race condition occurs, the database will guarantee
211
+ # the field's uniqueness.
212
+ #
213
+ # When the database catches such a duplicate insertion,
214
+ # {ActiveRecord::Base#save}[rdoc-ref:Persistence#save] will raise an ActiveRecord::StatementInvalid
215
+ # exception. You can either choose to let this error propagate (which
216
+ # will result in the default Rails exception page being shown), or you
217
+ # can catch it and restart the transaction (e.g. by telling the user
218
+ # that the title already exists, and asking them to re-enter the title).
219
+ # This technique is also known as
220
+ # {optimistic concurrency control}[https://en.wikipedia.org/wiki/Optimistic_concurrency_control].
221
+ #
222
+ # The bundled ActiveRecord::ConnectionAdapters distinguish unique index
223
+ # constraint errors from other types of database errors by throwing an
224
+ # ActiveRecord::RecordNotUnique exception. For other adapters you will
225
+ # have to parse the (database-specific) exception message to detect such
226
+ # a case.
227
+ #
228
+ # The following bundled adapters throw the ActiveRecord::RecordNotUnique exception:
229
+ #
230
+ # * ActiveRecord::ConnectionAdapters::Mysql2Adapter.
231
+ # * ActiveRecord::ConnectionAdapters::SQLite3Adapter.
232
+ # * ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.
233
+ def validates_uniqueness_of(*attr_names)
234
+ validates_with UniquenessValidator, _merge_attributes(attr_names)
235
+ end
236
+ end
237
+ end
238
+ end