Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/deploy-analytics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy Analytics Sites

on:
workflow_dispatch:
push:
branches:
- main
paths:
- "gh-pages/**"

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "gh-pages"

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,10 @@ _templates

#Python
__pycache__/
*.egg-info/
/analytics/**/_build
/analytics/**/site/
/analytics/venv

# Credentials
.credentials/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
README.md
/CHANGELOG.md
/analytics
/gh-pages
/.gitlab
/reports

Expand Down
8 changes: 8 additions & 0 deletions analytics/analytics_package/analytics/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@
"id": "pagePath",
"alias": "Page Path",
}
DIMENSION_PAGE_PATH_PLUS_QUERY = {
"id": "pagePathPlusQueryString",
"alias": "Page Path Plus Query String",
}
DIMENSION_FILE_NAME = {
"id": "fileName",
"alias": "File Name",
}
# The url of the clicked link, only returned in EVENT_BUILTIN_CLICK. Does not include URL fragments
DIMENSION_BUILTIN_URL = {
"id": "linkUrl",
Expand Down
103 changes: 103 additions & 0 deletions analytics/analytics_package/analytics/static_site/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
# Static Analytics Site Generator

Generates static HTML dashboards from GA4 data for data-browser apps. Each app (AnVIL Explorer, AnVIL Catalog, HCA Data Explorer, LungMAP) has its own `generate_static_site.py` script that calls the shared `generate_site()` function with app-specific configuration.

## Prerequisites

1. **Python virtual environment**:
```
cd analytics
source ./venv/bin/activate
pip install -e ./analytics_package/
```

2. **OAuth credentials**: Place the GA4 OAuth client secret JSON file in `.credentials/` at the repo root:
- `.credentials/anvil_ga4_credentials.json` — AnVIL Explorer and AnVIL Catalog
- `.credentials/hca_ga4_credentials.json` — HCA Data Explorer and LungMAP

## Generating a site

From the app's analytics directory, run:

```
cd analytics
source ./venv/bin/activate
cd anvil-explorer-sheets # or anvil-catalog-sheets, hca-explorer-sheets, lungmap-analytics/sheets
python generate_static_site.py
```

A browser window will open for Google OAuth. After authenticating, the script fetches data from GA4 and writes the site to `./site/`.

To view locally:

```
cd site && python -m http.server 8080
```

Then open http://localhost:8080.

## Updating the report month

Each app has a `constants.py` file with `CURRENT_MONTH` (e.g., `"2026-03"`). Update this value before generating a new report.

## Architecture

### Shared package (`analytics/analytics_package/analytics/static_site/`)

| File | Purpose |
|------|---------|
| `generator.py` | Orchestrates fetch, title resolution, template copy, and data export |
| `fetch.py` | Fetches GA4 data: traffic, pageviews, outbound links, filter selections, sessions, engagement rate, custom events, file downloads, and access requests |
| `export.py` | Exports DataFrames and dicts to JSON files in `site/data/` |
| `resolve.py` | Resolves entity UUIDs to titles via catalog APIs (AnVIL, HCA/LungMAP Azul) |
| `template/index.html` | Config-driven HTML template with Chart.js charts and data tables |

### Per-app scripts

| App | Script | Credentials | Catalog API |
|-----|--------|-------------|-------------|
| AnVIL Explorer | `anvil-explorer-sheets/generate_static_site.py` | `anvil_ga4_credentials.json` | `service.explore.anvilproject.org/index/datasets` |
| AnVIL Catalog | `anvil-catalog-sheets/generate_static_site.py` | `anvil_ga4_credentials.json` | — |
| HCA Data Explorer | `hca-explorer-sheets/generate_static_site.py` | `hca_ga4_credentials.json` | `service.azul.data.humancellatlas.org/index/projects` |
| LungMAP | `lungmap-analytics/sheets/generate_static_site.py` | `hca_ga4_credentials.json` | `service.azul.data.humancellatlas.org/index/projects` (catalog=lm10) |

### Configuration

Each script passes a `config` dict and additional `generate_site()` parameters:

**Config dict** (controls branding and dashboard features):
- `site_title` — page heading and browser title
- `logo_url`, `logo_link`, `favicon_url` — header branding
- `primary_color`, `primary_color_dark` — theme colors
- `entity_label`, `entity_path` — entity type label ("Dataset" or "Project") and URL path prefix
- `summary_stats` — top-level stat cards aggregating multiple events
Comment thread
MillenniumFalconMechanic marked this conversation as resolved.
- `event_counts` — key metric count cards with labels (supports `\n` for line breaks)
- `file_downloads_position` — position of the file downloads card within detail tables

**`generate_site()` parameters** (passed alongside config):
- `custom_events` — list of GA4 events to track, with optional `detail_table`, `page_path_regex`, and `key` for disambiguation
- `access_request_urls` — URL patterns for tracking outbound access requests (AnVIL only)
- `title_resolver` — callback to enrich detail records with entity titles
- `historic_data_path` — path to pre-GA4 data (optional)

### Title resolution

For apps with dataset/project detail tables, a `title_resolver` callback enriches records with human-readable names by querying the app's catalog API. This happens in-memory before data is written to disk.

### Output structure

```
site/
├── index.html # Dashboard (copied from template)
└── data/
├── config.json
├── meta.json
├── monthly_traffic.json
├── pageviews.json
├── outbound_links.json
├── filter_selected.json
├── file_downloads.json
├── custom_events.json
├── access_requests.json # AnVIL only
└── event_*_detail.json # Per-event detail tables
```
4 changes: 4 additions & 0 deletions analytics/analytics_package/analytics/static_site/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .generator import generate_site
from .resolve import fetch_entity_title_map, enrich_detail_records

__all__ = ["generate_site", "fetch_entity_title_map", "enrich_detail_records"]
193 changes: 193 additions & 0 deletions analytics/analytics_package/analytics/static_site/export.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
"""Export analytics DataFrames to JSON files for the static site."""

import glob
import json
import os
from datetime import datetime

import pandas as pd

from ..entities import (
DIMENSION_PAGE_PATH,
DIMENSION_FILTER_NAME,
DIMENSION_FILTER_VALUE,
METRIC_EVENT_COUNT,
METRIC_PAGE_VIEWS,
SYNTHETIC_DIMENSION_CLICKED_LINK,
SYNTHETIC_METRIC_CLICKS,
)
from .fetch import event_key


def export_df_as_json(df, col_map, change_col, filename, output_dir):
"""Export a DataFrame to JSON with column renaming and NaN handling.

Args:
df: Source DataFrame.
col_map: Dict mapping source column names to output names.
change_col: Source column name for the change metric (may be absent).
filename: Output JSON filename.
output_dir: Output directory.
"""
if df is None or len(df) == 0:
records = []
else:
export_cols = list(col_map.keys())
output_names = list(col_map.values())
if change_col is not None and change_col in df.columns:
export_cols.append(change_col)
output_names.append("change")

export = df[export_cols].copy()
export.columns = output_names

for col in output_names:
if col != "change" and export[col].dtype != object:
export[col] = export[col].fillna(0).astype(int)

records = export.to_dict(orient="records")
for record in records:
if pd.isna(record.get("change")):
record["change"] = None

with open(os.path.join(output_dir, filename), "w") as f:
json.dump(records, f, indent=2)
print(f" Wrote {filename} ({len(records)} records)")


def export_data(data, config, current_month, analytics_start, custom_events, output_dir):
"""Export all analytics data to JSON files.

Args:
data: Dict containing DataFrames and stats from fetch_data.
config: Site config dict (title, logo, colors).
current_month: Current month string (YYYY-MM).
analytics_start: Analytics start date string.
custom_events: List of custom event dicts with results.
output_dir: Output directory for JSON files.
"""
os.makedirs(output_dir, exist_ok=True)

for old_file in glob.glob(os.path.join(output_dir, "event_*_detail.json")):
os.remove(old_file)

df_monthly_traffic = data["monthly_traffic"]
dates = data.get("dates", {})

# Monthly traffic
print("Exporting monthly traffic data...")
traffic_data = df_monthly_traffic[["Month", "Users", "Total Pageviews"]].copy()
traffic_data.columns = ["month", "users", "pageviews"]
traffic_data["month"] = traffic_data["month"].astype(str)
traffic_data["users"] = traffic_data["users"].fillna(0).astype(int)
traffic_data["pageviews"] = traffic_data["pageviews"].fillna(0).astype(int)

with open(os.path.join(output_dir, "monthly_traffic.json"), "w") as f:
json.dump(traffic_data.to_dict(orient="records"), f, indent=2)
print(f" Wrote monthly_traffic.json ({len(traffic_data)} records)")

# Pageviews
print("Exporting pageviews data...")
export_df_as_json(
data["pageviews"],
{DIMENSION_PAGE_PATH["alias"]: "page", METRIC_PAGE_VIEWS["alias"]: "views"},
METRIC_PAGE_VIEWS["change_alias"],
"pageviews.json",
output_dir,
)

print("Exporting outbound links data...")
export_df_as_json(
data["outbound"],
{SYNTHETIC_DIMENSION_CLICKED_LINK["alias"]: "link", SYNTHETIC_METRIC_CLICKS["alias"]: "clicks"},
SYNTHETIC_METRIC_CLICKS["change_alias"],
"outbound_links.json",
output_dir,
)

print("Exporting filter selections data...")
export_df_as_json(
data.get("filter_selected"),
{DIMENSION_FILTER_NAME["alias"]: "filterName", DIMENSION_FILTER_VALUE["alias"]: "filterValue", METRIC_EVENT_COUNT["alias"]: "count"},
METRIC_EVENT_COUNT["change_alias"],
"filter_selected.json",
output_dir,
)

# File downloads
print("Exporting file downloads data...")
file_downloads = data.get("file_downloads", [])
with open(os.path.join(output_dir, "file_downloads.json"), "w") as f:
json.dump(file_downloads, f, indent=2)
print(f" Wrote file_downloads.json ({len(file_downloads)} records)")

# Access requests
print("Exporting access requests data...")
access_requests = data.get("access_requests", [])
with open(os.path.join(output_dir, "access_requests.json"), "w") as f:
json.dump(access_requests, f, indent=2)
print(f" Wrote access_requests.json ({len(access_requests)} records)")

# File download events (GA4 enhanced measurement)
print("Exporting file download events data...")
file_download_events = data.get("file_download_events", {"total": 0, "files": []})
with open(os.path.join(output_dir, "file_download_events.json"), "w") as f:
json.dump(file_download_events, f, indent=2)
print(f" Wrote file_download_events.json ({len(file_download_events.get('files', []))} files)")

# Search queries
print("Exporting search queries data...")
search_queries = data.get("search_queries", {"total": 0, "queries": []})
with open(os.path.join(output_dir, "search_queries.json"), "w") as f:
json.dump(search_queries, f, indent=2)
print(f" Wrote search_queries.json ({len(search_queries.get('queries', []))} queries)")

# Custom events
print("Exporting custom events data...")
events_output = []
for event in custom_events:
key = event_key(event)
stats = data.get(f"event_{key}", {"current": 0, "prior": 0, "change": None})
events_output.append({
"event_name": key,
"label": event["label"],
**stats,
})

with open(os.path.join(output_dir, "custom_events.json"), "w") as f:
json.dump(events_output, f, indent=2)
print(f" Wrote custom_events.json ({len(events_output)} events)")

# Export detail tables for events that have them
for event in custom_events:
key = event_key(event)
detail = data.get(f"event_{key}_detail")
if detail is not None:
filename = f"event_{key}_detail.json"
with open(os.path.join(output_dir, filename), "w") as f:
json.dump(detail, f, indent=2)
print(f" Wrote {filename} ({len(detail)} records)")

# Config (for the HTML template)
print("Exporting site config...")
with open(os.path.join(output_dir, "config.json"), "w") as f:
json.dump(config, f, indent=2)
print(" Wrote config.json")

# Metadata
print("Exporting metadata...")
meta = {
"generated_at": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
"current_month": current_month,
"current_month_start": dates.get("start_current", ""),
"current_month_end": dates.get("end_current", ""),
"prior_month_start": dates.get("start_prior", ""),
"prior_month_end": dates.get("end_prior", ""),
"analytics_start": analytics_start,
"sessions": data.get("sessions", {}),
"engagement_rate": data.get("engagement_rate", {}),
}

with open(os.path.join(output_dir, "meta.json"), "w") as f:
json.dump(meta, f, indent=2)
print(" Wrote meta.json")
Loading
Loading