Sha256: e2bf381d1b43ee4ed44189e7534b41f4977c3d8e3bcff8396508daa5eef5837c

Contents?: true

Size: 1.3 KB

Versions: 65

Compression:

Stored size: 1.3 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(:service => self)
        end
      end

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

      class Tasks < Fog::Collection

        model Fog::Terremark::Shared::Task

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

        def get(task_id)
          if task_id && task = service.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 service.default_organization_id && organization = service.get_organization(service.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

65 entries across 65 versions & 6 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/terremark/models/shared/tasks.rb
fog-1.15.0 lib/fog/terremark/models/shared/tasks.rb
gapinc-fog-1.14.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/terremark/models/shared/tasks.rb
fog-1.14.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.13.0 lib/fog/terremark/models/shared/tasks.rb
gapinc-fog-1.12.1.2 lib/fog/terremark/models/shared/tasks.rb
gapinc-fog-1.12.1.1 lib/fog/terremark/models/shared/tasks.rb
gapinc-fog-1.12.1a lib/fog/terremark/models/shared/tasks.rb
gapinc-fog-1.12.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.12.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.12.0 lib/fog/terremark/models/shared/tasks.rb
hpfog-0.0.20 lib/fog/terremark/models/shared/tasks.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/terremark/models/shared/tasks.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/terremark/models/shared/tasks.rb
fog-1.11.1 lib/fog/terremark/models/shared/tasks.rb
fog-1.11.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.10.1 lib/fog/terremark/models/shared/tasks.rb
fog-test-me-1.10.0 lib/fog/terremark/models/shared/tasks.rb