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-1.22.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.21.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/terremark/models/shared/tasks.rb
fog-1.20.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/terremark/models/shared/tasks.rb
fog-1.19.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/terremark/models/shared/tasks.rb