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.10.0 lib/fog/terremark/models/shared/tasks.rb
fog-1.9.0 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/terremark/models/shared/tasks.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/terremark/models/shared/tasks.rb