Module: PactBroker::Repositories::Helpers

Instance Method Summary collapse

Instance Method Details

#mysql?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/pact_broker/repositories/helpers.rb', line 34

def mysql?
  Sequel::Model.db.adapter_scheme.to_s =~ /mysql/
end

#name_like(column_name, value) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/pact_broker/repositories/helpers.rb', line 9

def name_like column_name, value
  if PactBroker.configuration.use_case_sensitive_resource_names
    if mysql?
      # sigh, mysql, this is the only way to perform a case sensitive search
      Sequel.like(column_name, value.gsub("_", "\\_"), { case_insensitive: false })
    else
      { column_name => value }
    end
  else
    Sequel.like(column_name, value.gsub("_", "\\_"), { case_insensitive: true })
  end
end

#no_columns_selected?Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/pact_broker/repositories/helpers.rb', line 59

def no_columns_selected?
  opts[:select].nil?
end

#order_append_ignore_case(column_name = :name) ⇒ Object



30
31
32
# File 'lib/pact_broker/repositories/helpers.rb', line 30

def order_append_ignore_case column_name = :name
  order_append(Sequel.function(:lower, column_name))
end

#order_ignore_case(column_name = :name) ⇒ Object



26
27
28
# File 'lib/pact_broker/repositories/helpers.rb', line 26

def order_ignore_case column_name = :name
  order(Sequel.function(:lower, column_name))
end

#pacticipant_id_for_name(pacticipant_name) ⇒ Object



22
23
24
# File 'lib/pact_broker/repositories/helpers.rb', line 22

def pacticipant_id_for_name pacticipant_name
  Sequel::Model.db[:pacticipants].select(:id).where(name_like(:name, pacticipant_name)).limit(1)
end

#postgres?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/pact_broker/repositories/helpers.rb', line 38

def postgres?
  Sequel::Model.db.adapter_scheme.to_s == "postgres"
end

#select_all_qualifiedObject



42
43
44
# File 'lib/pact_broker/repositories/helpers.rb', line 42

def select_all_qualified
  select(Sequel[model.table_name].*)
end

#select_append_all_qualifiedObject



46
47
48
# File 'lib/pact_broker/repositories/helpers.rb', line 46

def select_append_all_qualified
  select_append(Sequel[model.table_name].*)
end

#select_for_subquery(column) ⇒ Object



50
51
52
53
54
55
56
57
# File 'lib/pact_broker/repositories/helpers.rb', line 50

def select_for_subquery column
  if mysql? #stoopid mysql doesn't allow you to modify datasets with subqueries
    column_name = column.respond_to?(:alias) ? column.alias : column
    select(column).collect{ | it | it[column_name] }
  else
    select(column)
  end
end