openid_registrable 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +3 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +52 -0
  5. data/Rakefile +31 -0
  6. data/lib/openid_registrable.rb +3 -0
  7. data/lib/openid_registrable/openid_registrable.rb +94 -0
  8. data/lib/openid_registrable/version.rb +3 -0
  9. data/openid_registrable.gemspec +23 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/controllers/application_controller.rb +3 -0
  12. data/test/dummy/app/helpers/application_helper.rb +2 -0
  13. data/test/dummy/app/models/user.rb +14 -0
  14. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  15. data/test/dummy/config.ru +4 -0
  16. data/test/dummy/config/application.rb +45 -0
  17. data/test/dummy/config/boot.rb +10 -0
  18. data/test/dummy/config/database.yml +22 -0
  19. data/test/dummy/config/environment.rb +5 -0
  20. data/test/dummy/config/environments/development.rb +26 -0
  21. data/test/dummy/config/environments/production.rb +49 -0
  22. data/test/dummy/config/environments/test.rb +35 -0
  23. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  24. data/test/dummy/config/initializers/inflections.rb +10 -0
  25. data/test/dummy/config/initializers/mime_types.rb +5 -0
  26. data/test/dummy/config/initializers/secret_token.rb +7 -0
  27. data/test/dummy/config/initializers/session_store.rb +8 -0
  28. data/test/dummy/config/locales/en.yml +5 -0
  29. data/test/dummy/config/routes.rb +58 -0
  30. data/test/dummy/db/migrate/20110331093359_create_users.rb +18 -0
  31. data/test/dummy/public/404.html +26 -0
  32. data/test/dummy/public/422.html +26 -0
  33. data/test/dummy/public/500.html +26 -0
  34. data/test/dummy/public/favicon.ico +0 -0
  35. data/test/dummy/public/javascripts/application.js +2 -0
  36. data/test/dummy/public/javascripts/controls.js +965 -0
  37. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  38. data/test/dummy/public/javascripts/effects.js +1123 -0
  39. data/test/dummy/public/javascripts/prototype.js +6001 -0
  40. data/test/dummy/public/javascripts/rails.js +191 -0
  41. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  42. data/test/dummy/script/rails +6 -0
  43. data/test/integration/navigation_test.rb +7 -0
  44. data/test/support/integration_case.rb +4 -0
  45. data/test/test_helper.rb +20 -0
  46. data/test/unit/openid_registrable_test.rb +84 -0
  47. metadata +167 -0
@@ -0,0 +1,191 @@
1
+ (function() {
2
+ // Technique from Juriy Zaytsev
3
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
4
+ function isEventSupported(eventName) {
5
+ var el = document.createElement('div');
6
+ eventName = 'on' + eventName;
7
+ var isSupported = (eventName in el);
8
+ if (!isSupported) {
9
+ el.setAttribute(eventName, 'return;');
10
+ isSupported = typeof el[eventName] == 'function';
11
+ }
12
+ el = null;
13
+ return isSupported;
14
+ }
15
+
16
+ function isForm(element) {
17
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
18
+ }
19
+
20
+ function isInput(element) {
21
+ if (Object.isElement(element)) {
22
+ var name = element.nodeName.toUpperCase()
23
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
24
+ }
25
+ else return false
26
+ }
27
+
28
+ var submitBubbles = isEventSupported('submit'),
29
+ changeBubbles = isEventSupported('change')
30
+
31
+ if (!submitBubbles || !changeBubbles) {
32
+ // augment the Event.Handler class to observe custom events when needed
33
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
34
+ function(init, element, eventName, selector, callback) {
35
+ init(element, eventName, selector, callback)
36
+ // is the handler being attached to an element that doesn't support this event?
37
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
38
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
39
+ // "submit" => "emulated:submit"
40
+ this.eventName = 'emulated:' + this.eventName
41
+ }
42
+ }
43
+ )
44
+ }
45
+
46
+ if (!submitBubbles) {
47
+ // discover forms on the page by observing focus events which always bubble
48
+ document.on('focusin', 'form', function(focusEvent, form) {
49
+ // special handler for the real "submit" event (one-time operation)
50
+ if (!form.retrieve('emulated:submit')) {
51
+ form.on('submit', function(submitEvent) {
52
+ var emulated = form.fire('emulated:submit', submitEvent, true)
53
+ // if custom event received preventDefault, cancel the real one too
54
+ if (emulated.returnValue === false) submitEvent.preventDefault()
55
+ })
56
+ form.store('emulated:submit', true)
57
+ }
58
+ })
59
+ }
60
+
61
+ if (!changeBubbles) {
62
+ // discover form inputs on the page
63
+ document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
64
+ // special handler for real "change" events
65
+ if (!input.retrieve('emulated:change')) {
66
+ input.on('change', function(changeEvent) {
67
+ input.fire('emulated:change', changeEvent, true)
68
+ })
69
+ input.store('emulated:change', true)
70
+ }
71
+ })
72
+ }
73
+
74
+ function handleRemote(element) {
75
+ var method, url, params;
76
+
77
+ var event = element.fire("ajax:before");
78
+ if (event.stopped) return false;
79
+
80
+ if (element.tagName.toLowerCase() === 'form') {
81
+ method = element.readAttribute('method') || 'post';
82
+ url = element.readAttribute('action');
83
+ params = element.serialize();
84
+ } else {
85
+ method = element.readAttribute('data-method') || 'get';
86
+ url = element.readAttribute('href');
87
+ params = {};
88
+ }
89
+
90
+ new Ajax.Request(url, {
91
+ method: method,
92
+ parameters: params,
93
+ evalScripts: true,
94
+
95
+ onComplete: function(request) { element.fire("ajax:complete", request); },
96
+ onSuccess: function(request) { element.fire("ajax:success", request); },
97
+ onFailure: function(request) { element.fire("ajax:failure", request); }
98
+ });
99
+
100
+ element.fire("ajax:after");
101
+ }
102
+
103
+ function handleMethod(element) {
104
+ var method = element.readAttribute('data-method'),
105
+ url = element.readAttribute('href'),
106
+ csrf_param = $$('meta[name=csrf-param]')[0],
107
+ csrf_token = $$('meta[name=csrf-token]')[0];
108
+
109
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
110
+ element.parentNode.insert(form);
111
+
112
+ if (method !== 'post') {
113
+ var field = new Element('input', { type: 'hidden', name: '_method', value: method });
114
+ form.insert(field);
115
+ }
116
+
117
+ if (csrf_param) {
118
+ var param = csrf_param.readAttribute('content'),
119
+ token = csrf_token.readAttribute('content'),
120
+ field = new Element('input', { type: 'hidden', name: param, value: token });
121
+ form.insert(field);
122
+ }
123
+
124
+ form.submit();
125
+ }
126
+
127
+
128
+ document.on("click", "*[data-confirm]", function(event, element) {
129
+ var message = element.readAttribute('data-confirm');
130
+ if (!confirm(message)) event.stop();
131
+ });
132
+
133
+ document.on("click", "a[data-remote]", function(event, element) {
134
+ if (event.stopped) return;
135
+ handleRemote(element);
136
+ event.stop();
137
+ });
138
+
139
+ document.on("click", "a[data-method]", function(event, element) {
140
+ if (event.stopped) return;
141
+ handleMethod(element);
142
+ event.stop();
143
+ });
144
+
145
+ document.on("submit", function(event) {
146
+ var element = event.findElement(),
147
+ message = element.readAttribute('data-confirm');
148
+ if (message && !confirm(message)) {
149
+ event.stop();
150
+ return false;
151
+ }
152
+
153
+ var inputs = element.select("input[type=submit][data-disable-with]");
154
+ inputs.each(function(input) {
155
+ input.disabled = true;
156
+ input.writeAttribute('data-original-value', input.value);
157
+ input.value = input.readAttribute('data-disable-with');
158
+ });
159
+
160
+ var element = event.findElement("form[data-remote]");
161
+ if (element) {
162
+ handleRemote(element);
163
+ event.stop();
164
+ }
165
+ });
166
+
167
+ document.on("ajax:after", "form", function(event, element) {
168
+ var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
169
+ inputs.each(function(input) {
170
+ input.value = input.readAttribute('data-original-value');
171
+ input.removeAttribute('data-original-value');
172
+ input.disabled = false;
173
+ });
174
+ });
175
+
176
+ Ajax.Responders.register({
177
+ onCreate: function(request) {
178
+ var csrf_meta_tag = $$('meta[name=csrf-token]')[0];
179
+
180
+ if (csrf_meta_tag) {
181
+ var header = 'X-CSRF-Token',
182
+ token = csrf_meta_tag.readAttribute('content');
183
+
184
+ if (!request.options.requestHeaders) {
185
+ request.options.requestHeaders = {};
186
+ }
187
+ request.options.requestHeaders[header] = token;
188
+ }
189
+ }
190
+ });
191
+ })();
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActiveSupport::IntegrationCase
4
+ test "truth" do
5
+ assert_kind_of Dummy::Application, Rails.application
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # Define a bare test case to use with Capybara
2
+ class ActiveSupport::IntegrationCase < ActiveSupport::TestCase
3
+ include Rails.application.routes.url_helpers
4
+ end
@@ -0,0 +1,20 @@
1
+ # Configure Rails Envinronment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ require 'shoulda'
8
+ require 'turn'
9
+
10
+ ActionMailer::Base.delivery_method = :test
11
+ ActionMailer::Base.perform_deliveries = true
12
+ ActionMailer::Base.default_url_options[:host] = "test.com"
13
+
14
+ Rails.backtrace_cleaner.remove_silencers!
15
+
16
+ # Run any available migration
17
+ ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
18
+
19
+ # Load support files
20
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
@@ -0,0 +1,84 @@
1
+ require 'test_helper'
2
+
3
+ class OpenidRegistrableTest < ActiveSupport::TestCase
4
+
5
+ def mock_openid_data
6
+ {"http://axschema.org/contact/email" => ['karel@novak.cz'],
7
+ "http://axschema.org/namePerson/friendly" => ['karel'],
8
+ "http://axschema.org/namePerson/first" => ['Karel'],
9
+ "http://axschema.org/namePerson/last" => ['Novak'],
10
+ "http://axschema.org/contact/postalAddress/home" => ['Vinohrady 20'],
11
+ "http://axschema.org/contact/city/home" => ['Praque'],
12
+ "http://axschema.org/contact/postalCode/home" => ['000 00'],
13
+ "http://axschema.org/contact/phone/default" => ['+420.000 000 00']}
14
+ end
15
+
16
+ context 'Model' do
17
+ should 'respond to #openid_registrable' do
18
+ assert User.respond_to? :openid_registrable
19
+ end
20
+
21
+ should 'respond to #openid_fields_to_model_fields_mapping' do
22
+ assert User.respond_to? :openid_fields_to_model_fields_mapping
23
+ end
24
+ end
25
+
26
+ context 'Model#openid_registrable' do
27
+ should 'define class method :openid_required_fields' do
28
+ assert_equal ['http://axschema.org/contact/email','http://axschema.org/namePerson/friendly'], User.openid_required_fields
29
+ end
30
+
31
+ should 'define class method :openid_optional_fields' do
32
+ assert_equal ["http://axschema.org/namePerson/first",
33
+ "http://axschema.org/contact/postalCode/home",
34
+ "http://axschema.org/contact/city/home",
35
+ "http://axschema.org/contact/phone/default",
36
+ "http://axschema.org/namePerson/last",
37
+ "http://axschema.org/contact/postalAddress/home"], User.openid_optional_fields
38
+ end
39
+ end
40
+
41
+ context 'Model#openid_fields_to_model_fields_mapping' do
42
+ should 'return mapping fields' do
43
+ assert_equal ({:first_name=>"http://axschema.org/namePerson/first",
44
+ :zip=>"http://axschema.org/contact/postalCode/home",
45
+ :city=>"http://axschema.org/contact/city/home",
46
+ :email=>"http://axschema.org/contact/email",
47
+ :last_name=>"http://axschema.org/namePerson/last",
48
+ :phone=>"http://axschema.org/contact/phone/default",
49
+ :address=>"http://axschema.org/contact/postalAddress/home",
50
+ :username=>"http://axschema.org/namePerson/friendly"}), User.openid_fields_to_model_fields_mapping
51
+ end
52
+ end
53
+
54
+ context 'Model#assign_openid_fields' do
55
+ setup {
56
+ @user = User.new
57
+ }
58
+ should 'assign all openid fields to model fields' do
59
+ @user.assign_openid_fields(mock_openid_data)
60
+
61
+ assert_equal ({"city"=>"Praque",
62
+ "address"=>"Vinohrady 20",
63
+ "zip"=>"000 00",
64
+ "username"=>"karel",
65
+ "phone"=>"+420.000 000 00",
66
+ "last_name"=>"Novak",
67
+ "first_name"=>"Karel",
68
+ "email"=>"karel@novak.cz"}), @user.attributes
69
+ end
70
+
71
+ should 'assign openid fields to model fields or ignore some' do
72
+ @user.assign_openid_fields(mock_openid_data, [:username])
73
+
74
+ assert_equal ({"city"=>"Praque",
75
+ "address"=>"Vinohrady 20",
76
+ "zip"=>"000 00",
77
+ "username"=>nil,
78
+ "phone"=>"+420.000 000 00",
79
+ "last_name"=>"Novak",
80
+ "first_name"=>"Karel",
81
+ "email"=>"karel@novak.cz"}), @user.attributes
82
+ end
83
+ end
84
+ end
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: openid_registrable
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - "V\xC3\xADt Krchov"
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-04-01 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 3
31
+ segments:
32
+ - 0
33
+ version: "0"
34
+ requirement: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: turn
37
+ type: :development
38
+ prerelease: false
39
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ requirement: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: shoulda
51
+ type: :development
52
+ prerelease: false
53
+ version_requirements: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ requirement: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: sqlite3
65
+ type: :development
66
+ prerelease: false
67
+ version_requirements: &id004 !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ hash: 3
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ requirement: *id004
77
+ description: OpenidRegistrable is gem for Rails. It makes possible define required and optional fields for registration via OpenID and to map them to fields of your model.
78
+ email: vit.krchov@gmail.com
79
+ executables: []
80
+
81
+ extensions: []
82
+
83
+ extra_rdoc_files: []
84
+
85
+ files:
86
+ - .gitignore
87
+ - Gemfile
88
+ - MIT-LICENSE
89
+ - README.rdoc
90
+ - Rakefile
91
+ - lib/openid_registrable.rb
92
+ - lib/openid_registrable/openid_registrable.rb
93
+ - lib/openid_registrable/version.rb
94
+ - openid_registrable.gemspec
95
+ - test/dummy/Rakefile
96
+ - test/dummy/app/controllers/application_controller.rb
97
+ - test/dummy/app/helpers/application_helper.rb
98
+ - test/dummy/app/models/user.rb
99
+ - test/dummy/app/views/layouts/application.html.erb
100
+ - test/dummy/config.ru
101
+ - test/dummy/config/application.rb
102
+ - test/dummy/config/boot.rb
103
+ - test/dummy/config/database.yml
104
+ - test/dummy/config/environment.rb
105
+ - test/dummy/config/environments/development.rb
106
+ - test/dummy/config/environments/production.rb
107
+ - test/dummy/config/environments/test.rb
108
+ - test/dummy/config/initializers/backtrace_silencers.rb
109
+ - test/dummy/config/initializers/inflections.rb
110
+ - test/dummy/config/initializers/mime_types.rb
111
+ - test/dummy/config/initializers/secret_token.rb
112
+ - test/dummy/config/initializers/session_store.rb
113
+ - test/dummy/config/locales/en.yml
114
+ - test/dummy/config/routes.rb
115
+ - test/dummy/db/migrate/20110331093359_create_users.rb
116
+ - test/dummy/public/404.html
117
+ - test/dummy/public/422.html
118
+ - test/dummy/public/500.html
119
+ - test/dummy/public/favicon.ico
120
+ - test/dummy/public/javascripts/application.js
121
+ - test/dummy/public/javascripts/controls.js
122
+ - test/dummy/public/javascripts/dragdrop.js
123
+ - test/dummy/public/javascripts/effects.js
124
+ - test/dummy/public/javascripts/prototype.js
125
+ - test/dummy/public/javascripts/rails.js
126
+ - test/dummy/public/stylesheets/.gitkeep
127
+ - test/dummy/script/rails
128
+ - test/integration/navigation_test.rb
129
+ - test/support/integration_case.rb
130
+ - test/test_helper.rb
131
+ - test/unit/openid_registrable_test.rb
132
+ has_rdoc: true
133
+ homepage: https://github.com/vita/openid_registrable
134
+ licenses: []
135
+
136
+ post_install_message:
137
+ rdoc_options: []
138
+
139
+ require_paths:
140
+ - lib
141
+ required_ruby_version: !ruby/object:Gem::Requirement
142
+ none: false
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ hash: 3
147
+ segments:
148
+ - 0
149
+ version: "0"
150
+ required_rubygems_version: !ruby/object:Gem::Requirement
151
+ none: false
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ hash: 3
156
+ segments:
157
+ - 0
158
+ version: "0"
159
+ requirements: []
160
+
161
+ rubyforge_project:
162
+ rubygems_version: 1.3.7
163
+ signing_key:
164
+ specification_version: 3
165
+ summary: Adds to ActiveRecord model method for defining required and optional fields for registration via OpenID.
166
+ test_files: []
167
+