]> git.mxchange.org Git - fba.git/blob - check_instance.py
Continued:
[fba.git] / check_instance.py
1 #!/usr/bin/python3
2 # -*- coding: utf-8 -*-
3
4 # Fedi API Block - An aggregator for fetching blocking data from fediverse nodes
5 # Copyright (C) 2023 Free Software Foundation
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published
9 # by the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16 #
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
19
20 import json
21 import sys
22 import validators
23 from fba import *
24
25 domain = sys.argv[1]
26
27 if not validators.domain(domain):
28     print(f"WARNING: domain='{domain}' is not valid")
29     sys.exit(100)
30 elif fba.is_blacklisted(domain):
31     print(f"WARNING: domain='{domain}' is blacklisted")
32     sys.exit(101)
33 elif fba.is_instance_registered(domain):
34     print(f"WARNING: domain='{domain}' is already registered")
35     sys.exit(102)
36
37 print(f"INFO: domain='{domain}' is not known")
38
39 boot.shutdown()