metamaps--metamaps/app/workers/grab_map_screenshot_worker.rb
Connor Turland c90721ad5c nothing
2014-10-08 02:34:17 -04:00

16 lines
341 B
Ruby

require 'phantomjs'
# app/workers/grab_map_screenshot_worker.rb
class GrabMapScreenshotWorker
include Sidekiq::Worker
def perform(map_id)
imgBase64 = ''
Phantomjs.run('./script/phantomjs-save-screenshot.js', map_id.to_s) { |line|
imgBase64 << line
}
map = Map.find(map_id)
map.decode_base64(imgBase64)
end
end