forked from Mra1k3r0/SELFPINGER-SAIKIDESU-BETA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecre.js
More file actions
223 lines (193 loc) · 7.86 KB
/
Copy pathsecre.js
File metadata and controls
223 lines (193 loc) · 7.86 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
// You can add more than 100 urls on setConfig.json, but it's not advisable :>
// Made by SaikiDesu (Mr.Aik3ro)
// https://github.com/mraikero-01
const fs = require("fs");
const { get } = require("snekfetch");
const serverless = require("aws-serverless-koa");
const axios = require("axios").default;
const logger = require("./log.js");
const Koa = require("koa");
const KoaRouter = require("koa-router");
const KoaJSON = require("koa-json");
const { koaBody } = require("koa-body");
const chalk = require("chalk");
/** */
let data = ["#DEADED", "#00ffa2", "#0092ff", "#ff8700", "#f2ff00", "#ff0000", "#9d00ff", "#00dcff"];
let col = data[Math.floor(Math.random() * data.length)];
const app = new Koa();
const router = new KoaRouter();
app.proxy = true;
const PORT = process.env.PORT || 3040 || 8080;
console.log("Made by SaikiDesu");
app.use(koaBody());
app.use(KoaJSON());
router.get("/", async (ctx, next) => {
const start = Date.now();
await next();
let data2 = ["SelfPinger by SaikiDesu, enjoy!", "Powered by KoaJs", "Follow me on fb: https://www.facebook.com/saikidesu11", "Follow my github: https://github.com/mraikero-01", "Credits to all facebook and dc bot developers"];
let mess = data2[Math.floor(Math.random() * data2.length)];
const rt = ctx.response.get("X-Response-Time");
console.log(chalk.hex(col)(`--->heartbeat<---\n↳ ${ctx.method} ${ctx.url} - ${rt}`));
const ms = Date.now() - start;
ctx.set("X-Response-Time", `${ms.toFixed(2)}mbps`);
ctx.body = { data: mess, ip: ctx.request.ip };
console.log(chalk.hex(col)("↳ " + ctx.request.ip + "\n-----------------"));
});
router.get("/method2/add", async (ctx, next) => {
let reg = new RegExp(/(https?:\/\/)?([\w\-]+\.)+(co|com|app|net)/gi);
const { url } = ctx.query;
if (!url) {
ctx.response.status = 404;
return (ctx.body = { status: ctx.response.status, message: "url is empty!" });
} else if (reg.test(url)) {
try {
const data = JSON.parse(fs.readFileSync(__dirname + "/container/setConfig.json"));
console.log(data);
if (data.links.some((link) => url.match(link))) {
ctx.response.status = 200;
return (ctx.body = { status: ctx.response.status, message: "url was already included in the database!", url: url });
} else {
data.links.push(url);
fs.writeFileSync(__dirname + "/container/setConfig.json", JSON.stringify(data));
ctx.response.status = 200;
return (ctx.body = { status: ctx.response.status, message: `successfully added url.`, url: url });
}
} catch (err) {
console.error(err);
ctx.response.status = 400;
ctx.body = {
status: ctx.response.status,
message: `Something went wrong: ${err}`,
};
}
} else {
ctx.response.status = 400;
ctx.body = {
status: ctx.response.status,
message: `Invalid url input!`,
};
}
await next();
});
router.get("/method1/add", async (ctx, next) => {
ctx.body = { status: ctx.response.status, message: `No parameter found!` };
await next();
});
router.post("/method1/add", async (ctx, next) => {
let reg = new RegExp(/(https?:\/\/)?([\w\-]+\.)+(co|com|app|net)/gi);
if (!ctx.request.body.url) {
ctx.response.status = 404;
return (ctx.body = {
status: ctx.response.status,
message: `url is empty!`,
});
} else if (reg.test(ctx.request.body.url)) {
const { url } = ctx.request.body;
try {
const data = JSON.parse(fs.readFileSync(__dirname + "/container/setConfig.json"));
console.log(data);
if (data.links.some((link) => url.match(link))) {
ctx.response.status = 200;
return (ctx.body = {
status: ctx.response.status,
message: "url was already included in the database!",
url: url,
});
} else {
data.links.push(url);
fs.writeFileSync(__dirname + "/container/setConfig.json", JSON.stringify(data));
ctx.response.status = 200;
return (ctx.body = { status: ctx.response.status, message: `successfully added url.`, url: url });
}
} catch (err) {
console.error(err);
ctx.response.status = 400;
ctx.body = {
status: ctx.response.status,
message: `Something went wrong: ${err}`,
};
}
} else {
ctx.response.status = 400;
ctx.body = {
status: ctx.response.status,
message: `Invalid url input!`,
};
}
await next();
});
app.on("error", (err) => {
console.error("server error", err);
});
app.use(router.routes()).use(router.allowedMethods());
app.listen(PORT, () => console.log(`Server Started! Listening to localhost:${PORT}`));
function ensureExists() {
if (!fs.existsSync(__dirname + "/container/setConfig.json")) {
console.log(chalk.hex("#ff0800").bold("[ WARN ] » " + chalk.hex("#00ffc9").bold("setConfig.json is not found! please restart...")));
var template = { interval: 1000, type: "json", links: ["https://selfpinger-saikidesu.saikidesu-web.repl.co/"] };
fs.writeFileSync(__dirname + "/container/setConfig.json", JSON.stringify(template));
return process.exit(1);
}
}
ensureExists();
const config = require("./container/setConfig.json");
const configs = require("./container/setConfig.js");
if (config.type == "json") {
setInterval(upTime1, config.interval);
} else if (config.type == "js") {
setInterval(upTime2, config.interval);
} else {
console.log(chalk.hex("#ff0800").bold("[ WARN ] » " + chalk.hex("#00ffc9").bold(`Invalid Type! "${config.type}"`)));
process.exit(1);
}
function upTime1() {
fs.readFile(__dirname + "/container/setConfig.json", "utf8", (err, data) => {
if (err) return console.log(err.message);
let allLinks = JSON.parse(data).links ? JSON.parse(data).links : configs.links; // process.env.URL.split(", ");
allLinks.some((link) => {
axios
.get(link)
.then((res) => {
logger(`${link}`, ` is working`, "ok");
return console.log(chalk.hex("00CCCC").bold(`Status:`), chalk.hex("00CC00")(res.status));
})
.catch((err) => {
if (err.response) {
logger(`${link}`, ` is not working`, "err");
return console.log(chalk.hex("00CCCC").bold(`Status:`), chalk.hex("FF0000")(err.response.status));
}
logger(`${link}`, ` is not working`, "err");
});
});
});
}
function upTime2() {
let allLinks = configs.links; // process.env.URL.split(", ");
allLinks.some((link) => {
axios
.get(link)
.then((res) => {
logger(`${link}`, ` is working`, "ok");
return console.log(chalk.hex("00CCCC").bold(`Status:`), chalk.hex("00CC00")(res.status));
})
.catch((err) => {
if (err.response) {
logger(`${link}`, ` is not working`, "err");
return console.log(chalk.hex("00CCCC").bold(`Status:`), chalk.hex("FF0000")(err.response.status));
}
logger(`${link}`, ` is not working`, "err");
});
});
}
setInterval(selfPing, 1800000);
function selfPing() {
let myurl = `https://${process.env.REPL_SLUG}.${process.env.REPL_OWNER}.repl.co/`;
get(myurl)
.then((respo) => {
return respo;
})
.catch((err) => {
return err;
});
}
//module.exports.handler = serverless(app);