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
|
#!/usr/bin/env python3
#
# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Author: Mauro Soria
import sys
from pkg_resources import DistributionNotFound, VersionConflict
from lib.core.data import options
from lib.core.exceptions import FailedDependenciesInstallation
from lib.core.installation import check_dependencies, install_dependencies
from lib.core.settings import OPTIONS_FILE
from lib.parse.config import ConfigParser
if sys.version_info < (3, 7):
sys.stdout.write("Sorry, dirsearch requires Python 3.7 or higher\n")
sys.exit(1)
config = ConfigParser()
config.read(OPTIONS_FILE)
if config.safe_getboolean("options", "check-dependencies", False):
try:
check_dependencies()
except (DistributionNotFound, VersionConflict):
option = input("Missing required dependencies to run.\n"
"Do you want dirsearch to automatically install them? [Y/n] ")
if option.lower() == 'y':
print("Installing required dependencies...")
try:
install_dependencies()
except FailedDependenciesInstallation:
print("Failed to install dirsearch dependencies, try doing it manually.")
exit(1)
else:
config.set("options", "check-dependencies", "False")
with open(OPTIONS_FILE, "w") as fh:
config.write(fh)
def main():
from lib.core.options import parse_options
options.update(parse_options())
from lib.controller.controller import Controller
Controller()
if __name__ == "__main__":
main()
|