Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rails_api_authentication
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
rails_api_authentication
Commits
cd30aecd
Commit
cd30aecd
authored
Jul 05, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new method register_with
parent
b6a5ce44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
authable.rb
lib/rails_api_authentication/authable.rb
+10
-16
No files found.
lib/rails_api_authentication/authable.rb
View file @
cd30aecd
...
...
@@ -35,27 +35,20 @@ module RailsApiAuthentication
user
.
nil?
?
raise
(
UserError
.
new
(
401
,
'-1'
,
'Unauthorized'
))
:
user
end
def
register
(
attrs_or_name
,
password
=
nil
)
if
attrs_or_name
.
respond_to?
(
:to_h
)
# attrs_or_name is an Hash or ActionController::Parameters
@_attrs_copy
=
attrs_or_name
.
clone
name
=
@_attrs_copy
[
@auth_key
]
password
=
@_attrs_copy
.
delete
(
@auth_password
)
else
name
=
attrs_or_name
end
def
register
(
name
,
password
,
attrs
=
{})
raise
(
UserError
.
new
(
401
,
'-1'
,
'password is blank'
))
if
password
.
blank?
self
.
create!
({
@auth_key
=>
name
,
@auth_password
=>
generate_password
(
password
)
}.
merge
(
@_attrs_copy
||
{}
)
)
self
.
create!
({
@auth_key
=>
name
,
@auth_password
=>
generate_password
(
password
)}.
merge
attrs
)
rescue
ActiveRecord
::
RecordInvalid
=>
e
raise
UserError
.
new
(
401
,
'-1'
,
e
.
message
)
end
def
register_with
(
attrs
=
{})
attrs
=
attrs
.
clone
name
=
attrs
.
delete
@auth_key
password
=
attrs
.
delete
@auth_password
register
(
name
,
password
,
attrs
)
end
private
def
salt
(
password
,
suffix
)
...
...
@@ -92,3 +85,4 @@ module RailsApiAuthentication
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment