-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.js
More file actions
219 lines (209 loc) · 5.42 KB
/
Copy pathindex.js
File metadata and controls
219 lines (209 loc) · 5.42 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
import express from 'express'
import isUp from 'is-up'
import bodyparser from 'body-parser'
import isReachable from 'is-reachable'
import { bahasa_planet } from 'bahasa-planet'
import axios from 'axios'
const PORT = 9000;
const app = express();
app.set("view engine", "ejs")
app.use(bodyparser.urlencoded({
extended: false
}));
app.use(bodyparser.json());
app.set('json spaces', 2);
const isUrl = (url) => {
return url.match(new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&/=]*)/, 'gi'))
}
//Web Check API V1 ( Recommended )
app.get('/isdown/v1', async(req, res) => {
try {
var url = req.query.domain
if (!url) return res.status(400).json({
status: false,
message: "Enter domain query"
})
const response = await axios.head(url)
res.json({
status: true,
response: "Website is Up (Online)",
status_code: response.status,
info_error: null,
github: "https://github.com/ThisMe124/Website-Checker"
})
} catch(error) {
if(error.response) {
res.json({
status: false,
response: "Website is Down (Offline)",
status_code: error.response.status,
info_error: null,
github: "https://github.com/ThisMe124/Website-Checker"
})
} else if (error.code === 'ECONNABORTED') {
res.json({
status: 'timeout',
response: "Website is Down (Offline)",
status_code: null,
info_error: error.message
})
} else {
res.json({
status: 'Unknow Error',
response: " Website is Down (Offline)",
status_code: null,
info_error:
error.message
})
}
}
// handle if the error reaches the server.
}, (error, req, res, next) => {
res.json({
status: 'Unknow Error',
status_code: null,
info_error: error.message
})
})
//Web Check API V2 ( Recommended )
app.get("/isdown/v2", async (req,res) => {
var url = req.query.domain
if (!url) return res.status(400).json({
status: false,
message: "Enter domain query"
})
var resp = await isReachable(url)
var wdoh = await isReachable(url)
if (resp === true) {
resp = "Site is Running (200) OK"
} else if (resp === false) {
resp = "Site is Down (500) Not OK"
}
res.json({
domain: url,
status: resp,
status_web: wdoh,
github: "https://github.com/ThisMe124/Website-Checker",
})
// handle if the error reaches the server.
}, (error, req, res, next) => {
res.json({
status: 'Unknow Error',
status_code: null,
info_error: error.message
})
})
//Web Check API V3 ( the same as v1 but the difference is the get method and recommended to use )
app.get('/isdown/v3', async(req, res) => {
try {
var url = req.query.domain
if (!url) return res.status(400).json({
status: false,
message: "Enter domain query"
})
const response = await axios.get(url)
res.json({
status: true,
status_code: response.status,
info_error: null,
github: "https://github.com/ThisMe124/Website-Checker"
})
} catch(error) {
if(error.response) {
res.json({
status: false,
status_code: error.response.status,
info_error: null,
github: "https://github.com/ThisMe124/Website-Checker"
})
} else if (error.code === 'ECONNABORTED') {
res.json({
status: 'timeout',
status_code: null,
info_error: error.message
})
} else {
res.json({
status: 'Unknow Error',
status_code: null,
info_error:
error.message
})
}
}
// handle if the error reaches the server.
}, (error, req, res, next) => {
res.json({
status: 'Unknow Error',
status_code: null,
info_error: error.message
})
})
// [ NEW ] check a response from url and get a content.
app.get('/check_domain/response', async(req, res) => {
if(!req.query.url) return res.json({ status: false, info: 'please input query url' })
try {
const response = await axios.get(req.query.url)
res.json({
status: true,
content_data: response.data,
status_code: response.status,
info_error: null
})
} catch(error) {
if(error.response) {
res.json({
status: false,
conten_data: error.response.data,
status_code: error.response.status,
info_error: null
})
} else {
res.json({
status: 'Unknow Error',
status_a: false,
status_code: null,
info_error: error.message
})
}
}
// handle if the error reaches the server.
}, (error, req, res, next) => {
res.json({
status: 'Unknow Error',
status_code: null,
info_error: error.message
})
})
// Bonus Hehe :)
app.get("/bahasa/planet", async(req, res) => {
try {
var text = req.query.text
var alias = req.query.alias
if (!text) return res.status(400).json({
status: false,
message: "Enter text parameters"
})
if (!alias) return res.status(400).json({
status: false,
message: "Enter alias parameters"
})
let pop = bahasa_planet(text, alias)
res.json({ result: pop })
} catch(err) {
res.json({ info: err.message })
}
})
app.get("/", async (req,res) => {
res.json({
result: "200 OK",
github: "https://github.com/ThisMe124/Website-Checker"
})
})
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(500).send('Something broke!')
})
app.listen(PORT, () => {
console.log(`App is listening on Port ${PORT}`);
});