Class: Foobara::TransformedCommand

Inherits:
Object
  • Object
show all
Defined in:
foobara-0.0.130/projects/command_connectors/src/transformed_command.rb

Overview

TODO: feels so strange that this doesn’t inherit from command TODO: move this to command connectors project

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(untransformed_inputs = {}) ⇒ TransformedCommand

Returns a new instance of TransformedCommand.



557
558
559
560
561
562
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 557

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



795
796
797
798
799
800
801
802
803
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 795

def method_missing(method_name, ...)
  if command.respond_to?(method_name)
    command.send(method_name, ...)
  else
    # :nocov:
    super
    # :nocov:
  end
end

Class Attribute Details

.allowed_ruleObject

Returns the value of attribute allowed_rule.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def allowed_rule
  @allowed_rule
end

.authenticatorObject

Returns the value of attribute authenticator.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def authenticator
  @authenticator
end

.capture_unknown_errorObject

Returns the value of attribute capture_unknown_error.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def capture_unknown_error
  @capture_unknown_error
end

.command_classObject

Returns the value of attribute command_class.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def command_class
  @command_class
end

.command_nameObject

Returns the value of attribute command_name.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def command_name
  @command_name
end

.errors_transformersObject

Returns the value of attribute errors_transformers.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def errors_transformers
  @errors_transformers
end

.full_command_nameObject

Returns the value of attribute full_command_name.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def full_command_name
  @full_command_name
end

.inputs_transformersObject



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 109

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.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_transformersObject

Returns the value of attribute pre_commit_transformers.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def pre_commit_transformers
  @pre_commit_transformers
end

.request_mutatorsObject

Returns the value of attribute request_mutators.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def request_mutators
  @request_mutators
end

.requires_authenticationObject

Returns the value of attribute requires_authentication.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def requires_authentication
  @requires_authentication
end

.response_mutatorsObject

Returns the value of attribute response_mutators.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def response_mutators
  @response_mutators
end

.result_transformersObject



70
71
72
73
74
75
76
77
78
79
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
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 70

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

.serializersObject

Returns the value of attribute serializers.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def serializers
  @serializers
end

.subclassed_in_namespaceObject

Returns the value of attribute subclassed_in_namespace.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def subclassed_in_namespace
  @subclassed_in_namespace
end

.suffixObject

Returns the value of attribute suffix.



8
9
10
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 8

def suffix
  @suffix
end

Instance Attribute Details

#commandObject

Returns the value of attribute command.



555
556
557
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 555

def command
  @command
end

#outcomeObject

Returns the value of attribute outcome.



555
556
557
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 555

def outcome
  @outcome
end

#requestObject

Returns the value of attribute request.



555
556
557
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 555

def request
  @request
end

#transformed_inputsObject

Returns the value of attribute transformed_inputs.



555
556
557
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 555

def transformed_inputs
  @transformed_inputs
end

#untransformed_inputsObject

Returns the value of attribute untransformed_inputs.



555
556
557
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 555

def untransformed_inputs
  @untransformed_inputs
end

Class Method Details

.error_context_type_mapObject



221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 221

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_manifestObject



334
335
336
337
338
339
340
341
342
343
344
345
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
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 334

def foobara_manifest
  to_include = TypeDeclarations.foobara_manifest_context_to_include

  types = types_depended_on.select(&:registered?).map do |t|
    if to_include
      to_include << t
    end
    t.foobara_manifest_reference
  end.sort

  inputs_transformers = TypeDeclarations.with_manifest_context(remove_sensitive: false) do
    self.inputs_transformers.map(&:foobara_manifest)
  end
  result_transformers = self.result_transformers.map(&:foobara_manifest)
  errors_transformers = self.errors_transformers.map(&:foobara_manifest)
  pre_commit_transformers = self.pre_commit_transformers.map(&:foobara_manifest)
  serializers = self.serializers.map do |s|
    if s.respond_to?(:foobara_manifest)
      if to_include
        to_include << s
      end
      s.foobara_manifest_reference
    else
      { proc: s.to_s }
    end
  end

  response_mutators = mutators_to_manifest_symbols(self.response_mutators, to_include:)
  request_mutators = mutators_to_manifest_symbols(self.request_mutators, to_include:)

  authenticator_details = if 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.foobara_manifest
  end

  # TODO: handle errors_types_depended_on!
  manifest.merge(
    Util.remove_blank(
      inputs_types_depended_on:,
      result_types_depended_on:,
      types_depended_on: types,
      inputs_type: inputs_type_for_manifest&.reference_or_declaration_data,
      result_type: result_type&.reference_or_declaration_data,
      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
    )
  )
end

.inputs_transformerObject



442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 442

def inputs_transformer
  return @inputs_transformer if defined?(@inputs_transformer)

  if inputs_transformers.empty?
    @inputs_transformer = nil
    return
  end

  @inputs_transformer = begin
    transformers = transformers_to_processors(inputs_transformers,
                                              command_class.inputs_type, direction: :to)

    if transformers.size == 1
      transformers.first
    else
      Value::Processor::Pipeline.new(processors: transformers)
    end
  end
end

.inputs_typeObject



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 203

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_manifestObject



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 131

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_transformersObject



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 147

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_onObject



268
269
270
271
272
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 268

def inputs_types_depended_on
  TypeDeclarations.with_manifest_context(remove_sensitive: false) do
    inputs_type&.types_depended_on || []
  end
end

.mutate_request(request) ⇒ Object



506
507
508
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 506

def mutate_request(request)
  request_mutator&.process_value!(request)
end

.mutators_to_manifest_symbols(mutators, to_include:) ⇒ Object



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 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 406

def mutators_to_manifest_symbols(mutators, to_include:)
  return nil if mutators.nil? || mutators.empty?

  mutators.map do |mutator|
    if mutator.scoped_path_set?
      to_include << mutator
      mutator.foobara_manifest_reference
    elsif mutator.is_a?(Value::Mutator)
      klass = mutator.class

      if klass.scoped_path_set?
        to_include << klass
        klass.foobara_manifest_reference
        # TODO: Delete this nocov block
        # TODO: make anonymous scoped path's have better names instead of random hexadecimal
        # :nocov:
      elsif mutator.symbol
        mutator.symbol
      else

        to_include << klass if klass.scoped_path_set?

        name = klass.name

        while name.nil?
          klass = klass.superclass
          name = klass.name
        end

        "Anonymous#{Util.non_full_name(name)}"
        # :nocov:
      end
    end
  end
end

.possible_errorsObject



250
251
252
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 250

def possible_errors
  @possible_errors ||= error_context_type_map.values
end

.possible_errors_manifestObject



254
255
256
257
258
259
260
261
262
263
264
265
266
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 254

def possible_errors_manifest
  errors_proc = -> do
    possible_errors.map do |possible_error|
      [possible_error.key.to_s, possible_error.foobara_manifest]
    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_mutatorObject



484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 484

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_mutatorObject



462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 462

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_transformerObject



510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 510

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_typeObject



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 185

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_transformersObject



173
174
175
176
177
178
179
180
181
182
183
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 173

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_onObject



274
275
276
277
278
279
280
281
282
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 274

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



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
63
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 27

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.



530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 530

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 #{inputs_transformer}"
      # :nocov:
    end
  end
end

.types_depended_onObject



284
285
286
287
288
289
290
291
292
293
294
295
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
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 284

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

#apply_allowed_ruleObject



695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 695

def apply_allowed_rule
  rule = allowed_rule

  if rule
    command.after_load_records do |command:, **|
      is_allowed = instance_exec(&rule)

      unless is_allowed
        explanation = allowed_rule.explanation

        if explanation.is_a?(Proc)
          explanation = instance_eval(&explanation)
        end

        if explanation.nil?
          source = if allowed_rule.block.respond_to?("source") && defined?(MethodSource)
                     begin
                       # This only works when pry is loaded
                       allowed_rule.block.source
                     rescue MethodSource::SourceNotFoundError
                       # This path is hit if the way the source code is extracted
                       # doesn't result in valid Ruby, for example, as part of a hash such as:
                       # allowed_rule: -> () { whatever?(something) },
                     end
                   end

          source ||= allowed_rule.block.source_location.join(":")
          explanation = source || "No explanation."
        end

        error = CommandConnector::NotAllowedError.for(rule_symbol: rule.symbol, explanation:)
        self.outcome = Outcome.error(error)

        command.state_machine.error!
        command.halt!
      end
    end
  end
end

#apply_pre_commit_transformersObject



735
736
737
738
739
740
741
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 735

def apply_pre_commit_transformers
  if pre_commit_transformer
    command.before_commit_transaction do |**|
      pre_commit_transformer.process_value!(self)
    end
  end
end

#authenticated_credentialObject



594
595
596
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 594

def authenticated_credential
  request.authenticated_credential
end

#authenticated_userObject



590
591
592
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 590

def authenticated_user
  request.authenticated_user
end

#construct_commandObject



691
692
693
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 691

def construct_command
  self.command = command_class.new(transformed_inputs)
end

#errorsObject



769
770
771
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 769

def errors
  outcome.errors
end

#errors_transformerObject



661
662
663
664
665
666
667
668
669
670
671
672
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 661

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

#flush_transactionsObject



773
774
775
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 773

def flush_transactions
  request.opened_transactions&.reverse&.each(&:flush!)
end

#inputsObject



613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 613

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

#mutate_response(response) ⇒ Object



635
636
637
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 635

def mutate_response(response)
  self.class.response_mutator&.process_value!(response)
end

#pre_commit_transformerObject

TODO: memoize



675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 675

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

#respond_to_missing?(method_name, private = false) ⇒ Boolean

Returns:

  • (Boolean)


805
806
807
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 805

def respond_to_missing?(method_name, private = false)
  command.respond_to?(method_name, private) || super
end

#resultObject



765
766
767
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 765

def result
  outcome.result
end

#runObject



578
579
580
581
582
583
584
585
586
587
588
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 578

def run
  apply_allowed_rule
  apply_pre_commit_transformers
  set_inputs
  run_command
  # this gives us primary keys
  flush_transactions
  transform_outcome

  outcome
end

#run_commandObject



751
752
753
754
755
756
757
758
759
760
761
762
763
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 751

def run_command
  outcome = command.run
  self.outcome = outcome if outcome
rescue => e
  if capture_unknown_error
    # TODO: move to superclass?
    self.outcome = Outcome.error(CommandConnector::UnknownError.for(e))
  else
    # :nocov:
    raise
    # :nocov:
  end
end

#serialize_result(body) ⇒ Object

TODO: kill this



787
788
789
790
791
792
793
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 787

def serialize_result(body)
  if serializer
    serializer.process_value!(body)
  else
    body
  end
end

#serializerObject

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.



649
650
651
652
653
654
655
656
657
658
659
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 649

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

#set_inputsObject



743
744
745
746
747
748
749
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 743

def set_inputs
  if self.class.inputs_type
    command.after_cast_and_validate_inputs do |**|
      inputs
    end
  end
end

#transform_errorsObject



639
640
641
642
643
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 639

def transform_errors
  if errors_transformer
    self.outcome = Outcome.errors(errors_transformer.process_value!(errors))
  end
end

#transform_inputsObject



598
599
600
601
602
603
604
605
606
607
608
609
610
611
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 598

def transform_inputs
  self.transformed_inputs = if self.class.inputs_transformer
                              outcome = self.class.inputs_transformer.process_value(untransformed_inputs)

                              if outcome.success?
                                outcome.result
                              else
                                self.outcome = outcome
                                untransformed_inputs
                              end
                            else
                              untransformed_inputs
                            end
end

#transform_outcomeObject



777
778
779
780
781
782
783
784
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 777

def transform_outcome
  if outcome.success?
    # can we do this while still in the transaction of the command???
    transform_result
  else
    transform_errors
  end
end

#transform_resultObject



629
630
631
632
633
# File 'foobara-0.0.130/projects/command_connectors/src/transformed_command.rb', line 629

def transform_result
  if self.class.result_transformer
    self.outcome = Outcome.success(self.class.result_transformer.process_value!(result))
  end
end