]> git.mxchange.org Git - fba.git/blob - check_instance.py
cea34c8a7276583aee57f1d728977804c070624a
[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 sys
21 import validators
22 from fba import *
23
24 domain = sys.argv[1]
25
26 if not validators.domain(domain):
27     print(f"WARNING: domain='{domain}' is not valid")
28     sys.exit(100)
29 elif fba.is_blacklisted(domain):
30     print(f"WARNING: domain='{domain}' is blacklisted")
31     sys.exit(101)
32 elif fba.is_instance_registered(domain):
33     print(f"WARNING: domain='{domain}' is already registered")
34     sys.exit(102)
35
36 print(f"INFO: domain='{domain}' is not known")
37
38 boot.shutdown()