Class: Outhad::Integrations::Destination::FacebookCustomAudience::Client

Inherits:
DestinationConnector
  • Object
show all
Includes:
Core::RateLimiter
Defined in:
lib/outhad/integrations/destination/facebook_custom_audience/client.rb

Constant Summary collapse

MAX_CHUNK_SIZE =
10_000

Instance Method Summary collapse

Instance Method Details

#check_connection(connection_config) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/outhad/integrations/destination/facebook_custom_audience/client.rb', line 9

def check_connection(connection_config)
  connection_config = connection_config.with_indifferent_access
  access_token = connection_config[:access_token]
  response = Outhad::Integrations::Core::HttpClient.request(
    FACEBOOK_AUDIENCE_GET_ALL_ACCOUNTS,
    HTTP_GET,
    headers: auth_headers(access_token)
  )
  if success?(response)
    (response, connection_config[:ad_account_id])
    ConnectionStatus.new(status: ConnectionStatusType["succeeded"]).to_outhad_message
  else
    ConnectionStatus.new(status: ConnectionStatusType["failed"]).to_outhad_message
  end
rescue StandardError => e
  ConnectionStatus.new(status: ConnectionStatusType["failed"], message: e.message).to_outhad_message
end

#discover(_connection_config = nil) ⇒ Object



27
28
29
30
31
32
33
34
35
36
# File 'lib/outhad/integrations/destination/facebook_custom_audience/client.rb', line 27

def discover(_connection_config = nil)
  catalog_json = read_json(CATALOG_SPEC_PATH)
  catalog = build_catalog(catalog_json)
  catalog.to_outhad_message
rescue StandardError => e
  handle_exception(e, {
                     context: "FACEBOOK AUDIENCE:DISCOVER:EXCEPTION",
                     type: "error"
                   })
end

#write(sync_config, records, _action = "destination_insert") ⇒ Object



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
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/outhad/integrations/destination/facebook_custom_audience/client.rb', line 38

def write(sync_config, records, _action = "destination_insert")
  connection_config = sync_config.destination.connection_specification.with_indifferent_access
  access_token = connection_config[:access_token]
  url = generate_url(sync_config, connection_config)
  write_success = 0
  write_failure = 0
  records.each_slice(MAX_CHUNK_SIZE) do |chunk|
    payload = create_payload(chunk, sync_config.stream.json_schema.with_indifferent_access)
    response = Outhad::Integrations::Core::HttpClient.request(
      url,
      sync_config.stream.request_method,
      payload: payload,
      headers: auth_headers(access_token)
    )
    if success?(response)
      write_success += chunk.size
    else
      write_failure += chunk.size
    end
  rescue StandardError => e
    handle_exception(e, {
                       context: "FACEBOOK:RECORD:WRITE:EXCEPTION",
                       type: "error",
                       sync_id: sync_config.sync_id,
                       sync_run_id: sync_config.sync_run_id
                     })
    write_failure += chunk.size
  end

  tracker = Outhad::Integrations::Protocol::TrackingMessage.new(
    success: write_success,
    failed: write_failure
  )
  tracker.to_outhad_message
rescue StandardError => e
  handle_exception(e, {
                     context: "FACEBOOK:RECORD:WRITE:EXCEPTION",
                     type: "error",
                     sync_id: sync_config.sync_id,
                     sync_run_id: sync_config.sync_run_id
                   })
end