# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0

{ depot, lib, pkgs, ... }:
let
  cfg = let
    macOS = system: {
      stage = "build";
      image = "nixos/nix:latest";
      script = [
        "nix run -f ./ third_party.nixpkgs.bash -c ./hack/populate_secrets.sh"
        "nix build -v -f ./ci-root.nix --argstr system ${system} --substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
        "nix copy -v --to 's3://lukegb-nix-cache?endpoint=storage.googleapis.com' ./result"
      ];
      allow_failure = true;
      tags = [ "macos" ];
    };
  in {
    stages = [ "build" "deploy" ];

    nixCache = {
      stage = "build";
      image = "nixos/nix:latest";
      script = [
        "nix run -f ./ third_party.nixpkgs.bash -c ./hack/populate_secrets.sh"
        "nix build -v -f ./ci-root.nix --substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\""
        "nix copy -v --to 's3://lukegb-nix-cache?endpoint=storage.googleapis.com' ./result"
        "cat ./result/other-systemPathJSON > systems.json"
      ];
      artifacts = {
        paths = [ "systems.json" ];
        expire_in = "30 days";
      };
      tags = [ "cacher" ];
    };

    nixCacheMacOSIntel = macOS "x86_64-darwin";
    nixCacheMacOSARM = macOS "aarch64-darwin";

    lukegbcom = {
      stage = "deploy";
      needs = [{ job = "nixCache"; artifacts = false; }];
      tags = [ "cacher" ];
      only.refs = [ "branch/default" ];

      script = ''
        export NIX_PATH=nixpkgs=$(readlink -f third_party/nixpkgs)
        cd web/lukegbcom
        ./deploy.sh
      '';
    };
  } // (lib.mapAttrs deployStage deployMachs);

  deployMachs = lib.filterAttrs (name: cfg: cfg.config.my.deploy.enable) depot.ops.nixos.systemConfigs;
  deployStage = machName: mach: ({
    stage = "deploy";
    needs = [{ job = "nixCache"; artifacts = true; }];
    tags = [ "deployer" ];

    resource_group = machName;
    script = ''./hack/deploy.sh "${machName}" "${mach.config.my.deploy.args}"'';
    environment = {
      name = machName;
    };
    allow_failure = true;

    only.refs = [ "branch/default" ];
  } // lib.optionalAttrs (!mach.config.my.deploy.enable) {
    when = "manual";
  });

  format = pkgs.formats.yaml { };
  configFile = format.generate ".gitlab-ci.yml" cfg;
in
  configFile