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
e3f767d6
Commit
e3f767d6
authored
Aug 23, 2021
by
Matthieu - Greep
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create mostVotedMaps.js
parent
f08d3d64
Pipeline
#449
passed with stage
in 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
mostVotedMaps.js
route/mostVotedMaps.js
+23
-0
No files found.
route/mostVotedMaps.js
0 → 100644
View file @
e3f767d6
const
path
=
require
(
'
path
'
),
scriptName
=
path
.
basename
(
__filename
).
replace
(
/
\.
js$/i
,
''
);
/**
* @param {import('express').Express} app
* @param {import('mysql').Connection} sql
*/
module
.
exports
=
function
(
app
,
sql
,
token
,
errorHandler
)
{
app
.
get
(
'
/
'
+
scriptName
,
function
(
req
,
res
)
{
sql
.
query
(
'
SELECT map, COUNT(*) AS votes FROM votes GROUP BY map ORDER BY votes DESC
'
,
(
err
,
sqlRes
)
=>
{
if
(
err
)
{
console
.
log
(
err
);
errorHandler
(
res
,
500
,
'
Internal server error
'
);
}
else
{
let
maps
=
{};
for
(
let
i
=
0
;
i
<
sqlRes
.
length
;
i
++
)
{
maps
[
sqlRes
[
i
].
map
]
=
sqlRes
[
i
].
votes
;
}
res
.
json
(
maps
);
}
});
});
};
\ No newline at end of file
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