Sha256: 634f99eae35825208c7a322ca28323c9e768af69cdaa3bd01adb83055427b6f4

Contents?: true

Size: 1.83 KB

Versions: 41

Compression:

Stored size: 1.83 KB

Contents

#!/usr/bin/env ruby

# This example demonstrates listing messages in a queue with the Rackpace Open Cloud

require 'rubygems' #required for Ruby 1.8.x
require 'fog'

def get_user_input(prompt)
  print "#{prompt}: "
  gets.chomp
end

def get_user_boolean(prompt)
  str = get_user_input(prompt)
  return false unless str
  str.match(/y(es)?/i) ? true : false
end

def select_queue(queues)
  abort "\nThere are not any queues to post a message to in the Chicago region. Try running create_queue.rb\n\n" if queues.empty?

  puts "\nSelect Queue:\n\n"
  queues.each_with_index do |queue, i|
    puts "\t #{i}. #{queue.name}"
  end

  delete_str = get_user_input "\nEnter Queue Number"
  queues[delete_str.to_i]
end

# Use username defined in ~/.fog file, if absent prompt for username.
# For more details on ~/.fog refer to http://fog.io/about/getting_started.html
def rackspace_username
  Fog.credentials[:rackspace_username] || get_user_input("Enter Rackspace Username")
end

# Use api key defined in ~/.fog file, if absent prompt for api key
# For more details on ~/.fog refer to http://fog.io/about/getting_started.html
def rackspace_api_key
  Fog.credentials[:rackspace_api_key] || get_user_input("Enter Rackspace API key")
end

# create Queue Service
service = Fog::Rackspace::Queues.new({
  :rackspace_username   => rackspace_username,
  :rackspace_api_key    => rackspace_api_key,
  :rackspace_region => :ord #Use Chicago Region
})

# retrieve list of queues
queues = service.queues

# prompt for queue to delete
queue = select_queue(queues)

queue.messages.echo = get_user_boolean "Do you want to include your own messages? [y/N]"

queue.messages.include_claimed = get_user_boolean "Do you want to include claimed messages? [y/N]"

puts "\n\nThe following messages are in the '#{queue.name}' queue:\n\n"

queue.messages.each do |message|
  puts message.inspect
end

Version data entries

41 entries across 39 versions & 6 rubygems

Version Path
fog-rackspace-0.1.6 lib/fog/rackspace/examples/queues/list_messages.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/queues/list_messages.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/queues/list_messages.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-rackspace-0.1.5/lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.5 lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.4 lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.3 lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.2 lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.1 lib/fog/rackspace/examples/queues/list_messages.rb
fog-rackspace-0.1.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.37.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.36.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.35.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-2.0.0.pre.0 lib/fog/rackspace/examples/queues/list_messages.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.34.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.33.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.32.0 lib/fog/rackspace/examples/queues/list_messages.rb
fog-1.31.0 lib/fog/rackspace/examples/queues/list_messages.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/rackspace/examples/queues/list_messages.rb