Sha256: 820d22c520f5b6aec22cf529b034d8bf52a6e2acec7a82357cc1320d3dc166f7

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

module AnswersEngine
  module Client
    class Job < AnswersEngine::Client::Base
      def all(opts={})
        self.class.get("/jobs", @options)
      end

      def find(job_id)
        self.class.get("/jobs/#{job_id}", @options)
      end

      def update(job_id, opts={})
        body = {}
        body[:status] = opts[:status] if opts[:status]
        body[:standard_worker_count] = opts[:workers] if opts[:workers]
        body[:browser_worker_count] = opts[:browsers] if opts[:browsers]
        @options.merge!({body: body.to_json})

        self.class.put("/jobs/#{job_id}", @options)
      end

      def cancel(job_id, opts={})
        opts[:status] = 'cancelled'
        update(job_id, opts)
      end

      def resume(job_id, opts={})
        opts[:status] = 'active'
        update(job_id, opts)
      end

      def pause(job_id, opts={})
        opts[:status] = 'paused'
        update(job_id, opts)
      end

      def seeding_update(job_id, opts={})
        body = {}
        body[:outputs] = opts.fetch(:outputs) {[]}
        body[:pages] = opts.fetch(:pages) {[]}
        body[:seeding_status] = opts.fetch(:seeding_status){ nil }
        body[:log_error] = opts[:log_error] if opts[:log_error]

        @options.merge!({body: body.to_json})

        self.class.put("/jobs/#{job_id}/seeding_update", @options)
      end

    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
answersengine-0.4.1 lib/answersengine/client/job.rb
answersengine-0.4.0 lib/answersengine/client/job.rb