Sha256: 515bf2cb2a477eb5f4194b5867ad73ffad2c3494181a6be88b417aad2c323295

Contents?: true

Size: 1.32 KB

Versions: 90

Compression:

Stored size: 1.32 KB

Contents

require 'fog/core/collection'
require 'fog/terremark/models/shared/server'

module Fog
  module Terremark
    module Shared

      module Mock
        def tasks
          Fog::Terremark::Shared::Tasks.new(:connection => self)
        end
      end

      module Real
        def tasks
          Fog::Terremark::Shared::Tasks.new(:connection => self)
        end
      end

      class Tasks < Fog::Collection

        model Fog::Terremark::Shared::Task

        def all
          data = connection.get_tasks_list(task_list_id).body['Tasks']
          load(data)
        end

        def get(task_id)
          if task_id && task = connection.get_task(task_id).body
            new(task)
          elsif !task_id
            nil
          end
        rescue Excon::Errors::Forbidden
          nil
        end

        def task_list_id
          @task_list_id ||=
            if connection.default_organization_id && organization = connection.get_organization(connection.default_organization_id).body
              organization['Links'].detect {|link| link['type'] == 'application/vnd.vmware.vcloud.tasksList+xml'}['href'].split('/').last.to_i
            else
              nil
            end
        end

        private

        def task_list_id=(new_task_list_id)
          @task_list_id = new_task_list_id
        end

      end

    end
  end
end

Version data entries

90 entries across 90 versions & 16 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/terremark/models/shared/tasks.rb
fog-nirvanix-1.8.1 lib/fog/terremark/models/shared/tasks.rb
fog-parser-fix-1.6.1 lib/fog/terremark/models/shared/tasks.rb
fog-test-again-1.6.0 lib/fog/terremark/models/shared/tasks.rb
fog-parser-fix-1.6.0 lib/fog/terremark/models/shared/tasks.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/terremark/models/shared/tasks.rb
fog-sgonyea-1.8.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.8.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/terremark/models/shared/tasks.rb
fog-1.7.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.6.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.5.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.4.0 lib/fog/terremark/models/shared/tasks.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/terremark/models/shared/tasks.rb
michiels-fog-1.3.1 lib/fog/terremark/models/shared/tasks.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/terremark/models/shared/tasks.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/terremark/models/shared/tasks.rb
fog-1.3.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.3.0 lib/fog/terremark/models/shared/tasks.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/terremark/models/shared/tasks.rb