Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Voting
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dennis Willers
Voting
Commits
f4341312
Commit
f4341312
authored
Aug 23, 2021
by
Matthieu - Greep
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
you can now send parameters in body
parent
c857d223
Pipeline
#461
passed with stage
in 50 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
README.md
README.md
+1
-1
getPlayerVote.js
route/getPlayerVote.js
+2
-2
getVotes.js
route/getVotes.js
+1
-1
setVote.js
route/setVote.js
+3
-3
No files found.
README.md
View file @
f4341312
...
...
@@ -9,7 +9,7 @@ The client can connect to the socket server via `willers.digital` on port `3201`
If you just want to call the REST-Server you can do it with:
`https://tm-voting.willers.digital`
.
## REST Services
⚠
**All parameters
MUST be done in the url query `/getVotes?map=blah
`**
⚠
**All parameters
can be done in the url query `/getVotes?map=blah` or in the Body you sent in a JSON format `{"map":"blah"}
`**
**GET /getVotes**
<br>
Returns the current voting status for the current map.
<br>
...
...
route/getPlayerVote.js
View file @
f4341312
...
...
@@ -7,8 +7,8 @@ const path = require('path'),
*/
module
.
exports
=
function
(
app
,
sql
,
token
,
errorHandler
)
{
app
.
get
(
'
/
'
+
scriptName
,
function
(
req
,
res
)
{
const
mapId
=
req
.
query
.
map
,
player
=
req
.
query
.
player
;
const
mapId
=
req
.
query
.
map
||
req
.
body
.
map
,
player
=
req
.
query
.
player
||
req
.
body
.
player
;
if
(
!
mapId
)
{
return
errorHandler
(
res
,
400
,
'
Missing map id
'
);
}
...
...
route/getVotes.js
View file @
f4341312
...
...
@@ -7,7 +7,7 @@ const path = require('path'),
*/
module
.
exports
=
function
(
app
,
sql
,
token
,
errorHandler
)
{
app
.
get
(
'
/
'
+
scriptName
,
function
(
req
,
res
)
{
const
mapId
=
req
.
query
.
map
;
const
mapId
=
req
.
query
.
map
||
req
.
body
.
map
;
if
(
!
mapId
)
{
return
errorHandler
(
res
,
400
,
'
Missing map id
'
);
}
...
...
route/setVote.js
View file @
f4341312
...
...
@@ -10,9 +10,9 @@ const path = require('path'),
module
.
exports
=
function
(
app
,
sql
,
tokenCheck
,
errorHandler
)
{
app
.
post
(
'
/
'
+
scriptName
,
function
(
req
,
res
)
{
//tokenCheck(req, res, sql, ()=>{
const
mapId
=
req
.
query
.
map
,
player
=
req
.
query
.
player
,
vote
=
Number
(
req
.
query
.
vote
);
const
mapId
=
req
.
query
.
map
||
req
.
body
.
map
,
player
=
req
.
query
.
player
||
req
.
body
.
player
,
vote
=
Number
(
req
.
query
.
vote
||
req
.
body
.
vote
);
if
(
!
mapId
)
return
errorHandler
(
res
,
400
,
'
Missing map id
'
);
if
(
!
player
)
return
errorHandler
(
res
,
400
,
'
Missing player login
'
);
if
(
!
vote
)
return
errorHandler
(
res
,
400
,
'
Missing vote
'
);
...
...
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