Note: This repository is a maintained fork of jaffster595/DB-Auto-Org-Chart.
SimpleOrgChart is a Flask application backed by Azure Active Directory (Entra ID) data that renders a fully interactive, client-side organisation chart. A static JavaScript front end (vanilla JS + D3) consumes cached Graph API data, offers rich filtering, and exposes an admin dashboard with compliance-friendly exports.
- Hardened security defaults: strict Content Security Policy, sanitized redirects, login isolation, and placeholder-secret protection.
- Modular front end: no inline scripts or styles; shared CSS variables power
configure,reports, and org chart experiences. - Daily automation: background scheduler refreshes Azure AD data (20:00 local time) and persists JSON caches under
data/. - Admin reporting: missing managers, filtered users, and last-login inactivity insights—each with one-click XLSX export.
- Export tooling: SVG/PNG/PDF org chart capture and server-backed XLSX generation for the current chart tree.
- Deployment ready: ships with Docker Compose and a Gunicorn configuration (
deploy/gunicorn.conf.py) for containerized hosting.
| Layer | Description |
|---|---|
Flask backend (simple_org_chart/ package) |
Serves templates/static assets, authenticates admin endpoints, manages schedulers, and stores cached Graph API responses. |
Static front end (static/*.js) |
Renders the D3 org chart, configuration UI, and reports dashboard using cached JSON. |
Data cache (data/*.json) |
Holds employee hierarchies, report snapshots, and last login activity to reduce Graph API calls. |
| Scheduler | Nightly job (20:00) refreshes employee data; manual refresh endpoints and CLI helpers are available. |
- Docker Desktop (or Docker Engine with the Compose plugin) for container-based deployment.
- An Azure AD tenant with privileges to create app registrations and grant Graph application permissions.
-
Create an App Registration
- Azure Portal ➜ Azure Active Directory ➜ App registrations ➜ New registration.
- Choose a name (for example,
SimpleOrgChart) and leave Redirect URI empty.
-
Assign Microsoft Graph Application Permissions
User.Read.AllLicenseAssignment.Read.All(required for licensing insights and admin reports)AuditLog.Read.All(required for last sign-in metrics and disabled-user audit timestamps)MailboxSettings.Read(enables mailbox-type metadata used by last sign-in filters; without it, all mailboxes are treated as standard users)- Grant admin consent for the tenant.
-
Create a Client Secret
- Certificates & secrets ➜ New client secret.
-
Capture Identifiers
- Application (client) ID →
AZURE_CLIENT_ID - Directory (tenant) ID →
AZURE_TENANT_ID
- Application (client) ID →
Copy the template and fill in your secrets.
cp .env.template .env
# edit .env with tenant/client IDs, secret, admin password, etc.Required values
AZURE_TENANT_ID– Directory (tenant) ID.AZURE_CLIENT_ID– Application (client) ID.AZURE_CLIENT_SECRET– Client secret value.ADMIN_PASSWORD– Protects/configureand/reports.SECRET_KEY– 64+ character random string for Flask sessions.
Generate a strong secret key:
python -c "import secrets; print(secrets.token_hex(32))"Optional values
| Variable | Default | Description |
|---|---|---|
APP_PORT |
5000 |
Port the application listens on. |
CORS_ALLOWED_ORIGINS |
(none) | Comma-separated list of allowed cross-origin hosts. |
RUN_INITIAL_UPDATE |
auto |
Set to true to force data refresh at startup, false to skip. |
SESSION_TYPE |
filesystem |
Flask session backend type. |
MAX_FILE_SIZE_MB |
5 |
Maximum upload size (MB) for logos and favicons. |
ALLOWED_LOGO_EXTENSIONS |
png,jpg,jpeg |
Comma-separated list of allowed logo image formats. |
ALLOWED_FAVICON_EXTENSIONS |
ico,png,jpg,jpeg |
Comma-separated list of allowed favicon formats. |
PHOTO_CACHE_SECONDS |
3600 |
Browser cache duration (seconds) for profile photos. |
PHOTO_CACHE_FILE_SECONDS |
86400 |
File cache duration (seconds) for profile photos on disk. |
RATE_LIMIT_DEFAULT |
200 per day,50 per hour |
Default rate limits for all endpoints. |
RATE_LIMIT_LOGIN |
5 per minute |
Rate limit for the login endpoint. |
RATE_LIMIT_PHOTO |
500 per hour |
Rate limit for the photo endpoint. |
RATE_LIMIT_SETTINGS |
20 per minute |
Rate limit for settings endpoints. |
RATE_LIMIT_UPLOAD |
5 per minute |
Rate limit for file upload endpoints. |
RATE_LIMIT_REFRESH |
1 per minute |
Rate limit for data refresh endpoints. |
SECURITY_HEADER_CONTENT_TYPE_OPTIONS |
nosniff |
X-Content-Type-Options header value. |
SECURITY_HEADER_FRAME_OPTIONS |
DENY |
X-Frame-Options header value. |
SECURITY_HEADER_XSS_PROTECTION |
1; mode=block |
X-XSS-Protection header value. |
SECURITY_HEADER_HSTS |
max-age=31536000; includeSubDomains |
Strict-Transport-Security header value. |
SECURITY_HEADER_CSP |
default-src 'self'; ... |
Content-Security-Policy header value. |
GRAPH_API_ENDPOINT |
https://graph.microsoft.com/v1.0 |
Microsoft Graph API v1.0 endpoint. |
GRAPH_API_BETA_ENDPOINT |
https://graph.microsoft.com/beta |
Microsoft Graph API beta endpoint. |
docker compose pull
docker compose up -d- Default port:
APP_PORT(defaults to5000). Override it in.envto change container and host bindings. - Persistent data resides in the
orgchart_datavolume. Remove it to rebuild caches from scratch. - Local execution outside Docker is not supported; use the provided container workflow for development and production.
- Interactive D3 Org Chart: Pan, zoom, and expand/collapse hierarchies with persistent hidden subtrees.
- Search & Discovery: Real-time directory search, quick navigation helpers, and configurable filters for guests/disabled users.
- Configuration UI (
/configure): Adjust styling, filtering, export columns, and scheduling without editing files. - Admin Reports (
/reports):- Missing managers
- Users by last sign-in activity
- Employees hired in the last 365 days
- Users hidden by filters
- Export Options: SVG/PNG/PDF snapshots and XLSX exports for reports and chart data.
- MicroSIP Directory Feed: Serve a MicroSIP contacts JSON at /contacts.json using cached employee data.
- Desk Phone Directory: Yealink-compatible XML phonebook at /contacts.xml for T31P, T33G, T46U, and similar models.
- Caching & Scheduling: JSON caches regenerate nightly; manual refresh endpoints keep data current on demand.
SimpleOrgChart can publish a MicroSIP-compatible directory export. Disabled by default.
- Navigate to
/configureand enable MicroSIP Directory (JSON) - Optionally change the filename (default:
contacts→/contacts.json) - Save settings
Once enabled:
- The feed reuses the cached employee list; trigger a manual refresh if the response is empty.
- Response headers disable caching so MicroSIP always retrieves the latest contacts.
- Fields include number, name, firstname, lastname, phone, mobile, email, address, city, state, comment, presence, starred, and info.
- Contacts without a desk or mobile number are skipped to keep the directory free of unreachable entries.
- Add extra entries from the Configure → Custom Directory Contacts textarea (one Name,Number pair per line) when you need off-chart contacts in the feed.
Example payload:
{
"refresh": 1736073600,
"items": [
{
"number": "5551234567",
"name": "Ada Lovelace",
"firstname": "Ada",
"lastname": "Lovelace",
"phone": "555-123-4567",
"mobile": "555-987-6543",
"email": "ada@example.com",
"city": "London",
"state": "",
"comment": "Engineering - Research",
"presence": 0,
"starred": 0
}
]
}SimpleOrgChart can provide a Yealink-compatible remote phonebook. Disabled by default.
- Navigate to
/configureand enable Desk Phone Directory (XML) - Optionally change the filename (default:
contacts→/contacts.xml) - Save settings
Once enabled:
- Compatible with Yealink T31P, T33G, T46U, and other models supporting remote XML phonebooks.
- Reuses the same cached employee list and custom contacts as the MicroSIP directory.
- Contacts without a desk or mobile number are omitted.
- Employees with both office and mobile phones will have both numbers listed.
- The phonebook title is derived from your configured Chart Title.
- Access your phone's web interface (typically
http://<phone-ip>) - Navigate to Directory → Remote Phone Book
- Add a new remote phonebook entry:
- Remote URL:
http://<your-server>:5000/<filename>.xml(use your configured filename) - Display Name:
Company Directory
- Remote URL:
- Save and reboot the phone if required
Example XML structure:
<?xml version="1.0" encoding="UTF-8"?>
<YealinkIPPhoneDirectory>
<Title>Organization Directory</Title>
<DirectoryEntry>
<Name>Ada Lovelace</Name>
<Telephone>555-123-4567</Telephone>
<Telephone>555-987-6543</Telephone>
</DirectoryEntry>
<DirectoryEntry>
<Name>Charles Babbage</Name>
<Telephone>555-111-2222</Telephone>
</DirectoryEntry>
</YealinkIPPhoneDirectory>data/employee_data.json– Full org hierarchy.data/missing_manager_records.json– Missing manager snapshot.data/disabled_user_records.json– Disabled users enriched with license and sign-in metadata.data/last_login_records.json– Active users with last sign-in timestamps.- Additional files exist for filtered/disabled-with-license/hiring reports.
If a cache is missing or stale, hit Refresh Data on the reports page or start the app with RUN_INITIAL_UPDATE=true.
- Store secrets in Azure Key Vault or your host’s secret manager; never commit
.envfiles. - Restrict
/configureand/reportsbehind reverse-proxy auth if deployed on the public internet. - Monitor
AuditLog.Read.Allusage—limit consent scope to required admins. - Rotate
AZURE_CLIENT_SECRETregularly and update the environment accordingly.
- Graph permission errors: Ensure admin consent is granted; check logs for 403 responses when fetching
signInActivity. - Stale data: Run
curl -X POST http://<host>/api/update-now(with admin auth) or remove thedata/*.jsoncaches and restart. - Export failures: Confirm
openpyxlis installed (bundled viarequirements.txt). The API returns a 500 with JSON error details if export dependencies are missing. - Missing logos: Upload custom branding via
/configure; static assets persist indata/.
Issues and pull requests are welcome. Please document new locale strings in static/locales/en-US.json, update report caches when introducing routes, and include manual validation steps if automated tests are not available.
SimpleOrgChart keeps your organisation chart and admin insights in sync with Azure AD while staying lightweight, portable, and secure.