rucaptcha/app/controllers/ru_captcha/captcha_controller.rb

18 lines
557 B
Ruby
Raw Normal View History

2015-10-26 06:09:39 +00:00
module RuCaptcha
class CaptchaController < ActionController::Base
def index
2017-03-09 08:42:43 +00:00
return head :ok if request.head?
2015-10-26 06:09:39 +00:00
headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
headers['Pragma'] = 'no-cache'
2022-10-13 05:06:24 +00:00
if params[:format] == "wav" and RuCaptcha.espeak?
data = generate_speech_rucaptcha
opts = { disposition: 'inline', type: 'audio/wav' }
else
data = generate_rucaptcha
opts = { disposition: 'inline', type: 'image/gif' }
end
2017-03-22 07:52:21 +00:00
send_data data, opts
2015-10-26 06:09:39 +00:00
end
end
end