FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
parse-server/src/classes.js at master · PocketPro/parse-server · GitHub
PocketPro
/
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
/
src
/
classes.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
101 lines (89 loc) · 2.93 KB
Breadcrumbs
parse-server
/
src
/
classes.js
Copy path
File metadata and controls
101 lines (89 loc) · 2.93 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
// These methods handle the 'classes' routes.
// Methods of the form 'handleX' return promises and are intended to
// be used with the PromiseRouter.
var
Parse
=
require
(
'parse/node'
)
.
Parse
,
PromiseRouter
=
require
(
'./PromiseRouter'
)
,
rest
=
require
(
'./rest'
)
;
var
router
=
new
PromiseRouter
(
)
;
// Returns a promise that resolves to a {response} object.
function
handleFind
(
req
)
{
var
body
=
Object
.
assign
(
req
.
body
,
req
.
query
)
;
var
options
=
{
}
;
if
(
body
.
skip
)
{
options
.
skip
=
Number
(
body
.
skip
)
;
}
if
(
body
.
limit
)
{
options
.
limit
=
Number
(
body
.
limit
)
;
}
if
(
body
.
order
)
{
options
.
order
=
String
(
body
.
order
)
;
}
if
(
body
.
count
)
{
options
.
count
=
true
;
}
if
(
typeof
body
.
keys
==
'string'
)
{
options
.
keys
=
body
.
keys
;
}
if
(
body
.
include
)
{
options
.
include
=
String
(
body
.
include
)
;
}
if
(
body
.
redirectClassNameForKey
)
{
options
.
redirectClassNameForKey
=
String
(
body
.
redirectClassNameForKey
)
;
}
if
(
typeof
body
.
where
===
'string'
)
{
body
.
where
=
JSON
.
parse
(
body
.
where
)
;
}
return
rest
.
find
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
body
.
where
,
options
)
.
then
(
(
response
)
=>
{
if
(
response
&&
response
.
results
)
{
for
(
var
result
of
response
.
results
)
{
if
(
result
.
sessionToken
)
{
result
.
sessionToken
=
req
.
info
.
sessionToken
||
result
.
sessionToken
;
}
}
response
.
results
.
sessionToken
}
return
{
response
:
response
}
;
}
)
;
}
// Returns a promise for a {status, response, location} object.
function
handleCreate
(
req
)
{
return
rest
.
create
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
req
.
body
)
;
}
// Returns a promise for a {response} object.
function
handleGet
(
req
)
{
return
rest
.
find
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
{
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
]
}
;
}
}
)
;
}
// Returns a promise for a {response} object.
function
handleDelete
(
req
)
{
return
rest
.
del
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
req
.
params
.
objectId
)
.
then
(
(
)
=>
{
return
{
response
:
{
}
}
;
}
)
;
}
// Returns a promise for a {response} object.
function
handleUpdate
(
req
)
{
return
rest
.
update
(
req
.
config
,
req
.
auth
,
req
.
params
.
className
,
req
.
params
.
objectId
,
req
.
body
)
.
then
(
(
response
)
=>
{
return
{
response
:
response
}
;
}
)
;
}
router
.
route
(
'GET'
,
'/classes/:className'
,
handleFind
)
;
router
.
route
(
'POST'
,
'/classes/:className'
,
handleCreate
)
;
router
.
route
(
'GET'
,
'/classes/:className/:objectId'
,
handleGet
)
;
router
.
route
(
'DELETE'
,
'/classes/:className/:objectId'
,
handleDelete
)
;
router
.
route
(
'PUT'
,
'/classes/:className/:objectId'
,
handleUpdate
)
;
module
.
exports
=
router
;
Back
|
FazBrowse Home
|
New Git URL