Class: Insika::Commands::ExportCustomerMemory

Inherits:
Object
  • Object
show all
Defined in:
lib/insika/commands/export_customer_memory.rb

Overview

Control command the LGPD access right): exports what the engine holds about ONE customer — their memory cell's facts + notes, expired facts excluded. The FULL content is the RETURN VALUE (the Studio turns it into a JSON download); the emitted event carries counts only, so the event stream, the audit store and every log stay content-free (D7). The return value never enters a store, an event or a log.

Instance Method Summary collapse

Constructor Details

#initialize(memory_store:, event_stream:) ⇒ ExportCustomerMemory

Returns a new instance of ExportCustomerMemory.



14
15
16
17
# File 'lib/insika/commands/export_customer_memory.rb', line 14

def initialize(memory_store:, event_stream:)
  @memory_store = memory_store
  @event_stream = event_stream
end

Instance Method Details

#call(command) ⇒ Object

payload: { customer: (REQUIRED), tenant: } — customer from the payload (an operator names the person); tenant from the payload || meta. -> { "customer" =>, "tenant" =>, "exported_at" =>, "facts" => [Fact#to_h], "notes" => [Note#to_h], "counts" => { "facts" =>, "notes" => } }



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/insika/commands/export_customer_memory.rb', line 23

def call(command)
  p = AgentPayload.symbolize(command.payload)
  customer = AgentPayload.presence(p[:customer])
  raise Insika::ValidationError, "customer is required" if customer.nil?

  tenant = AgentPayload.presence(p[:tenant]) || command.meta[:tenant]
  facts = @memory_store.facts(tenant: tenant, customer: customer)
  notes = @memory_store.notes(tenant: tenant, customer: customer)
  exported_at = Time.now.utc.iso8601

  @event_stream.emit(Insika::Event.new(
                       type: :customer_memory_exported,
                       data: { customer: customer, tenant: tenant,
                               counts: { facts: facts.size, notes: notes.size } },
                       meta: { at: exported_at }
                     ))
  {
    "customer" => customer, "tenant" => tenant, "exported_at" => exported_at,
    "facts" => facts.map { |f| Coercion.deep_stringify(f.to_h) },
    "notes" => notes.map { |n| Coercion.deep_stringify(n.to_h) },
    "counts" => { "facts" => facts.size, "notes" => notes.size }
  }
end