Commit 4357cf82 authored by Niklas Korz's avatar Niklas Korz
Browse files

ente-auth: automatically update gitHashes

parent e53d0da0
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
#!/usr/bin/env nix-shell
#!nix-shell -i python3 -p nix-prefetch-git

from dataclasses import dataclass
import json
import subprocess


@dataclass
class GitDependency:
    name: str
    url: str
    revision: str


def get_git_deps(lock_data):
    for name, data in lock_data["packages"].items():
        if data["source"] == "git":
            desc = data["description"]
            yield GitDependency(
                name=name,
                url=desc["url"],
                revision=desc["resolved-ref"],
            )


def nix_prefetch_git(url: str, rev: str):
    result = subprocess.run(
        ["nix-prefetch-git", url, rev],
        check=True,
        text=True,
        stdout=subprocess.PIPE,
    )
    return json.loads(result.stdout)


if __name__ == "__main__":
    with open("pubspec.lock.json") as lock_file:
        lock_data = json.load(lock_file)
    git_hashes = {}
    for dep in get_git_deps(lock_data):
        data = nix_prefetch_git(dep.url, dep.revision)
        git_hashes[dep.name] = data["hash"]
    with open("git-hashes.json", "w") as output_file:
        json.dump(git_hashes, output_file, indent=2)
        output_file.write("\n")
+7 −0
Original line number Diff line number Diff line
{
  "ente_crypto_dart": "sha256-xBBK9BdXh4+OTj+Jkf3zh5sMZjXtvhyuE1R5LFE8iTY=",
  "figma_squircle": "sha256-FLjABaJzrK3H5svbRb6306FxD5L6dMfddFXpXpYgH3s=",
  "flutter_local_authentication": "sha256-r50jr+81ho+7q2PWHLf4VnvNJmhiARZ3s4HUpThCgc0=",
  "flutter_secure_storage_linux": "sha256-Rp+b6ZRH7F5AnM5UvYzfVjprXkpeeA7V6Ep/oYqDeiM=",
  "sqflite": "sha256-+XTVtkFJ94VifwnutvUuAqqiyWwrcEiZ3Uz0H4D9zWA="
}
+1 −8
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ flutter324.buildFlutterApplication rec {
  sourceRoot = "${src.name}/auth";

  pubspecLock = lib.importJSON ./pubspec.lock.json;
  gitHashes = lib.importJSON ./git-hashes.json;

  patches = [
    # Disable update notifications and auto-update functionality
@@ -41,14 +42,6 @@ flutter324.buildFlutterApplication rec {
    ln -s ${simple-icons} assets/simple-icons
  '';

  gitHashes = {
    ente_crypto_dart = "sha256-xBBK9BdXh4+OTj+Jkf3zh5sMZjXtvhyuE1R5LFE8iTY=";
    flutter_local_authentication = "sha256-r50jr+81ho+7q2PWHLf4VnvNJmhiARZ3s4HUpThCgc0=";
    flutter_secure_storage_linux = "sha256-Rp+b6ZRH7F5AnM5UvYzfVjprXkpeeA7V6Ep/oYqDeiM=";
    sqflite = "sha256-+XTVtkFJ94VifwnutvUuAqqiyWwrcEiZ3Uz0H4D9zWA=";
    figma_squircle = "sha256-FLjABaJzrK3H5svbRb6306FxD5L6dMfddFXpXpYgH3s=";
  };

  nativeBuildInputs = [
    copyDesktopItems
    makeWrapper
+9 −2
Original line number Diff line number Diff line
@@ -19,16 +19,23 @@ echo "Updating to $short_version"
# Subtree needed for lockfile and icons
auth_tree="$(gh-curl "https://api.github.com/repos/ente-io/ente/git/trees/$version" | gojq '.tree[] | select(.path == "auth") | .url' --raw-output)"

pushd "$pkg_dir"

# Get lockfile, filter out incompatible sqlite dependency and convert to JSON
echo "Updating lockfile"
pubspec_lock="$(gh-curl "$auth_tree" | gojq '.tree[] | select(.path == "pubspec.lock") | .url' --raw-output)"
gh-curl "$pubspec_lock" | gojq '.content | @base64d' --raw-output | gojq --yaml-input 'del(.packages.sqlite3_flutter_libs)' > "$pkg_dir/pubspec.lock.json"
gh-curl "$pubspec_lock" | gojq '.content | @base64d' --raw-output | gojq --yaml-input 'del(.packages.sqlite3_flutter_libs)' > pubspec.lock.json

echo "Updating git hashes"
./fetch-git-hashes.py

# Get rev and hash of simple-icons submodule
echo "Updating icons"
assets_tree="$(gh-curl "$auth_tree" | gojq '.tree[] | select(.path == "assets") | .url' --raw-output)"
simple_icons_rev="$(gh-curl "$assets_tree" | gojq '.tree[] | select(.path == "simple-icons") | .sha' --raw-output)"
nix-prefetch-github --rev "$simple_icons_rev" simple-icons simple-icons > "$pkg_dir/simple-icons.json"
nix-prefetch-github --rev "$simple_icons_rev" simple-icons simple-icons > simple-icons.json

popd

# Update package version and hash
echo "Updating package source"