add custom repos

This commit is contained in:
dadav 2020-04-19 11:26:18 +02:00
parent 56c291d302
commit 7ca5eee247
2 changed files with 44 additions and 36 deletions

View File

@ -2,6 +2,9 @@ main.name = ""
main.lang = "en" main.lang = "en"
main.confd = "/etc/pwnagotchi/conf.d/" main.confd = "/etc/pwnagotchi/conf.d/"
main.custom_plugins = "" main.custom_plugins = ""
main.custom_plugin_repos = [
"https://github.com/evilsocket/pwnagotchi-plugins-contrib/archive/master.zip"
]
main.iface = "mon0" main.iface = "mon0"
main.mon_start_cmd = "/usr/bin/monstart" main.mon_start_cmd = "/usr/bin/monstart"
main.mon_stop_cmd = "/usr/bin/monstop" main.mon_stop_cmd = "/usr/bin/monstop"

View File

@ -1,6 +1,5 @@
# Handles the commandline stuff # Handles the commandline stuff
import sys
import os import os
import logging import logging
import glob import glob
@ -11,7 +10,6 @@ from pwnagotchi.utils import download_file, unzip, save_config, parse_version, m
from pwnagotchi.plugins import default_path from pwnagotchi.plugins import default_path
REPO_URL = 'https://github.com/evilsocket/pwnagotchi-plugins-contrib/archive/master.zip'
SAVE_DIR = '/usr/local/share/pwnagotchi/availaible-plugins/' SAVE_DIR = '/usr/local/share/pwnagotchi/availaible-plugins/'
DEFAULT_INSTALL_PATH = '/usr/local/share/pwnagotchi/installed-plugins/' DEFAULT_INSTALL_PATH = '/usr/local/share/pwnagotchi/installed-plugins/'
@ -75,7 +73,7 @@ def handle_cmd(args, config):
Parses the arguments and does the thing the user wants Parses the arguments and does the thing the user wants
""" """
if args.plugincmd == 'update': if args.plugincmd == 'update':
return update() return update(config)
elif args.plugincmd == 'search': elif args.plugincmd == 'search':
args.installed = True # also search in installed plugins args.installed = True # also search in installed plugins
return list_plugins(args, config, args.pattern) return list_plugins(args, config, args.pattern)
@ -349,41 +347,48 @@ def _analyse_dir(path):
return results return results
def update(): def update(config):
""" """
Updates the database Updates the database
""" """
global REPO_URL, SAVE_DIR global SAVE_DIR
DEST = os.path.join(SAVE_DIR, 'plugins.zip') urls = config['main']['custom_plugin_repos']
logging.info('Downloading plugins to %s', DEST) if not urls:
logging.info('No plugin repositories configured.')
try:
os.makedirs(SAVE_DIR, exist_ok=True)
before_update = _analyse_dir(SAVE_DIR)
download_file(REPO_URL, os.path.join(SAVE_DIR, DEST))
logging.info('Unzipping...')
unzip(DEST, SAVE_DIR, strip_dirs=1)
after_update = _analyse_dir(SAVE_DIR)
b_len = len(before_update)
a_len = len(after_update)
if a_len > b_len:
logging.info('Found %d new file(s).', a_len - b_len)
changed = 0
for filename, filehash in after_update.items():
if filename in before_update and filehash != before_update[filename]:
changed += 1
if changed:
logging.info('%d file(s) were changed.', changed)
return 0
except Exception as ex:
logging.error('Error while updating plugins %s', ex)
return 1 return 1
rc = 0
DEST = os.path.join(SAVE_DIR, 'plugins.zip')
for REPO_URL in urls:
logging.info('Downloading plugins from %s to %s', REPO_URL, DEST)
try:
os.makedirs(SAVE_DIR, exist_ok=True)
before_update = _analyse_dir(SAVE_DIR)
download_file(REPO_URL, os.path.join(SAVE_DIR, DEST))
logging.info('Unzipping...')
unzip(DEST, SAVE_DIR, strip_dirs=1)
after_update = _analyse_dir(SAVE_DIR)
b_len = len(before_update)
a_len = len(after_update)
if a_len > b_len:
logging.info('Found %d new file(s).', a_len - b_len)
changed = 0
for filename, filehash in after_update.items():
if filename in before_update and filehash != before_update[filename]:
changed += 1
if changed:
logging.info('%d file(s) were changed.', changed)
except Exception as ex:
logging.error('Error while updating plugins: %s', ex)
rc = 1
return rc