-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
160 lines (128 loc) · 3.87 KB
/
index.js
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
import express from "express";
import createError from "http-errors";
import mongoose from "mongoose";
import morgan from "morgan";
import cors from "cors";
import compression from "compression";
import { normalizePort } from "./utils.js";
import {
rewardHistory,
callHistory,
addresses,
registration,
login,
btcAddressReward,
cycle,
btcClaim,
generateCSV,
getUserClaimedRewardsGraph,
dailyBtcReward,
} from "./controllers/index.js";
import passport from "passport";
import session from "express-session";
import initializePassport from "./validations/passport-config.js";
import flash from "express-flash";
import { User } from "./models/index.js";
import { forgotPass } from "./controllers/forgotPass.js";
import dotenv from "dotenv";
import { transactionRecord } from "./controllers/transactionRecord.js";
import PDFDocument from "pdfkit";
import { Buffer } from "buffer";
import auth from "./validations/auth.js";
dotenv.config();
initializePassport(
passport,
async (username) => await User.findOne({ username }),
async (id) => await User.findById(id)
);
mongoose
// eslint-disable-next-line no-undef
.connect(process.env.mongodbURL, {
useNewUrlParser: true,
autoReconnect: true,
})
.then(() => console.log("Connected to Database"))
.catch(() => {
console.log("Failed to connect to the database");
});
mongoose.set("debug", true);
function shouldCompress(req, res) {
if (req.headers["x-no-compression"]) {
return false;
}
return compression.filter(req, res);
}
const app = express();
app.use(express.static("build"));
app.use(express.urlencoded({ extended: false, useFinAndModify: true }));
app.use(express.json());
app.use(morgan("combined"));
app.use(cors());
app.use(flash());
app.use(
session({
secret: "scruitiny",
})
);
app.use(passport.initialize());
app.use(passport.session());
app.use(compression({ filter: shouldCompress }));
app.post("/login", checkNotAuthenticated, login);
app.delete("/logout", (req, res) => {
req.logOut();
res.status(200).send("success");
});
app.get("/notloggedin", (req, res) => {
res.send(false);
});
app.post("/register", checkNotAuthenticated, registration);
app.get("/forgotPassword/:id", forgotPass.get);
app.post("/forgotPassword", forgotPass.post);
app.post("/btcAddressReward", btcAddressReward.post);
app.put("/btcAddressReward", btcAddressReward.put);
app.get("/rewardHistory", rewardHistory.get);
app.post("/rewardHistory", rewardHistory.post);
app.get("/cycleInfo", cycle);
app.post("/getUserClaimedRewardsGraph", getUserClaimedRewardsGraph);
app.delete("/addresses", addresses.delete);
app.post("/addresses", addresses.post);
app.post("/transactionRecords", auth, transactionRecord);
app.post("/dailyBTCReward", dailyBtcReward);
app.post("/btcClaim", auth, btcClaim);
app.get("/callHistory", callHistory.get);
app.post("/callHistory", callHistory.post);
app.get("/generateCSV/:id", auth, generateCSV);
app.get("/*", (req, res) => {
res.sendFile("index.html");
});
// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404));
});
// error handler
// eslint-disable-next-line no-unused-vars
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get("env") === "development" ? err : {};
// send the error page
res.status(err.status || 500);
res.send("error");
});
// eslint-disable-next-line no-unused-vars
function checkAuthenticated(req, res, next) {
console.log(req.isAuthenticated());
if (req.isAuthenticated()) {
return next();
}
res.send("/login");
}
function checkNotAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
res.send("/success");
}
next();
}
const port = normalizePort(process.env.PORT || "4500");
const server = app.listen(port, () => console.log("Server up on " + port));
export default server;