Skip to content

Commit f233de9

Browse files
authored
Merge pull request #205 from Lissy93/sad/disable-everything-temporarily
feat: Temporarily disable, because I am poor.
2 parents 7ca22da + da0204c commit f233de9

File tree

5 files changed

+62
-1
lines changed

5 files changed

+62
-1
lines changed

api/_common/middleware.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ const TIMEOUT = process.env.API_TIMEOUT_LIMIT ? parseInt(process.env.API_TIMEOUT
88
// If present, set CORS allowed origins for responses
99
const ALLOWED_ORIGINS = process.env.API_CORS_ORIGIN || '*';
1010

11+
// Disable everything :( Setting this env var will turn off the instance, and show message
12+
const DISABLE_EVERYTHING = !!process.env.VITE_DISABLE_EVERYTHING;
13+
1114
// Set the platform currently being used
1215
let PLATFORM = 'NETLIFY';
1316
if (process.env.PLATFORM) { PLATFORM = process.env.PLATFORM.toUpperCase(); }
@@ -21,7 +24,6 @@ const headers = {
2124
'Content-Type': 'application/json;charset=UTF-8',
2225
};
2326

24-
2527
const timeoutErrorMsg = 'You can re-trigger this request, by clicking "Retry"\n'
2628
+ 'If you\'re running your own instance of Web Check, then you can '
2729
+ 'resolve this issue, by increasing the timeout limit in the '
@@ -31,6 +33,14 @@ const timeoutErrorMsg = 'You can re-trigger this request, by clicking "Retry"\n'
3133
+ 'in order to keep running costs affordable, so that Web Check can '
3234
+ 'remain freely available for everyone.';
3335

36+
const disabledErrorMsg = 'Error - WebCheck Temporarily Disabled.\n\n'
37+
+ 'We\'re sorry, but due to the increased cost of running Web Check '
38+
+ 'we\'ve had to temporatily disable the public instand. '
39+
+ 'We\'re activley looking for affordable ways to keep Web Check running, '
40+
+ 'while free to use for everybody.\n'
41+
+ 'In the meantime, since we\'ve made our code free and open source, '
42+
+ 'you can get Web Check running on your own system, by following the instructions in our GitHub repo';
43+
3444
// A middleware function used by all API routes on all platforms
3545
const commonMiddleware = (handler) => {
3646

@@ -45,6 +55,11 @@ const commonMiddleware = (handler) => {
4555

4656
// Vercel
4757
const vercelHandler = async (request, response) => {
58+
59+
if (DISABLE_EVERYTHING) {
60+
response.status(503).json({ error: disabledErrorMsg });
61+
}
62+
4863
const queryParams = request.query || {};
4964
const rawUrl = queryParams.url;
5065

@@ -83,6 +98,15 @@ const commonMiddleware = (handler) => {
8398
const queryParams = event.queryStringParameters || event.query || {};
8499
const rawUrl = queryParams.url;
85100

101+
if (DISABLE_EVERYTHING) {
102+
callback(null, {
103+
statusCode: 503,
104+
body: JSON.stringify({ error: 'Web-Check is temporarily disabled. Please try again later.' }),
105+
headers,
106+
});
107+
return;
108+
}
109+
86110
if (!rawUrl) {
87111
callback(null, {
88112
statusCode: 500,
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<div class="banner">
2+
<p>
3+
⚠️ Web Check is temporarily disabled due to excess demand and associated costs.
4+
We apologize for any inconvenience and are working on a solution.
5+
</p>
6+
</div>
7+
8+
<style>
9+
.banner {
10+
position: relative;
11+
top: 0;
12+
left: 0;
13+
width: 100%;
14+
background-color: var(--primary);
15+
color: var(--background);
16+
padding: 0.75rem 1rem;
17+
text-align: center;
18+
z-index: 1000;
19+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
20+
}
21+
22+
.banner p {
23+
margin: 0;
24+
font-size: 0.95rem;
25+
line-height: 1.4;
26+
}
27+
</style>

src/pages/index.astro

+4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
import BaseLayout from '@layouts/Base.astro';
33
import HeroForm from '@components/homepage/HeroForm.astro';
4+
import TempDisabled from '@/components/homepage/TempDisabled.astro';
45
import HomeBackground from '@/components/homepage/HomeBackground';
56
import AboutSection from '@/components/homepage/AboutSection.astro';
67
import Footer from '@components/scafold/Footer.astro';
78
89
const isBossServer = import.meta.env.BOSS_SERVER === true;
910
11+
const disableEverything = import.meta.env.VITE_DISABLE_EVERYTHING === true;
12+
1013
// Redirect strait to /check or /check/:url if running as self-hosted instance
1114
if (!isBossServer) {
1215
const searchUrl = new URLSearchParams(new URL(Astro.request.url).search).get('url');
@@ -20,6 +23,7 @@ if (!isBossServer) {
2023
<Fragment slot="head">
2124
{!isBossServer && (<meta http-equiv="refresh" content="0; url=/check" />)}
2225
</Fragment>
26+
{ disableEverything && <TempDisabled />}
2327
<main>
2428
<HeroForm />
2529
<AboutSection />

src/web-check-live/hooks/motherOfAllHooks.ts

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import 'react-toastify/dist/ReactToastify.css';
44

55
import type { LoadingState } from 'web-check-live/components/misc/ProgressBar';
66
import type { AddressType } from 'web-check-live/utils/address-type-checker';
7+
import keys from 'web-check-live/utils/get-keys';
78

89
interface UseIpAddressProps<ResultType = any> {
910
// Unique identifier for this job type
@@ -37,6 +38,10 @@ const useMotherOfAllHooks = <ResultType = any>(params: UseIpAddressProps<ResultT
3738
// Fire off the HTTP fetch request, then set results and update loading / error state
3839

3940
const doTheFetch = () => {
41+
if (keys.disableEverything) {
42+
updateLoadingJobs(jobId, 'skipped', 'Web-Check is temporarily disabled. Please try again later.', reset);
43+
return Promise.resolve();
44+
}
4045
return fetchRequest()
4146
.then((res: any) => {
4247
if (!res) { // No response :(

src/web-check-live/utils/get-keys.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
const keys = {
33
shodan: import.meta.env.REACT_APP_SHODAN_API_KEY || "default_value_if_not_set",
44
whoApi: import.meta.env.REACT_APP_WHO_API_KEY || "default_value_if_not_set",
5+
disableEverything: import.meta.env.VITE_DISABLE_EVERYTHING === 'true',
56
};
67
// const keys = process && process.env ? {
78
// shodan: process.env.REACT_APP_SHODAN_API_KEY,

0 commit comments

Comments
 (0)