Class: OmniAuth::Form
- Inherits:
-
Object
- Object
- OmniAuth::Form
- Defined in:
- lib/omniauth/form.rb
Constant Summary collapse
- DEFAULT_CSS =
File.read(File.('../form.css', __FILE__))
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
Class Method Summary collapse
Instance Method Summary collapse
- #button(text) ⇒ Object
- #fieldset(legend, options = {}, &block) ⇒ Object
- #footer ⇒ Object
- #header(title, header_info) ⇒ Object
- #html(html) ⇒ Object
-
#initialize(options = {}) ⇒ Form
constructor
A new instance of Form.
- #input_field(type, name) ⇒ Object
- #label_field(text, target) ⇒ Object
- #password_field(label, name) ⇒ Object
- #text_field(label, name) ⇒ Object
- #to_html ⇒ Object
- #to_response ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Form
Returns a new instance of Form.
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/omniauth/form.rb', line 7 def initialize( = {}) [:title] ||= 'Authentication Info Required' [:header_info] ||= '' self. = @html = '' @with_custom_button = false @footer = nil header([:title], [:header_info]) end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
5 6 7 |
# File 'lib/omniauth/form.rb', line 5 def @options end |
Class Method Details
Instance Method Details
#button(text) ⇒ Object
50 51 52 53 |
# File 'lib/omniauth/form.rb', line 50 def (text) @with_custom_button = true @html << "\n<button type='submit'>#{text}</button>" end |
#fieldset(legend, options = {}, &block) ⇒ Object
59 60 61 62 63 64 |
# File 'lib/omniauth/form.rb', line 59 def fieldset(legend, = {}, &block) @html << "\n<fieldset#{" style='#{[:style]}'" if [:style]}#{" id='#{[:id]}'" if [:id]}>\n <legend>#{legend}</legend>\n" instance_eval(&block) @html << "\n</fieldset>" self end |
#footer ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/omniauth/form.rb', line 83 def return self if @footer @html << "\n<button type='submit'>Connect</button>" unless @with_custom_button @html << <<-HTML </form> </body> </html> HTML @footer = true self end |
#header(title, header_info) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/omniauth/form.rb', line 66 def header(title, header_info) @html << <<-HTML <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>#{title}</title> #{css} #{header_info} </head> <body> <h1>#{title}</h1> <form method='post' #{"action='#{[:url]}' " if [:url]}noValidate='noValidate'> HTML self end |
#html(html) ⇒ Object
55 56 57 |
# File 'lib/omniauth/form.rb', line 55 def html(html) @html << html end |
#input_field(type, name) ⇒ Object
33 34 35 36 |
# File 'lib/omniauth/form.rb', line 33 def input_field(type, name) @html << "\n<input type='#{type}' id='#{name}' name='#{name}'/>" self end |
#label_field(text, target) ⇒ Object
28 29 30 31 |
# File 'lib/omniauth/form.rb', line 28 def label_field(text, target) @html << "\n<label for='#{target}'>#{text}:</label>" self end |
#password_field(label, name) ⇒ Object
44 45 46 47 48 |
# File 'lib/omniauth/form.rb', line 44 def password_field(label, name) label_field(label, name) input_field('password', name) self end |
#text_field(label, name) ⇒ Object
38 39 40 41 42 |
# File 'lib/omniauth/form.rb', line 38 def text_field(label, name) label_field(label, name) input_field('text', name) self end |
#to_html ⇒ Object
96 97 98 99 |
# File 'lib/omniauth/form.rb', line 96 def to_html @html end |
#to_response ⇒ Object
101 102 103 104 |
# File 'lib/omniauth/form.rb', line 101 def to_response Rack::Response.new(@html, 200, 'content-type' => 'text/html').finish end |