Compare commits
14
Commits
91bda21f89
...
0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb8f25d5ff | ||
|
|
34e558d31c | ||
|
|
c4dffb1dc6 | ||
|
|
4825c45a7c | ||
|
|
ac515400e0 | ||
|
|
be6146d5ad | ||
|
|
20e943a2b5 | ||
|
|
cf7bd8d70c | ||
|
|
de831beaaa | ||
|
|
9c028aaf5e | ||
|
|
8e349c961b | ||
|
|
14ea788522 | ||
|
|
4ff45b7c46 | ||
|
|
41e88144a4 |
@@ -19,3 +19,7 @@ GITLAB_URL=
|
|||||||
GITEA_USER=
|
GITEA_USER=
|
||||||
GITEA_TOKEN=
|
GITEA_TOKEN=
|
||||||
GITEA_URL=
|
GITEA_URL=
|
||||||
|
|
||||||
|
# Number of days of contribution history to keep in var/data/contributions.db.
|
||||||
|
# 0 (or unset) keeps history forever.
|
||||||
|
CONTRIBUTIONS_RETENTION_DAYS=0
|
||||||
|
|||||||
+39
-1
@@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.0] - 2026-07-12
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **Contribution history store (SQLite)** — `ContributionStore` persists each provider's daily counts in `var/data/contributions.db`; `ContributionAggregator` now fetches only the window since each provider's last stored date (plus a 3-day trailing overlap for late corrections), merges the result into the store, and prunes rows older than `CONTRIBUTIONS_RETENTION_DAYS`
|
||||||
|
- **`graph:contributions:refetch` console command** — forces a full or explicit-range re-fetch of contribution history, chunked into ≤365-day windows, for one, several, or all configured providers
|
||||||
|
- **Concurrent, non-blocking provider fetches** — `ProviderInterface::fetch()` split into `startFetch()`/`resolveFetch()` so GitHub, GitLab, and Gitea requests are in flight simultaneously instead of one after another
|
||||||
|
- **Bounded fetch windows** — `startFetch()`/`resolveFetch()` accept optional `$since`/`$until` bounds, used by both the incremental aggregator and the refetch command
|
||||||
|
- **PHPStan static analysis** — level 8 over `src/` and `tests/`, run via `composer phpstan`
|
||||||
|
- `Contribution` and `ContributionCollection` typed entities
|
||||||
|
- `CONTRIBUTIONS_RETENTION_DAYS` environment variable
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **Namespace renamed from `App` to `GitContributionGraph`** across the codebase, Composer autoloading, and routing config
|
||||||
|
- Removed the Guzzle and GraphQL client bundles — GitHub requests now go through Symfony's `HttpClientInterface` directly, the same as GitLab and Gitea
|
||||||
|
- HTTP client requests are capped (10s connect/first-byte timeout, 15s max duration) so a slow provider can no longer stall the render path
|
||||||
|
- `docker-compose.yml` and `docker-compose.prod.yml` mount a `data` volume for the SQLite store and pass through `CONTRIBUTIONS_RETENTION_DAYS`
|
||||||
|
- Dev Docker Compose override targets the `dev` build stage explicitly and mounts `vendor` read-write instead of as an anonymous volume
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `ContributionCollection`'s variadic constructor now re-indexes its arguments with `array_values()`, avoiding non-sequential keys that didn't match its declared property type
|
||||||
|
- `SvgRenderer` coerces `strtotime()` results to `int` before formatting dates
|
||||||
|
- `docker-compose.prod.yml` was missing the `data` volume and `CONTRIBUTIONS_RETENTION_DAYS` env var present in `docker-compose.yml`, so contribution history would not survive a container recreate on that deployment path
|
||||||
|
- `composer phpstan` no longer crashes with an out-of-memory error under the default 128M limit
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
- README and `CLAUDE.md` updated to describe the SQLite store, incremental fetch, refetch command, and PHPStan setup; corrected several stale examples (test path, `/health` sample response, Docker volume mounts)
|
||||||
|
- Added PHPDoc to the remaining public methods across `src/`
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
|
||||||
|
- Added tests for `ContributionStore`, `Contribution`, `ContributionCollection`, and `RefetchContributionsCommand`
|
||||||
|
- Extended provider and aggregator tests to cover `$since`/`$until` windowing, concurrent-fetch failure modes, and store interactions
|
||||||
|
|
||||||
## [0.1.0] - 2026-05-30
|
## [0.1.0] - 2026-05-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -42,6 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Docker multi-stage build (`base → deps → build → final`)
|
- Docker multi-stage build (`base → deps → build → final`)
|
||||||
- Basic `/health` endpoint
|
- Basic `/health` endpoint
|
||||||
|
|
||||||
[Unreleased]: https://github.com/ArthurErlich/git-contribution-graph/compare/0.1.0...HEAD
|
[Unreleased]: https://github.com/ArthurErlich/git-contribution-graph/compare/0.2.0...HEAD
|
||||||
|
[0.2.0]: https://github.com/ArthurErlich/git-contribution-graph/compare/0.1.0...0.2.0
|
||||||
[0.1.0]: https://github.com/ArthurErlich/git-contribution-graph/compare/0.0.1...0.1.0
|
[0.1.0]: https://github.com/ArthurErlich/git-contribution-graph/compare/0.0.1...0.1.0
|
||||||
[0.0.1]: https://github.com/ArthurErlich/git-contribution-graph/releases/tag/0.0.1
|
[0.0.1]: https://github.com/ArthurErlich/git-contribution-graph/releases/tag/0.0.1
|
||||||
|
|||||||
@@ -99,6 +99,9 @@ vendor/bin/phpunit tests/Unit/Service/SvgRendererTest.php
|
|||||||
|
|
||||||
# Run tests matching a filter
|
# Run tests matching a filter
|
||||||
vendor/bin/phpunit --filter it_renders
|
vendor/bin/phpunit --filter it_renders
|
||||||
|
|
||||||
|
# Static analysis (PHPStan level 8)
|
||||||
|
composer phpstan
|
||||||
```
|
```
|
||||||
|
|
||||||
On Windows, run via WSL (If Docker Desctop is not):
|
On Windows, run via WSL (If Docker Desctop is not):
|
||||||
@@ -190,20 +193,24 @@ There is no `composer.lock` in the repo. If you add or change dependencies, run
|
|||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
Single-controller Symfony app with no database. The request flow:
|
Single-controller Symfony app. Two-tier cache: a 1h filesystem SVG cache in front of a SQLite raw-data store, in front of the provider APIs. The request flow:
|
||||||
|
|
||||||
```
|
```
|
||||||
GET /graph.svg?theme=dark|light
|
GET /graph.svg?theme=dark|light
|
||||||
└─ GraphController
|
└─ GraphController
|
||||||
├─ host check (ALLOWED_HOSTS env, optional)
|
├─ host check (ALLOWED_HOSTS env, optional)
|
||||||
├─ cache lookup (filesystem, 1h TTL, key = "graph_{theme}")
|
├─ cache lookup (filesystem, 1h TTL, key = "graph_{theme}")
|
||||||
│ └─ on miss:
|
│ └─ on miss: ContributionAggregator::aggregate()
|
||||||
│ ├─ GitHubProvider → GitHub GraphQL API (contributionCalendar query)
|
│ ├─ per configured provider: ContributionStore::latestDate($name)
|
||||||
│ ├─ GitLabProvider → GitLab REST /users/:id/events (paginated, 100/page)
|
│ │ → $since = latest - 3 days (trailing overlap), or null on first run
|
||||||
│ └─ GiteaProvider → Gitea REST /api/v1/users/:user/heatmap
|
│ ├─ GitHubProvider → GitHub GraphQL API (contributionCalendar query, bounded by $since/$until)
|
||||||
│ each returns array<string, int> (Y-m-d => count)
|
│ ├─ GitLabProvider → GitLab REST /users/:id/events (paginated, 100/page, `after`/`before` bounded)
|
||||||
│ failures are caught and logged; remaining providers still render
|
│ ├─ GiteaProvider → Gitea REST /api/v1/users/:user/heatmap (filtered client-side by $since/$until)
|
||||||
│ └─ merge by date (sum counts across providers)
|
│ │ each returns array<string, int> (Y-m-d => count)
|
||||||
|
│ │ failures are caught and logged; remaining providers still render
|
||||||
|
│ ├─ ContributionStore::merge() persists fresh data per provider (SQLite upsert)
|
||||||
|
│ ├─ ContributionStore::all(sinceDays: 371) reads back the render window (source of truth)
|
||||||
|
│ ├─ ContributionStore::prune() drops rows older than CONTRIBUTIONS_RETENTION_DAYS
|
||||||
│ └─ SvgRenderer::render()
|
│ └─ SvgRenderer::render()
|
||||||
└─ Response: image/svg+xml, Cache-Control: public max-age=3600
|
└─ Response: image/svg+xml, Cache-Control: public max-age=3600
|
||||||
```
|
```
|
||||||
@@ -212,7 +219,11 @@ GET /graph.svg?theme=dark|light
|
|||||||
|
|
||||||
**SvgRenderer:** builds a 53-column × 7-row grid aligned so the last column always ends on the Saturday of the current week. Five intensity levels (0 contributions → level 0, 1–3 → 1, 4–6 → 2, 7–9 → 3, 10+ → 4) mapped to GitHub's exact colour tokens. No external assets — the SVG is fully self-contained.
|
**SvgRenderer:** builds a 53-column × 7-row grid aligned so the last column always ends on the Saturday of the current week. Five intensity levels (0 contributions → level 0, 1–3 → 1, 4–6 → 2, 7–9 → 3, 10+ → 4) mapped to GitHub's exact colour tokens. No external assets — the SVG is fully self-contained.
|
||||||
|
|
||||||
**Cache:** filesystem adapter (`var/cache/`), mounted as a Docker volume to survive container restarts. Theme is part of the cache key so dark and light are cached independently.
|
**SVG cache:** filesystem adapter (`var/cache/`), mounted as a Docker volume to survive container restarts. Theme is part of the cache key so dark and light are cached independently.
|
||||||
|
|
||||||
|
**ContributionStore:** PDO SQLite at `var/data/contributions.db` (also a Docker volume), table `contributions (provider, date unixtime, count)`. Keyed by `(provider, date)`, upserted via `INSERT ... ON CONFLICT`. Bounds every re-fetch to a 3-day trailing window off the last stored date per provider — the root fix for the full-365-day-refetch `MaxExecutionTimeError` that used to hit on every cache miss. `CONTRIBUTIONS_RETENTION_DAYS` controls how far back rows are kept (empty = forever).
|
||||||
|
|
||||||
|
**`graph:contributions:refetch` command:** manual escape hatch (`src/Command/RefetchContributionsCommand.php`) that bypasses the incremental trailing-window fetch and re-pulls a full or explicit date range. Options: `--provider=github,gitlab` (comma-separated, default all configured), `--from=YYYY-MM-DD` (default 365 days ago), `--to=YYYY-MM-DD` (default today), `--all` (shorthand for `--from=2005-01-01`). Splits the requested range into ≤365-day chunks (GitHub's GraphQL window limit; also caps GitLab pagination per call) and merges each chunk into the store as it completes, so a large `--all` run can't reintroduce the original runaway-pagination timeout.
|
||||||
|
|
||||||
## Environment variables
|
## Environment variables
|
||||||
|
|
||||||
@@ -224,5 +235,6 @@ GET /graph.svg?theme=dark|light
|
|||||||
| `GITLAB_URL` | No | Defaults to `https://gitlab.com` |
|
| `GITLAB_URL` | No | Defaults to `https://gitlab.com` |
|
||||||
| `GITEA_USER` / `GITEA_TOKEN` / `GITEA_URL` | For Gitea | Token scope: `read:user` |
|
| `GITEA_USER` / `GITEA_TOKEN` / `GITEA_URL` | For Gitea | Token scope: `read:user` |
|
||||||
| `ALLOWED_HOSTS` | No | Comma-separated hostnames; empty = allow all |
|
| `ALLOWED_HOSTS` | No | Comma-separated hostnames; empty = allow all |
|
||||||
|
| `CONTRIBUTIONS_RETENTION_DAYS` | No | Days of history to keep in the SQLite store; empty = keep forever |
|
||||||
|
|
||||||
Copy `.env` to `.env.local` for local development — `.env.local` is gitignored.
|
Copy `.env` to `.env.local` for local development — `.env.local` is gitignored.
|
||||||
|
|||||||
+1
-1
@@ -49,7 +49,7 @@ COPY --link docker/frankenphp/Caddyfile /etc/caddy/Caddyfile
|
|||||||
COPY --link docker/php/conf.d/20-app.prod.ini $PHP_INI_DIR/app.conf.d/
|
COPY --link docker/php/conf.d/20-app.prod.ini $PHP_INI_DIR/app.conf.d/
|
||||||
|
|
||||||
RUN chmod +x bin/console && \
|
RUN chmod +x bin/console && \
|
||||||
mkdir -p var/cache/prod/pools var/log /config/caddy /data/caddy && \
|
mkdir -p var/cache/prod/pools var/log var/data /config/caddy /data/caddy && \
|
||||||
chown -R app:app /app /config /data
|
chown -R app:app /app /config /data
|
||||||
|
|
||||||
USER app
|
USER app
|
||||||
|
|||||||
@@ -40,10 +40,14 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- .env.local
|
- .env.local
|
||||||
volumes:
|
volumes:
|
||||||
- cache:/var/www/html/var/cache
|
- cache:/app/var/cache/prod/pools
|
||||||
|
- logs:/app/var/log
|
||||||
|
- data:/app/var/data
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
cache:
|
cache:
|
||||||
|
logs:
|
||||||
|
data:
|
||||||
```
|
```
|
||||||
|
|
||||||
The image is published to the Gitea container registry. Pull it manually with:
|
The image is published to the Gitea container registry. Pull it manually with:
|
||||||
@@ -77,6 +81,9 @@ GITEA_URL=https://git.example.com
|
|||||||
|
|
||||||
# Optional: restrict to specific hostnames (comma-separated), leave empty to allow all
|
# Optional: restrict to specific hostnames (comma-separated), leave empty to allow all
|
||||||
ALLOWED_HOSTS=
|
ALLOWED_HOSTS=
|
||||||
|
|
||||||
|
# Optional: days of contribution history to keep in the SQLite store, empty/0 = keep forever
|
||||||
|
CONTRIBUTIONS_RETENTION_DAYS=
|
||||||
```
|
```
|
||||||
|
|
||||||
Only configure the platforms you use — unused ones are silently skipped.
|
Only configure the platforms you use — unused ones are silently skipped.
|
||||||
@@ -87,15 +94,26 @@ Only configure the platforms you use — unused ones are silently skipped.
|
|||||||
docker compose up -d
|
docker compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
The service listens on **port 8080** by default. Put Traefik or nginx in front of it for HTTPS.
|
The service listens on **port 8080** by default (served by FrankenPHP/Caddy, baked into the image — no separate PHP-FPM/nginx needed). Put Traefik or nginx in front of it only if you need HTTPS termination.
|
||||||
|
|
||||||
### 4. Verify
|
### 4. Verify
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl http://localhost:8080/health
|
curl http://localhost:8080/health
|
||||||
# {"status":"ok"}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"status": "ok",
|
||||||
|
"providers": {
|
||||||
|
"github": { "status": "ok" },
|
||||||
|
"gitlab": { "status": "ok" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Returns HTTP 503 with `"status": "degraded"` if any configured provider's probe fails (its entry then includes `error` and `message`).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## API
|
## API
|
||||||
@@ -201,28 +219,43 @@ vendor/bin/phpunit
|
|||||||
vendor/bin/phpunit --testdox
|
vendor/bin/phpunit --testdox
|
||||||
|
|
||||||
# Single file
|
# Single file
|
||||||
vendor/bin/phpunit tests/Unit/Service/SvgRendererTest.php
|
vendor/bin/phpunit tests/Unit/Service/Renderer/SvgRendererTest.php
|
||||||
|
|
||||||
# Filter by name
|
# Filter by name
|
||||||
vendor/bin/phpunit --filter it_renders
|
vendor/bin/phpunit --filter it_renders
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Static analysis
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer phpstan
|
||||||
|
```
|
||||||
|
|
||||||
|
Runs PHPStan at level 8 over `src/` and `tests/` (see `phpstan.neon`). First
|
||||||
|
run's findings are catalogued in [PHP-Stan-Errors.md](PHP-Stan-Errors.md).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
|
Two-tier cache: a 1h filesystem SVG cache in front of a SQLite raw-data store, in front of the provider APIs.
|
||||||
|
|
||||||
```
|
```
|
||||||
GET /graph.svg?theme=dark|light
|
GET /graph.svg?theme=dark|light
|
||||||
└─ GraphController
|
└─ GraphController
|
||||||
├─ host check (ALLOWED_HOSTS env, optional)
|
├─ host check (ALLOWED_HOSTS env, optional)
|
||||||
├─ cache lookup (filesystem, 1h TTL, key = "graph_{theme}")
|
├─ cache lookup (filesystem, 1h TTL, key = "graph_{theme}")
|
||||||
│ └─ on miss:
|
│ └─ on miss: ContributionAggregator::aggregate()
|
||||||
│ ├─ GitHubProvider → GitHub GraphQL API (contributionCalendar)
|
│ ├─ per configured provider: ContributionStore::latestDate($name)
|
||||||
│ ├─ GitLabProvider → GitLab REST API (/users/:id/events, paginated)
|
│ │ → $since = latest - 3 days (trailing overlap), or null on first run
|
||||||
│ └─ GiteaProvider → Gitea REST API (/users/:user/heatmap)
|
│ ├─ GitHubProvider → GitHub GraphQL API (contributionCalendar query, bounded by $since/$until)
|
||||||
│ each returns array<string, int> (Y-m-d => count)
|
│ ├─ GitLabProvider → GitLab REST /users/:id/events (paginated, 100/page, `after`/`before` bounded)
|
||||||
│ failures are caught and logged; remaining providers still render
|
│ ├─ GiteaProvider → Gitea REST /api/v1/users/:user/heatmap (filtered client-side by $since/$until)
|
||||||
│ └─ merge by date (sum counts across providers)
|
│ │ each returns array<string, int> (Y-m-d => count); providers fetch concurrently
|
||||||
|
│ │ (start/resolve split); failures are caught and logged, remaining providers still render
|
||||||
|
│ ├─ ContributionStore::merge() persists fresh data per provider (SQLite upsert)
|
||||||
|
│ ├─ ContributionStore::all(sinceDays: 371) reads back the render window (source of truth)
|
||||||
|
│ ├─ ContributionStore::prune() drops rows older than CONTRIBUTIONS_RETENTION_DAYS
|
||||||
│ └─ SvgRenderer::render()
|
│ └─ SvgRenderer::render()
|
||||||
└─ Response: image/svg+xml, Cache-Control: public max-age=3600
|
└─ Response: image/svg+xml, Cache-Control: public max-age=3600
|
||||||
```
|
```
|
||||||
@@ -231,7 +264,30 @@ GET /graph.svg?theme=dark|light
|
|||||||
|
|
||||||
**SvgRenderer:** builds a 53-column × 7-row grid aligned so the last column always ends on the Saturday of the current week. Five intensity levels (0 → level 0, 1–3 → 1, 4–6 → 2, 7–9 → 3, 10+ → 4) mapped to GitHub's colour tokens. No external assets — the SVG is fully self-contained.
|
**SvgRenderer:** builds a 53-column × 7-row grid aligned so the last column always ends on the Saturday of the current week. Five intensity levels (0 → level 0, 1–3 → 1, 4–6 → 2, 7–9 → 3, 10+ → 4) mapped to GitHub's colour tokens. No external assets — the SVG is fully self-contained.
|
||||||
|
|
||||||
**Cache:** filesystem adapter (`var/cache/`), mounted as a Docker volume to survive container restarts. Theme is part of the cache key so dark and light are cached independently.
|
**SVG cache:** filesystem adapter (`var/cache/`), mounted as a Docker volume to survive container restarts. Theme is part of the cache key so dark and light are cached independently.
|
||||||
|
|
||||||
|
**ContributionStore:** PDO SQLite at `var/data/contributions.db` (also a Docker volume), keyed by `(provider, date)`. Bounds every re-fetch to a trailing window off the last stored date per provider, instead of re-pulling all 365 days on every cache miss. `CONTRIBUTIONS_RETENTION_DAYS` controls how far back rows are kept (empty/0 = forever).
|
||||||
|
|
||||||
|
**Health check:** `GET /health` probes each configured provider's credentials/reachability (without fetching contribution data) and reports `ok`/`degraded`.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## CLI
|
||||||
|
|
||||||
|
`graph:contributions:refetch` is a manual escape hatch that bypasses the incremental trailing-window fetch and re-pulls a full or explicit date range — useful for backfilling history or recovering from a gap.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker compose exec graph bin/console graph:contributions:refetch --all
|
||||||
|
```
|
||||||
|
|
||||||
|
| Option | Default | Description |
|
||||||
|
| ------------ | -------------------- | --------------------------------------------------------- |
|
||||||
|
| `--provider` | all configured | Comma-separated provider names to refetch, e.g. `github,gitlab` |
|
||||||
|
| `--from` | 365 days ago | Start date (`YYYY-MM-DD`) |
|
||||||
|
| `--to` | today | End date (`YYYY-MM-DD`) |
|
||||||
|
| `--all` | off | Shorthand for `--from=2005-01-01` |
|
||||||
|
|
||||||
|
Large ranges are split into ≤365-day chunks and merged into the store as each completes.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,266 +0,0 @@
|
|||||||
# TODO: persist contribution history in SQLite + audit cleanup
|
|
||||||
|
|
||||||
Backend-only work. Follow Red → Green → Refactor per `CLAUDE.md` for every
|
|
||||||
step that adds behavior (store, retention, provider `$since` handling).
|
|
||||||
Order matters — later steps assume earlier ones are done.
|
|
||||||
|
|
||||||
## 1. Audit cleanup
|
|
||||||
|
|
||||||
- [x] **Remove `eightpoints/guzzle-bundle` + `idci/graphql-client-bundle`.**
|
|
||||||
They exist only to build one near-static GitHub GraphQL query string
|
|
||||||
(`GitHubProvider.php:59-74`); the bundle's own HTTP transport is already
|
|
||||||
bypassed (comment at `GitHubProvider.php:76-77`).
|
|
||||||
- [x] Replace
|
|
||||||
`$graphqlClient->buildQuery(...)->getGraphQLQuery()` with a plain
|
|
||||||
`sprintf`/heredoc query string. Delete the two packages from
|
|
||||||
`composer.json`, `config/bundles.php`, and delete
|
|
||||||
`config/packages/eight_points_guzzle.yaml` +
|
|
||||||
`config/packages/idci_graphql_client.yaml`. Run `composer update` and
|
|
||||||
commit the regenerated `composer.lock`.
|
|
||||||
|
|
||||||
- [x] **Dedupe `baseUrl` normalization.** `GitLabProvider.php` (lines 41, 53) and `GiteaProvider.php` (lines 42, 54) each call
|
|
||||||
`rtrim($this->baseUrl..., '/')` twice — once in `ping()`, once in
|
|
||||||
`fetch()`. Compute it once as a `private readonly string $baseUrl` in
|
|
||||||
the constructor instead.
|
|
||||||
|
|
||||||
## 2. Fix stale `config/services.yaml` (found during exploration, blocks step 1 & 4)
|
|
||||||
|
|
||||||
- [x] `services.yaml` still binds `$username`/`$token`/`$baseUrl` to the
|
|
||||||
pre-refactor FQCNs (`App\Service\GitHubProvider` etc.) and
|
|
||||||
`_instanceof: App\Service\ProviderInterface`, left over from the
|
|
||||||
`Service/` → `Provider/`+`Renderer/` namespace reorg. Update all of
|
|
||||||
these to `App\Service\Provider\...`. Currently these bindings silently
|
|
||||||
no-op, and scalar constructor args can't autowire without them — any
|
|
||||||
edit to these constructors (steps 1, 4) needs this fixed first, or the
|
|
||||||
container fails to compile.
|
|
||||||
|
|
||||||
## 3. `ContributionStore` (SQLite via native PDO)
|
|
||||||
|
|
||||||
> Docs: [PDO](https://www.php.net/manual/en/book.pdo.php) ·
|
|
||||||
> [PDO_SQLITE driver](https://www.php.net/manual/en/ref.pdo-sqlite.php) ·
|
|
||||||
> [PDO::prepare / prepared statements](https://www.php.net/manual/en/pdo.prepare.php) ·
|
|
||||||
> [SQLite `INSERT ... ON CONFLICT` upsert](https://www.sqlite.org/lang_upsert.html) ·
|
|
||||||
> [SQLite `STRICT` tables](https://www.sqlite.org/stricttables.html) ·
|
|
||||||
> [SQLite `WITHOUT ROWID` tables](https://www.sqlite.org/withoutrowid.html) ·
|
|
||||||
> [SQLite datatypes (why `date` is `INTEGER`/unixtime, not `TEXT`)](https://www.sqlite.org/datatype3.html)
|
|
||||||
|
|
||||||
- [x] New `src/Service/ContributionStore.php`. PDO SQLite, DB file at
|
|
||||||
`%kernel.project_dir%/var/data/contributions.db` (configurable
|
|
||||||
constructor arg), table created lazily. **Schema note:** `date` is
|
|
||||||
stored as a Unix timestamp (`INTEGER`), not `TEXT` — matches the
|
|
||||||
current implementation:
|
|
||||||
```sql
|
|
||||||
CREATE TABLE IF NOT EXISTS contributions (
|
|
||||||
provider TEXT NOT NULL,
|
|
||||||
date INTEGER NOT NULL,
|
|
||||||
count INTEGER NOT NULL CHECK (count >= 0),
|
|
||||||
PRIMARY KEY (provider, date)
|
|
||||||
) WITHOUT ROWID, STRICT;
|
|
||||||
```
|
|
||||||
- [x] `add(string $provider, int $unixtime, int $count): void` — plain
|
|
||||||
insert (done, needs test coverage — see below).
|
|
||||||
- [x] Fix `add()`: currently a plain `INSERT`, so re-adding an existing
|
|
||||||
`(provider, date)` throws a unique-constraint violation instead of
|
|
||||||
upserting. Switch to
|
|
||||||
`INSERT ... ON CONFLICT(provider, date) DO UPDATE SET count = excluded.count`
|
|
||||||
(see SQLite upsert doc above), or keep `add()` insert-only and add a
|
|
||||||
separate `merge()` for the upsert case used by step 5.
|
|
||||||
- [x] `remove(string $provider, int $unixtime): void` — started, has a
|
|
||||||
bug: `DELETE contributions WHERE ...` is invalid SQL, missing the
|
|
||||||
`FROM` keyword (must be `DELETE FROM contributions WHERE ...`); also
|
|
||||||
drop the `LIKE` on `provider` (exact match, use `=`) since it's an
|
|
||||||
unindexed wildcard scan for what should be an exact key lookup.
|
|
||||||
- [x] **`Contribution` entity.** Small immutable value object
|
|
||||||
(`src/Entity/Contribution.php`) wrapping one row: `provider` (string),
|
|
||||||
`date` (unix timestamp int, or `\DateTimeImmutable` — pick one and
|
|
||||||
use it consistently everywhere, including `add()`/`all()`), `count`
|
|
||||||
(int). Gives `ContributionStore::all()` and the aggregator something
|
|
||||||
typed to pass around instead of raw arrays/tuples.
|
|
||||||
- [x] **`ContributionCollection`.** Typed collection
|
|
||||||
(`src/Entity/ContributionCollection.php`) wrapping
|
|
||||||
`array<Contribution>` — implement `IteratorAggregate` + `Countable`
|
|
||||||
at minimum ([`IteratorAggregate`](https://www.php.net/manual/en/class.iteratoraggregate.php),
|
|
||||||
[`Countable`](https://www.php.net/manual/en/class.countable.php)) so
|
|
||||||
it can be `foreach`'d and `count()`'d like a normal array. This is
|
|
||||||
what `ContributionStore::all()` should return instead of a bare
|
|
||||||
`date => count` array.
|
|
||||||
- [x] `latestDate(string $provider): ?int` — `SELECT MAX(date) WHERE provider = ?`
|
|
||||||
(returns a unix timestamp, not a string, per the schema above).
|
|
||||||
- [x] `merge(string $provider, array $dateCounts): void` — upsert via
|
|
||||||
`INSERT ... ON CONFLICT(provider, date) DO UPDATE SET count = excluded.count`;
|
|
||||||
`$dateCounts` keyed by unix timestamp.
|
|
||||||
- [x] `all(string $provider, ?int $sinceDays = null): ContributionCollection` —
|
|
||||||
fetch all rows for a provider, or since a given range. `null` returns
|
|
||||||
full history (no arbitrary cutoff), a value filters to rows where
|
|
||||||
`date >= (now - sinceDays * 86400)`. **Bug:** current stub in
|
|
||||||
`ContributionStore.php:58` has invalid PHP (`$provider == null` instead
|
|
||||||
of `?string $provider = null` — this won't parse) and returns `void`
|
|
||||||
instead of `ContributionCollection`; fix the signature when implementing.
|
|
||||||
- [x] `prune(): void` — `DELETE FROM contributions WHERE date < ?` using
|
|
||||||
the configured retention window (a unix timestamp cutoff); no-ops if
|
|
||||||
retention is unset/0.
|
|
||||||
- [x] Constructor takes `?int $retentionDays` bound from new env var
|
|
||||||
`CONTRIBUTIONS_RETENTION_DAYS` (empty/default = keep forever). _(constructor
|
|
||||||
param wired; the env binding itself is step 6's job.)_
|
|
||||||
- [x] Tests: `tests/Unit/Service/ContributionStoreTest.php` — store &
|
|
||||||
retrieve, upsert overwrites existing date, `sinceDays` filtering,
|
|
||||||
`prune()` no-ops when retention unset, `prune()` deletes rows older
|
|
||||||
than the window when set.
|
|
||||||
- [x] Tests: `tests/Unit/Entity/ContributionTest.php` and
|
|
||||||
`ContributionCollectionTest.php` — construction, iteration, `count()`.
|
|
||||||
|
|
||||||
## 4. Wire `$since`/`$until` through providers
|
|
||||||
|
|
||||||
Root cause of the live `MaxExecutionTimeError` crash: every cache-miss
|
|
||||||
request re-fetches the full ~365-day history from every host, and
|
|
||||||
GitLab's pagination is unbounded and sequential. Bounding the fetch
|
|
||||||
window (step 5's 3-day trailing overlap) is what actually fixes it — a
|
|
||||||
PHP `max_execution_time` fatal can't be caught by `try/catch` at all, so
|
|
||||||
"catch it better" was never on the table.
|
|
||||||
|
|
||||||
- [ ] `ProviderInterface::startFetch()` → `startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): mixed`
|
|
||||||
(interface already split into `startFetch`/`resolveFetch` for
|
|
||||||
concurrency — this doc previously said `fetch()`, which predates that
|
|
||||||
split).
|
|
||||||
- [ ] `GitHubProvider::startFetch()` — already builds explicit `from`/`to`
|
|
||||||
GraphQL args (`GitHubProvider.php:51-58`); swap the hardcoded
|
|
||||||
`-365 days`/`now` for `$since ?? -365 days` / `$until ?? now`.
|
|
||||||
- [ ] `GitLabProvider::startFetch()` — add a `before` query param alongside
|
|
||||||
the existing `after` (`GitLabProvider.php:77-84`), fed by `$until`;
|
|
||||||
`$since` already flows into `after` (this is what actually shrinks the
|
|
||||||
pagination loop).
|
|
||||||
- [ ] `GiteaProvider::resolveFetch()` — heatmap endpoint has no query
|
|
||||||
params (always returns full history); add an `$until` upper-bound
|
|
||||||
filter alongside the existing `$cutoff` lower bound.
|
|
||||||
- [ ] Update `GitHubProviderTest.php`, `GitLabProviderTest.php`,
|
|
||||||
`GiteaProviderTest.php` — add cases asserting a passed `$since`/`$until`
|
|
||||||
narrows the request window/query params.
|
|
||||||
|
|
||||||
## 5. Wire `ContributionStore` into `ContributionAggregator`
|
|
||||||
|
|
||||||
- [ ] Fix `ContributionStore` wiring in `config/services.yaml` first —
|
|
||||||
it's currently dead code (nothing calls it). The constructor default
|
|
||||||
`$dbPath` string (`%kernel.project_dir%/var/data/contributions.db`) is
|
|
||||||
a plain PHP default, not a resolved container parameter; bind it
|
|
||||||
explicitly (same pattern as the provider bindings):
|
|
||||||
```yaml
|
|
||||||
App\Service\ContributionStore:
|
|
||||||
arguments:
|
|
||||||
$dbPath: "%kernel.project_dir%/var/data/contributions.db"
|
|
||||||
$retentionDays: "%env(int:CONTRIBUTIONS_RETENTION_DAYS)%"
|
|
||||||
```
|
|
||||||
Add `env(CONTRIBUTIONS_RETENTION_DAYS): ''` to `parameters:` (empty →
|
|
||||||
casts to `0` → `prune()`'s existing `retentionDays === 0` check already
|
|
||||||
treats that as "keep forever"). Document the var in `.env`.
|
|
||||||
- [ ] Inject `ContributionStore` into `ContributionAggregator`.
|
|
||||||
- [ ] Per configured provider: `$latest = $store->latestDate($name)` →
|
|
||||||
`$since = $latest !== null ? (new \DateTimeImmutable('@' . $latest))->modify('-3 days') : null`
|
|
||||||
(3-day overlap for late corrections — old stored days are immutable and
|
|
||||||
never re-fetched, only this trailing window + anything new hits the
|
|
||||||
network), else `null` (first run, provider's own default lookback).
|
|
||||||
`$until = null` (always "up to now" on the normal request path).
|
|
||||||
- [ ] `startFetch($since, $until)` / `resolveFetch()` as today,
|
|
||||||
`$store->merge($name, $fresh)` on success, then read back
|
|
||||||
`$store->all($name, sinceDays: 371)` for the render window
|
|
||||||
(53 weeks × 7 days) — a `ContributionCollection` — and merge its
|
|
||||||
contributions into the returned array (the store becomes the source
|
|
||||||
of truth for what gets rendered, not the fresh fetch alone).
|
|
||||||
- [ ] Call `$store->prune()` once per `aggregate()` call, after all
|
|
||||||
providers have merged.
|
|
||||||
- [ ] Keep the existing try/catch-and-log-per-provider behavior — a
|
|
||||||
provider failure leaves its DB history stale, doesn't break the render.
|
|
||||||
- [ ] Update `ContributionAggregatorTest.php` with store-interaction
|
|
||||||
(`latestDate` consulted, `merge` called, `all()` feeds the result,
|
|
||||||
`prune()` runs once) and a case confirming a provider failure leaves
|
|
||||||
other providers' stored data intact.
|
|
||||||
|
|
||||||
## 6. Docker / env
|
|
||||||
|
|
||||||
- [ ] `docker-compose.yml` — add a `data` named volume mounted at
|
|
||||||
`/app/var/data` (same pattern as `cache`/`logs`), and pass through
|
|
||||||
`CONTRIBUTIONS_RETENTION_DAYS: "${CONTRIBUTIONS_RETENTION_DAYS:-}"`.
|
|
||||||
- [ ] `Dockerfile` — add `var/data` to the `mkdir -p` in the `final` stage
|
|
||||||
alongside `var/cache/prod/pools var/log`, owned by `app`.
|
|
||||||
- [ ] `.env` — document `CONTRIBUTIONS_RETENTION_DAYS` (empty by default),
|
|
||||||
same style as the existing `ALLOWED_HOSTS` comment.
|
|
||||||
|
|
||||||
## 9. `app:contributions:refetch` console command
|
|
||||||
|
|
||||||
Manual escape hatch for forcing a full or ranged re-fetch (e.g. after
|
|
||||||
adding a new host, or if the store needs rebuilding) — bypasses step 5's
|
|
||||||
incremental `latestDate()` window entirely for the providers/range given.
|
|
||||||
|
|
||||||
- [ ] `src/Command/RefetchContributionsCommand.php`, `#[AsCommand]` +
|
|
||||||
constructor-promoted readonly properties (matches this codebase's
|
|
||||||
attribute-first style), using `SymfonyStyle`
|
|
||||||
([console styling guide](https://symfony.com/doc/current/console/style.html)).
|
|
||||||
Inject `iterable $providers` (`#[AutowireIterator('app.provider')]`,
|
|
||||||
same as `ContributionAggregator`) and `ContributionStore`.
|
|
||||||
- [ ] Options: `--provider=github,gitlab` (repeatable/comma-split,
|
|
||||||
restricts to named provider(s), default = all configured; unknown name
|
|
||||||
→ `$io->error()` + `Command::FAILURE`), `--from=YYYY-MM-DD` (default
|
|
||||||
today − 365 days), `--to=YYYY-MM-DD` (default today), `--all` (shorthand
|
|
||||||
for `--from` far enough back — e.g. 2005-01-01 — to mean "existing full
|
|
||||||
history"; combinable with `--provider`).
|
|
||||||
- [ ] **Batch by range**: split `[from, to]` into ≤365-day chunks
|
|
||||||
(GitHub's GraphQL `contributionsCollection` rejects windows over a
|
|
||||||
year; chunking also caps GitLab's pagination per call, so a big
|
|
||||||
`--all` re-fetch can't reintroduce the original runaway-pagination
|
|
||||||
timeout). Iterate chunks oldest-first.
|
|
||||||
- [ ] Per provider, per chunk: `$io->section(...)`, `startFetch($chunkFrom, $chunkTo)`
|
|
||||||
/ `resolveFetch()`, `$store->merge($name, $result)` immediately (don't
|
|
||||||
accumulate all chunks in memory), `ProgressBar` across chunks.
|
|
||||||
- [ ] Catch per-provider/per-chunk `\Throwable` → `$io->warning(...)`,
|
|
||||||
continue with remaining chunks/providers (same graceful-degradation
|
|
||||||
philosophy as `ContributionAggregator`).
|
|
||||||
- [ ] Finish with `$io->table(...)` summary (provider, days written,
|
|
||||||
chunks fetched, any errors) and `$io->success()`/`$io->error()`; exit
|
|
||||||
`Command::SUCCESS` if at least one provider fully succeeded, else
|
|
||||||
`Command::FAILURE`.
|
|
||||||
- [ ] Tests: `tests/Unit/Command/RefetchContributionsCommandTest.php`
|
|
||||||
using `CommandTester` with fake `ProviderInterface` stubs and a
|
|
||||||
`:memory:` `ContributionStore` — assert chunking count for a >365-day
|
|
||||||
range, store ends up populated, unknown `--provider` name fails
|
|
||||||
cleanly, a provider throwing doesn't abort the others.
|
|
||||||
|
|
||||||
## 10. PHPStan
|
|
||||||
|
|
||||||
- [x] `composer require --dev phpstan/phpstan` (plain PHPStan — no
|
|
||||||
Symfony extension needed for this app's size).
|
|
||||||
- [x] Add `phpstan.neon`: `paths: [src, tests]`, `level: 8`.
|
|
||||||
- [ ] Add composer script `"phpstan": "phpstan analyse"`.
|
|
||||||
- [ ] Update README.md docs with new command and php stan static lintin.
|
|
||||||
- [ ] Document in PHP-Stan-Errors.md whatever level-8 flags on first run.
|
|
||||||
|
|
||||||
## 11. `CLAUDE.md` update
|
|
||||||
|
|
||||||
- [ ] Architecture section: add the `ContributionStore` (SQLite) tier
|
|
||||||
between providers and the renderer; note the two-tier cache (1h SVG
|
|
||||||
cache → SQLite raw-data store → provider APIs).
|
|
||||||
- [ ] Environment variables table: add `CONTRIBUTIONS_RETENTION_DAYS`.
|
|
||||||
- [ ] Document `app:contributions:refetch` (options, batching behavior).
|
|
||||||
- [ ] Development section: add `composer phpstan` next to the existing
|
|
||||||
`vendor/bin/phpunit` commands.
|
|
||||||
- [ ] Remove any remaining mentions of the two deleted bundles.
|
|
||||||
|
|
||||||
## Verification
|
|
||||||
|
|
||||||
- `vendor/bin/phpunit --testdox` green after every step.
|
|
||||||
- `composer phpstan` clean at level 8.
|
|
||||||
- `composer install` succeeds with no dangling references to the removed bundles.
|
|
||||||
- `docker compose up -d --build`; clear the FS cache
|
|
||||||
(`docker compose exec graph rm -rf var/cache/*`); hit
|
|
||||||
`/graph.svg?theme=dark` twice; check `docker compose logs -f graph` shows
|
|
||||||
a narrower `since` window on the second fetch.
|
|
||||||
- Set `CONTRIBUTIONS_RETENTION_DAYS=30`; confirm rows older than 30 days
|
|
||||||
are gone after the next refresh
|
|
||||||
(`sqlite3 var/data/contributions.db "SELECT date FROM contributions ORDER BY date LIMIT 1"`).
|
|
||||||
- `curl localhost:8080/health` still reports all configured providers healthy.
|
|
||||||
- `docker compose exec graph bin/console app:contributions:refetch --all`
|
|
||||||
populates `var/data/contributions.db` from empty; re-run with no flags
|
|
||||||
and confirm logs show only the trailing-window re-fetch.
|
|
||||||
- `docker compose exec graph bin/console app:contributions:refetch --provider=github --from=2020-01-01 --to=2023-01-01`
|
|
||||||
exercises multi-chunk batching.
|
|
||||||
- Confirm the original crash scenario is gone: an account with heavy
|
|
||||||
GitLab history no longer triggers `MaxExecutionTimeError` on a cold
|
|
||||||
cache (bounded by the 3-day trailing window, not full history).
|
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env php
|
#!/usr/bin/env php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Kernel;
|
use GitContributionGraph\Kernel;
|
||||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||||
|
|
||||||
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
|
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
|
||||||
|
|||||||
+5
-2
@@ -16,12 +16,12 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"App\\": "src/"
|
"GitContributionGraph\\": "src/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload-dev": {
|
"autoload-dev": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"App\\Tests\\": "tests/"
|
"GitContributionGraph\\Tests\\": "tests/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
@@ -41,5 +41,8 @@
|
|||||||
"allow-contrib": false,
|
"allow-contrib": false,
|
||||||
"require": "7.4.*"
|
"require": "7.4.*"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"phpstan": "phpstan analyse --memory-limit=512M"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
controllers:
|
controllers:
|
||||||
resource:
|
resource:
|
||||||
path: ../src/Controller/
|
path: ../src/Controller/
|
||||||
namespace: App\Controller
|
namespace: GitContributionGraph\Controller
|
||||||
type: attribute
|
type: attribute
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ parameters:
|
|||||||
env(GITEA_USER): ""
|
env(GITEA_USER): ""
|
||||||
env(GITEA_TOKEN): ""
|
env(GITEA_TOKEN): ""
|
||||||
env(GITEA_URL): ""
|
env(GITEA_URL): ""
|
||||||
|
env(CONTRIBUTIONS_RETENTION_DAYS): "0"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
_defaults:
|
_defaults:
|
||||||
@@ -16,32 +17,32 @@ services:
|
|||||||
autoconfigure: true
|
autoconfigure: true
|
||||||
public: false
|
public: false
|
||||||
|
|
||||||
App\:
|
GitContributionGraph\:
|
||||||
resource: "../src/"
|
resource: "../src/"
|
||||||
exclude:
|
exclude:
|
||||||
- "../src/Kernel.php"
|
- "../src/Kernel.php"
|
||||||
|
|
||||||
_instanceof:
|
_instanceof:
|
||||||
App\Service\Provider\ProviderInterface:
|
GitContributionGraph\Service\Provider\ProviderInterface:
|
||||||
tags: ["app.provider"]
|
tags: ["app.provider"]
|
||||||
|
|
||||||
App\Service\Provider\GitHubProvider:
|
GitContributionGraph\Service\Provider\GitHubProvider:
|
||||||
arguments:
|
arguments:
|
||||||
$username: "%env(GITHUB_USER)%"
|
$username: "%env(GITHUB_USER)%"
|
||||||
$token: "%env(GITHUB_TOKEN)%"
|
$token: "%env(GITHUB_TOKEN)%"
|
||||||
|
|
||||||
App\Service\Provider\GitLabProvider:
|
GitContributionGraph\Service\Provider\GitLabProvider:
|
||||||
arguments:
|
arguments:
|
||||||
$username: "%env(GITLAB_USER)%"
|
$username: "%env(GITLAB_USER)%"
|
||||||
$token: "%env(GITLAB_TOKEN)%"
|
$token: "%env(GITLAB_TOKEN)%"
|
||||||
$baseUrl: "%env(GITLAB_URL)%"
|
$baseUrl: "%env(GITLAB_URL)%"
|
||||||
|
|
||||||
App\Service\Provider\GiteaProvider:
|
GitContributionGraph\Service\Provider\GiteaProvider:
|
||||||
arguments:
|
arguments:
|
||||||
$username: "%env(GITEA_USER)%"
|
$username: "%env(GITEA_USER)%"
|
||||||
$token: "%env(GITEA_TOKEN)%"
|
$token: "%env(GITEA_TOKEN)%"
|
||||||
$baseUrl: "%env(GITEA_URL)%"
|
$baseUrl: "%env(GITEA_URL)%"
|
||||||
App\Service\ContributionStore:
|
GitContributionGraph\Service\ContributionStore:
|
||||||
arguments:
|
arguments:
|
||||||
$dbPath: "%kernel.project_dir%/var/data/contributions.db"
|
$dbPath: "%kernel.project_dir%/var/data/contributions.db"
|
||||||
$retentionDays: "%env(int:CONTRIBUTIONS_RETENTION_DAYS)%"
|
$retentionDays: "%env(int:CONTRIBUTIONS_RETENTION_DAYS)%"
|
||||||
|
|||||||
@@ -18,9 +18,11 @@ services:
|
|||||||
GITEA_USER: "${GITEA_USER:-}"
|
GITEA_USER: "${GITEA_USER:-}"
|
||||||
GITEA_TOKEN: "${GITEA_TOKEN:-}"
|
GITEA_TOKEN: "${GITEA_TOKEN:-}"
|
||||||
GITEA_URL: "${GITEA_URL:-}"
|
GITEA_URL: "${GITEA_URL:-}"
|
||||||
|
CONTRIBUTIONS_RETENTION_DAYS: "${CONTRIBUTIONS_RETENTION_DAYS:-0}"
|
||||||
volumes:
|
volumes:
|
||||||
- cache:/app/var/cache/prod/pools
|
- cache:/app/var/cache/prod/pools
|
||||||
- logs:/app/var/log
|
- logs:/app/var/log
|
||||||
|
- data:/app/var/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
@@ -30,3 +32,4 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
cache:
|
cache:
|
||||||
logs:
|
logs:
|
||||||
|
data:
|
||||||
|
|||||||
@@ -20,9 +20,11 @@ services:
|
|||||||
GITEA_USER: "${GITEA_USER:-}"
|
GITEA_USER: "${GITEA_USER:-}"
|
||||||
GITEA_TOKEN: "${GITEA_TOKEN:-}"
|
GITEA_TOKEN: "${GITEA_TOKEN:-}"
|
||||||
GITEA_URL: "${GITEA_URL:-}"
|
GITEA_URL: "${GITEA_URL:-}"
|
||||||
|
CONTRIBUTIONS_RETENTION_DAYS: "${CONTRIBUTIONS_RETENTION_DAYS:-0}"
|
||||||
volumes:
|
volumes:
|
||||||
- cache:/app/var/cache/prod/pools
|
- cache:/app/var/cache/prod/pools
|
||||||
- logs:/app/var/log
|
- logs:/app/var/log
|
||||||
|
- data:/app/var/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
@@ -33,3 +35,4 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
cache:
|
cache:
|
||||||
logs:
|
logs:
|
||||||
|
data:
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Kernel;
|
use GitContributionGraph\Kernel;
|
||||||
|
|
||||||
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
|
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use App\Kernel;
|
use GitContributionGraph\Kernel;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
require_once dirname(__DIR__).'/vendor/autoload.php';
|
require_once dirname(__DIR__).'/vendor/autoload.php';
|
||||||
|
|||||||
@@ -0,0 +1,191 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace GitContributionGraph\Command;
|
||||||
|
|
||||||
|
use GitContributionGraph\Service\ContributionStore;
|
||||||
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
|
use Symfony\Component\Console\Attribute\AsCommand;
|
||||||
|
use Symfony\Component\Console\Attribute\Option;
|
||||||
|
use Symfony\Component\Console\Command\Command;
|
||||||
|
use Symfony\Component\Console\Helper\ProgressBar;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
|
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
||||||
|
|
||||||
|
#[AsCommand(
|
||||||
|
name: 'graph:contributions:refetch',
|
||||||
|
description: 'Force a full or ranged re-fetch of contribution history into the store.',
|
||||||
|
)]
|
||||||
|
final class RefetchContributionsCommand extends Command
|
||||||
|
{
|
||||||
|
private const MAX_CHUNK_DAYS = 365;
|
||||||
|
private const ALL_SINCE = '2005-01-01';
|
||||||
|
|
||||||
|
private SymfonyStyle $io;
|
||||||
|
|
||||||
|
/** @param iterable<ProviderInterface> $providers */
|
||||||
|
public function __construct(
|
||||||
|
#[AutowireIterator('app.provider')]
|
||||||
|
private readonly iterable $providers,
|
||||||
|
private readonly ContributionStore $store,
|
||||||
|
) {
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Symfony console lifecycle hook: sets up the styled I/O helper used throughout the command. */
|
||||||
|
public function initialize(InputInterface $input, OutputInterface $output): void
|
||||||
|
{
|
||||||
|
$this->io = new SymfonyStyle($input, $output);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bypasses the aggregator's incremental trailing-window fetch to re-pull a full or explicit
|
||||||
|
* date range for one, several, or all configured providers, chunked into ≤365-day windows.
|
||||||
|
*
|
||||||
|
* @param string $provider comma-separated provider names to refetch; empty = all configured
|
||||||
|
* @param string $from start date (YYYY-MM-DD); empty defaults to 365 days ago
|
||||||
|
* @param string $to end date (YYYY-MM-DD); empty defaults to today
|
||||||
|
* @param bool $all shorthand for --from=2005-01-01
|
||||||
|
* @return int Command::SUCCESS if at least one provider refetched cleanly, else Command::FAILURE
|
||||||
|
*/
|
||||||
|
public function __invoke(
|
||||||
|
#[Option('Comma-separated provider names to refetch (default: all configured)', 'provider', 'p')]
|
||||||
|
string $provider = '',
|
||||||
|
#[Option('Start date (YYYY-MM-DD), default: 365 days ago', 'from')]
|
||||||
|
string $from = '',
|
||||||
|
#[Option('End date (YYYY-MM-DD), default: today', 'to')]
|
||||||
|
string $to = '',
|
||||||
|
#[Option('Refetch full history (from ' . self::ALL_SINCE . ')', 'all')]
|
||||||
|
bool $all = false,
|
||||||
|
): int {
|
||||||
|
$byName = $this->resolveProviders($provider);
|
||||||
|
if ($byName === null) {
|
||||||
|
return Command::FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
$fromSpec = match (true) {
|
||||||
|
$all => self::ALL_SINCE,
|
||||||
|
$from !== '' => $from,
|
||||||
|
default => '-365 days',
|
||||||
|
};
|
||||||
|
|
||||||
|
$fromDate = new \DateTimeImmutable($fromSpec);
|
||||||
|
$toDate = new \DateTimeImmutable($to !== '' ? $to : 'today');
|
||||||
|
$chunks = $this->chunk($fromDate, $toDate);
|
||||||
|
|
||||||
|
$summary = [];
|
||||||
|
$succeeded = 0;
|
||||||
|
|
||||||
|
foreach ($byName as $name => $providerInstance) {
|
||||||
|
[$daysWritten, $errors] = $this->refetchProvider($name, $providerInstance, $chunks);
|
||||||
|
|
||||||
|
if ($errors === 0) {
|
||||||
|
$succeeded++;
|
||||||
|
}
|
||||||
|
|
||||||
|
$summary[] = [$name, $daysWritten, count($chunks), $errors];
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->io->table(['Provider', 'Days written', 'Chunks fetched', 'Errors'], $summary);
|
||||||
|
|
||||||
|
if ($succeeded === 0) {
|
||||||
|
$this->io->error('No provider completed successfully.');
|
||||||
|
|
||||||
|
return Command::FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->io->success(sprintf('%d of %d provider(s) refetched successfully.', $succeeded, count($byName)));
|
||||||
|
|
||||||
|
return Command::SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param list<array{0: \DateTimeImmutable, 1: \DateTimeImmutable}> $chunks
|
||||||
|
*
|
||||||
|
* @return array{0: int, 1: int} days written, errors
|
||||||
|
*/
|
||||||
|
private function refetchProvider(string $name, ProviderInterface $provider, array $chunks): array
|
||||||
|
{
|
||||||
|
$this->io->section("Refetching {$name}");
|
||||||
|
|
||||||
|
$progress = new ProgressBar($this->io, count($chunks));
|
||||||
|
$progress->start();
|
||||||
|
|
||||||
|
$daysWritten = 0;
|
||||||
|
$errors = 0;
|
||||||
|
|
||||||
|
foreach ($chunks as [$chunkFrom, $chunkTo]) {
|
||||||
|
try {
|
||||||
|
$fresh = $provider->resolveFetch($provider->startFetch($chunkFrom, $chunkTo));
|
||||||
|
|
||||||
|
$dateCounts = [];
|
||||||
|
foreach ($fresh as $date => $count) {
|
||||||
|
$dateCounts[(new \DateTimeImmutable($date))->getTimestamp()] = $count;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->store->merge($name, $dateCounts);
|
||||||
|
$daysWritten += count($dateCounts);
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
$errors++;
|
||||||
|
$this->io->warning("{$name}: {$e->getMessage()}");
|
||||||
|
}
|
||||||
|
|
||||||
|
$progress->advance();
|
||||||
|
}
|
||||||
|
|
||||||
|
$progress->finish();
|
||||||
|
$this->io->newLine(2);
|
||||||
|
|
||||||
|
return [$daysWritten, $errors];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<string, ProviderInterface>|null null when an unknown provider name was requested
|
||||||
|
*/
|
||||||
|
private function resolveProviders(string $requested): ?array
|
||||||
|
{
|
||||||
|
$byName = [];
|
||||||
|
foreach ($this->providers as $providerInstance) {
|
||||||
|
$byName[$providerInstance->getName()] = $providerInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($requested === '') {
|
||||||
|
return array_filter($byName, static fn (ProviderInterface $p): bool => $p->isConfigured());
|
||||||
|
}
|
||||||
|
|
||||||
|
$names = explode(',', $requested);
|
||||||
|
foreach ($names as $name) {
|
||||||
|
if (!isset($byName[$name])) {
|
||||||
|
$this->io->error("Unknown provider: {$name}");
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return array_intersect_key($byName, array_flip($names));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list<array{0: \DateTimeImmutable, 1: \DateTimeImmutable}>
|
||||||
|
*/
|
||||||
|
private function chunk(\DateTimeImmutable $from, \DateTimeImmutable $to): array
|
||||||
|
{
|
||||||
|
$chunks = [];
|
||||||
|
$cursor = $from;
|
||||||
|
|
||||||
|
while ($cursor < $to) {
|
||||||
|
$chunkEnd = min($cursor->modify('+' . (self::MAX_CHUNK_DAYS - 1) . ' days'), $to);
|
||||||
|
$chunks[] = [$cursor, $chunkEnd];
|
||||||
|
$cursor = $chunkEnd->modify('+1 day');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($chunks === []) {
|
||||||
|
$chunks[] = [$from, $to];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $chunks;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace GitContributionGraph\Controller;
|
||||||
|
|
||||||
use App\Service\ContributionAggregator;
|
use GitContributionGraph\Service\ContributionAggregator;
|
||||||
use App\Service\Provider\ProviderHealthChecker;
|
use GitContributionGraph\Service\Provider\ProviderHealthChecker;
|
||||||
use App\Service\Renderer\SvgRenderer;
|
use GitContributionGraph\Service\Renderer\SvgRenderer;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
||||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||||
@@ -34,8 +34,12 @@ final class GraphController
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Query parameters:
|
* Serves the contribution heatmap SVG, from a 1-hour cache on repeat requests.
|
||||||
* theme string dark|light (default: dark)
|
*
|
||||||
|
* Rejects requests to disallowed hosts (ALLOWED_HOSTS env) with a 403.
|
||||||
|
*
|
||||||
|
* @param Request $request query parameter `theme` selects "dark" (default) or "light"
|
||||||
|
* @return Response image/svg+xml body, cacheable for 3600s
|
||||||
*/
|
*/
|
||||||
#[Route('/graph.svg', name: 'contribution_graph', methods: ['GET'])]
|
#[Route('/graph.svg', name: 'contribution_graph', methods: ['GET'])]
|
||||||
public function graph(Request $request): Response
|
public function graph(Request $request): Response
|
||||||
@@ -66,6 +70,12 @@ final class GraphController
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirects "/" to "/graph.svg", forwarding any query string (e.g. ?theme=light).
|
||||||
|
*
|
||||||
|
* @param Request $request incoming request whose query string is preserved
|
||||||
|
* @return RedirectResponse 302 redirect to /graph.svg
|
||||||
|
*/
|
||||||
#[Route('/', name: 'index', methods: ['GET'])]
|
#[Route('/', name: 'index', methods: ['GET'])]
|
||||||
public function index(Request $request): RedirectResponse
|
public function index(Request $request): RedirectResponse
|
||||||
{
|
{
|
||||||
@@ -75,6 +85,12 @@ final class GraphController
|
|||||||
return new RedirectResponse($url, 302);
|
return new RedirectResponse($url, 302);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reports per-provider connectivity status as JSON.
|
||||||
|
*
|
||||||
|
* @return Response 200 with {"status":"ok",...} or 503 with {"status":"degraded",...}
|
||||||
|
* when any configured provider's probe reports an error
|
||||||
|
*/
|
||||||
#[Route('/health', name: 'health', methods: ['GET'])]
|
#[Route('/health', name: 'health', methods: ['GET'])]
|
||||||
public function health(): Response
|
public function health(): Response
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,10 +2,16 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Entity;
|
namespace GitContributionGraph\Entity;
|
||||||
|
|
||||||
|
/** A single provider's contribution count for one day, as stored in {@see \GitContributionGraph\Service\ContributionStore}. */
|
||||||
final class Contribution
|
final class Contribution
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
|
* @param int $date day of the contribution, as a unix timestamp
|
||||||
|
* @param int $count contribution count for that day
|
||||||
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
public readonly string $provider,
|
public readonly string $provider,
|
||||||
public readonly int $date,
|
public readonly int $date,
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Entity;
|
namespace GitContributionGraph\Entity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @implements \IteratorAggregate<int, Contribution>
|
* @implements \IteratorAggregate<int, Contribution>
|
||||||
@@ -14,14 +14,16 @@ final class ContributionCollection implements \IteratorAggregate, \Countable
|
|||||||
|
|
||||||
public function __construct(Contribution ...$contributions)
|
public function __construct(Contribution ...$contributions)
|
||||||
{
|
{
|
||||||
$this->contributions = $contributions;
|
$this->contributions = array_values($contributions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @return \ArrayIterator<int, Contribution> */
|
||||||
public function getIterator(): \ArrayIterator
|
public function getIterator(): \ArrayIterator
|
||||||
{
|
{
|
||||||
return new \ArrayIterator($this->contributions);
|
return new \ArrayIterator($this->contributions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Number of contributions held in this collection. */
|
||||||
public function count(): int
|
public function count(): int
|
||||||
{
|
{
|
||||||
return count($this->contributions);
|
return count($this->contributions);
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App;
|
namespace GitContributionGraph;
|
||||||
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
||||||
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
||||||
|
|||||||
@@ -2,33 +2,72 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service;
|
namespace GitContributionGraph\Service;
|
||||||
|
|
||||||
use App\Service\Provider\ProviderInterface;
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
||||||
|
|
||||||
final class ContributionAggregator
|
final class ContributionAggregator
|
||||||
{
|
{
|
||||||
|
private const RENDER_WINDOW_DAYS = 371;
|
||||||
|
private const OVERLAP_DAYS = 3;
|
||||||
|
|
||||||
|
/** @param iterable<ProviderInterface> $providers */
|
||||||
public function __construct(
|
public function __construct(
|
||||||
#[AutowireIterator('app.provider')]
|
#[AutowireIterator('app.provider')]
|
||||||
private readonly iterable $providers,
|
private readonly iterable $providers,
|
||||||
|
private readonly ContributionStore $store,
|
||||||
private readonly LoggerInterface $logger,
|
private readonly LoggerInterface $logger,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/** @return array<string, int> */
|
/**
|
||||||
|
* Incrementally fetches fresh contributions from each configured provider, merges them into
|
||||||
|
* the store, and returns the rolling render window summed across providers.
|
||||||
|
*
|
||||||
|
* For each provider, only data since its last stored date (minus a trailing overlap) is
|
||||||
|
* fetched; a provider with no stored history yet fetches its full default range. Fetches are
|
||||||
|
* split into start/resolve phases so all providers' requests are in flight concurrently.
|
||||||
|
* Failures are logged and the affected provider is skipped, not fatal to the others.
|
||||||
|
*
|
||||||
|
* @return array<string, int> date (Y-m-d) => contribution count, summed across all providers
|
||||||
|
*/
|
||||||
public function aggregate(): array
|
public function aggregate(): array
|
||||||
{
|
{
|
||||||
$pending = [];
|
$configured = [];
|
||||||
|
|
||||||
/** @var ProviderInterface $provider */
|
/** @var ProviderInterface $provider */
|
||||||
foreach ($this->providers as $provider) {
|
foreach ($this->providers as $provider) {
|
||||||
if (!$provider->isConfigured()) {
|
if ($provider->isConfigured()) {
|
||||||
continue;
|
$configured[] = $provider;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$pending = [];
|
||||||
|
|
||||||
|
foreach ($configured as $provider) {
|
||||||
|
$latest = $this->store->latestDate($provider->getName());
|
||||||
|
$since = $latest !== null
|
||||||
|
? (new \DateTimeImmutable('@' . $latest))->modify('-' . self::OVERLAP_DAYS . ' days')
|
||||||
|
: null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$pending[] = [$provider, $provider->startFetch()];
|
$pending[] = [$provider, $provider->startFetch($since)];
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
$this->logger->warning(sprintf('%s fetch failed: %s', $provider::class, $e->getMessage()), ['exception' => $e]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($pending as [$provider, $handle]) {
|
||||||
|
try {
|
||||||
|
$fresh = $provider->resolveFetch($handle);
|
||||||
|
|
||||||
|
$dateCounts = [];
|
||||||
|
foreach ($fresh as $date => $count) {
|
||||||
|
$dateCounts[(new \DateTimeImmutable($date))->getTimestamp()] = $count;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->store->merge($provider->getName(), $dateCounts);
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
$this->logger->warning(sprintf('%s fetch failed: %s', $provider::class, $e->getMessage()), ['exception' => $e]);
|
$this->logger->warning(sprintf('%s fetch failed: %s', $provider::class, $e->getMessage()), ['exception' => $e]);
|
||||||
}
|
}
|
||||||
@@ -36,16 +75,15 @@ final class ContributionAggregator
|
|||||||
|
|
||||||
$contributions = [];
|
$contributions = [];
|
||||||
|
|
||||||
foreach ($pending as [$provider, $handle]) {
|
foreach ($configured as $provider) {
|
||||||
try {
|
foreach ($this->store->all($provider->getName(), sinceDays: self::RENDER_WINDOW_DAYS) as $contribution) {
|
||||||
foreach ($provider->resolveFetch($handle) as $date => $count) {
|
$date = (new \DateTimeImmutable('@' . $contribution->date))->format('Y-m-d');
|
||||||
$contributions[$date] = ($contributions[$date] ?? 0) + $count;
|
$contributions[$date] = ($contributions[$date] ?? 0) + $contribution->count;
|
||||||
}
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
$this->logger->warning(sprintf('%s fetch failed: %s', $provider::class, $e->getMessage()), ['exception' => $e]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->store->prune();
|
||||||
|
|
||||||
return $contributions;
|
return $contributions;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service;
|
namespace GitContributionGraph\Service;
|
||||||
|
|
||||||
use App\Entity\Contribution;
|
use GitContributionGraph\Entity\Contribution;
|
||||||
use App\Entity\ContributionCollection;
|
use GitContributionGraph\Entity\ContributionCollection;
|
||||||
use PDO;
|
use PDO;
|
||||||
|
|
||||||
class ContributionStore
|
class ContributionStore
|
||||||
@@ -15,6 +15,9 @@ class ContributionStore
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Opens (creating if needed) the SQLite store at $dbPath and ensures the schema exists.
|
* Opens (creating if needed) the SQLite store at $dbPath and ensures the schema exists.
|
||||||
|
*
|
||||||
|
* @param string $dbPath filesystem path to the SQLite database file
|
||||||
|
* @param ?int $retentionDays days of history to keep; null or 0 keeps rows forever
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly string $dbPath = "%kernel.project_dir%/var/data/contributions.db",
|
private readonly string $dbPath = "%kernel.project_dir%/var/data/contributions.db",
|
||||||
@@ -43,6 +46,10 @@ class ContributionStore
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Inserts a contribution count, overwriting any existing count for the same provider/date.
|
* Inserts a contribution count, overwriting any existing count for the same provider/date.
|
||||||
|
*
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
|
* @param int $unixtime day of the contribution, as a unix timestamp
|
||||||
|
* @param int $count contribution count for that day
|
||||||
*/
|
*/
|
||||||
public function add(string $provider, int $unixtime, int $count): void
|
public function add(string $provider, int $unixtime, int $count): void
|
||||||
{
|
{
|
||||||
@@ -56,6 +63,9 @@ class ContributionStore
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Deletes the contribution row for the given provider/date, if any.
|
* Deletes the contribution row for the given provider/date, if any.
|
||||||
|
*
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
|
* @param int $unixtime day to delete, as a unix timestamp
|
||||||
*/
|
*/
|
||||||
public function remove(string $provider, int $unixtime): void
|
public function remove(string $provider, int $unixtime): void
|
||||||
{
|
{
|
||||||
@@ -69,6 +79,7 @@ class ContributionStore
|
|||||||
/**
|
/**
|
||||||
* Upserts a batch of date => count pairs for a provider via repeated add() calls.
|
* Upserts a batch of date => count pairs for a provider via repeated add() calls.
|
||||||
*
|
*
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
* @param array<int, int> $dateCounts unix timestamp => count
|
* @param array<int, int> $dateCounts unix timestamp => count
|
||||||
*/
|
*/
|
||||||
public function merge(string $provider, array $dateCounts): void
|
public function merge(string $provider, array $dateCounts): void
|
||||||
@@ -80,6 +91,9 @@ class ContributionStore
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the most recent stored unix timestamp for a provider, or null if it has no rows.
|
* Returns the most recent stored unix timestamp for a provider, or null if it has no rows.
|
||||||
|
*
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
|
* @return ?int unix timestamp of the latest stored day, or null if none stored yet
|
||||||
*/
|
*/
|
||||||
public function latestDate(string $provider): ?int
|
public function latestDate(string $provider): ?int
|
||||||
{
|
{
|
||||||
@@ -92,6 +106,10 @@ class ContributionStore
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns all stored contributions for a provider, optionally limited to the last $sinceDays days.
|
* Returns all stored contributions for a provider, optionally limited to the last $sinceDays days.
|
||||||
|
*
|
||||||
|
* @param string $provider provider identifier, e.g. "github"
|
||||||
|
* @param ?int $sinceDays if set, only rows from the last N days are returned
|
||||||
|
* @return ContributionCollection
|
||||||
*/
|
*/
|
||||||
public function all(string $provider, ?int $sinceDays = null): ContributionCollection
|
public function all(string $provider, ?int $sinceDays = null): ContributionCollection
|
||||||
{
|
{
|
||||||
@@ -106,9 +124,12 @@ class ContributionStore
|
|||||||
$stmt = $this->pdo->prepare($sql);
|
$stmt = $this->pdo->prepare($sql);
|
||||||
$stmt->execute($params);
|
$stmt->execute($params);
|
||||||
|
|
||||||
|
/** @var array<int, array{provider: string, date: int|string, count: int|string}> $rows */
|
||||||
|
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
$contributions = array_map(
|
$contributions = array_map(
|
||||||
static fn(array $row): Contribution => new Contribution($row['provider'], (int) $row['date'], (int) $row['count']),
|
static fn(array $row): Contribution => new Contribution($row['provider'], (int) $row['date'], (int) $row['count']),
|
||||||
$stmt->fetchAll(PDO::FETCH_ASSOC),
|
$rows,
|
||||||
);
|
);
|
||||||
|
|
||||||
return new ContributionCollection(...$contributions);
|
return new ContributionCollection(...$contributions);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
|
use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
|
||||||
@@ -44,12 +44,13 @@ final class GitHubProvider implements ProviderInterface
|
|||||||
])->getContent();
|
])->getContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function startFetch(): ResponseInterface
|
/** Fires the GraphQL contributionsCollection query bounded by $since/$until. */
|
||||||
|
public function startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): ResponseInterface
|
||||||
{
|
{
|
||||||
$this->logger->debug('GitHubProvider: fetching contributions', ['user' => $this->username]);
|
$this->logger->debug('GitHubProvider: fetching contributions', ['user' => $this->username]);
|
||||||
|
|
||||||
$from = (new \DateTimeImmutable('-365 days'))->format('Y-m-d\T00:00:00\Z');
|
$from = ($since ?? new \DateTimeImmutable('-365 days'))->format('Y-m-d\T00:00:00\Z');
|
||||||
$to = (new \DateTimeImmutable())->format('Y-m-d\T23:59:59\Z');
|
$to = ($until ?? new \DateTimeImmutable())->format('Y-m-d\T23:59:59\Z');
|
||||||
|
|
||||||
$query = sprintf(
|
$query = sprintf(
|
||||||
'query { user(login: %s) { contributionsCollection(from: %s, to: %s) { contributionCalendar { weeks { contributionDays { date contributionCount } } } } } }',
|
'query { user(login: %s) { contributionsCollection(from: %s, to: %s) { contributionCalendar { weeks { contributionDays { date contributionCount } } } } } }',
|
||||||
@@ -71,6 +72,9 @@ final class GitHubProvider implements ProviderInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Parses the GraphQL response into a per-day count map, skipping zero-count days.
|
||||||
|
*
|
||||||
|
* @param ResponseInterface $handle the response returned by startFetch()
|
||||||
* @return array<string, int> date (Y-m-d) => contribution count
|
* @return array<string, int> date (Y-m-d) => contribution count
|
||||||
*/
|
*/
|
||||||
public function resolveFetch(mixed $handle): array
|
public function resolveFetch(mixed $handle): array
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||||
@@ -50,14 +50,16 @@ final class GitLabProvider implements ProviderInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array{baseUrl: string, userId: int, after: string, page: int, response: ResponseInterface}
|
* Resolves the username to a numeric user ID, then fires the first page of the events request.
|
||||||
|
*
|
||||||
|
* @return array{baseUrl: string, userId: int, after: string, before: ?string, page: int, response: ResponseInterface}
|
||||||
*
|
*
|
||||||
* ponytail: the user-id lookup and event pagination stay sequential within
|
* ponytail: the user-id lookup and event pagination stay sequential within
|
||||||
* this one provider (each page depends on the previous). Parallelism here
|
* this one provider (each page depends on the previous). Parallelism here
|
||||||
* only spans across providers; revisit only if GitLab pagination itself
|
* only spans across providers; revisit only if GitLab pagination itself
|
||||||
* becomes the bottleneck.
|
* becomes the bottleneck.
|
||||||
*/
|
*/
|
||||||
public function startFetch(): array
|
public function startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): array
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->logger->debug('GitLabProvider: fetching contributions', ['user' => $this->username, 'url' => $this->baseUrl]);
|
$this->logger->debug('GitLabProvider: fetching contributions', ['user' => $this->username, 'url' => $this->baseUrl]);
|
||||||
@@ -72,26 +74,31 @@ final class GitLabProvider implements ProviderInterface
|
|||||||
throw new NotFoundHttpException("GitLab: user '{$this->username}' not found on $this->baseUrl");
|
throw new NotFoundHttpException("GitLab: user '{$this->username}' not found on $this->baseUrl");
|
||||||
}
|
}
|
||||||
$userId = $users[0]['id'];
|
$userId = $users[0]['id'];
|
||||||
$after = (new \DateTimeImmutable('-365 days'))->format('Y-m-d');
|
$after = ($since ?? new \DateTimeImmutable('-365 days'))->format('Y-m-d');
|
||||||
|
$before = $until?->format('Y-m-d');
|
||||||
|
|
||||||
|
$query = ['after' => $after, 'per_page' => 100, 'page' => 1];
|
||||||
|
if ($before !== null) {
|
||||||
|
$query['before'] = $before;
|
||||||
|
}
|
||||||
|
|
||||||
$response = $this->client->request('GET', "$this->baseUrl/api/v4/users/$userId/events", [
|
$response = $this->client->request('GET', "$this->baseUrl/api/v4/users/$userId/events", [
|
||||||
'headers' => ['PRIVATE-TOKEN' => $this->token],
|
'headers' => ['PRIVATE-TOKEN' => $this->token],
|
||||||
'query' => [
|
'query' => $query,
|
||||||
'after' => $after,
|
|
||||||
'per_page' => 100,
|
|
||||||
'page' => 1,
|
|
||||||
],
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return ['baseUrl' => $this->baseUrl, 'userId' => $userId, 'after' => $after, 'page' => 1, 'response' => $response];
|
return ['baseUrl' => $this->baseUrl, 'userId' => $userId, 'after' => $after, 'before' => $before, 'page' => 1, 'response' => $response];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Follows pagination (100 events/page) until a short page is returned, counting events per day.
|
||||||
|
*
|
||||||
|
* @param array{baseUrl: string, userId: int, after: string, before: ?string, page: int, response: ResponseInterface} $handle
|
||||||
* @return array<string, int> date (Y-m-d) => event count
|
* @return array<string, int> date (Y-m-d) => event count
|
||||||
*/
|
*/
|
||||||
public function resolveFetch(mixed $handle): array
|
public function resolveFetch(mixed $handle): array
|
||||||
{
|
{
|
||||||
['baseUrl' => $baseUrl, 'userId' => $userId, 'after' => $after, 'page' => $page, 'response' => $response] = $handle;
|
['baseUrl' => $baseUrl, 'userId' => $userId, 'after' => $after, 'before' => $before, 'page' => $page, 'response' => $response] = $handle;
|
||||||
|
|
||||||
$result = [];
|
$result = [];
|
||||||
|
|
||||||
@@ -106,13 +113,14 @@ final class GitLabProvider implements ProviderInterface
|
|||||||
$page++;
|
$page++;
|
||||||
|
|
||||||
if (count($events) === 100) {
|
if (count($events) === 100) {
|
||||||
|
$query = ['after' => $after, 'per_page' => 100, 'page' => $page];
|
||||||
|
if ($before !== null) {
|
||||||
|
$query['before'] = $before;
|
||||||
|
}
|
||||||
|
|
||||||
$response = $this->client->request('GET', "$baseUrl/api/v4/users/$userId/events", [
|
$response = $this->client->request('GET', "$baseUrl/api/v4/users/$userId/events", [
|
||||||
'headers' => ['PRIVATE-TOKEN' => $this->token],
|
'headers' => ['PRIVATE-TOKEN' => $this->token],
|
||||||
'query' => [
|
'query' => $query,
|
||||||
'after' => $after,
|
|
||||||
'per_page' => 100,
|
|
||||||
'page' => $page,
|
|
||||||
],
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
} while (count($events) === 100);
|
} while (count($events) === 100);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||||
@@ -51,31 +51,45 @@ final class GiteaProvider implements ProviderInterface
|
|||||||
])->getContent();
|
])->getContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function startFetch(): ResponseInterface
|
/**
|
||||||
|
* Fires a single heatmap request; $since/$until are carried through unused for client-side filtering in resolveFetch().
|
||||||
|
*
|
||||||
|
* @return array{response: ResponseInterface, since: ?\DateTimeImmutable, until: ?\DateTimeImmutable}
|
||||||
|
*/
|
||||||
|
public function startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): array
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
$this->logger->debug('GiteaProvider: fetching contributions', ['user' => $this->username, 'url' => $this->baseUrl]);
|
$this->logger->debug('GiteaProvider: fetching contributions', ['user' => $this->username, 'url' => $this->baseUrl]);
|
||||||
|
|
||||||
return $this->client->request('GET', "$this->baseUrl/api/v1/users/{$this->username}/heatmap", [
|
$response = $this->client->request('GET', "$this->baseUrl/api/v1/users/{$this->username}/heatmap", [
|
||||||
'headers' => ['Authorization' => "token {$this->token}"],
|
'headers' => ['Authorization' => "token {$this->token}"],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
return ['response' => $response, 'since' => $since, 'until' => $until];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Filters the heatmap entries to the [$since, $until] window and sums contributions per day.
|
||||||
|
*
|
||||||
|
* @param array{response: ResponseInterface, since: ?\DateTimeImmutable, until: ?\DateTimeImmutable} $handle
|
||||||
* @return array<string, int> date (Y-m-d) => contribution count
|
* @return array<string, int> date (Y-m-d) => contribution count
|
||||||
*/
|
*/
|
||||||
public function resolveFetch(mixed $handle): array
|
public function resolveFetch(mixed $handle): array
|
||||||
{
|
{
|
||||||
/** @var ResponseInterface $handle */
|
['response' => $response, 'since' => $since, 'until' => $until] = $handle;
|
||||||
$data = $handle->toArray();
|
|
||||||
$cutoff = (new \DateTimeImmutable('-365 days'))->getTimestamp();
|
/** @var ResponseInterface $response */
|
||||||
|
$data = $response->toArray();
|
||||||
|
$cutoff = ($since ?? new \DateTimeImmutable('-365 days'))->getTimestamp();
|
||||||
|
$ceiling = $until?->getTimestamp();
|
||||||
$result = [];
|
$result = [];
|
||||||
|
|
||||||
foreach ($data as $entry) {
|
foreach ($data as $entry) {
|
||||||
if ($entry['timestamp'] < $cutoff) {
|
if ($entry['timestamp'] < $cutoff) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if ($ceiling !== null && $entry['timestamp'] > $ceiling) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$date = date('Y-m-d', $entry['timestamp']);
|
$date = date('Y-m-d', $entry['timestamp']);
|
||||||
$result[$date] = ($result[$date] ?? 0) + (int) $entry['contributions'];
|
$result[$date] = ($result[$date] ?? 0) + (int) $entry['contributions'];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,17 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface;
|
use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface;
|
||||||
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
||||||
|
|
||||||
trait ProbeTrait
|
trait ProbeTrait
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Reports NotConfigured if credentials are missing, otherwise pings the provider
|
||||||
|
* and reports Ok or Error (with a classified error code and message).
|
||||||
|
*/
|
||||||
public function probe(): ProviderStatus
|
public function probe(): ProviderStatus
|
||||||
{
|
{
|
||||||
if (!$this->isConfigured()) {
|
if (!$this->isConfigured()) {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
enum ProviderErrorCode: string
|
enum ProviderErrorCode: string
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,19 +2,23 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
||||||
|
|
||||||
final class ProviderHealthChecker
|
final class ProviderHealthChecker
|
||||||
{
|
{
|
||||||
|
/** @param iterable<ProviderInterface> $providers */
|
||||||
public function __construct(
|
public function __construct(
|
||||||
#[AutowireIterator('app.provider')]
|
#[AutowireIterator('app.provider')]
|
||||||
private readonly iterable $providers,
|
private readonly iterable $providers,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array{status: string, providers: array<string, array<string, string>>}
|
* Probes every configured provider and aggregates the results for the /health endpoint.
|
||||||
|
*
|
||||||
|
* @return array{status: string, providers: array<string, array<string, string>>} 'status' is
|
||||||
|
* "degraded" if any provider's probe() reported an error, otherwise "ok"
|
||||||
*/
|
*/
|
||||||
public function check(): array
|
public function check(): array
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,21 +2,37 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
interface ProviderInterface
|
interface ProviderInterface
|
||||||
{
|
{
|
||||||
/** Fire the HTTP request(s) without blocking; returns an opaque handle for resolveFetch(). */
|
/**
|
||||||
public function startFetch(): mixed;
|
* Fire the HTTP request(s) without blocking; the result is read later by
|
||||||
|
* resolveFetch() so multiple providers' requests can be in flight at once.
|
||||||
|
*
|
||||||
|
* @param ?\DateTimeImmutable $since lower bound (inclusive); defaults to 365 days ago
|
||||||
|
* @param ?\DateTimeImmutable $until upper bound (inclusive); defaults to now
|
||||||
|
* @return mixed opaque handle to pass into resolveFetch()
|
||||||
|
*/
|
||||||
|
public function startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): mixed;
|
||||||
|
|
||||||
/** @return array<string, int> date (Y-m-d) => contribution count */
|
/**
|
||||||
|
* Block on the handle from startFetch() and parse it into a per-day count map.
|
||||||
|
*
|
||||||
|
* @param mixed $handle the value returned by startFetch()
|
||||||
|
* @return array<string, int> date (Y-m-d) => contribution count
|
||||||
|
*/
|
||||||
public function resolveFetch(mixed $handle): array;
|
public function resolveFetch(mixed $handle): array;
|
||||||
|
|
||||||
|
/** Whether the required credentials/URL for this provider are all set. */
|
||||||
public function isConfigured(): bool;
|
public function isConfigured(): bool;
|
||||||
|
|
||||||
|
/** Short lowercase identifier for this provider, e.g. "github". */
|
||||||
public function getName(): string;
|
public function getName(): string;
|
||||||
|
|
||||||
|
/** Check reachability/credentials without fetching contribution data; used by the /health endpoint. */
|
||||||
public function probe(): ProviderStatus;
|
public function probe(): ProviderStatus;
|
||||||
|
|
||||||
|
/** Make a lightweight authenticated request to verify the provider is reachable; throws on failure. */
|
||||||
public function ping(): void;
|
public function ping(): void;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,17 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
|
/** Result of probing a single provider, as reported by the /health endpoint. */
|
||||||
final class ProviderStatus
|
final class ProviderStatus
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @param string $name provider identifier, e.g. "github"
|
||||||
|
* @param ProviderStatusType $status overall outcome of the probe
|
||||||
|
* @param ?ProviderErrorCode $error classified error code, set only when $status is Error
|
||||||
|
* @param ?string $message human-readable error detail, set only when $status is Error
|
||||||
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
public readonly string $name,
|
public readonly string $name,
|
||||||
public readonly ProviderStatusType $status,
|
public readonly ProviderStatusType $status,
|
||||||
@@ -13,7 +20,11 @@ final class ProviderStatus
|
|||||||
public readonly ?string $message = null,
|
public readonly ?string $message = null,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/** @return array<string, string> */
|
/**
|
||||||
|
* Converts to the array shape used in the /health JSON response, omitting error/message when unset.
|
||||||
|
*
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
public function toArray(): array
|
public function toArray(): array
|
||||||
{
|
{
|
||||||
$data = ['status' => $this->status->value];
|
$data = ['status' => $this->status->value];
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Provider;
|
namespace GitContributionGraph\Service\Provider;
|
||||||
|
|
||||||
enum ProviderStatusType: string
|
enum ProviderStatusType: string
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Service\Renderer;
|
namespace GitContributionGraph\Service\Renderer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders a GitHub-style contribution heatmap as an inline SVG.
|
* Renders a GitHub-style contribution heatmap as an inline SVG.
|
||||||
@@ -36,6 +36,12 @@ final class SvgRenderer
|
|||||||
private const MARGIN_Y = 20; // top margin for month labels
|
private const MARGIN_Y = 20; // top margin for month labels
|
||||||
private const PADDING = 10; // outer padding
|
private const PADDING = 10; // outer padding
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the full self-contained SVG heatmap for a contribution map.
|
||||||
|
*
|
||||||
|
* @param array<string, int> $contributions date (Y-m-d) => contribution count
|
||||||
|
* @param string $theme "dark" or "light"; unknown values fall back to "dark"
|
||||||
|
*/
|
||||||
public function render(array $contributions, string $theme = 'dark'): string
|
public function render(array $contributions, string $theme = 'dark'): string
|
||||||
{
|
{
|
||||||
$colors = self::THEMES[$theme] ?? self::THEMES['dark'];
|
$colors = self::THEMES[$theme] ?? self::THEMES['dark'];
|
||||||
@@ -91,6 +97,9 @@ final class SvgRenderer
|
|||||||
/**
|
/**
|
||||||
* Builds a [week][day] grid where each cell is ['date' => 'Y-m-d', 'count' => int]
|
* Builds a [week][day] grid where each cell is ['date' => 'Y-m-d', 'count' => int]
|
||||||
* or null if the date is in the future.
|
* or null if the date is in the future.
|
||||||
|
*
|
||||||
|
* @param array<string, int> $contributions date (Y-m-d) => contribution count
|
||||||
|
* @return array<int, array<int, array{date: string, count: int}|null>>
|
||||||
*/
|
*/
|
||||||
private function buildGrid(\DateTimeImmutable $start, \DateTimeImmutable $today, array $contributions): array
|
private function buildGrid(\DateTimeImmutable $start, \DateTimeImmutable $today, array $contributions): array
|
||||||
{
|
{
|
||||||
@@ -125,6 +134,10 @@ final class SvgRenderer
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, int> $contributions date (Y-m-d) => contribution count
|
||||||
|
* @return array{total: int}
|
||||||
|
*/
|
||||||
private function computeStats(array $contributions): array
|
private function computeStats(array $contributions): array
|
||||||
{
|
{
|
||||||
return ['total' => array_sum($contributions)];
|
return ['total' => array_sum($contributions)];
|
||||||
@@ -132,6 +145,7 @@ final class SvgRenderer
|
|||||||
|
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/** @param array<int, array<int, array{date: string, count: int}|null>> $grid */
|
||||||
private function renderMonthLabels(array $grid, string $textColor): string
|
private function renderMonthLabels(array $grid, string $textColor): string
|
||||||
{
|
{
|
||||||
$out = '';
|
$out = '';
|
||||||
@@ -142,7 +156,7 @@ final class SvgRenderer
|
|||||||
if ($cell === null) {
|
if ($cell === null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$ts = strtotime($cell['date']);
|
$ts = (int) strtotime($cell['date']);
|
||||||
$month = (int) date('n', $ts);
|
$month = (int) date('n', $ts);
|
||||||
$dom = (int) date('j', $ts);
|
$dom = (int) date('j', $ts);
|
||||||
|
|
||||||
@@ -183,6 +197,10 @@ final class SvgRenderer
|
|||||||
return $out;
|
return $out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<int, array<int, array{date: string, count: int}|null>> $grid
|
||||||
|
* @param array{bg: string, text: string, levels: array<int, string>} $colors
|
||||||
|
*/
|
||||||
private function renderCells(array $grid, array $colors): string
|
private function renderCells(array $grid, array $colors): string
|
||||||
{
|
{
|
||||||
$out = '';
|
$out = '';
|
||||||
@@ -197,7 +215,7 @@ final class SvgRenderer
|
|||||||
$y = self::MARGIN_Y + $d * self::STEP;
|
$y = self::MARGIN_Y + $d * self::STEP;
|
||||||
$color = $colors['levels'][$this->level($cell['count'])];
|
$color = $colors['levels'][$this->level($cell['count'])];
|
||||||
|
|
||||||
$ts = strtotime($cell['date']);
|
$ts = (int) strtotime($cell['date']);
|
||||||
$suffix = $cell['count'] !== 1 ? 's' : '';
|
$suffix = $cell['count'] !== 1 ? 's' : '';
|
||||||
$label = $cell['count'] > 0
|
$label = $cell['count'] > 0
|
||||||
? $cell['count'] . ' contribution' . $suffix . ' on ' . date('F j, Y', $ts)
|
? $cell['count'] . ' contribution' . $suffix . ' on ' . date('F j, Y', $ts)
|
||||||
@@ -218,6 +236,7 @@ final class SvgRenderer
|
|||||||
return $out;
|
return $out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @param array{bg: string, text: string, levels: array<int, string>} $colors */
|
||||||
private function renderLegend(int $totalH, array $colors): string
|
private function renderLegend(int $totalH, array $colors): string
|
||||||
{
|
{
|
||||||
$y = $totalH - 14;
|
$y = $totalH - 14;
|
||||||
|
|||||||
@@ -0,0 +1,149 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace GitContributionGraph\Tests\Unit\Command;
|
||||||
|
|
||||||
|
use GitContributionGraph\Command\RefetchContributionsCommand;
|
||||||
|
use GitContributionGraph\Service\ContributionStore;
|
||||||
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use Symfony\Component\Console\Application;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
|
||||||
|
#[CoversClass(RefetchContributionsCommand::class)]
|
||||||
|
final class RefetchContributionsCommandTest extends TestCase
|
||||||
|
{
|
||||||
|
/** @param ?array<string, int> $fresh */
|
||||||
|
private function makeProvider(
|
||||||
|
string $name,
|
||||||
|
bool $configured = true,
|
||||||
|
?array $fresh = null,
|
||||||
|
?\Throwable $throws = null,
|
||||||
|
): ProviderInterface {
|
||||||
|
$provider = $this->createStub(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn($name);
|
||||||
|
$provider->method('isConfigured')->willReturn($configured);
|
||||||
|
|
||||||
|
if ($throws !== null) {
|
||||||
|
$provider->method('startFetch')->willThrowException($throws);
|
||||||
|
} elseif ($fresh !== null) {
|
||||||
|
$provider->method('resolveFetch')->willReturn($fresh);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $provider;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @param iterable<ProviderInterface> $providers */
|
||||||
|
private function makeTester(iterable $providers, ContributionStore $store): CommandTester
|
||||||
|
{
|
||||||
|
$command = new RefetchContributionsCommand($providers, $store);
|
||||||
|
|
||||||
|
$application = new Application();
|
||||||
|
$application->add($command);
|
||||||
|
|
||||||
|
return new CommandTester($application->find('graph:contributions:refetch'));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_refetches_the_default_365_day_window_for_all_configured_providers(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$provider = $this->makeProvider('github', fresh: ['2024-06-10' => 3]);
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$provider], $store);
|
||||||
|
$exitCode = $tester->execute([]);
|
||||||
|
|
||||||
|
$this->assertSame(0, $exitCode);
|
||||||
|
$this->assertCount(1, $store->all('github'));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_skips_unconfigured_providers_by_default(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$provider = $this->makeProvider('github', configured: false);
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$provider], $store);
|
||||||
|
$tester->execute([]);
|
||||||
|
|
||||||
|
$this->assertCount(0, $store->all('github'));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_fails_cleanly_on_an_unknown_provider_name(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$provider = $this->makeProvider('github');
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$provider], $store);
|
||||||
|
$exitCode = $tester->execute(['--provider' => 'bogus']);
|
||||||
|
|
||||||
|
$this->assertSame(1, $exitCode);
|
||||||
|
$this->assertStringContainsString('Unknown provider: bogus', $tester->getDisplay());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_restricts_to_the_named_provider(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$github = $this->makeProvider('github', fresh: ['2024-06-10' => 1]);
|
||||||
|
$gitlab = $this->makeProvider('gitlab', fresh: ['2024-06-10' => 1]);
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$github, $gitlab], $store);
|
||||||
|
$tester->execute(['--provider' => 'github']);
|
||||||
|
|
||||||
|
$this->assertCount(1, $store->all('github'));
|
||||||
|
$this->assertCount(0, $store->all('gitlab'));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_continues_with_remaining_providers_when_one_throws(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$failing = $this->makeProvider('gitlab', throws: new \RuntimeException('boom'));
|
||||||
|
$healthy = $this->makeProvider('github', fresh: ['2024-06-10' => 2]);
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$failing, $healthy], $store);
|
||||||
|
$exitCode = $tester->execute([]);
|
||||||
|
|
||||||
|
$this->assertSame(0, $exitCode);
|
||||||
|
$this->assertCount(1, $store->all('github'));
|
||||||
|
$this->assertCount(0, $store->all('gitlab'));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_fails_when_every_provider_errors(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$failing = $this->makeProvider('github', throws: new \RuntimeException('boom'));
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$failing], $store);
|
||||||
|
$exitCode = $tester->execute([]);
|
||||||
|
|
||||||
|
$this->assertSame(1, $exitCode);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_splits_a_multi_year_range_into_365_day_chunks(): void
|
||||||
|
{
|
||||||
|
$store = new ContributionStore(':memory:');
|
||||||
|
$calls = 0;
|
||||||
|
|
||||||
|
$provider = $this->createStub(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn('github');
|
||||||
|
$provider->method('isConfigured')->willReturn(true);
|
||||||
|
$provider->method('resolveFetch')->willReturnCallback(function () use (&$calls): array {
|
||||||
|
$calls++;
|
||||||
|
|
||||||
|
return [];
|
||||||
|
});
|
||||||
|
|
||||||
|
$tester = $this->makeTester([$provider], $store);
|
||||||
|
$tester->execute(['--from' => '2020-01-01', '--to' => '2023-01-01']);
|
||||||
|
|
||||||
|
$this->assertGreaterThan(1, $calls);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Entity;
|
namespace GitContributionGraph\Tests\Unit\Entity;
|
||||||
|
|
||||||
use App\Entity\Contribution;
|
use GitContributionGraph\Entity\Contribution;
|
||||||
use App\Entity\ContributionCollection;
|
use GitContributionGraph\Entity\ContributionCollection;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Entity;
|
namespace GitContributionGraph\Tests\Unit\Entity;
|
||||||
|
|
||||||
use App\Entity\Contribution;
|
use GitContributionGraph\Entity\Contribution;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service;
|
namespace GitContributionGraph\Tests\Unit\Service;
|
||||||
|
|
||||||
use App\Service\ContributionAggregator;
|
use GitContributionGraph\Service\ContributionAggregator;
|
||||||
use App\Service\Provider\ProviderInterface;
|
use GitContributionGraph\Service\ContributionStore;
|
||||||
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
@@ -15,16 +16,31 @@ use Psr\Log\LoggerInterface;
|
|||||||
final class ContributionAggregatorTest extends TestCase
|
final class ContributionAggregatorTest extends TestCase
|
||||||
{
|
{
|
||||||
private LoggerInterface $logger;
|
private LoggerInterface $logger;
|
||||||
|
private ContributionStore $store;
|
||||||
|
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
$this->logger = $this->createStub(LoggerInterface::class);
|
$this->logger = $this->createStub(LoggerInterface::class);
|
||||||
|
$this->store = new ContributionStore(':memory:');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @param ?array<string, int> $fresh */
|
||||||
|
private function makeProvider(string $name, bool $configured = true, ?array $fresh = null): ProviderInterface
|
||||||
|
{
|
||||||
|
$provider = $this->createStub(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn($name);
|
||||||
|
$provider->method('isConfigured')->willReturn($configured);
|
||||||
|
if ($fresh !== null) {
|
||||||
|
$provider->method('resolveFetch')->willReturn($fresh);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $provider;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
public function it_returns_empty_array_when_no_providers_are_given(): void
|
public function it_returns_empty_array_when_no_providers_are_given(): void
|
||||||
{
|
{
|
||||||
$aggregator = new ContributionAggregator([], $this->logger);
|
$aggregator = new ContributionAggregator([], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
@@ -34,10 +50,9 @@ final class ContributionAggregatorTest extends TestCase
|
|||||||
#[Test]
|
#[Test]
|
||||||
public function it_skips_unconfigured_providers(): void
|
public function it_skips_unconfigured_providers(): void
|
||||||
{
|
{
|
||||||
$provider = $this->createStub(ProviderInterface::class);
|
$provider = $this->makeProvider('github', configured: false);
|
||||||
$provider->method('isConfigured')->willReturn(false);
|
|
||||||
|
|
||||||
$aggregator = new ContributionAggregator([$provider], $this->logger);
|
$aggregator = new ContributionAggregator([$provider], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
@@ -47,69 +62,68 @@ final class ContributionAggregatorTest extends TestCase
|
|||||||
#[Test]
|
#[Test]
|
||||||
public function it_returns_contributions_from_a_configured_provider(): void
|
public function it_returns_contributions_from_a_configured_provider(): void
|
||||||
{
|
{
|
||||||
$provider = $this->createStub(ProviderInterface::class);
|
$date = (new \DateTimeImmutable('-1 day'))->format('Y-m-d');
|
||||||
$provider->method('isConfigured')->willReturn(true);
|
$provider = $this->makeProvider('github', fresh: [$date => 3]);
|
||||||
$provider->method('resolveFetch')->willReturn(['2024-01-01' => 3]);
|
|
||||||
|
|
||||||
$aggregator = new ContributionAggregator([$provider], $this->logger);
|
$aggregator = new ContributionAggregator([$provider], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
$this->assertSame(['2024-01-01' => 3], $result);
|
$this->assertSame([$date => 3], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
public function it_sums_contributions_from_multiple_providers_on_the_same_date(): void
|
public function it_sums_contributions_from_multiple_providers_on_the_same_date(): void
|
||||||
{
|
{
|
||||||
$providerA = $this->createStub(ProviderInterface::class);
|
$dateA = (new \DateTimeImmutable('-1 day'))->format('Y-m-d');
|
||||||
$providerA->method('isConfigured')->willReturn(true);
|
$dateB = (new \DateTimeImmutable('-2 days'))->format('Y-m-d');
|
||||||
$providerA->method('resolveFetch')->willReturn(['2024-01-01' => 3, '2024-01-02' => 1]);
|
|
||||||
|
|
||||||
$providerB = $this->createStub(ProviderInterface::class);
|
$providerA = $this->makeProvider('github', fresh: [$dateA => 3, $dateB => 1]);
|
||||||
$providerB->method('isConfigured')->willReturn(true);
|
$providerB = $this->makeProvider('gitlab', fresh: [$dateA => 2]);
|
||||||
$providerB->method('resolveFetch')->willReturn(['2024-01-01' => 2, '2024-01-03' => 5]);
|
|
||||||
|
|
||||||
$aggregator = new ContributionAggregator([$providerA, $providerB], $this->logger);
|
$aggregator = new ContributionAggregator([$providerA, $providerB], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
$this->assertSame(['2024-01-01' => 5, '2024-01-02' => 1, '2024-01-03' => 5], $result);
|
$this->assertSame([$dateB => 1, $dateA => 5], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
public function it_continues_fetching_remaining_providers_when_one_throws_on_start(): void
|
public function it_continues_fetching_remaining_providers_when_one_throws_on_start(): void
|
||||||
{
|
{
|
||||||
|
$date = (new \DateTimeImmutable('-1 day'))->format('Y-m-d');
|
||||||
|
|
||||||
$failing = $this->createStub(ProviderInterface::class);
|
$failing = $this->createStub(ProviderInterface::class);
|
||||||
|
$failing->method('getName')->willReturn('gitlab');
|
||||||
$failing->method('isConfigured')->willReturn(true);
|
$failing->method('isConfigured')->willReturn(true);
|
||||||
$failing->method('startFetch')->willThrowException(new \RuntimeException('Network error'));
|
$failing->method('startFetch')->willThrowException(new \RuntimeException('Network error'));
|
||||||
|
|
||||||
$healthy = $this->createStub(ProviderInterface::class);
|
$healthy = $this->makeProvider('github', fresh: [$date => 7]);
|
||||||
$healthy->method('isConfigured')->willReturn(true);
|
|
||||||
$healthy->method('resolveFetch')->willReturn(['2024-01-01' => 7]);
|
|
||||||
|
|
||||||
$aggregator = new ContributionAggregator([$failing, $healthy], $this->logger);
|
$aggregator = new ContributionAggregator([$failing, $healthy], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
$this->assertSame(['2024-01-01' => 7], $result);
|
$this->assertSame([$date => 7], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
public function it_continues_fetching_remaining_providers_when_one_throws_on_resolve(): void
|
public function it_continues_fetching_remaining_providers_when_one_throws_on_resolve(): void
|
||||||
{
|
{
|
||||||
|
$date = (new \DateTimeImmutable('-1 day'))->format('Y-m-d');
|
||||||
|
|
||||||
$failing = $this->createStub(ProviderInterface::class);
|
$failing = $this->createStub(ProviderInterface::class);
|
||||||
|
$failing->method('getName')->willReturn('gitlab');
|
||||||
$failing->method('isConfigured')->willReturn(true);
|
$failing->method('isConfigured')->willReturn(true);
|
||||||
$failing->method('resolveFetch')->willThrowException(new \RuntimeException('Network error'));
|
$failing->method('resolveFetch')->willThrowException(new \RuntimeException('Network error'));
|
||||||
|
|
||||||
$healthy = $this->createStub(ProviderInterface::class);
|
$healthy = $this->makeProvider('github', fresh: [$date => 7]);
|
||||||
$healthy->method('isConfigured')->willReturn(true);
|
|
||||||
$healthy->method('resolveFetch')->willReturn(['2024-01-01' => 7]);
|
|
||||||
|
|
||||||
$aggregator = new ContributionAggregator([$failing, $healthy], $this->logger);
|
$aggregator = new ContributionAggregator([$failing, $healthy], $this->store, $this->logger);
|
||||||
|
|
||||||
$result = $aggregator->aggregate();
|
$result = $aggregator->aggregate();
|
||||||
|
|
||||||
$this->assertSame(['2024-01-01' => 7], $result);
|
$this->assertSame([$date => 7], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
@@ -119,10 +133,11 @@ final class ContributionAggregatorTest extends TestCase
|
|||||||
$logger->expects($this->once())->method('warning');
|
$logger->expects($this->once())->method('warning');
|
||||||
|
|
||||||
$provider = $this->createStub(ProviderInterface::class);
|
$provider = $this->createStub(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn('github');
|
||||||
$provider->method('isConfigured')->willReturn(true);
|
$provider->method('isConfigured')->willReturn(true);
|
||||||
$provider->method('startFetch')->willThrowException(new \RuntimeException('fail'));
|
$provider->method('startFetch')->willThrowException(new \RuntimeException('fail'));
|
||||||
|
|
||||||
(new ContributionAggregator([$provider], $logger))->aggregate();
|
(new ContributionAggregator([$provider], $this->store, $logger))->aggregate();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[Test]
|
#[Test]
|
||||||
@@ -132,9 +147,77 @@ final class ContributionAggregatorTest extends TestCase
|
|||||||
$logger->expects($this->once())->method('warning');
|
$logger->expects($this->once())->method('warning');
|
||||||
|
|
||||||
$provider = $this->createStub(ProviderInterface::class);
|
$provider = $this->createStub(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn('github');
|
||||||
$provider->method('isConfigured')->willReturn(true);
|
$provider->method('isConfigured')->willReturn(true);
|
||||||
$provider->method('resolveFetch')->willThrowException(new \RuntimeException('fail'));
|
$provider->method('resolveFetch')->willThrowException(new \RuntimeException('fail'));
|
||||||
|
|
||||||
(new ContributionAggregator([$provider], $logger))->aggregate();
|
(new ContributionAggregator([$provider], $this->store, $logger))->aggregate();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_consults_latest_date_and_narrows_the_since_window_by_three_days(): void
|
||||||
|
{
|
||||||
|
$latest = (new \DateTimeImmutable('-30 days'))->getTimestamp();
|
||||||
|
$this->store->add('github', $latest, 1);
|
||||||
|
|
||||||
|
$provider = $this->createMock(ProviderInterface::class);
|
||||||
|
$provider->method('getName')->willReturn('github');
|
||||||
|
$provider->method('isConfigured')->willReturn(true);
|
||||||
|
$provider->expects($this->once())
|
||||||
|
->method('startFetch')
|
||||||
|
->with($this->callback(
|
||||||
|
fn (?\DateTimeImmutable $since): bool => $since !== null
|
||||||
|
&& $since->getTimestamp() === $latest - 3 * 86400
|
||||||
|
))
|
||||||
|
->willReturn(null);
|
||||||
|
$provider->method('resolveFetch')->willReturn([]);
|
||||||
|
|
||||||
|
(new ContributionAggregator([$provider], $this->store, $this->logger))->aggregate();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_merges_freshly_fetched_contributions_into_the_store(): void
|
||||||
|
{
|
||||||
|
$date = (new \DateTimeImmutable('-1 day'))->format('Y-m-d');
|
||||||
|
$provider = $this->makeProvider('github', fresh: [$date => 4]);
|
||||||
|
|
||||||
|
(new ContributionAggregator([$provider], $this->store, $this->logger))->aggregate();
|
||||||
|
|
||||||
|
$stored = iterator_to_array($this->store->all('github'));
|
||||||
|
$this->assertCount(1, $stored);
|
||||||
|
$this->assertSame(4, $stored[0]->count);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_prunes_the_store_once_per_aggregate_call(): void
|
||||||
|
{
|
||||||
|
$store = $this->createMock(ContributionStore::class);
|
||||||
|
$store->method('latestDate')->willReturn(null);
|
||||||
|
$store->method('all')->willReturn(new \GitContributionGraph\Entity\ContributionCollection());
|
||||||
|
$store->expects($this->once())->method('prune');
|
||||||
|
|
||||||
|
$provider = $this->makeProvider('github', fresh: []);
|
||||||
|
|
||||||
|
(new ContributionAggregator([$provider], $store, $this->logger))->aggregate();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_leaves_other_providers_stored_data_intact_when_one_provider_fails(): void
|
||||||
|
{
|
||||||
|
$date = (new \DateTimeImmutable('-1 day'))->getTimestamp();
|
||||||
|
$this->store->add('gitlab', $date, 9);
|
||||||
|
|
||||||
|
$failing = $this->createStub(ProviderInterface::class);
|
||||||
|
$failing->method('getName')->willReturn('gitlab');
|
||||||
|
$failing->method('isConfigured')->willReturn(true);
|
||||||
|
$failing->method('startFetch')->willThrowException(new \RuntimeException('Network error'));
|
||||||
|
|
||||||
|
$healthy = $this->makeProvider('github', fresh: []);
|
||||||
|
|
||||||
|
(new ContributionAggregator([$failing, $healthy], $this->store, $this->logger))->aggregate();
|
||||||
|
|
||||||
|
$stored = iterator_to_array($this->store->all('gitlab'));
|
||||||
|
$this->assertCount(1, $stored);
|
||||||
|
$this->assertSame(9, $stored[0]->count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service;
|
namespace GitContributionGraph\Tests\Unit\Service;
|
||||||
|
|
||||||
use App\Service\ContributionStore;
|
use GitContributionGraph\Service\ContributionStore;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\GitHubProvider;
|
use GitContributionGraph\Service\Provider\GitHubProvider;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
@@ -29,6 +29,7 @@ final class GitHubProviderTest extends TestCase
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @param array<int, array{contributionDays: array<int, array{date: string, contributionCount: int}>}> $weeks */
|
||||||
private function stubGraphqlResponse(array $weeks): ResponseInterface
|
private function stubGraphqlResponse(array $weeks): ResponseInterface
|
||||||
{
|
{
|
||||||
$response = $this->createStub(ResponseInterface::class);
|
$response = $this->createStub(ResponseInterface::class);
|
||||||
@@ -131,4 +132,27 @@ final class GitHubProviderTest extends TestCase
|
|||||||
|
|
||||||
$this->assertSame([], $result);
|
$this->assertSame([], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_narrows_the_graphql_query_window_when_since_and_until_are_given(): void
|
||||||
|
{
|
||||||
|
$since = new \DateTimeImmutable('2024-01-01');
|
||||||
|
$until = new \DateTimeImmutable('2024-01-31');
|
||||||
|
$capturedQuery = null;
|
||||||
|
|
||||||
|
$client = $this->createMock(HttpClientInterface::class);
|
||||||
|
$client->method('request')->willReturnCallback(
|
||||||
|
function (string $method, string $url, array $options) use (&$capturedQuery): ResponseInterface {
|
||||||
|
$capturedQuery = $options['json']['query'];
|
||||||
|
|
||||||
|
return $this->stubGraphqlResponse([]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
$provider = $this->makeProvider(client: $client);
|
||||||
|
$provider->startFetch($since, $until);
|
||||||
|
|
||||||
|
$this->assertStringContainsString('2024-01-01T00:00:00Z', $capturedQuery);
|
||||||
|
$this->assertStringContainsString('2024-01-31T23:59:59Z', $capturedQuery);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\GitLabProvider;
|
use GitContributionGraph\Service\Provider\GitLabProvider;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
@@ -31,6 +31,7 @@ final class GitLabProviderTest extends TestCase
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @param array<int, array<string, int|string>> $data raw JSON body, e.g. events or the user lookup */
|
||||||
private function stubResponse(array $data): ResponseInterface
|
private function stubResponse(array $data): ResponseInterface
|
||||||
{
|
{
|
||||||
$response = $this->createStub(ResponseInterface::class);
|
$response = $this->createStub(ResponseInterface::class);
|
||||||
@@ -128,4 +129,27 @@ final class GitLabProviderTest extends TestCase
|
|||||||
$this->assertSame(100, $result['2024-06-10']);
|
$this->assertSame(100, $result['2024-06-10']);
|
||||||
$this->assertSame(1, $result['2024-06-11']);
|
$this->assertSame(1, $result['2024-06-11']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_sends_after_and_before_query_params_when_since_and_until_are_given(): void
|
||||||
|
{
|
||||||
|
$capturedQuery = null;
|
||||||
|
|
||||||
|
$client = $this->createMock(HttpClientInterface::class);
|
||||||
|
$client->method('request')->willReturnCallback(
|
||||||
|
function (string $method, string $url, array $options = []) use (&$capturedQuery): ResponseInterface {
|
||||||
|
if (str_contains($url, '/events')) {
|
||||||
|
$capturedQuery = $options['query'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->stubResponse(str_contains($url, '/events') ? [] : [['id' => 42]]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
$provider = $this->makeProvider(client: $client);
|
||||||
|
$provider->startFetch(new \DateTimeImmutable('2024-01-01'), new \DateTimeImmutable('2024-01-31'));
|
||||||
|
|
||||||
|
$this->assertSame('2024-01-01', $capturedQuery['after']);
|
||||||
|
$this->assertSame('2024-01-31', $capturedQuery['before']);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\GiteaProvider;
|
use GitContributionGraph\Service\Provider\GiteaProvider;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
@@ -30,6 +30,7 @@ final class GiteaProviderTest extends TestCase
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @param array<int, array{timestamp: int, contributions: int}> $data */
|
||||||
private function stubResponse(array $data): ResponseInterface
|
private function stubResponse(array $data): ResponseInterface
|
||||||
{
|
{
|
||||||
$response = $this->createStub(ResponseInterface::class);
|
$response = $this->createStub(ResponseInterface::class);
|
||||||
@@ -111,4 +112,44 @@ final class GiteaProviderTest extends TestCase
|
|||||||
|
|
||||||
$this->assertSame([], $result);
|
$this->assertSame([], $result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_filters_out_entries_before_since(): void
|
||||||
|
{
|
||||||
|
$since = new \DateTimeImmutable('2024-01-10');
|
||||||
|
$before = $since->modify('-1 day')->getTimestamp();
|
||||||
|
$after = $since->modify('+1 day')->getTimestamp();
|
||||||
|
|
||||||
|
$client = $this->createStub(HttpClientInterface::class);
|
||||||
|
$client->method('request')->willReturn($this->stubResponse([
|
||||||
|
['timestamp' => $before, 'contributions' => 3],
|
||||||
|
['timestamp' => $after, 'contributions' => 2],
|
||||||
|
]));
|
||||||
|
|
||||||
|
$provider = $this->makeProvider(client: $client);
|
||||||
|
$result = $provider->resolveFetch($provider->startFetch($since));
|
||||||
|
|
||||||
|
$this->assertArrayNotHasKey(date('Y-m-d', $before), $result);
|
||||||
|
$this->assertSame(2, $result[date('Y-m-d', $after)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Test]
|
||||||
|
public function it_filters_out_entries_after_until(): void
|
||||||
|
{
|
||||||
|
$until = new \DateTimeImmutable('-10 days');
|
||||||
|
$before = $until->modify('-1 day')->getTimestamp();
|
||||||
|
$after = $until->modify('+1 day')->getTimestamp();
|
||||||
|
|
||||||
|
$client = $this->createStub(HttpClientInterface::class);
|
||||||
|
$client->method('request')->willReturn($this->stubResponse([
|
||||||
|
['timestamp' => $before, 'contributions' => 3],
|
||||||
|
['timestamp' => $after, 'contributions' => 2],
|
||||||
|
]));
|
||||||
|
|
||||||
|
$provider = $this->makeProvider(client: $client);
|
||||||
|
$result = $provider->resolveFetch($provider->startFetch(null, $until));
|
||||||
|
|
||||||
|
$this->assertSame(3, $result[date('Y-m-d', $before)]);
|
||||||
|
$this->assertArrayNotHasKey(date('Y-m-d', $after), $result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\ProbeTrait;
|
use GitContributionGraph\Service\Provider\ProbeTrait;
|
||||||
use App\Service\Provider\ProviderErrorCode;
|
use GitContributionGraph\Service\Provider\ProviderErrorCode;
|
||||||
use App\Service\Provider\ProviderInterface;
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
use App\Service\Provider\ProviderStatusType;
|
use GitContributionGraph\Service\Provider\ProviderStatusType;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
@@ -31,7 +31,7 @@ final class ProbeTraitTest extends TestCase
|
|||||||
public function isConfigured(): bool { return $this->configured; }
|
public function isConfigured(): bool { return $this->configured; }
|
||||||
public function getName(): string { return 'test'; }
|
public function getName(): string { return 'test'; }
|
||||||
public function ping(): void { ($this->ping)(); }
|
public function ping(): void { ($this->ping)(); }
|
||||||
public function startFetch(): mixed { return null; }
|
public function startFetch(?\DateTimeImmutable $since = null, ?\DateTimeImmutable $until = null): mixed { return null; }
|
||||||
public function resolveFetch(mixed $handle): array { return []; }
|
public function resolveFetch(mixed $handle): array { return []; }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\ProviderErrorCode;
|
use GitContributionGraph\Service\Provider\ProviderErrorCode;
|
||||||
use App\Service\Provider\ProviderHealthChecker;
|
use GitContributionGraph\Service\Provider\ProviderHealthChecker;
|
||||||
use App\Service\Provider\ProviderInterface;
|
use GitContributionGraph\Service\Provider\ProviderInterface;
|
||||||
use App\Service\Provider\ProviderStatus;
|
use GitContributionGraph\Service\Provider\ProviderStatus;
|
||||||
use App\Service\Provider\ProviderStatusType;
|
use GitContributionGraph\Service\Provider\ProviderStatusType;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Provider;
|
namespace GitContributionGraph\Tests\Unit\Service\Provider;
|
||||||
|
|
||||||
use App\Service\Provider\ProviderErrorCode;
|
use GitContributionGraph\Service\Provider\ProviderErrorCode;
|
||||||
use App\Service\Provider\ProviderStatus;
|
use GitContributionGraph\Service\Provider\ProviderStatus;
|
||||||
use App\Service\Provider\ProviderStatusType;
|
use GitContributionGraph\Service\Provider\ProviderStatusType;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Tests\Unit\Service\Renderer;
|
namespace GitContributionGraph\Tests\Unit\Service\Renderer;
|
||||||
|
|
||||||
use App\Service\Renderer\SvgRenderer;
|
use GitContributionGraph\Service\Renderer\SvgRenderer;
|
||||||
use PHPUnit\Framework\Attributes\CoversClass;
|
use PHPUnit\Framework\Attributes\CoversClass;
|
||||||
use PHPUnit\Framework\Attributes\DataProvider;
|
use PHPUnit\Framework\Attributes\DataProvider;
|
||||||
use PHPUnit\Framework\Attributes\Test;
|
use PHPUnit\Framework\Attributes\Test;
|
||||||
@@ -54,6 +54,7 @@ final class SvgRendererTest extends TestCase
|
|||||||
$this->assertStringContainsString($expectedColor, $svg);
|
$this->assertStringContainsString($expectedColor, $svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @return iterable<string, array{string, string}> */
|
||||||
public static function theme_background_provider(): iterable
|
public static function theme_background_provider(): iterable
|
||||||
{
|
{
|
||||||
yield 'dark theme' => ['dark', '#0d1117'];
|
yield 'dark theme' => ['dark', '#0d1117'];
|
||||||
@@ -97,6 +98,7 @@ final class SvgRendererTest extends TestCase
|
|||||||
$this->assertStringContainsString('>' . $label . '<', $svg);
|
$this->assertStringContainsString('>' . $label . '<', $svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @return iterable<string, array{string}> */
|
||||||
public static function day_of_week_label_provider(): iterable
|
public static function day_of_week_label_provider(): iterable
|
||||||
{
|
{
|
||||||
yield 'Monday' => ['Mon'];
|
yield 'Monday' => ['Mon'];
|
||||||
|
|||||||
Reference in New Issue
Block a user