Class: Webhookdb::Replicator::FrontMessageV1
Constant Summary
DBAdapter::ColumnTypes::BIGINT, DBAdapter::ColumnTypes::BIGINT_ARRAY, DBAdapter::ColumnTypes::BOOLEAN, DBAdapter::ColumnTypes::COLUMN_TYPES, DBAdapter::ColumnTypes::DATE, DBAdapter::ColumnTypes::DECIMAL, DBAdapter::ColumnTypes::DOUBLE, DBAdapter::ColumnTypes::FLOAT, DBAdapter::ColumnTypes::INTEGER, DBAdapter::ColumnTypes::INTEGER_ARRAY, DBAdapter::ColumnTypes::OBJECT, DBAdapter::ColumnTypes::TEXT, DBAdapter::ColumnTypes::TEXT_ARRAY, DBAdapter::ColumnTypes::TIMESTAMP, DBAdapter::ColumnTypes::UUID
Constants inherited
from Base
Base::MAX_INDEX_NAME_LENGTH
Instance Attribute Summary
Attributes inherited from Base
#service_integration
Class Method Summary
collapse
Instance Method Summary
collapse
#_webhook_response, marketplace_only_state_machine, #on_dependency_webhook_upsert
Methods inherited from Base
#_any_subscriptions_to_notify?, #_backfill_state_change_fields, #_backfillers, #_clear_backfill_information, #_clear_webook_information, #_coalesce_excluded_on_update, #_enqueue_backfill_jobs, #_extra_index_specs, #_fetch_enrichment, #_find_dependency_candidate, #_notify_dependents, #_parallel_backfill, #_prepare_for_insert, #_publish_rowupsert, #_resource_to_data, #_store_enrichment_body?, #_to_json, #_upsert_update_expr, #_upsert_webhook, #_verify_backfill_err_msg, #_webhook_response, #_webhook_state_change_fields, #admin_dataset, #backfill, #backfill_not_supported_message, #calculate_and_backfill_state_machine, #calculate_backfill_state_machine, #calculate_dependency_state_machine_step, #calculate_preferred_create_state_machine, chunked_row_update_bounds, #clear_backfill_information, #clear_webhook_information, #create_table, #create_table_modification, #data_column, #dbadapter_table, #denormalized_columns, #descriptor, #dispatch_request_to, #documentation_url, #enqueue_sync_targets, #enrichment_column, #ensure_all_columns, #ensure_all_columns_modification, #find_dependent, #find_dependent!, #indices, #initialize, #on_dependency_webhook_upsert, #preferred_create_state_machine_method, #preprocess_headers_for_logging, #primary_key_column, #process_state_change, #process_webhooks_synchronously?, #qualified_table_sequel_identifier, #readonly_dataset, #remote_key_column, #requires_sequence?, #resource_name_plural, #resource_name_singular, #schema_and_table_symbols, #storable_columns, #synchronous_processing_response_body, #timestamp_column, #upsert_has_deps?, #upsert_webhook, #upsert_webhook_body, #verify_backfill_credentials, #webhook_endpoint, #webhook_response
Class Method Details
.descriptor ⇒ Object
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 10
def self.descriptor
return Webhookdb::Replicator::Descriptor.new(
name: "front_message_v1",
ctor: self,
feature_roles: [],
resource_name_singular: "Front Message",
dependency_descriptor: Webhookdb::Replicator::FrontMarketplaceRootV1.descriptor,
supports_webhooks: true,
api_docs_url: "https://dev.frontapp.com/reference/messages",
)
end
|
Instance Method Details
#_denormalized_columns ⇒ Object
26
27
28
29
30
31
32
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 26
def _denormalized_columns
return [
Webhookdb::Replicator::Column.new(:type, TEXT),
Webhookdb::Replicator::Column.new(:front_conversation_id, TEXT, event_key: ["conversation", "id"]),
Webhookdb::Replicator::Column.new(:created_at, TIMESTAMP, converter: :tsat),
]
end
|
#_remote_key_column ⇒ Object
22
23
24
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 22
def _remote_key_column
return Webhookdb::Replicator::Column.new(:front_id, TEXT, data_key: "id")
end
|
#_resource_and_event(request) ⇒ Object
38
39
40
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 38
def _resource_and_event(request)
return request.body.dig("payload", "target", "data"), request.body.fetch("payload")
end
|
#_timestamp_column_name ⇒ Object
34
35
36
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 34
def _timestamp_column_name
return :created_at
end
|
#_update_where_expr ⇒ Object
42
43
44
|
# File 'lib/webhookdb/replicator/front_message_v1.rb', line 42
def _update_where_expr
return self.qualified_table_sequel_identifier[:data] !~ Sequel[:excluded][:data]
end
|
#calculate_webhook_state_machine ⇒ Object