devise_invitable 1.7.0 → 1.7.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.
Potentially problematic release.
This version of devise_invitable might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +7 -0
- data/README.rdoc +16 -20
- data/app/controllers/devise/invitations_controller.rb +2 -1
- data/lib/devise_invitable/model.rb +8 -4
- data/lib/devise_invitable/version.rb +1 -1
- data/test/models/invitable_test.rb +9 -4
- data/test/rails_app/config/environments/test.rb +1 -1
- data/test/test_helper.rb +9 -7
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24a36c592f8c636eb4cf7e704165f41abc0c14c5
|
4
|
+
data.tar.gz: 9a999cc7bc9523e1b100ce415aee6270d8a9fc66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca000182ea194f46655066899e531094801c347461926d8185fa8a039208af55d108c6a35cad22bfa31e60d7cad63b62203cf18b9e39a43702dcedd815cb9c33
|
7
|
+
data.tar.gz: 66e68e6a7facedfdb0752f4d4b1310e255cdcd33892f816158149154e94a2104d71b88a80af3672fd9a325984666770c66cf115a85758e7b57273d9ef3bee00a
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
= 1.7.2
|
2
|
+
- Sign out before accepting the invitation if the user logged in
|
3
|
+
|
4
|
+
= 1.7.1
|
5
|
+
- Allow to set invited_by_* options on model
|
6
|
+
- created_by_invite scope and test method checks invitation_created_at, because invitation_sent_at can be nil if skip_invitation is used
|
7
|
+
|
1
8
|
= 1.7.0
|
2
9
|
|
3
10
|
- Drop devise < 4 support
|
data/README.rdoc
CHANGED
@@ -70,12 +70,12 @@ or for a model that already exists, define a migration to add DeviseInvitable to
|
|
70
70
|
add_column :users, :invited_by_id, :integer
|
71
71
|
add_column :users, :invited_by_type, :string
|
72
72
|
add_index :users, :invitation_token, :unique => true
|
73
|
-
end
|
74
73
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
74
|
+
# Allow null encrypted_password
|
75
|
+
change_column_null :users, :encrypted_password, :string, true
|
76
|
+
# Allow null password_salt (add it if you are using Devise's encryptable module)
|
77
|
+
change_column_null :users, :password_salt, :string, true
|
78
|
+
end
|
79
79
|
|
80
80
|
If you previously used devise_invitable with a :limit on :invitation_token, remove it:
|
81
81
|
|
@@ -216,18 +216,12 @@ There are just two actions in DeviseInvitable that allows any set of parameters
|
|
216
216
|
|
217
217
|
Here is an example of what your application controller might need to include in order to add these parameters to the invitation view:
|
218
218
|
|
219
|
-
|
219
|
+
before_action :configure_permitted_parameters, if: :devise_controller?
|
220
220
|
|
221
221
|
protected
|
222
222
|
|
223
223
|
def configure_permitted_parameters
|
224
|
-
|
225
|
-
devise_parameter_sanitizer.for(:accept_invitation).concat [:first_name, :last_name, :phone]
|
226
|
-
# Override accepted parameters
|
227
|
-
devise_parameter_sanitizer.for(:accept_invitation) do |u|
|
228
|
-
u.permit(:first_name, :last_name, :phone, :password, :password_confirmation,
|
229
|
-
:invitation_token)
|
230
|
-
end
|
224
|
+
devise_parameter_sanitizer.permit(:accept_invitation, keys: [:first_name, :last_name, :phone])
|
231
225
|
end
|
232
226
|
|
233
227
|
|
@@ -235,7 +229,7 @@ Here is an example of what your application controller might need to include in
|
|
235
229
|
|
236
230
|
=== Send an invitation
|
237
231
|
|
238
|
-
To send an invitation to a user, use the <tt>invite!</tt> class method. <tt>:email</tt> must be present in the parameters hash. You can also include other attributes in the hash. The record will not be validated.
|
232
|
+
To send an invitation to a user, use the <tt>invite!</tt> class method. <b>Note: This will create a user, and send an email for the invite.</b> <tt>:email</tt> must be present in the parameters hash. You can also include other attributes in the hash. The record will not be validated.
|
239
233
|
|
240
234
|
User.invite!(:email => "new_user@example.com", :name => "John Doe")
|
241
235
|
# => an invitation email will be sent to new_user@example.com
|
@@ -273,15 +267,17 @@ To check if a particular user is created by invitation, irrespective to state of
|
|
273
267
|
When using skip_invitation you must send the email with the user object instance that generated the tokens, as
|
274
268
|
user.raw_invitation_token is available only to the instance and is not persisted in the database.
|
275
269
|
|
270
|
+
You can also set <tt>invited_by</tt> when using the <tt>invite!</tt> class method:
|
271
|
+
|
272
|
+
User.invite!({:email => "new_user@example.com"}, current_user) # current_user will be set as invited_by
|
273
|
+
|
274
|
+
=== Sending an invitation after user creation
|
275
|
+
|
276
276
|
You can send an invitation to an existing user if your workflow creates them separately:
|
277
277
|
|
278
278
|
user = User.find(42)
|
279
279
|
user.invite!(current_user) # current user is optional to set the invited_by attribute
|
280
280
|
|
281
|
-
You can also set <tt>invited_by</tt> when using the <tt>invite!</tt> class method:
|
282
|
-
|
283
|
-
User.invite!({:email => "new_user@example.com"}, current_user) # current_user will be set as invited_by
|
284
|
-
|
285
281
|
=== Find by invitation token
|
286
282
|
|
287
283
|
To find by invitation token use the <tt>find_by_invitation_token</tt> class method.
|
@@ -415,9 +411,9 @@ https://github.com/scambra/devise_invitable/wiki
|
|
415
411
|
|
416
412
|
== Testing
|
417
413
|
|
418
|
-
To test DeviseInvitable for the ActiveRecord ORM with RVM, Ruby 2.
|
414
|
+
To test DeviseInvitable for the ActiveRecord ORM with RVM, Ruby 2.2.2:
|
419
415
|
|
420
|
-
rvm use 2.
|
416
|
+
rvm use 2.2.2
|
421
417
|
rvm gemset create devise_invitable
|
422
418
|
rvm gemset use devise_invitable
|
423
419
|
gem install bundler
|
@@ -44,7 +44,8 @@ class Devise::InvitationsController < DeviseController
|
|
44
44
|
|
45
45
|
# GET /resource/invitation/accept?invitation_token=abcdef
|
46
46
|
def edit
|
47
|
-
|
47
|
+
sign_out send("current_#{resource_name}") if send("#{resource_name}_signed_in?")
|
48
|
+
set_minimum_password_length
|
48
49
|
resource.invitation_token = params[:invitation_token]
|
49
50
|
render :edit
|
50
51
|
end
|
@@ -52,11 +52,11 @@ module Devise
|
|
52
52
|
|
53
53
|
scope :no_active_invitation, lambda { where(:invitation_token => nil) }
|
54
54
|
if defined?(Mongoid) && defined?(Mongoid::Document) && self < Mongoid::Document
|
55
|
-
scope :created_by_invite, lambda { where(:
|
55
|
+
scope :created_by_invite, lambda { where(:invitation_created_at.ne => nil) }
|
56
56
|
scope :invitation_not_accepted, lambda { where(:invitation_accepted_at => nil, :invitation_token.ne => nil) }
|
57
57
|
scope :invitation_accepted, lambda { where(:invitation_accepted_at.ne => nil) }
|
58
58
|
else
|
59
|
-
scope :created_by_invite, lambda { where(arel_table[:
|
59
|
+
scope :created_by_invite, lambda { where(arel_table[:invitation_created_at].not_eq(nil)) }
|
60
60
|
scope :invitation_not_accepted, lambda { where(arel_table[:invitation_token].not_eq(nil)).where(:invitation_accepted_at => nil) }
|
61
61
|
scope :invitation_accepted, lambda { where(arel_table[:invitation_accepted_at].not_eq(nil)) }
|
62
62
|
|
@@ -102,7 +102,7 @@ module Devise
|
|
102
102
|
|
103
103
|
# Verify wheather a user is created by invitation, irrespective to invitation status
|
104
104
|
def created_by_invite?
|
105
|
-
|
105
|
+
invitation_created_at.present?
|
106
106
|
end
|
107
107
|
|
108
108
|
# Verifies whether a user has been invited or not
|
@@ -306,7 +306,8 @@ module Devise
|
|
306
306
|
end
|
307
307
|
|
308
308
|
def invite!(attributes={}, invited_by=nil, options = {}, &block)
|
309
|
-
|
309
|
+
attr_hash = ActiveSupport::HashWithIndifferentAccess.new(attributes.to_h)
|
310
|
+
_invite(attr_hash, invited_by, options, &block).first
|
310
311
|
end
|
311
312
|
|
312
313
|
def invite_mail!(attributes={}, invited_by=nil, options = {}, &block)
|
@@ -359,6 +360,9 @@ module Devise
|
|
359
360
|
Devise::Models.config(self, :invitation_limit)
|
360
361
|
Devise::Models.config(self, :invite_key)
|
361
362
|
Devise::Models.config(self, :resend_invitation)
|
363
|
+
Devise::Models.config(self, :invited_by_class_name)
|
364
|
+
Devise::Models.config(self, :invited_by_foreign_key)
|
365
|
+
Devise::Models.config(self, :invited_by_counter_cache)
|
362
366
|
Devise::Models.config(self, :allow_insecure_sign_in_after_accept)
|
363
367
|
Devise::Models.config(self, :require_password_on_accepting)
|
364
368
|
|
@@ -136,14 +136,14 @@ class InvitableTest < ActiveSupport::TestCase
|
|
136
136
|
User.stubs(:invite_for).returns(nil)
|
137
137
|
user = User.invite!(:email => "valid@email.com")
|
138
138
|
|
139
|
-
|
139
|
+
assert_nil user.invitation_due_at
|
140
140
|
end
|
141
141
|
|
142
142
|
test 'should return nil for invitation due date when invite_for is 0' do
|
143
143
|
User.stubs(:invite_for).returns(0)
|
144
144
|
user = User.invite!(email: 'valid@email.com')
|
145
145
|
|
146
|
-
|
146
|
+
assert_nil user.invitation_due_at
|
147
147
|
end
|
148
148
|
|
149
149
|
test 'should never generate the same invitation token for different users' do
|
@@ -575,7 +575,7 @@ class InvitableTest < ActiveSupport::TestCase
|
|
575
575
|
test 'user.invite! should not set the invited_by attribute if not passed' do
|
576
576
|
user = new_user
|
577
577
|
user.invite!
|
578
|
-
|
578
|
+
assert_nil user.invited_by
|
579
579
|
end
|
580
580
|
|
581
581
|
test 'user.invite! should set the invited_by attribute if passed' do
|
@@ -628,7 +628,12 @@ class InvitableTest < ActiveSupport::TestCase
|
|
628
628
|
end
|
629
629
|
|
630
630
|
def assert_callbacks_status(callback, user, fired)
|
631
|
-
|
631
|
+
result = user.send("#{callback}_callback_works".to_sym)
|
632
|
+
if fired.nil?
|
633
|
+
assert_nil result
|
634
|
+
else
|
635
|
+
assert_equal fired, result
|
636
|
+
end
|
632
637
|
end
|
633
638
|
|
634
639
|
test "user.invite! should downcase the class's case_insensitive_keys" do
|
@@ -28,7 +28,7 @@ RailsApp::Application.configure do
|
|
28
28
|
# like if you have constraints or database-specific column types
|
29
29
|
# config.active_record.schema_format = :sql
|
30
30
|
|
31
|
-
if Rails.version
|
31
|
+
if Rails.version =~ /^4\.2/ && config.respond_to?(:active_record)
|
32
32
|
config.active_record.raise_in_transactional_callbacks = true
|
33
33
|
end
|
34
34
|
|
data/test/test_helper.rb
CHANGED
@@ -25,13 +25,15 @@ class ActionController::TestCase
|
|
25
25
|
else
|
26
26
|
include Devise::TestHelpers
|
27
27
|
end
|
28
|
-
if
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
28
|
+
if defined? ActiveRecord
|
29
|
+
if Rails.version >= '5.0.0'
|
30
|
+
self.use_transactional_tests = true
|
31
|
+
else
|
32
|
+
begin
|
33
|
+
require 'test_after_commit'
|
34
|
+
self.use_transactional_fixtures = true
|
35
|
+
rescue LoadError
|
36
|
+
end
|
35
37
|
end
|
36
38
|
end
|
37
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_invitable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergio Cambra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 4.
|
33
|
+
version: 4.1.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 4.
|
40
|
+
version: 4.1.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: devise
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -155,7 +155,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
155
155
|
requirements:
|
156
156
|
- - ">="
|
157
157
|
- !ruby/object:Gem::Version
|
158
|
-
version: 1.
|
158
|
+
version: 2.1.0
|
159
159
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
160
|
requirements:
|
161
161
|
- - ">="
|
@@ -163,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
version: 1.3.6
|
164
164
|
requirements: []
|
165
165
|
rubyforge_project:
|
166
|
-
rubygems_version: 2.
|
166
|
+
rubygems_version: 2.6.10
|
167
167
|
signing_key:
|
168
168
|
specification_version: 4
|
169
169
|
summary: An invitation strategy for Devise
|