Class: Foobara::TransformedCommand
- Inherits:
-
Object
- Object
- Foobara::TransformedCommand
- Defined in:
- foobara-0.6.1/projects/command_connectors/src/transformed_command.rb
Overview
TODO: feels so strange that this doesn't inherit from command
Class Attribute Summary collapse
-
.allowed_rule ⇒ Object
Returns the value of attribute allowed_rule.
-
.authentication_optional ⇒ Object
Returns the value of attribute authentication_optional.
-
.authenticator ⇒ Object
Returns the value of attribute authenticator.
-
.builtin ⇒ Object
Returns the value of attribute builtin.
-
.capture_unknown_error ⇒ Object
Returns the value of attribute capture_unknown_error.
-
.command_class ⇒ Object
Returns the value of attribute command_class.
-
.command_name ⇒ Object
Returns the value of attribute command_name.
-
.errors_transformers ⇒ Object
Returns the value of attribute errors_transformers.
-
.full_command_name ⇒ Object
Returns the value of attribute full_command_name.
- .inputs_transformers ⇒ Object
-
.pre_commit_transformers ⇒ Object
Returns the value of attribute pre_commit_transformers.
-
.request_mutators ⇒ Object
Returns the value of attribute request_mutators.
-
.requires_authentication ⇒ Object
Returns the value of attribute requires_authentication.
-
.response_mutators ⇒ Object
Returns the value of attribute response_mutators.
- .result_transformers ⇒ Object
-
.serializers ⇒ Object
Returns the value of attribute serializers.
-
.subclassed_in_namespace ⇒ Object
Returns the value of attribute subclassed_in_namespace.
-
.suffix ⇒ Object
Returns the value of attribute suffix.
Instance Attribute Summary collapse
-
#command ⇒ Object
Returns the value of attribute command.
-
#outcome ⇒ Object
Returns the value of attribute outcome.
-
#request ⇒ Object
Returns the value of attribute request.
-
#transformed_inputs ⇒ Object
Returns the value of attribute transformed_inputs.
-
#untransformed_inputs ⇒ Object
Returns the value of attribute untransformed_inputs.
Class Method Summary collapse
- .builtin? ⇒ Boolean
- .description ⇒ Object
- .domain ⇒ Object
- .error_context_type_map ⇒ Object
- .foobara_manifest ⇒ Object
- .inputs_transformer ⇒ Object
- .inputs_type ⇒ Object
- .inputs_type_for_manifest ⇒ Object
- .inputs_type_from_transformers ⇒ Object
- .inputs_types_depended_on ⇒ Object
- .mutate_request(request) ⇒ Object
- .organization ⇒ Object
- .possible_errors ⇒ Object
- .possible_errors_manifest ⇒ Object
- .request_mutator ⇒ Object
- .response_mutator ⇒ Object
- .result_transformer ⇒ Object
- .result_type ⇒ Object
- .result_type_from_transformers ⇒ Object
- .result_types_depended_on ⇒ Object
- .subclass(command_class, scoped_namespace:, full_command_name:, command_name:, inputs_transformers:, result_transformers:, errors_transformers:, pre_commit_transformers:, serializers:, response_mutators:, request_mutators:, allowed_rule:, requires_authentication:, authenticator:, authentication_optional: nil, suffix: nil, capture_unknown_error: false) ⇒ Object
-
.transformers_to_processors(transformers, target_type, direction: :from, declaration_data: self) ⇒ Object
TODO: this is pretty messy with smells.
- .types_depended_on ⇒ Object
Instance Method Summary collapse
- #allowed_rule ⇒ Object
- #auth_mapped_method?(method_name) ⇒ Boolean
- #auth_mapped_value_for(name) ⇒ Object
- #authenticated_credential ⇒ Object
- #authenticated_user ⇒ Object
- #authenticator ⇒ Object
- #capture_unknown_error ⇒ Object
- #command_class ⇒ Object
- #command_name ⇒ Object
- #errors ⇒ Object
- #errors_transformer ⇒ Object
- #errors_transformers ⇒ Object
- #full_command_name ⇒ Object
-
#initialize(untransformed_inputs = {}) ⇒ TransformedCommand
constructor
A new instance of TransformedCommand.
- #inputs ⇒ Object
- #inputs_transformers ⇒ Object
- #method_missing(method_name) ⇒ Object
- #mutate_response(response) ⇒ Object
-
#pre_commit_transformer ⇒ Object
TODO: memoize.
- #pre_commit_transformers ⇒ Object
- #raw_inputs ⇒ Object
- #respond_to_missing?(method_name, private = false) ⇒ Boolean
- #result ⇒ Object
- #result_transformers ⇒ Object
- #run ⇒ Object
-
#serialize_result(body) ⇒ Object
TODO: kill this.
-
#serializer ⇒ Object
TODO: let's get this out of here...
- #serializers ⇒ Object
- #transform_errors ⇒ Object
- #transform_result ⇒ Object
Constructor Details
#initialize(untransformed_inputs = {}) ⇒ TransformedCommand
Returns a new instance of TransformedCommand.
608 609 610 611 612 613 |
# File 'projects/command_connectors/src/transformed_command.rb', line 608 def initialize(untransformed_inputs = {}) self.untransformed_inputs = untransformed_inputs || {} transform_inputs construct_command end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name) ⇒ Object
792 793 794 795 796 797 798 799 800 801 802 |
# File 'projects/command_connectors/src/transformed_command.rb', line 792 def method_missing(method_name, ...) if auth_mapped_method?(method_name) auth_mapped_value_for(method_name) elsif command.respond_to?(method_name) command.__send__(method_name, ...) else # simplecov:disable super # simplecov:enable end end |
Class Attribute Details
.allowed_rule ⇒ Object
Returns the value of attribute allowed_rule.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def allowed_rule @allowed_rule end |
.authentication_optional ⇒ Object
Returns the value of attribute authentication_optional.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def authentication_optional @authentication_optional end |
.authenticator ⇒ Object
Returns the value of attribute authenticator.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def authenticator @authenticator end |
.builtin ⇒ Object
Returns the value of attribute builtin.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def builtin @builtin end |
.capture_unknown_error ⇒ Object
Returns the value of attribute capture_unknown_error.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def capture_unknown_error @capture_unknown_error end |
.command_class ⇒ Object
Returns the value of attribute command_class.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def command_class @command_class end |
.command_name ⇒ Object
Returns the value of attribute command_name.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def command_name @command_name end |
.errors_transformers ⇒ Object
Returns the value of attribute errors_transformers.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def errors_transformers @errors_transformers end |
.full_command_name ⇒ Object
Returns the value of attribute full_command_name.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def full_command_name @full_command_name end |
.inputs_transformers ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'projects/command_connectors/src/transformed_command.rb', line 123 def inputs_transformers return @inputs_transformers if @considered_inputs_sensitive_value_remover @considered_inputs_sensitive_value_remover = true inputs_type = command_class.inputs_type @inputs_transformers = transformers_to_processors(@inputs_transformers, inputs_type, direction: :to) @inputs_transformers = @inputs_transformers.reverse # TODO: this block looks pointless... @inputs_transformers.each do |transformer| if transformer.is_a?(TypeDeclarations::TypedTransformer) new_type = transformer.from_type if new_type inputs_type = new_type break end end end @inputs_transformers end |
.pre_commit_transformers ⇒ Object
Returns the value of attribute pre_commit_transformers.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def pre_commit_transformers @pre_commit_transformers end |
.request_mutators ⇒ Object
Returns the value of attribute request_mutators.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def request_mutators @request_mutators end |
.requires_authentication ⇒ Object
Returns the value of attribute requires_authentication.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def requires_authentication @requires_authentication end |
.response_mutators ⇒ Object
Returns the value of attribute response_mutators.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def response_mutators @response_mutators end |
.result_transformers ⇒ Object
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'projects/command_connectors/src/transformed_command.rb', line 84 def result_transformers return @result_transformers if @considered_sensitive_value_remover @considered_sensitive_value_remover = true result_type = command_class.result_type result_transformers.reverse.each do |transformer| if transformer.is_a?(TypeDeclarations::TypedTransformer) || (transformer.is_a?(Class) && transformer < TypeDeclarations::TypedTransformer) new_type = transformer.to_type if new_type result_type = new_type break end end end if result_type&.has_sensitive_types? remover_class = Foobara::TypeDeclarations.sensitive_value_remover_class_for_type(result_type) remover = Namespace.use subclassed_in_namespace do path = if result_type.scoped_path_set? result_type.scoped_full_path else [*command_class.scoped_path, *suffix, "Result"] end remover_class.new(from: result_type).tap do |r| r.scoped_path = ["SensitiveValueRemover", *path] end end @result_transformers = [*@result_transformers, remover] end @result_transformers end |
.serializers ⇒ Object
Returns the value of attribute serializers.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def serializers @serializers end |
.subclassed_in_namespace ⇒ Object
Returns the value of attribute subclassed_in_namespace.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def subclassed_in_namespace @subclassed_in_namespace end |
.suffix ⇒ Object
Returns the value of attribute suffix.
7 8 9 |
# File 'projects/command_connectors/src/transformed_command.rb', line 7 def suffix @suffix end |
Instance Attribute Details
#command ⇒ Object
Returns the value of attribute command.
606 607 608 |
# File 'projects/command_connectors/src/transformed_command.rb', line 606 def command @command end |
#outcome ⇒ Object
Returns the value of attribute outcome.
606 607 608 |
# File 'projects/command_connectors/src/transformed_command.rb', line 606 def outcome @outcome end |
#request ⇒ Object
Returns the value of attribute request.
606 607 608 |
# File 'projects/command_connectors/src/transformed_command.rb', line 606 def request @request end |
#transformed_inputs ⇒ Object
Returns the value of attribute transformed_inputs.
606 607 608 |
# File 'projects/command_connectors/src/transformed_command.rb', line 606 def transformed_inputs @transformed_inputs end |
#untransformed_inputs ⇒ Object
Returns the value of attribute untransformed_inputs.
606 607 608 |
# File 'projects/command_connectors/src/transformed_command.rb', line 606 def untransformed_inputs @untransformed_inputs end |
Class Method Details
.builtin? ⇒ Boolean
553 554 555 |
# File 'projects/command_connectors/src/transformed_command.rb', line 553 def builtin? builtin end |
.description ⇒ Object
80 81 82 |
# File 'projects/command_connectors/src/transformed_command.rb', line 80 def description command_class.description end |
.domain ⇒ Object
68 69 70 71 72 |
# File 'projects/command_connectors/src/transformed_command.rb', line 68 def domain # simplecov:disable command_class.domain # simplecov:enable end |
.error_context_type_map ⇒ Object
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
# File 'projects/command_connectors/src/transformed_command.rb', line 237 def error_context_type_map @error_context_type_map ||= begin set = {} command_class.possible_errors.each do |possible_error| # For now, we get the input errors off the transformed inputs_type. # This way if an inputs transformer changes the path of an input, we don't wind up with the old path # in the errors. if possible_error.error_class < Foobara::RuntimeError set[possible_error.key.to_s] = possible_error end end command_class.manually_added_possible_input_errors.each do |possible_error| set[possible_error.key.to_s] = possible_error end inputs_type&.possible_errors&.each do |possible_error| set[possible_error.key.to_s] = possible_error end errors_transformers.each do |transformer| set = transformer.transform_error_context_type_map(self, set) end set end end |
.foobara_manifest ⇒ Object
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
# File 'projects/command_connectors/src/transformed_command.rb', line 350 def to_include = TypeDeclarations. || Set.new types = types_depended_on.select(&:registered?).map do |t| to_include << t t. end.sort inputs_transformers = TypeDeclarations.with_manifest_context(remove_sensitive: false) do processors_to_manifest_symbols(self.inputs_transformers) end result_transformers = processors_to_manifest_symbols(self.result_transformers) errors_transformers = processors_to_manifest_symbols(self.errors_transformers) pre_commit_transformers = processors_to_manifest_symbols(self.pre_commit_transformers) serializers = processors_to_manifest_symbols(self.serializers) response_mutators = processors_to_manifest_symbols(self.response_mutators) request_mutators = processors_to_manifest_symbols(self.request_mutators) authenticator_details = if requires_authentication && authenticator { symbol: authenticator.symbol, explanation: authenticator.explanation } end inputs_types_depended_on = TypeDeclarations.with_manifest_context(remove_sensitive: false) do self.inputs_types_depended_on.map(&:foobara_manifest_reference).sort end result_types_depended_on = self.result_types_depended_on.map(&:foobara_manifest_reference) result_types_depended_on = result_types_depended_on.sort bit_bucket = Set.new manifest = TypeDeclarations.with_manifest_context(to_include: bit_bucket) do command_class. end # TODO: This should support nil as an inputs_type but it breaks other projects for now inputs_type = inputs_type_for_manifest&.reference_or_declaration_data_for_manifest || { type: :attributes, element_type_declarations: {} } # TODO: handle errors_types_depended_on! to_merge = { inputs_types_depended_on:, result_types_depended_on:, types_depended_on: types, inputs_type:, result_type: result_type&.reference_or_declaration_data_for_manifest, possible_errors: possible_errors_manifest, capture_unknown_error:, inputs_transformers:, result_transformers:, errors_transformers:, pre_commit_transformers:, serializers:, response_mutators:, request_mutators:, requires_authentication:, authenticator: authenticator_details } manifest = manifest.dup # TODO: we should remove all blank valued keys but keeping many for now for stability safe_to_remove = [ :pre_commit_transformers, :response_mutators, :request_mutators, :capture_unknown_error, :inputs_transformers, :result_transformers, :errors_transformers, :requires_authentication, :authenticator ] to_merge.each_pair do |key, value| # TODO: we could probably remove empty strings and nils, too, and from the whole hash if value.nil? || ((value.is_a?(::Hash) || value.is_a?(::Array)) && value.empty?) if safe_to_remove.include?(key) manifest.delete(key) else manifest[key] = value end else manifest[key] = value end end manifest end |
.inputs_transformer ⇒ Object
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
# File 'projects/command_connectors/src/transformed_command.rb', line 442 def inputs_transformer return @inputs_transformer if defined?(@inputs_transformer) transformers = inputs_transformers if transformers.empty? @inputs_transformer = nil return end @inputs_transformer = if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end |
.inputs_type ⇒ Object
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'projects/command_connectors/src/transformed_command.rb', line 219 def inputs_type return @inputs_type if defined?(@inputs_type) mutated_inputs_type = inputs_type_from_transformers mutators = if request_mutators.size == 1 [request_mutator] else request_mutator&.processors end mutators&.each do |mutator| mutated_inputs_type = mutator.inputs_type_from(mutated_inputs_type) end @inputs_type = mutated_inputs_type end |
.inputs_type_for_manifest ⇒ Object
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'projects/command_connectors/src/transformed_command.rb', line 147 def inputs_type_for_manifest return @inputs_type_for_manifest if defined?(@inputs_type_for_manifest) @inputs_type_for_manifest = if inputs_type&.has_sensitive_types? remover_class = Foobara::TypeDeclarations.sensitive_value_remover_class_for_type( inputs_type ) Namespace.use subclassed_in_namespace do remover_class.new(to: inputs_type).from_type end else inputs_type end end |
.inputs_type_from_transformers ⇒ Object
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'projects/command_connectors/src/transformed_command.rb', line 163 def inputs_type_from_transformers return @inputs_type_from_transformers if defined?(@inputs_type_from_transformers) @inputs_type_from_transformers = if inputs_transformer if inputs_transformer.is_a?(Value::Processor::Pipeline) inputs_transformer.processors.each do |transformer| if transformer.is_a?(TypeDeclarations::TypedTransformer) from_type = transformer.from_type if from_type @inputs_type_from_transformers = from_type return from_type end end end command_class.inputs_type else if inputs_transformer.is_a?(TypeDeclarations::TypedTransformer) inputs_transformer.from_type end || command_class.inputs_type end else command_class.inputs_type end end |
.inputs_types_depended_on ⇒ Object
284 285 286 287 288 |
# File 'projects/command_connectors/src/transformed_command.rb', line 284 def inputs_types_depended_on TypeDeclarations.with_manifest_context(remove_sensitive: false) do inputs_type&.types_depended_on || [] end end |
.mutate_request(request) ⇒ Object
503 504 505 506 507 |
# File 'projects/command_connectors/src/transformed_command.rb', line 503 def mutate_request(request) if request_mutator&.applicable?(request) request_mutator.process_value!(request) end end |
.organization ⇒ Object
74 75 76 77 78 |
# File 'projects/command_connectors/src/transformed_command.rb', line 74 def organization # simplecov:disable command_class.organization # simplecov:enable end |
.possible_errors ⇒ Object
266 267 268 |
# File 'projects/command_connectors/src/transformed_command.rb', line 266 def possible_errors @possible_errors ||= error_context_type_map.values end |
.possible_errors_manifest ⇒ Object
270 271 272 273 274 275 276 277 278 279 280 281 282 |
# File 'projects/command_connectors/src/transformed_command.rb', line 270 def possible_errors_manifest errors_proc = -> do possible_errors.map do |possible_error| [possible_error.key.to_s, possible_error.] end.sort.to_h end if TypeDeclarations.manifest_context_set?(:remove_sensitive) errors_proc.call else TypeDeclarations.with_manifest_context(remove_sensitive: true, &errors_proc) end end |
.request_mutator ⇒ Object
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 |
# File 'projects/command_connectors/src/transformed_command.rb', line 481 def request_mutator return @request_mutator if defined?(@request_mutator) # HACK: to give SensitiveValueRemover a chance to be injected inputs_transformer if request_mutators.empty? @request_mutator = nil return end @request_mutator = begin transformers = transformers_to_processors(request_mutators, inputs_type_from_transformers, direction: :to) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end end |
.response_mutator ⇒ Object
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'projects/command_connectors/src/transformed_command.rb', line 459 def response_mutator return @response_mutator if defined?(@response_mutator) # A hack: this will give the SensitiveValueRemover a chance to be injected result_transformers if response_mutators.empty? @response_mutator = nil return end @response_mutator = begin transformers = transformers_to_processors(response_mutators, result_type_from_transformers, direction: :from) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end end |
.result_transformer ⇒ Object
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
# File 'projects/command_connectors/src/transformed_command.rb', line 509 def result_transformer return @result_transformer if defined?(@result_transformer) if result_transformers.empty? @result_transformer = nil return end @result_transformer = begin transformers = transformers_to_processors(result_transformers, command_class.result_type, direction: :from) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end end |
.result_type ⇒ Object
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'projects/command_connectors/src/transformed_command.rb', line 201 def result_type return @result_type if defined?(@result_type) mutated_result_type = result_type_from_transformers mutators = if response_mutators.size == 1 [response_mutator] else response_mutator&.processors&.reverse end mutators&.each do |mutator| mutated_result_type = mutator.result_type_from(mutated_result_type) end @result_type = mutated_result_type end |
.result_type_from_transformers ⇒ Object
189 190 191 192 193 194 195 196 197 198 199 |
# File 'projects/command_connectors/src/transformed_command.rb', line 189 def result_type_from_transformers result_transformers.reverse.each do |transformer| if transformer.is_a?(TypeDeclarations::TypedTransformer) || (transformer.is_a?(Class) && transformer < TypeDeclarations::TypedTransformer) new_type = transformer.to_type return new_type if new_type end end command_class.result_type end |
.result_types_depended_on ⇒ Object
290 291 292 293 294 295 296 297 298 |
# File 'projects/command_connectors/src/transformed_command.rb', line 290 def result_types_depended_on type_proc = -> { result_type&.types_depended_on || [] } if TypeDeclarations.manifest_context_set?(:remove_sensitive) type_proc.call else TypeDeclarations.with_manifest_context(remove_sensitive: true, &type_proc) end end |
.subclass(command_class, scoped_namespace:, full_command_name:, command_name:, inputs_transformers:, result_transformers:, errors_transformers:, pre_commit_transformers:, serializers:, response_mutators:, request_mutators:, allowed_rule:, requires_authentication:, authenticator:, authentication_optional: nil, suffix: nil, capture_unknown_error: false) ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'projects/command_connectors/src/transformed_command.rb', line 28 def subclass( command_class, scoped_namespace:, full_command_name:, command_name:, inputs_transformers:, result_transformers:, errors_transformers:, pre_commit_transformers:, serializers:, response_mutators:, request_mutators:, allowed_rule:, requires_authentication:, authenticator:, authentication_optional: nil, suffix: nil, capture_unknown_error: false ) Class.new(self).tap do |klass| klass.command_class = command_class klass.command_name = command_name klass.full_command_name = full_command_name klass.capture_unknown_error = capture_unknown_error klass.inputs_transformers = Util.array(inputs_transformers) klass.result_transformers = Util.array(result_transformers) klass.errors_transformers = Util.array(errors_transformers) klass.pre_commit_transformers = Util.array(pre_commit_transformers) klass.serializers = Util.array(serializers) klass.response_mutators = Util.array(response_mutators) klass.request_mutators = Util.array(request_mutators) klass.allowed_rule = allowed_rule klass.requires_authentication = requires_authentication klass.authentication_optional = authentication_optional klass.authenticator = authenticator klass.subclassed_in_namespace = scoped_namespace klass.suffix = suffix end end |
.transformers_to_processors(transformers, target_type, direction: :from, declaration_data: self) ⇒ Object
TODO: this is pretty messy with smells.
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 |
# File 'projects/command_connectors/src/transformed_command.rb', line 529 def transformers_to_processors(transformers, target_type, direction: :from, declaration_data: self) transformers.map do |transformer| if transformer.is_a?(Class) if transformer < TypeDeclarations::TypedTransformer transformer.new(direction => target_type).tap do |tx| new_type = direction == :from ? tx.to_type : tx.from_type target_type = new_type if new_type end else # TODO: perhaps pass in the command connector as the parent declaration data? transformer.new_with_agnostic_args(declaration_data:) end elsif transformer.is_a?(Value::Processor) transformer elsif transformer.respond_to?(:call) Value::Transformer.create(transform: transformer) else # simplecov:disable raise "Not sure how to apply #{transformer}" # simplecov:enable end end end |
.types_depended_on ⇒ Object
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
# File 'projects/command_connectors/src/transformed_command.rb', line 300 def types_depended_on types = Set.new # TODO: memoize this # TODO: this should not delegate to command since transformers are in play types_proc = proc do type = inputs_type_for_manifest if type if type.registered? # TODO: if we ever change from attributes-only inputs type # then this will be handy # simplecov:disable types |= [type] # simplecov:enable end types |= type.types_depended_on end type = result_type if type if type.registered? # TODO: if we ever change from attributes-only inputs type # then this will be handy # simplecov:disable types |= [type] # simplecov:enable end types |= type.types_depended_on end possible_errors.each do |possible_error| error_class = possible_error.error_class types |= error_class.types_depended_on end types end if TypeDeclarations.manifest_context_set?(:remove_sensitive) types_proc.call else TypeDeclarations.with_manifest_context(remove_sensitive: true, &types_proc) end end |
Instance Method Details
#allowed_rule ⇒ Object
659 660 661 |
# File 'projects/command_connectors/src/transformed_command.rb', line 659 def allowed_rule self.class.allowed_rule end |
#auth_mapped_method?(method_name) ⇒ Boolean
808 809 810 |
# File 'projects/command_connectors/src/transformed_command.rb', line 808 def auth_mapped_method?(method_name) request&.auth_mapped_method?(method_name) end |
#auth_mapped_value_for(name) ⇒ Object
804 805 806 |
# File 'projects/command_connectors/src/transformed_command.rb', line 804 def auth_mapped_value_for(name) request.auth_mapped_value_for(name) end |
#authenticated_credential ⇒ Object
683 684 685 |
# File 'projects/command_connectors/src/transformed_command.rb', line 683 def authenticated_credential request.authenticated_credential end |
#authenticated_user ⇒ Object
679 680 681 |
# File 'projects/command_connectors/src/transformed_command.rb', line 679 def authenticated_user request.authenticated_user end |
#authenticator ⇒ Object
663 664 665 |
# File 'projects/command_connectors/src/transformed_command.rb', line 663 def authenticator self.class.authenticator end |
#capture_unknown_error ⇒ Object
631 632 633 |
# File 'projects/command_connectors/src/transformed_command.rb', line 631 def capture_unknown_error self.class.capture_unknown_error end |
#command_class ⇒ Object
627 628 629 |
# File 'projects/command_connectors/src/transformed_command.rb', line 627 def command_class self.class.command_class end |
#command_name ⇒ Object
621 622 623 624 625 |
# File 'projects/command_connectors/src/transformed_command.rb', line 621 def command_name # simplecov:disable self.class.command_name # simplecov:enable end |
#errors ⇒ Object
775 776 777 |
# File 'projects/command_connectors/src/transformed_command.rb', line 775 def errors outcome.errors end |
#errors_transformer ⇒ Object
741 742 743 744 745 746 747 748 749 750 751 752 |
# File 'projects/command_connectors/src/transformed_command.rb', line 741 def errors_transformer return nil if errors_transformers.empty? transformers = self.class.transformers_to_processors(errors_transformers, nil, direction: :from, declaration_data: self) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end |
#errors_transformers ⇒ Object
647 648 649 |
# File 'projects/command_connectors/src/transformed_command.rb', line 647 def errors_transformers self.class.errors_transformers end |
#full_command_name ⇒ Object
615 616 617 618 619 |
# File 'projects/command_connectors/src/transformed_command.rb', line 615 def full_command_name # simplecov:disable self.class.full_command_name # simplecov:enable end |
#inputs ⇒ Object
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 |
# File 'projects/command_connectors/src/transformed_command.rb', line 687 def inputs return @inputs if defined?(@inputs) @inputs = if inputs_type outcome = inputs_type.process_value(untransformed_inputs) if outcome.success? outcome.result else untransformed_inputs end else {} end end |
#inputs_transformers ⇒ Object
635 636 637 638 639 |
# File 'projects/command_connectors/src/transformed_command.rb', line 635 def inputs_transformers # simplecov:disable self.class.inputs_transformers # simplecov:enable end |
#mutate_response(response) ⇒ Object
711 712 713 714 715 716 717 |
# File 'projects/command_connectors/src/transformed_command.rb', line 711 def mutate_response(response) mutator = self.class.response_mutator if mutator&.applicable?(response) mutator.process_value!(response) end end |
#pre_commit_transformer ⇒ Object
TODO: memoize
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
# File 'projects/command_connectors/src/transformed_command.rb', line 755 def pre_commit_transformer return nil if pre_commit_transformers.empty? transformers = self.class.transformers_to_processors( pre_commit_transformers, nil, declaration_data: self ) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end |
#pre_commit_transformers ⇒ Object
651 652 653 |
# File 'projects/command_connectors/src/transformed_command.rb', line 651 def pre_commit_transformers self.class.pre_commit_transformers end |
#raw_inputs ⇒ Object
788 789 790 |
# File 'projects/command_connectors/src/transformed_command.rb', line 788 def raw_inputs untransformed_inputs end |
#respond_to_missing?(method_name, private = false) ⇒ Boolean
812 813 814 |
# File 'projects/command_connectors/src/transformed_command.rb', line 812 def respond_to_missing?(method_name, private = false) command.respond_to?(method_name, private) || auth_mapped_method?(method_name) || super end |
#result ⇒ Object
771 772 773 |
# File 'projects/command_connectors/src/transformed_command.rb', line 771 def result outcome.result end |
#result_transformers ⇒ Object
641 642 643 644 645 |
# File 'projects/command_connectors/src/transformed_command.rb', line 641 def result_transformers # simplecov:disable self.class.result_transformers # simplecov:enable end |
#run ⇒ Object
667 668 669 670 671 672 673 674 675 676 677 |
# File 'projects/command_connectors/src/transformed_command.rb', line 667 def run apply_allowed_rule apply_pre_commit_transformers set_inputs run_command # this gives us primary keys flush_transactions transform_outcome outcome end |
#serialize_result(body) ⇒ Object
TODO: kill this
780 781 782 783 784 785 786 |
# File 'projects/command_connectors/src/transformed_command.rb', line 780 def serialize_result(body) if serializer serializer.process_value!(body) else body end end |
#serializer ⇒ Object
TODO: let's get this out of here... we might want to have different serializers for different command instances of the same class. but currently serializers is set on the class. Since this class should not be concerned with serialization, we should just try to relocate this to the Request which could delegate to the registry for defaults.
729 730 731 732 733 734 735 736 737 738 739 |
# File 'projects/command_connectors/src/transformed_command.rb', line 729 def serializer return nil if serializers.empty? transformers = self.class.transformers_to_processors(serializers, nil, declaration_data: self) if transformers.size == 1 transformers[0] else Value::Processor::Pipeline.new(processors: transformers) end end |
#serializers ⇒ Object
655 656 657 |
# File 'projects/command_connectors/src/transformed_command.rb', line 655 def serializers self.class.serializers end |
#transform_errors ⇒ Object
719 720 721 722 723 |
# File 'projects/command_connectors/src/transformed_command.rb', line 719 def transform_errors if errors_transformer&.applicable?(errors) self.outcome = Outcome.errors(errors_transformer.process_value!(errors)) end end |
#transform_result ⇒ Object
703 704 705 706 707 708 709 |
# File 'projects/command_connectors/src/transformed_command.rb', line 703 def transform_result transformer = self.class.result_transformer if transformer&.applicable?(result) self.outcome = Outcome.success(transformer.process_value!(result)) end end |