@@ -8,6 +8,9 @@ const TIMEOUT = process.env.API_TIMEOUT_LIMIT ? parseInt(process.env.API_TIMEOUT
8
8
// If present, set CORS allowed origins for responses
9
9
const ALLOWED_ORIGINS = process . env . API_CORS_ORIGIN || '*' ;
10
10
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
+
11
14
// Set the platform currently being used
12
15
let PLATFORM = 'NETLIFY' ;
13
16
if ( process . env . PLATFORM ) { PLATFORM = process . env . PLATFORM . toUpperCase ( ) ; }
@@ -21,7 +24,6 @@ const headers = {
21
24
'Content-Type' : 'application/json;charset=UTF-8' ,
22
25
} ;
23
26
24
-
25
27
const timeoutErrorMsg = 'You can re-trigger this request, by clicking "Retry"\n'
26
28
+ 'If you\'re running your own instance of Web Check, then you can '
27
29
+ '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'
31
33
+ 'in order to keep running costs affordable, so that Web Check can '
32
34
+ 'remain freely available for everyone.' ;
33
35
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
+
34
44
// A middleware function used by all API routes on all platforms
35
45
const commonMiddleware = ( handler ) => {
36
46
@@ -45,6 +55,11 @@ const commonMiddleware = (handler) => {
45
55
46
56
// Vercel
47
57
const vercelHandler = async ( request , response ) => {
58
+
59
+ if ( DISABLE_EVERYTHING ) {
60
+ response . status ( 503 ) . json ( { error : disabledErrorMsg } ) ;
61
+ }
62
+
48
63
const queryParams = request . query || { } ;
49
64
const rawUrl = queryParams . url ;
50
65
@@ -83,6 +98,15 @@ const commonMiddleware = (handler) => {
83
98
const queryParams = event . queryStringParameters || event . query || { } ;
84
99
const rawUrl = queryParams . url ;
85
100
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
+
86
110
if ( ! rawUrl ) {
87
111
callback ( null , {
88
112
statusCode : 500 ,
0 commit comments