Universal core library for Forgejo repository synchronization.
Project description
forgejo-sync-manager-core v1.0.2
Universal core library for Forgejo repository synchronization.
⚠️ Disclaimer
By using this software, you agree to the full disclaimer terms.
Summary: Software provided "AS IS" without warranty. You assume all risks.
Full legal disclaimer: See DISCLAIMER.md
Overview
forgejo-sync-manager-core is a reusable Python library that provides the core functionality for synchronizing Forgejo repositories. It is designed to be used by both CLI and GUI applications, ensuring code reuse and consistency across different interfaces.
Features
- Forgejo API client with token-based authentication
- Repository discovery with pagination support
- Git repository cloning and updating
- Repository recloning functionality
- Local repository existence checking
- Path management for local storage
- Cross-platform support (Linux, Windows, macOS)
- Abstract base classes for easy extension
Implementations
This core library is used in the following projects:
| Project | Description | Repository |
|---|---|---|
| forgejo-sync-manager-cli | CLI tool for batch synchronization | GitHub |
| forgejo-sync-manager-gui | Desktop GUI tool for batch synchronization | GitHub |
Components
Core Classes
| Class | Description |
|---|---|
ForgejoAuth |
Authentication container for server URL and token |
ForgejoAPIClient |
API client for Forgejo REST API |
ConfigManager |
Configuration file management (JSON) |
BaseSyncManager |
Abstract base class for sync operations |
Sync Managers
| Class | Purpose |
|---|---|
GUISyncManager |
Lightweight manager for GUI applications (no console output) |
CLISyncManager |
Full-featured manager with console progress output |
Requirements
- Python 3.8+
- Git
- Forgejo server with API access
- requests library
Installation
git clone https://github.com/smartlegionlab/forgejo-sync-manager-core.git
cd forgejo-sync-manager-core
python -m venv venv
pip install -r requirements.txt
Usage
Basic Authentication
from forgejo_sync_manager_core.core.auth import ForgejoAuth
auth = ForgejoAuth(
token="your_token",
server_url="http://localhost:3000",
username="your_username"
)
API Client
from forgejo_sync_manager_core.core.api_client import ForgejoAPIClient
client = ForgejoAPIClient(auth)
user_info = client.get_user_info()
repositories = client.get_user_repos()
Sync Manager for GUI Applications
from forgejo_sync_manager_core.core.sync_manager_gui import GUISyncManager
sync_manager = GUISyncManager(auth)
sync_manager.ensure_directories()
for repo in repositories:
status = sync_manager.sync_repository(repo)
# status: "CLONED", "UPDATED", "FAILED"
Sync Manager for CLI Applications
from forgejo_sync_manager_core.core.sync_manager_cli import CLISyncManager
sync_manager = CLISyncManager(auth)
results = sync_manager.sync_all_repositories(repositories)
# results: {"cloned": 0, "updated": 0, "failed": 0}
Check Repository Updates (CLI only)
from forgejo_sync_manager_core.core.sync_manager_cli import CLISyncManager
sync_manager = CLISyncManager(auth)
needs_update = sync_manager.check_updates(repositories)
print(f"Repositories needing update: {len(needs_update)}")
Local Repository Management
# Check if repository exists locally
exists = sync_manager.repo_exists_locally("repo-name")
# Get path to local repository
repo_path = sync_manager.get_repo_path("repo-name")
Configuration
Configuration is stored in ~/forgejo-sync-manager/config.json:
{
"token": "your_access_token",
"server_url": "http://localhost:3000",
"username": "your_username"
}
Return Status Codes
| Status | Description |
|---|---|
CLONED |
Repository was successfully cloned |
UPDATED |
Existing repository was successfully updated |
RECLONED |
Repository was deleted and re-cloned |
FAILED |
Operation failed |
How It Works
- Authentication: Token-based authentication via Forgejo API
- Repository Discovery: Fetches complete repository list with pagination (50 per page)
- Update Detection (CLI only): For each existing repository, executes
git fetchand comparesHEADwithFETCH_HEAD - Sync Operations: Uses authenticated URLs with embedded token for Git operations
- Directory Structure:
~/forgejo-sync-manager/{username}/repositories/
License
Copyright (©) 2026, Alexander Suvorov All rights reserved.
Related Projects
- forgejo-sync-manager - CLI implementation
- forgejo-sync-manager-gui - GUI implementation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file forgejo_sync_manager_core-1.0.2.tar.gz.
File metadata
- Download URL: forgejo_sync_manager_core-1.0.2.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43db6cb2941548b11057aa7ce9f1294243408e050d2310666eb6147355e2e6e0
|
|
| MD5 |
927d6c8b12bcf1e3f104888b76422a77
|
|
| BLAKE2b-256 |
7839347aa06b3e1d341cb1e0bc686c9cf252b29cfc3584c4b713f1f0aecc9c32
|
File details
Details for the file forgejo_sync_manager_core-1.0.2-py3-none-any.whl.
File metadata
- Download URL: forgejo_sync_manager_core-1.0.2-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8a879fbbd060e1560a7f88e6d681aa0272d14893cb7a102cd49162a9b12f8c2
|
|
| MD5 |
f3610fa5666bae57fcbfd91e3021e671
|
|
| BLAKE2b-256 |
0c71329d1ec9042b4253b49147bce594cd13a986f485d427ee2b5784e5a2cf24
|