mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-15 09:11:29 +00:00
81 lines
No EOL
1.8 KiB
JavaScript
81 lines
No EOL
1.8 KiB
JavaScript
"use strict";
|
|
|
|
const path = require("path");
|
|
const winston = require("winston");
|
|
const config = require("./config.js");
|
|
const Gather = require("../lib/gather/gather_singleton");
|
|
const mongoose = require("mongoose");
|
|
const Message = mongoose.model("Message");
|
|
const cors = require("cors");
|
|
|
|
module.exports = app => {
|
|
app.use(cors());
|
|
|
|
app.get("/", (request, response, next) => {
|
|
response.render("gather.hbs", {
|
|
redirect: config.ensl_url,
|
|
bot_url: config.steam_bot_link,
|
|
rules_url: config.ensl_rules_url
|
|
});
|
|
});
|
|
|
|
app.get("/redirect", (request, response, next) => {
|
|
response.render("redirect.hbs", {
|
|
redirect: config.ensl_url
|
|
});
|
|
});
|
|
|
|
app.get("/gathers/current", (request, response) => {
|
|
let gather = Gather.current;
|
|
response.status(200).json(gather.toJson());
|
|
});
|
|
|
|
app.get("/api/messages", (request, response) => {
|
|
const page = parseInt(request.query.page, 10) || 0;
|
|
|
|
let limit = parseInt(request.query.limit, 10) || 250;
|
|
if (limit > 250 || limit < 1) limit = 250;
|
|
|
|
let query = {};
|
|
let searchTerm = request.query.query;
|
|
if (searchTerm) {
|
|
query = {
|
|
$text: {
|
|
$search: searchTerm
|
|
}
|
|
};
|
|
}
|
|
Message
|
|
.find(query)
|
|
.limit(limit)
|
|
.skip(page * limit)
|
|
.sort({createdAt: -1})
|
|
.exec((error, messages) => {
|
|
if (error) {
|
|
winston.error(error);
|
|
return response.status(500).json({
|
|
message: "An error occurred",
|
|
error: JSON.stringify(error)
|
|
});
|
|
}
|
|
response.status(200).json({
|
|
messages: messages,
|
|
page: page,
|
|
limit: limit
|
|
});
|
|
});
|
|
});
|
|
|
|
app.get("/messages", (request, response) => {
|
|
response.render("messages.hbs");
|
|
});
|
|
|
|
app.get("*", (request, response) => {
|
|
response.status(404).render("404.hbs");
|
|
});
|
|
|
|
app.use(function (error, request, response, next) {
|
|
winston.error(error);
|
|
return response.status(500).render("500.hbs");
|
|
});
|
|
}; |