lib/multiwoven/integrations/core/query_builder.rb



# frozen_string_literal: true

module Multiwoven
  module Integrations::Core
    class QueryBuilder
      include Utils

      def self.perform(action, table, record, primary_key = nil)
        case action.downcase
        when "destination_insert"
          columns = record.keys.join(", ")
          values = record.values.map { |value| "'#{value}'" }.join(", ")
          # TODO: support bulk insert
          "INSERT INTO #{table} (#{columns}) VALUES (#{values});"
        when "destination_update"
          # Ensure primary key is a string and exists within record for the WHERE clause
          if record[primary_key].nil?
            error_message = "Primary key '#{primary_key}' not found in record."
            Integrations::Service.logger.error(error_message)
            return error_message
          end

          primary_key_value = record.delete(primary_key) # Remove and return the primary key value
          set_clause = record.map { |key, value| "#{key} = '#{value}'" }.join(", ")
          where_clause = "#{primary_key} = '#{primary_key_value}'"
          "UPDATE #{table} SET #{set_clause} WHERE #{where_clause};"
        else
          "Invalid action specified."
        end
      end
    end
  end
end