This release is a pre-release and may not be stable for production use.
rer.linkchecker
A Plone addon that checks every internal and external link found in site contents (fields and Volto blocks) and generates a report of the broken ones.
Features
- Adds a
portal_linkcheckertool that crawls the whole site, collecting every link found in content fields and in Volto blocks (resolveuid/...links included). - Checks internal links by resolving them against the catalog, and external links concurrently over HTTP (configurable timeout, thread pool size, and per-host throttling).
- Caches external link statuses for a configurable TTL, so repeated runs only re-check links that are due.
- Distinguishes real broken links from bot-protection responses (
403,429, LinkedIn's999) and fromhttp://links that only work overhttps://(reported so they can be fixed in place, not counted as broken). - Reports the conditions that are not a plain http status with their own negative status, so they can be told apart in the CSV:
-1timeout,-2works only overhttps(update the link),-3connection error. - Does not verify TLS certificates: only reachability matters here, and many otherwise working servers omit their intermediate certificate (browsers fetch it themselves,
requestsdoes not), which would be reported as a broken link. - Exposes the results as a CSV report (
PAGE, LINK, TYPE, STATUS, DESCRIPTION) viatool.get_rows(). - Ships a
check_broken_linksconsole script to run a check from the command line or from cron, without going through the web.
Installation
Install rer.linkchecker with uv:
uv add rer.linkchecker
or add it to a zc.buildout-based project as a develop egg / source, alongside plone.volto (required: it provides the blocks/blocks_layout fields the linkchecker scans, and plone.distribution used by addPloneSite).
Then add rer.linkchecker to the eggs of your Plone instance and install the add-on from the Plone control panel (or via a GenericSetup profile) as usual.
Usage
The portal_linkchecker tool
from plone import api
tool = api.portal.get_tool("portal_linkchecker")
tool.check_site() # crawl the whole site and check every link
for uid, broken_links in tool.get_page_with_broken_links():
... # [(link, status), ...] per content UID
for item in tool.get_broken_links():
... # flat view: one dict per broken link, with the page it sits on
import csv
with open("broken_links.csv", "w", newline="") as fh:
writer = csv.writer(fh, quoting=csv.QUOTE_ALL)
for row in tool.get_rows():
writer.writerow(row)
get_broken_links() is the flat source every report is built from, and get_rows() is its csv
rendering. Both include the bot-protected links (each with its own description), while
get_page_with_broken_links() leaves them out: it answers "how many real problems are there".
Filter either with tool.filter_links(items, status=[404], link_type="EXTERNAL").
check_site(ttl=3600 * 6, timeout=15, max_workers=10) accepts:
ttl: seconds a cached external link status stays valid (0forces a full recheck).timeout: per-request timeout, in seconds, for external links.max_workers: number of concurrent threads checking external links.
The check_broken_links console script
Installed as a standard console_scripts entry point ([project.scripts] in pyproject.toml), so it lands in bin/ both in a uv-managed virtualenv and in a zc.buildout instance. Since it runs Zope/ZODB code, it must be launched through zconsole/instance run, not called directly:
# uv-managed instance (Makefile: make check-broken-links)
./bin/zconsole run instance/etc/zope.conf ./.venv/bin/check_broken_links
# zc.buildout instance
./bin/instance run bin/check_broken_links
Options:
--ttl,--workers,--timeout: same meaning as oncheck_site().--output-dir: also dump the run as a csv in this directory (default: no csv).--site-id: id of the Plone site to check (default: thePLONE_SITE_IDenv var, orPlone).--url <url>: verify a single url and log its status, without touching the site.--content <path-or-UID>: verify a single content's links and log them, without touching the site.
The script stores the report in the site, which is where the REST API endpoints below read it
from: that is the normal way to get at the result. With --output-dir it also writes
<output-dir>/<siteid>_broken_links_<YYYYMMDD-HHMMSS>.csv, byte for byte the csv
@linkchecker-csv serves — worth it only to keep an archive of past runs, since the site holds
the last one alone.
The REST API endpoints
Two read-only endpoints on the site root expose the stored report, both guarded by the
rer.linkchecker.ViewReport permission (granted to Manager, Site Administrator and
Editor).
They never run a check: a full check takes minutes on a medium site and would time the
request out, so they only serve what the last run stored. Refresh the data out of band, with
the check_broken_links script from cron. Because the data is therefore asynchronous, both
responses carry the timestamp it dates from.
# the report as json, batched (plone.restapi conventions: b_start, b_size)
curl -u user:pass "$SITE/++api++/@linkchecker" -H 'Accept: application/json'
# the same report as a csv download
curl -u user:pass -OJ "$SITE/++api++/@linkchecker-csv"
Both accept the same filters:
status: repeatable, e.g.?status=404&status=-2(negative values are theSTATUS_*constants:-1timeout,-2https-only,-3connection error).type:INTERNALorEXTERNAL.
An invalid filter value answers 400 rather than silently returning an empty report.
@linkchecker returns last_update and duration for the whole run, items_total, the
batched items, and a summary listing {status, status_description, count} sorted by count.
The summary is computed over the unfiltered report on purpose, so the counts a UI shows in
its filter chips do not move as filters are applied. When no check has ever run, last_update
is null and items/summary are empty, which a UI can tell apart from "nothing is broken".
Each item describes the page it sits on with the usual plone.restapi field names, so a client can treat it as any other content reference, and names the link's own fields apart from those:
{
"@id": "http://site/bandi-e-avvisi",
"@type": "Document",
"title": "Bandi e avvisi",
"UID": "1a568f09734340dfba2c1a53730b9cf6",
"link": "https://unimc.it/careerday",
"link_type": "EXTERNAL",
"status": 404,
"status_description": "Not Found",
"last_update": "2026-07-30T03:00:12"
}
@linkchecker-csv returns the exact same csv the console script writes (same columns, same
quoting), names the file after the date of the data rather than of the download, and repeats
that date in the X-Linkchecker-Last-Update response header.
Development
Prerequisites
- An operating system that runs all the requirements mentioned.
- uv
- Make
- Git
- Docker (optional)
Setup
git clone git@github.com:RegioneER/rer-linkchecker.git
cd rer-linkchecker/backend
make install
Common tasks
make start # start a Plone instance on localhost:8080
make create-site # create a new site from scratch
make check-broken-links # run the linkchecker and write a csv report
make test # run the test suite
Contribute
License
The project is licensed under GPLv2.
Credits
Developed with the support of Regione Emilia Romagna.
Regione Emilia Romagna supports the PloneGov initiative.
Authors
This product was developed by RedTurtle Technology team.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rer_linkchecker-1.0.0a1.tar.gz.
File metadata
- Download URL: rer_linkchecker-1.0.0a1.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09caa01ae7aa0fc08aa4c4132501f2c88a993c0e20bd1a9c7c0a230be5ae4d1a
|
|
| MD5 |
93eb99ea5e5e943e14a1cc9d218ff65d
|
|
| BLAKE2b-256 |
ef2ac73064d1861ffb6f6a4c7f83aad3e94199beb681654f857a8a01e42e5060
|
File details
Details for the file rer_linkchecker-1.0.0a1-py3-none-any.whl.
File metadata
- Download URL: rer_linkchecker-1.0.0a1-py3-none-any.whl
- Upload date:
- Size: 45.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.15 {"installer":{"name":"uv","version":"0.12.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31a1b8248559b9b2a68917256f3f94c9479a7451cdeec0e9ea6eb7c4d0381e5e
|
|
| MD5 |
249f16f232145862401fad751548735a
|
|
| BLAKE2b-256 |
590a6714f0d07c82aeb1fa94624a50abab0c794ee817b75627e3f4d42a5acb67
|