FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
parse-server/users.js at master · codelabsprodev/parse-server · GitHub
codelabsprodev
/
parse-server
Public
forked from
parse-community/parse-server
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
parse-server
/
users.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
183 lines (162 loc) · 5.31 KB
Breadcrumbs
parse-server
/
users.js
Copy path
File metadata and controls
183 lines (162 loc) · 5.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// These methods handle the User-related routes.
var
mongodb
=
require
(
'mongodb'
)
;
var
Parse
=
require
(
'parse/node'
)
.
Parse
;
var
rack
=
require
(
'hat'
)
.
rack
(
)
;
var
Auth
=
require
(
'./Auth'
)
;
var
crypto
=
require
(
'./crypto'
)
;
var
facebook
=
require
(
'./facebook'
)
;
var
PromiseRouter
=
require
(
'./PromiseRouter'
)
;
var
rest
=
require
(
'./rest'
)
;
var
RestWrite
=
require
(
'./RestWrite'
)
;
var
router
=
new
PromiseRouter
(
)
;
// Returns a promise for a {status, response, location} object.
function
handleCreate
(
req
)
{
return
rest
.
create
(
req
.
config
,
req
.
auth
,
'_User'
,
req
.
body
)
;
}
// Returns a promise for a {response} object.
function
handleLogIn
(
req
)
{
// Use query parameters instead if provided in url
if
(
!
req
.
body
.
username
&&
req
.
query
.
username
)
{
req
.
body
=
req
.
query
;
}
// TODO: use the right error codes / descriptions.
if
(
!
req
.
body
.
username
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
USERNAME_MISSING
,
'username is required.'
)
;
}
if
(
!
req
.
body
.
password
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
PASSWORD_MISSING
,
'password is required.'
)
;
}
var
user
;
return
req
.
database
.
find
(
'_User'
,
{
username
:
req
.
body
.
username
}
)
.
then
(
(
results
)
=>
{
if
(
!
results
.
length
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
OBJECT_NOT_FOUND
,
'Invalid username/password.'
)
;
}
user
=
results
[
0
]
;
return
crypto
.
compare
(
req
.
body
.
password
,
user
.
password
)
;
}
)
.
then
(
(
correct
)
=>
{
if
(
!
correct
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
OBJECT_NOT_FOUND
,
'Invalid username/password.'
)
;
}
var
token
=
'r:'
+
rack
(
)
;
user
.
sessionToken
=
token
;
delete
user
.
password
;
var
expiresAt
=
new
Date
(
)
;
expiresAt
.
setFullYear
(
expiresAt
.
getFullYear
(
)
+
1
)
;
var
sessionData
=
{
sessionToken
:
token
,
user
:
{
__type
:
'Pointer'
,
className
:
'_User'
,
objectId
:
user
.
objectId
}
,
createdWith
:
{
'action'
:
'login'
,
'authProvider'
:
'password'
}
,
restricted
:
false
,
expiresAt
:
Parse
.
_encode
(
expiresAt
)
.
iso
,
installationId
:
req
.
info
.
installationId
}
;
var
create
=
new
RestWrite
(
req
.
config
,
Auth
.
master
(
req
.
config
)
,
'_Session'
,
null
,
sessionData
)
;
return
create
.
execute
(
)
;
}
)
.
then
(
(
)
=>
{
return
{
response
:
user
}
;
}
)
;
}
// Returns a promise that resolves to a {response} object.
// TODO: share code with classes.js
function
handleFind
(
req
)
{
var
options
=
{
}
;
if
(
req
.
body
.
skip
)
{
options
.
skip
=
Number
(
req
.
body
.
skip
)
;
}
if
(
req
.
body
.
limit
)
{
options
.
limit
=
Number
(
req
.
body
.
limit
)
;
}
if
(
req
.
body
.
order
)
{
options
.
order
=
String
(
req
.
body
.
order
)
;
}
if
(
req
.
body
.
count
)
{
options
.
count
=
true
;
}
if
(
typeof
req
.
body
.
keys
==
'string'
)
{
options
.
keys
=
req
.
body
.
keys
;
}
if
(
req
.
body
.
include
)
{
options
.
include
=
String
(
req
.
body
.
include
)
;
}
if
(
req
.
body
.
redirectClassNameForKey
)
{
options
.
redirectClassNameForKey
=
String
(
req
.
body
.
redirectClassNameForKey
)
;
}
return
rest
.
find
(
req
.
config
,
req
.
auth
,
'_User'
,
req
.
body
.
where
,
options
)
.
then
(
(
response
)
=>
{
return
{
response
:
response
}
;
}
)
;
}
// Returns a promise for a {response} object.
function
handleGet
(
req
)
{
return
rest
.
find
(
req
.
config
,
req
.
auth
,
'_User'
,
{
objectId
:
req
.
params
.
objectId
}
)
.
then
(
(
response
)
=>
{
if
(
!
response
.
results
||
response
.
results
.
length
==
0
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
OBJECT_NOT_FOUND
,
'Object not found.'
)
;
}
else
{
return
{
response
:
response
.
results
[
0
]
}
;
}
}
)
;
}
function
handleMe
(
req
)
{
if
(
!
req
.
info
||
!
req
.
info
.
sessionToken
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
OBJECT_NOT_FOUND
,
'Object not found.'
)
;
}
return
rest
.
find
(
req
.
config
,
Auth
.
master
(
req
.
config
)
,
'_Session'
,
{
_session_token
:
req
.
info
.
sessionToken
}
,
{
include
:
'user'
}
)
.
then
(
(
response
)
=>
{
if
(
!
response
.
results
||
response
.
results
.
length
==
0
||
!
response
.
results
[
0
]
.
user
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
OBJECT_NOT_FOUND
,
'Object not found.'
)
;
}
else
{
var
user
=
response
.
results
[
0
]
.
user
;
return
{
response
:
user
}
;
}
}
)
;
}
function
handleDelete
(
req
)
{
return
rest
.
del
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
req
.
params
.
objectId
)
.
then
(
(
)
=>
{
return
{
response
:
{
}
}
;
}
)
;
}
function
handleUpdate
(
req
)
{
return
rest
.
update
(
req
.
config
,
req
.
auth
,
'_User'
,
req
.
params
.
objectId
,
req
.
body
)
.
then
(
(
response
)
=>
{
return
{
response
:
response
}
;
}
)
;
}
function
notImplementedYet
(
req
)
{
throw
new
Parse
.
Error
(
Parse
.
Error
.
COMMAND_UNAVAILABLE
,
'This path is not implemented yet.'
)
;
}
router
.
route
(
'POST'
,
'/users'
,
handleCreate
)
;
router
.
route
(
'GET'
,
'/login'
,
handleLogIn
)
;
router
.
route
(
'GET'
,
'/users/me'
,
handleMe
)
;
router
.
route
(
'GET'
,
'/users/:objectId'
,
handleGet
)
;
router
.
route
(
'PUT'
,
'/users/:objectId'
,
handleUpdate
)
;
router
.
route
(
'GET'
,
'/users'
,
handleFind
)
;
router
.
route
(
'DELETE'
,
'/users/:objectId'
,
handleDelete
)
;
router
.
route
(
'POST'
,
'/requestPasswordReset'
,
notImplementedYet
)
;
module
.
exports
=
router
;
Back
|
FazBrowse Home
|
New Git URL