Sha256: 4b5f63b015c69781f73c5cec76caaf7e55bae9c92b6c3bd91628a40a15d67462
Contents?: true
Size: 1.59 KB
Versions: 25
Compression:
Stored size: 1.59 KB
Contents
module Pageflow class PollZencoderJob < ApplicationJob queue_as :resizing include StateMachineJob def perform_with_result(file, options, api = ZencoderApi.instance) options ||= {} catch(:halt) do poll_zencoder(file, api) fetch_input_details(file, api) fetch_thumbnail(file) unless options[:skip_thumbnail] :ok end ensure file.save! end private def poll_zencoder(file, api) info = api.get_info(file.job_id) file.encoding_progress = info[:finished] ? 100 : info[:progress]; file.encoding_error_message = nil if info[:state] === 'failed' throw(:halt, :error) elsif !info[:finished] throw(:halt, :pending) end rescue ZencoderApi::RecoverableError => e file.encoding_error_message = e.message throw(:halt, :pending) rescue ZencoderApi::Error => e file.encoding_error_message = e.message raise end def fetch_thumbnail(file) return unless file.respond_to?(:thumbnail) file.thumbnail = URI.parse(file.zencoder_thumbnail.url(default_protocol: 'http')) file.poster = URI.parse(file.zencoder_poster.url(default_protocol: 'http')) rescue OpenURI::HTTPError throw(:halt, :pending) end def fetch_input_details(file, api) file.meta_data_attributes = api.get_details(file.job_id) rescue ZencoderApi::RecoverableError => e file.encoding_error_message = e.message throw(:halt, :pending) rescue ZencoderApi::Error => e file.encoding_error_message = e.message raise end end end
Version data entries
25 entries across 25 versions & 1 rubygems