# Clean any existing reports.
rm -r ./gitleaks;
rm -r ./trivy;
rm -r ./grype;
rm -r ./syft;
rm -r ./snyk;
rm -r ./deps;
rm ./index.html;

# Create the directories for the reports.
mkdir ./gitleaks;
mkdir ./trivy;
mkdir ./grype;
mkdir ./syft;
mkdir ./snyk;
mkdir ./deps;

# List of repositories to scan.
repositories=("typescript-config" "boost-monitor" "tingle-bot" "rig-task-bot" "blog" "mod-logs" "a4p-bot" "mod-bot" "rosalia-nightsong" "eslint-config" "logger" "aria-iuvo" "cordelia-taryne" "melody-iuvo" "nginx-configs" "website-headers" "discord-rpc" "portfolio" "forms" "static-pages" "ocean-breeze" "becca-lyria" "docs" "gwen-abalise" "nails" "maylin-taryne");
html=();
current_dir=$(pwd);

for directory in "${repositories[@]}"; do
  echo "Scanning $directory";

  git clone https://git.nhcarrigan.com/nhcarrigan/$directory ./_repos/$directory;

  # Automated scanning tools
  gitleaks detect --source ./_repos/$directory -r ./gitleaks/$directory.json --no-banner;
  trivy repo --format json --output ./trivy/$directory.json ./_repos/$directory;
  grype -o json --file ./grype/$directory.json ./_repos/$directory;
  syft scan ./_repos/$directory -o json=./syft/$directory.json;

  # Need to move directories for Snyk to track the target correctly.
  cd ./_repos/$directory;
  snyk monitor --dev --project-name=$directory --remote-repo-url=$(git remote get-url origin) $current_dir/$directory;
  snyk test --dev --json --json-file-output=./_repos/security/snyk/$directory.json $current_dir/$directory;
  cd $current_dir;

  # Manual dependency version checks (no reliable package to do this for us :/ )
  echo "No supported package manager found in this project." > $current_dir/deps/$directory.txt;
  if [ -f ./_repos/$directory/package.json ]; then
    cd ./_repos/$directory;
    pnpm outdated | grep -v "^WARN" > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/Pipfile ]; then
    cd ./_repos/$directory;
    pip list --outdated > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/*.csproj ]; then
    cd ./_repos/$directory;
    dotnet list package --outdated > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/go.mod ]; then
    cd ./_repos/$directory;
    go list -m -u all > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/rockspec ]; then
    cd ./_repos/$directory;
    luarocks list --outdated > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/composer.json ]; then
    cd ./_repos/$directory;
    composer outdated --format=json > $current_dir/deps/$directory.json;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/Gemfile ]; then
    cd ./_repos/$directory;
    bundle outdated > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  if [ -f ./_repos/$directory/Cargo.toml ]; then
    cd ./_repos/$directory;
    cargo outdated > $current_dir/deps/$directory.txt;
    cd current_dir
  fi;
  html+=("<h2>$directory</h2><ul><li style='list-style-type: none;'><a href='./gitleaks/$directory.json'>Gitleaks</a></li><li style='list-style-type: none;'><a href='./trivy/$directory.json'>Trivy</a></li><li style='list-style-type: none;'><a href='./grype/$directory.json'>Grype</a></li><li style='list-style-type: none;'><a href='./syft/$directory.json'>Syft</a></li><li style='list-style-type: none;'><a href='./snyk/$directory.json'>Snyk</a></ul><li style='list-style-type: none;'><a href='./deps/$directory.txt'>Outdated Dependencies</a></ul>");

done;

rm -rf ./_repos;

echo "<!DOCTYPE html><html><head><title>Security Audits</title><meta charset=\"utf-8\" /><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" /><meta name=\"description\" content=\"A collection of the various reporting tools we run against our repositories.\" /><script src=\"https://cdn.nhcarrigan.com/headers/index.js\" async defer></script></head><body><main><h1>Security Audits</h1><section><p>A collection of the various reporting tools we run against our repositories.</p><p>Contributions to resolve a reported issue are welcomed!</p><p>Updated: ${date}</section><section>${html[*]}</section></main></body></html>" > ./index.html;