* ci: auto-release workflow on merge to main Rewrite .github/workflows/release.yml to trigger on every push to main instead of manual tag pushes. The workflow now: - Computes version as 0.YYYYMMDD.GITHUB_RUN_NUMBER - Builds aarch64-apple-darwin and x86_64-apple-darwin in parallel - Merges them into a universal binary using lipo - Creates a universal .dmg and signed updater tarball - Generates latest.json with per-arch and universal platform entries - Publishes a GitHub Release with auto-generated release notes - Updates a GitHub Pages release history site (gh-pages branch) Product decisions: - Universal binary approach: copy arm64 .app as base, lipo the main executable, keep everything else from arm64 (shared frameworks are architecture-independent). This is the standard Tauri pattern. - Per-arch updater tarballs are also uploaded so the Tauri updater can download the correct arch-specific build (smaller download). - Release notes are auto-generated from git log since last tag. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: github pages with release history Use peaceiris/actions-gh-pages@v4 to deploy a release history site. The page fetches releases.json (also deployed) and renders each release with date, notes, and download links for .dmg files. This handles the gh-pages branch creation automatically on first run. The page is available at https://refactoringhq.github.io/laputa-app/ Product decision: used fetch() to load releases.json at runtime instead of inlining it, which is cleaner and avoids shell escaping issues with release note content. The releases.json is deployed alongside index.html. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: in-app update notification UI Replace the old window.confirm updater with a proper React-based update notification system: - useUpdater hook now exposes state machine (idle → available → downloading → ready) and actions (startDownload, openReleaseNotes, dismiss) - UpdateBanner component renders at the top of the app shell: - "Available" state: shows version, Release Notes link, Update Now button, dismiss X - "Downloading" state: animated spinner, progress bar with percentage - "Ready" state: Restart Now button to apply the update - Silently checks on startup after 3s delay; fails silently on network errors or 404 - Release Notes link opens the GitHub Pages release history site Product decisions: - Banner at top of app (not a modal) — non-intrusive, visible but not blocking. User can dismiss and continue working. - Progress bar shows during download so user knows it's working. - Separate "Restart Now" state after download so user controls when the app restarts (they may have unsaved work). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: updater component tests Rewrite useUpdater hook tests and add UpdateBanner component tests: Hook tests (10 cases): - Starts in idle state - Does nothing when not in Tauri - Checks for updates after 3s delay - Stays idle when no update available - Transitions to available when update found - Handles missing release body gracefully - Stays idle on network error (fails silently) - Dismiss returns to idle - openReleaseNotes opens correct URL - startDownload transitions through downloading to ready Component tests (10 cases): - Renders nothing when idle - Renders nothing on error - Shows version and buttons when available - Update Now calls startDownload - Release Notes calls openReleaseNotes - Dismiss button works - Shows progress bar during download - Shows 0% at start of download - Shows restart button when ready - Restart button calls restartApp All 457 tests pass. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * design: auto-build-release wireframes Copy ui-design.pen as base. Frames to be added for: 1. Update notification banner (visible state) — horizontal bar at top of app shell with version text, Release Notes link, Update Now button, and dismiss X 2. Update download progress state — spinner icon, progress bar with percentage, downloading text 3. "Restart to apply" state — green accent, version text, Restart Now button Note: Pencil editor was not available during this session. The base design file is committed; frames will be added when the editor is accessible. The implemented component (UpdateBanner.tsx) serves as the source of truth for the design. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: update ARCHITECTURE.md with release/update system Add comprehensive documentation for: - Release pipeline (4-phase workflow: version → build → release → pages) - Versioning scheme (0.YYYYMMDD.RUN_NUMBER) - Universal binary strategy (lipo merge) - Updater endpoint and latest.json manifest - In-app update UI state machine - GitHub Pages release history site Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: rustfmt formatting * fix: rustfmt build.rs --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
365 lines
12 KiB
Rust
365 lines
12 KiB
Rust
use serde::{Deserialize, Serialize};
|
|
use std::path::Path;
|
|
use std::process::Command;
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
pub struct GithubRepo {
|
|
pub name: String,
|
|
pub full_name: String,
|
|
pub description: Option<String>,
|
|
pub private: bool,
|
|
pub clone_url: String,
|
|
pub html_url: String,
|
|
pub updated_at: Option<String>,
|
|
}
|
|
|
|
/// Lists the authenticated user's GitHub repositories.
|
|
pub async fn github_list_repos(token: &str) -> Result<Vec<GithubRepo>, String> {
|
|
let client = reqwest::Client::new();
|
|
let mut all_repos: Vec<GithubRepo> = Vec::new();
|
|
let mut page = 1u32;
|
|
|
|
loop {
|
|
let url = format!(
|
|
"https://api.github.com/user/repos?per_page=100&sort=updated&page={}",
|
|
page
|
|
);
|
|
let response = client
|
|
.get(&url)
|
|
.header("Authorization", format!("Bearer {}", token))
|
|
.header("Accept", "application/vnd.github+json")
|
|
.header("User-Agent", "Laputa-App")
|
|
.header("X-GitHub-Api-Version", "2022-11-28")
|
|
.send()
|
|
.await
|
|
.map_err(|e| format!("GitHub API request failed: {}", e))?;
|
|
|
|
if !response.status().is_success() {
|
|
let status = response.status();
|
|
let body = response.text().await.unwrap_or_default();
|
|
return Err(format!("GitHub API error {}: {}", status, body));
|
|
}
|
|
|
|
let repos: Vec<GithubRepo> = response
|
|
.json()
|
|
.await
|
|
.map_err(|e| format!("Failed to parse GitHub response: {}", e))?;
|
|
|
|
let count = repos.len();
|
|
all_repos.extend(repos);
|
|
|
|
if count < 100 {
|
|
break;
|
|
}
|
|
page += 1;
|
|
if page > 10 {
|
|
break; // safety limit: 1000 repos max
|
|
}
|
|
}
|
|
|
|
Ok(all_repos)
|
|
}
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
struct CreateRepoResponse {
|
|
name: String,
|
|
full_name: String,
|
|
description: Option<String>,
|
|
private: bool,
|
|
clone_url: String,
|
|
html_url: String,
|
|
updated_at: Option<String>,
|
|
}
|
|
|
|
/// Creates a new GitHub repository for the authenticated user.
|
|
pub async fn github_create_repo(
|
|
token: &str,
|
|
name: &str,
|
|
private: bool,
|
|
) -> Result<GithubRepo, String> {
|
|
let client = reqwest::Client::new();
|
|
let body = serde_json::json!({
|
|
"name": name,
|
|
"private": private,
|
|
"auto_init": true,
|
|
"description": "Laputa vault"
|
|
});
|
|
|
|
let response = client
|
|
.post("https://api.github.com/user/repos")
|
|
.header("Authorization", format!("Bearer {}", token))
|
|
.header("Accept", "application/vnd.github+json")
|
|
.header("User-Agent", "Laputa-App")
|
|
.header("X-GitHub-Api-Version", "2022-11-28")
|
|
.json(&body)
|
|
.send()
|
|
.await
|
|
.map_err(|e| format!("GitHub API request failed: {}", e))?;
|
|
|
|
if !response.status().is_success() {
|
|
let status = response.status();
|
|
let body = response.text().await.unwrap_or_default();
|
|
if status.as_u16() == 422 && body.contains("name already exists") {
|
|
return Err("Repository name already exists on your account".to_string());
|
|
}
|
|
return Err(format!("GitHub API error {}: {}", status, body));
|
|
}
|
|
|
|
let created: CreateRepoResponse = response
|
|
.json()
|
|
.await
|
|
.map_err(|e| format!("Failed to parse GitHub response: {}", e))?;
|
|
|
|
Ok(GithubRepo {
|
|
name: created.name,
|
|
full_name: created.full_name,
|
|
description: created.description,
|
|
private: created.private,
|
|
clone_url: created.clone_url,
|
|
html_url: created.html_url,
|
|
updated_at: created.updated_at,
|
|
})
|
|
}
|
|
|
|
/// Clones a GitHub repo to a local path using HTTPS + token auth.
|
|
pub fn clone_repo(url: &str, token: &str, local_path: &str) -> Result<String, String> {
|
|
let dest = Path::new(local_path);
|
|
|
|
if dest.exists()
|
|
&& dest
|
|
.read_dir()
|
|
.map(|mut d| d.next().is_some())
|
|
.unwrap_or(false)
|
|
{
|
|
return Err(format!(
|
|
"Destination '{}' already exists and is not empty",
|
|
local_path
|
|
));
|
|
}
|
|
|
|
// Inject token into HTTPS URL: https://github.com/... → https://oauth2:TOKEN@github.com/...
|
|
let auth_url = inject_token_into_url(url, token)?;
|
|
|
|
let output = Command::new("git")
|
|
.args(["clone", "--progress", &auth_url, local_path])
|
|
.output()
|
|
.map_err(|e| format!("Failed to run git clone: {}", e))?;
|
|
|
|
if !output.status.success() {
|
|
// Clean up partial clone on failure
|
|
if dest.exists() {
|
|
let _ = std::fs::remove_dir_all(dest);
|
|
}
|
|
let stderr = String::from_utf8_lossy(&output.stderr);
|
|
return Err(format!("git clone failed: {}", stderr));
|
|
}
|
|
|
|
// Configure the remote to use token auth for future pushes
|
|
configure_remote_auth(local_path, url, token)?;
|
|
|
|
Ok(format!("Cloned to {}", local_path))
|
|
}
|
|
|
|
/// Injects an OAuth token into an HTTPS GitHub URL.
|
|
fn inject_token_into_url(url: &str, token: &str) -> Result<String, String> {
|
|
if let Some(rest) = url.strip_prefix("https://github.com/") {
|
|
Ok(format!("https://oauth2:{}@github.com/{}", token, rest))
|
|
} else if let Some(rest) = url.strip_prefix("https://") {
|
|
// Handle URLs that already have a host
|
|
Ok(format!("https://oauth2:{}@{}", token, rest))
|
|
} else {
|
|
Err(format!(
|
|
"Unsupported URL format: {}. Use an HTTPS URL.",
|
|
url
|
|
))
|
|
}
|
|
}
|
|
|
|
/// Sets up the git remote to use token-based HTTPS auth.
|
|
fn configure_remote_auth(local_path: &str, original_url: &str, token: &str) -> Result<(), String> {
|
|
let auth_url = inject_token_into_url(original_url, token)?;
|
|
let vault = Path::new(local_path);
|
|
|
|
let output = Command::new("git")
|
|
.args(["remote", "set-url", "origin", &auth_url])
|
|
.current_dir(vault)
|
|
.output()
|
|
.map_err(|e| format!("Failed to configure remote: {}", e))?;
|
|
|
|
if !output.status.success() {
|
|
let stderr = String::from_utf8_lossy(&output.stderr);
|
|
return Err(format!("Failed to set remote URL: {}", stderr));
|
|
}
|
|
|
|
// Also configure git user if not set
|
|
let _ = Command::new("git")
|
|
.args(["config", "user.email", "laputa@app.local"])
|
|
.current_dir(vault)
|
|
.output();
|
|
let _ = Command::new("git")
|
|
.args(["config", "user.name", "Laputa App"])
|
|
.current_dir(vault)
|
|
.output();
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use std::process::Command as StdCommand;
|
|
|
|
#[test]
|
|
fn test_inject_token_basic_github_url() {
|
|
let url = "https://github.com/user/repo.git";
|
|
let token = "gho_abc123";
|
|
let result = inject_token_into_url(url, token).unwrap();
|
|
assert_eq!(result, "https://oauth2:gho_abc123@github.com/user/repo.git");
|
|
}
|
|
|
|
#[test]
|
|
fn test_inject_token_generic_https_url() {
|
|
let url = "https://gitlab.com/user/repo.git";
|
|
let token = "glpat-abc";
|
|
let result = inject_token_into_url(url, token).unwrap();
|
|
assert_eq!(result, "https://oauth2:glpat-abc@gitlab.com/user/repo.git");
|
|
}
|
|
|
|
#[test]
|
|
fn test_inject_token_ssh_url_rejected() {
|
|
let url = "git@github.com:user/repo.git";
|
|
let result = inject_token_into_url(url, "token");
|
|
assert!(result.is_err());
|
|
assert!(result.unwrap_err().contains("Unsupported URL format"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_inject_token_http_url_rejected() {
|
|
let url = "http://github.com/user/repo.git";
|
|
let result = inject_token_into_url(url, "token");
|
|
assert!(result.is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_inject_token_github_without_dot_git() {
|
|
let url = "https://github.com/user/repo";
|
|
let result = inject_token_into_url(url, "tok").unwrap();
|
|
assert_eq!(result, "https://oauth2:tok@github.com/user/repo");
|
|
}
|
|
|
|
#[test]
|
|
fn test_clone_repo_nonempty_dest() {
|
|
let dir = tempfile::TempDir::new().unwrap();
|
|
let path = dir.path();
|
|
std::fs::write(path.join("existing.txt"), "data").unwrap();
|
|
|
|
let result = clone_repo(
|
|
"https://github.com/test/repo.git",
|
|
"token",
|
|
path.to_str().unwrap(),
|
|
);
|
|
assert!(result.is_err());
|
|
assert!(result.unwrap_err().contains("not empty"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_clone_repo_ssh_url_rejected() {
|
|
let dir = tempfile::TempDir::new().unwrap();
|
|
let dest = dir.path().join("new-clone");
|
|
|
|
let result = clone_repo(
|
|
"git@github.com:user/repo.git",
|
|
"token",
|
|
dest.to_str().unwrap(),
|
|
);
|
|
assert!(result.is_err());
|
|
assert!(result.unwrap_err().contains("Unsupported URL format"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_clone_repo_empty_dest_allowed() {
|
|
// An empty existing directory should not be rejected
|
|
let dir = tempfile::TempDir::new().unwrap();
|
|
let dest = dir.path().join("empty-dir");
|
|
std::fs::create_dir(&dest).unwrap();
|
|
|
|
// This will fail at the git clone step (invalid URL) but should pass the directory check
|
|
let result = clone_repo(
|
|
"https://github.com/nonexistent/repo.git",
|
|
"token",
|
|
dest.to_str().unwrap(),
|
|
);
|
|
assert!(result.is_err());
|
|
// Should fail at git clone, not at directory check
|
|
assert!(result.unwrap_err().contains("git clone failed"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_configure_remote_auth_on_git_repo() {
|
|
let dir = tempfile::TempDir::new().unwrap();
|
|
let path = dir.path();
|
|
|
|
// Initialize a git repo
|
|
StdCommand::new("git")
|
|
.args(["init"])
|
|
.current_dir(path)
|
|
.output()
|
|
.unwrap();
|
|
StdCommand::new("git")
|
|
.args([
|
|
"remote",
|
|
"add",
|
|
"origin",
|
|
"https://github.com/user/repo.git",
|
|
])
|
|
.current_dir(path)
|
|
.output()
|
|
.unwrap();
|
|
|
|
let result = configure_remote_auth(
|
|
path.to_str().unwrap(),
|
|
"https://github.com/user/repo.git",
|
|
"gho_test123",
|
|
);
|
|
assert!(result.is_ok());
|
|
|
|
// Verify the remote URL was updated
|
|
let output = StdCommand::new("git")
|
|
.args(["remote", "get-url", "origin"])
|
|
.current_dir(path)
|
|
.output()
|
|
.unwrap();
|
|
let url = String::from_utf8_lossy(&output.stdout).trim().to_string();
|
|
assert_eq!(url, "https://oauth2:gho_test123@github.com/user/repo.git");
|
|
}
|
|
|
|
#[test]
|
|
fn test_github_repo_serialization() {
|
|
let repo = GithubRepo {
|
|
name: "test-repo".to_string(),
|
|
full_name: "user/test-repo".to_string(),
|
|
description: Some("A test repo".to_string()),
|
|
private: true,
|
|
clone_url: "https://github.com/user/test-repo.git".to_string(),
|
|
html_url: "https://github.com/user/test-repo".to_string(),
|
|
updated_at: Some("2026-02-20T10:00:00Z".to_string()),
|
|
};
|
|
let json = serde_json::to_string(&repo).unwrap();
|
|
let parsed: GithubRepo = serde_json::from_str(&json).unwrap();
|
|
assert_eq!(parsed.name, "test-repo");
|
|
assert_eq!(parsed.full_name, "user/test-repo");
|
|
assert!(parsed.private);
|
|
assert_eq!(parsed.description, Some("A test repo".to_string()));
|
|
}
|
|
|
|
#[test]
|
|
fn test_github_repo_deserialization_null_fields() {
|
|
let json = r#"{"name":"r","full_name":"u/r","description":null,"private":false,"clone_url":"https://x","html_url":"https://y","updated_at":null}"#;
|
|
let repo: GithubRepo = serde_json::from_str(json).unwrap();
|
|
assert_eq!(repo.name, "r");
|
|
assert!(repo.description.is_none());
|
|
assert!(repo.updated_at.is_none());
|
|
assert!(!repo.private);
|
|
}
|
|
}
|