0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00
howdy/installer.py

239 lines
7.5 KiB
Python
Raw Normal View History

# Installation script to install howdy
# Runs completely independent of the others
# Import required modules
2018-02-05 23:43:32 +01:00
import subprocess
import time
import sys
import os
import re
2018-02-05 23:43:32 +01:00
import signal
import fileinput
import urllib.parse
def log(text):
"""Print a nicely formatted line to stdout"""
2018-02-08 01:11:47 +01:00
print("\n>>> \033[32m" + text + "\033[0m\n")
2018-02-05 23:43:32 +01:00
def handleStatus(status):
"""Abort if a command fails"""
2018-02-08 01:11:47 +01:00
if (status != 0):
print("\033[31mError while running last command\033[0m")
sys.exit()
2018-02-05 23:43:32 +01:00
# Check if we're running as root
2018-02-05 23:43:32 +01:00
user = os.getenv("SUDO_USER")
if user is None:
2018-02-08 01:11:47 +01:00
print("Please run this script as a sudo user")
sys.exit()
2018-02-05 23:43:32 +01:00
# Print some nice intro text
2018-02-05 23:43:32 +01:00
print("\n\033[33m HOWDY INSTALLER FOR UBUNTU\033[0m")
print(" Version 1, 2016/02/05\n")
# Let it sink in
2018-02-05 23:43:32 +01:00
time.sleep(.5)
log("Installing required apt packages")
# Install packages though apt
2018-02-20 23:51:11 +01:00
handleStatus(subprocess.call(["apt", "install", "-y", "git", "python-pip", "python-dev", "python-setuptools", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"]))
2018-02-20 23:29:19 +01:00
# Update pip
handleStatus(subprocess.call(["pip install --upgrade pip"], shell=True))
2018-02-05 23:43:32 +01:00
log("Starting camera check")
# Get all devices
2018-02-05 23:43:32 +01:00
devices = os.listdir("/dev")
# The picked video device id
2018-02-05 23:43:32 +01:00
picked = False
# Loop though all devices
2018-02-05 23:43:32 +01:00
for dev in devices:
# Only use the video devices
2018-02-08 01:11:47 +01:00
if (dev[:5] == "video"):
time.sleep(.5)
2018-02-05 23:43:32 +01:00
# The full path to the device is the default name
device_name = "/dev/" + dev
# Get the udevadm details to try to get a better name
udevadm = subprocess.check_output(["udevadm info -r --query=all -n " + device_name], shell=True).decode("utf-8")
# Loop though udevadm to search for a better name
for line in udevadm.split("\n"):
# Match it and encase it in quotes
re_name = re.search('product.*=(.*)$', line, re.IGNORECASE)
if re_name:
device_name = '"' + re_name.group(1) + '"'
# Show what device we're using
print("Trying " + device_name)
2018-02-05 23:43:32 +01:00
# Let fswebcam keep the camera open in the background
2018-02-08 01:11:47 +01:00
sub = subprocess.Popen(["fswebcam -S 9999999999 -d /dev/" + dev + " /dev/null 2>/dev/null"], shell=True, preexec_fn=os.setsid)
2018-02-05 23:43:32 +01:00
# Ask the user if this is the right one
2018-02-08 01:11:47 +01:00
print("\033[33mOne of your cameras should now be on.\033[0m")
ans = input("Did your IR emitters turn on? [y/N]: ")
2018-02-05 23:43:32 +01:00
# The user has answered, kill fswebcam
2018-02-08 01:11:47 +01:00
os.killpg(os.getpgid(sub.pid), signal.SIGTERM)
2018-02-05 23:43:32 +01:00
# Set this camera as picked if the answer was yes, go to the next one if no
2018-02-08 01:11:47 +01:00
if (ans.lower() == "y"):
picked = dev[5:]
break
else:
print("Inerpeting as a \"NO\"\n")
2018-02-05 23:43:32 +01:00
# Abort if no camera was picked
2018-02-05 23:43:32 +01:00
if (picked == False):
2018-02-08 01:11:47 +01:00
print("\033[31mNo suitable IR camera found\033[0m")
2018-02-11 01:54:44 +01:00
sys.exit()
2018-02-05 23:43:32 +01:00
log("Cloning dlib")
# Clone the git to /tmp
2018-02-05 23:43:32 +01:00
handleStatus(subprocess.call(["git", "clone", "https://github.com/davisking/dlib.git", "/tmp/dlib_clone"]))
log("Building dlib")
# Start the build without GPU
2018-02-05 23:43:32 +01:00
handleStatus(subprocess.call(["cd /tmp/dlib_clone/; python3 setup.py install --yes USE_AVX_INSTRUCTIONS --no DLIB_USE_CUDA"], shell=True))
log("Cleaning up dlib")
# Remove the no longer needed git clone
2018-02-05 23:43:32 +01:00
handleStatus(subprocess.call(["rm", "-rf", "/tmp/dlib_clone"]))
log("Installing face_recognition")
# Install face_recognition though pip
2018-02-13 23:22:13 +01:00
handleStatus(subprocess.call(["pip3", "install", "face_recognition"]))
2018-02-05 23:43:32 +01:00
log("Cloning howdy")
# Make sure /lib/security exists
2018-02-05 23:43:32 +01:00
if not os.path.exists("/lib/security"):
2018-02-08 01:11:47 +01:00
os.makedirs("/lib/security")
2018-02-05 23:43:32 +01:00
# Clone howdy into it
2018-02-05 23:43:32 +01:00
handleStatus(subprocess.call(["git", "clone", "https://github.com/Boltgolt/howdy.git", "/lib/security/howdy"]))
# Manually change the camera id to the one picked
2018-02-05 23:43:32 +01:00
for line in fileinput.input(["/lib/security/howdy/config.ini"], inplace = 1):
2018-02-08 01:11:47 +01:00
print(line.replace("device_id = 1", "device_id = " + picked), end="")
2018-02-05 23:43:32 +01:00
2018-02-10 17:03:42 +01:00
# Secure the howdy folder
2018-02-05 23:43:32 +01:00
handleStatus(subprocess.call(["chmod 600 -R /lib/security/howdy/"], shell=True))
2018-02-10 17:03:42 +01:00
# Make the CLI executable as howdy
2018-02-08 01:11:47 +01:00
handleStatus(subprocess.call(["ln -s /lib/security/howdy/cli.py /usr/bin/howdy"], shell=True))
handleStatus(subprocess.call(["chmod +x /usr/bin/howdy"], shell=True))
2018-02-05 23:43:32 +01:00
# Install the command autocomplete, don't error on failure
subprocess.call(["sudo cp /lib/security/howdy/autocomplete.sh /etc/bash_completion.d/howdy"], shell=True)
2018-02-10 17:03:42 +01:00
2018-02-05 23:43:32 +01:00
log("Adding howdy as PAM module")
# Will be filled with the actual output lines
2018-02-05 23:43:32 +01:00
outlines = []
# Will be fillled with lines that contain coloring
2018-02-05 23:43:32 +01:00
printlines = []
# Track if the new lines have been insterted yet
2018-02-05 23:43:32 +01:00
inserted = False
# Open the PAM config file
2018-02-05 23:43:32 +01:00
with open("/etc/pam.d/common-auth") as fp:
# Read the first line
2018-02-08 01:11:47 +01:00
line = fp.readline()
2018-02-08 01:11:47 +01:00
while line:
# Add the line to the output directly, we're not deleting anything
2018-02-08 01:11:47 +01:00
outlines.append(line)
2018-02-05 23:43:32 +01:00
# Print the comments in gray and don't insert into comments
if line[:1] == "#":
printlines.append("\033[37m" + line + "\033[0m")
else:
2018-02-08 01:11:47 +01:00
printlines.append(line)
2018-02-05 23:43:32 +01:00
# If it's not a comment and we haven't inserted yet
2018-02-08 01:11:47 +01:00
if not inserted:
# Set both the comment and the linking line
2018-02-08 01:11:47 +01:00
line_comment = "# Howdy IR face recognition\n"
line_link = "auth sufficient pam_python.so /lib/security/howdy/pam.py\n\n"
2018-02-05 23:43:32 +01:00
# Add them to the output without any markup
2018-02-08 01:11:47 +01:00
outlines.append(line_comment)
outlines.append(line_link)
2018-02-05 23:43:32 +01:00
# Make the print orange to make it clear what's being added
2018-02-08 01:11:47 +01:00
printlines.append("\033[33m" + line_comment + "\033[0m")
printlines.append("\033[33m" + line_link + "\033[0m")
2018-02-05 23:43:32 +01:00
# Mark as inserted
2018-02-08 01:11:47 +01:00
inserted = True
2018-02-05 23:43:32 +01:00
# Go to the next line
2018-02-08 01:11:47 +01:00
line = fp.readline()
2018-02-05 23:43:32 +01:00
# Print a file Header
2018-02-05 23:43:32 +01:00
print("\033[33m" + ">>> START OF /etc/pam.d/common-auth" + "\033[0m")
# Loop though all printing lines and use the enters from the file
2018-02-05 23:43:32 +01:00
for line in printlines:
2018-02-08 01:11:47 +01:00
print(line, end="")
2018-02-05 23:43:32 +01:00
# Print a footer
2018-02-05 23:43:32 +01:00
print("\033[33m" + ">>> END OF /etc/pam.d/common-auth" + "\033[0m" + "\n")
# Ask the user if this change is okay
2018-02-05 23:43:32 +01:00
print("Lines will be insterted in /etc/pam.d/common-auth as shown above")
ans = input("Apply this change? [y/N]: ")
# Abort the whole thing if it's not
2018-02-05 23:43:32 +01:00
if (ans.lower() != "y"):
2018-02-08 01:11:47 +01:00
print("Inerpeting as a \"NO\", aborting")
sys.exit()
2018-02-05 23:43:32 +01:00
print("Adding lines to PAM\n")
# Write to PAM
2018-02-05 23:43:32 +01:00
common_auth = open("/etc/pam.d/common-auth", "w")
common_auth.write("".join(outlines))
common_auth.close()
# From here onwards the installation is complete
# We want to gather more information about the types or IR camera's
# used though, and the following lines are data collection
# List all video devices
diag_out = "Video devices [IR=" + picked + "]\n"
2018-02-05 23:43:32 +01:00
diag_out += "```\n"
diag_out += subprocess.check_output(['ls /dev/ | grep video'], shell=True).decode("utf-8")
diag_out += "```\n"
# Get some info from the USB kernel listings
2018-02-05 23:43:32 +01:00
diag_out += "Lsusb output\n"
diag_out += "```\n"
diag_out += subprocess.check_output(['lsusb -vvvv | grep -i "Camera\|iFunction"'], shell=True).decode("utf-8")
diag_out += "```\n"
# Get camera information from video4linux
diag_out += "Udevadm\n"
diag_out += "```\n"
diag_out += subprocess.check_output(['udevadm info -r --query=all -n /dev/video' + picked + ' | grep -i "ID_BUS\|ID_MODEL_ID\|ID_VENDOR_ID\|ID_V4L_PRODUCT\|ID_MODEL"'], shell=True).decode("utf-8")
2018-02-05 23:43:32 +01:00
diag_out += "```"
# Print it all as a clickable link to a new github issue
print("https://github.com/Boltgolt/howdy-reports/issues/new?title=Post-installation%20camera%20information&body=" + urllib.parse.quote_plus(diag_out) + "\n")
2018-02-05 23:43:32 +01:00
# Let the user know what to do with the link
2018-02-05 23:43:32 +01:00
print("Installation complete.")
2018-02-11 01:54:44 +01:00
print("If you want to help the development, please use the link above to post some camera-related information to github")
# Remove the installer if it was downloaded to /tmp
2018-02-11 01:54:44 +01:00
if os.path.exists("/tmp/howdy_install.py"):
os.remove("/tmp/howdy_install.py")