Sha256: f325804358858b575b82be47b7731d1a28ae5c599399372e21d6e236e8d4c1d8
Contents?: true
Size: 934 Bytes
Versions: 3
Compression:
Stored size: 934 Bytes
Contents
module MagLoft class TypeloftBlock < RemoteResource endpoint "api/maglove/v1/typeloft_blocks" remote_attribute :identifier, :name, :contents, :typeloft_theme_id, :user_id, :created_at, :updated_at attr_accessor :thumbnail_policy def upload_thumbnail(file_path) return false if thumbnail_policy.nil? conn = Faraday.new(url: thumbnail_policy["url"]) do |f| f.ssl.verify = false f.headers = thumbnail_policy["headers"] f.adapter :net_http end response = conn.put(nil, File.read(file_path)) return (response.status == 200) end def queue_upload_thumbnail(file_path, &block) return false if thumbnail_policy.nil? request = Typhoeus::Request.new(thumbnail_policy["url"], method: :put, headers: thumbnail_policy["headers"], body: File.read(file_path), timeout: 200000) request.on_complete(&block) if block request end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
maglove-1.0.7 | lib/magloft/typeloft_block.rb |
maglove-1.0.5 | lib/magloft/typeloft_block.rb |
maglove-1.0.4 | lib/magloft/typeloft_block.rb |