Class: Foobara::TransformedCommand
- Inherits:
-
Object
- Object
- Foobara::TransformedCommand
- Defined in:
- foobara-0.5.8/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.
-
.authenticator ⇒ Object
Returns the value of attribute authenticator.
-
.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
- .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:, 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.
600 601 602 603 604 605 |
# File 'projects/command_connectors/src/transformed_command.rb', line 600 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
784 785 786 787 788 789 790 791 792 793 794 |
# File 'projects/command_connectors/src/transformed_command.rb', line 784 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 # :nocov: super # :nocov: 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 |
.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 |
.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
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'projects/command_connectors/src/transformed_command.rb', line 119 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
80 81 82 83 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 |
# File 'projects/command_connectors/src/transformed_command.rb', line 80 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.
598 599 600 |
# File 'projects/command_connectors/src/transformed_command.rb', line 598 def command @command end |
#outcome ⇒ Object
Returns the value of attribute outcome.
598 599 600 |
# File 'projects/command_connectors/src/transformed_command.rb', line 598 def outcome @outcome end |
#request ⇒ Object
Returns the value of attribute request.
598 599 600 |
# File 'projects/command_connectors/src/transformed_command.rb', line 598 def request @request end |
#transformed_inputs ⇒ Object
Returns the value of attribute transformed_inputs.
598 599 600 |
# File 'projects/command_connectors/src/transformed_command.rb', line 598 def transformed_inputs @transformed_inputs end |
#untransformed_inputs ⇒ Object
Returns the value of attribute untransformed_inputs.
598 599 600 |
# File 'projects/command_connectors/src/transformed_command.rb', line 598 def untransformed_inputs @untransformed_inputs end |
Class Method Details
.description ⇒ Object
76 77 78 |
# File 'projects/command_connectors/src/transformed_command.rb', line 76 def description command_class.description end |
.domain ⇒ Object
64 65 66 67 68 |
# File 'projects/command_connectors/src/transformed_command.rb', line 64 def domain # :nocov: command_class.domain # :nocov: end |
.error_context_type_map ⇒ Object
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'projects/command_connectors/src/transformed_command.rb', line 233 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
346 347 348 349 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 |
# File 'projects/command_connectors/src/transformed_command.rb', line 346 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
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
# File 'projects/command_connectors/src/transformed_command.rb', line 438 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.first else Value::Processor::Pipeline.new(processors: transformers) end end |
.inputs_type ⇒ Object
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'projects/command_connectors/src/transformed_command.rb', line 215 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
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'projects/command_connectors/src/transformed_command.rb', line 143 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
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'projects/command_connectors/src/transformed_command.rb', line 159 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
280 281 282 283 284 |
# File 'projects/command_connectors/src/transformed_command.rb', line 280 def inputs_types_depended_on TypeDeclarations.with_manifest_context(remove_sensitive: false) do inputs_type&.types_depended_on || [] end end |
.mutate_request(request) ⇒ Object
499 500 501 502 503 |
# File 'projects/command_connectors/src/transformed_command.rb', line 499 def mutate_request(request) if request_mutator&.applicable?(request) request_mutator.process_value!(request) end end |
.organization ⇒ Object
70 71 72 73 74 |
# File 'projects/command_connectors/src/transformed_command.rb', line 70 def organization # :nocov: command_class.organization # :nocov: end |
.possible_errors ⇒ Object
262 263 264 |
# File 'projects/command_connectors/src/transformed_command.rb', line 262 def possible_errors @possible_errors ||= error_context_type_map.values end |
.possible_errors_manifest ⇒ Object
266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'projects/command_connectors/src/transformed_command.rb', line 266 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
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'projects/command_connectors/src/transformed_command.rb', line 477 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.first else Value::Processor::Pipeline.new(processors: transformers) end end end |
.response_mutator ⇒ Object
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
# File 'projects/command_connectors/src/transformed_command.rb', line 455 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.first else Value::Processor::Pipeline.new(processors: transformers) end end end |
.result_transformer ⇒ Object
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 |
# File 'projects/command_connectors/src/transformed_command.rb', line 505 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.first else Value::Processor::Pipeline.new(processors: transformers) end end end |
.result_type ⇒ Object
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'projects/command_connectors/src/transformed_command.rb', line 197 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
185 186 187 188 189 190 191 192 193 194 195 |
# File 'projects/command_connectors/src/transformed_command.rb', line 185 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
286 287 288 289 290 291 292 293 294 |
# File 'projects/command_connectors/src/transformed_command.rb', line 286 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:, suffix: nil, capture_unknown_error: false) ⇒ Object
26 27 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 |
# File 'projects/command_connectors/src/transformed_command.rb', line 26 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:, 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.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.
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
# File 'projects/command_connectors/src/transformed_command.rb', line 525 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 # :nocov: raise "Not sure how to apply #{transformer}" # :nocov: end end end |
.types_depended_on ⇒ Object
296 297 298 299 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 |
# File 'projects/command_connectors/src/transformed_command.rb', line 296 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 # :nocov: types |= [type] # :nocov: 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 # :nocov: types |= [type] # :nocov: 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
651 652 653 |
# File 'projects/command_connectors/src/transformed_command.rb', line 651 def allowed_rule self.class.allowed_rule end |
#auth_mapped_method?(method_name) ⇒ Boolean
800 801 802 |
# File 'projects/command_connectors/src/transformed_command.rb', line 800 def auth_mapped_method?(method_name) request&.auth_mapped_method?(method_name) end |
#auth_mapped_value_for(name) ⇒ Object
796 797 798 |
# File 'projects/command_connectors/src/transformed_command.rb', line 796 def auth_mapped_value_for(name) request.auth_mapped_value_for(name) end |
#authenticated_credential ⇒ Object
675 676 677 |
# File 'projects/command_connectors/src/transformed_command.rb', line 675 def authenticated_credential request.authenticated_credential end |
#authenticated_user ⇒ Object
671 672 673 |
# File 'projects/command_connectors/src/transformed_command.rb', line 671 def authenticated_user request.authenticated_user end |
#authenticator ⇒ Object
655 656 657 |
# File 'projects/command_connectors/src/transformed_command.rb', line 655 def authenticator self.class.authenticator end |
#capture_unknown_error ⇒ Object
623 624 625 |
# File 'projects/command_connectors/src/transformed_command.rb', line 623 def capture_unknown_error self.class.capture_unknown_error end |
#command_class ⇒ Object
619 620 621 |
# File 'projects/command_connectors/src/transformed_command.rb', line 619 def command_class self.class.command_class end |
#command_name ⇒ Object
613 614 615 616 617 |
# File 'projects/command_connectors/src/transformed_command.rb', line 613 def command_name # :nocov: self.class.command_name # :nocov: end |
#errors ⇒ Object
767 768 769 |
# File 'projects/command_connectors/src/transformed_command.rb', line 767 def errors outcome.errors end |
#errors_transformer ⇒ Object
733 734 735 736 737 738 739 740 741 742 743 744 |
# File 'projects/command_connectors/src/transformed_command.rb', line 733 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.first else Value::Processor::Pipeline.new(processors: transformers) end end |
#errors_transformers ⇒ Object
639 640 641 |
# File 'projects/command_connectors/src/transformed_command.rb', line 639 def errors_transformers self.class.errors_transformers end |
#full_command_name ⇒ Object
607 608 609 610 611 |
# File 'projects/command_connectors/src/transformed_command.rb', line 607 def full_command_name # :nocov: self.class.full_command_name # :nocov: end |
#inputs ⇒ Object
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
# File 'projects/command_connectors/src/transformed_command.rb', line 679 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
627 628 629 630 631 |
# File 'projects/command_connectors/src/transformed_command.rb', line 627 def inputs_transformers # :nocov: self.class.inputs_transformers # :nocov: end |
#mutate_response(response) ⇒ Object
703 704 705 706 707 708 709 |
# File 'projects/command_connectors/src/transformed_command.rb', line 703 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
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 |
# File 'projects/command_connectors/src/transformed_command.rb', line 747 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.first else Value::Processor::Pipeline.new(processors: transformers) end end |
#pre_commit_transformers ⇒ Object
643 644 645 |
# File 'projects/command_connectors/src/transformed_command.rb', line 643 def pre_commit_transformers self.class.pre_commit_transformers end |
#raw_inputs ⇒ Object
780 781 782 |
# File 'projects/command_connectors/src/transformed_command.rb', line 780 def raw_inputs untransformed_inputs end |
#respond_to_missing?(method_name, private = false) ⇒ Boolean
804 805 806 |
# File 'projects/command_connectors/src/transformed_command.rb', line 804 def respond_to_missing?(method_name, private = false) command.respond_to?(method_name, private) || auth_mapped_method?(method_name) || super end |
#result ⇒ Object
763 764 765 |
# File 'projects/command_connectors/src/transformed_command.rb', line 763 def result outcome.result end |
#result_transformers ⇒ Object
633 634 635 636 637 |
# File 'projects/command_connectors/src/transformed_command.rb', line 633 def result_transformers # :nocov: self.class.result_transformers # :nocov: end |
#run ⇒ Object
659 660 661 662 663 664 665 666 667 668 669 |
# File 'projects/command_connectors/src/transformed_command.rb', line 659 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
772 773 774 775 776 777 778 |
# File 'projects/command_connectors/src/transformed_command.rb', line 772 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.
721 722 723 724 725 726 727 728 729 730 731 |
# File 'projects/command_connectors/src/transformed_command.rb', line 721 def serializer return nil if serializers.empty? transformers = self.class.transformers_to_processors(serializers, nil, declaration_data: self) if transformers.size == 1 transformers.first else Value::Processor::Pipeline.new(processors: transformers) end end |
#serializers ⇒ Object
647 648 649 |
# File 'projects/command_connectors/src/transformed_command.rb', line 647 def serializers self.class.serializers end |
#transform_errors ⇒ Object
711 712 713 714 715 |
# File 'projects/command_connectors/src/transformed_command.rb', line 711 def transform_errors if errors_transformer&.applicable?(errors) self.outcome = Outcome.errors(errors_transformer.process_value!(errors)) end end |
#transform_result ⇒ Object
695 696 697 698 699 700 701 |
# File 'projects/command_connectors/src/transformed_command.rb', line 695 def transform_result transformer = self.class.result_transformer if transformer&.applicable?(result) self.outcome = Outcome.success(transformer.process_value!(result)) end end |