The DocumentCloud WordPress plugin lets you embed DocumentCloud resources into WordPress content using shortcodes.
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html"]
- Upload the contents of the
src/documentcloud
plugin towp-content/plugins/documentcloud
- Activate the plugin through the "Plugins" menu
- In your posts, embed documents, pages, or notes using the DocumentCloud button or the
[documentcloud]
shortcode - Optional: Set a default width/height for all DocumentCloud embeds (which can be overridden on a per-embed basis with the
height/width
attributes) at Settings > DocumentCloud. (This default width will only be used if you setresponsive="false"
on an embed.)
Upgrading from Navis DocumentCloud: If you're currently using the Navis DocumentCloud plugin (from which this plugin was built), you'll want to deactivate or delete it before installing this plugin.
This plugin allows you to embed DocumentCloud resources using either the raw URL on its own line:
Here's something you should really take a look at:
https://www.documentcloud.org/documents/282753-lefler-thesis.html
Isn't that interesting?
Or a custom shortcode:
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html"]
When you save, WordPress fetches and stores the actual embed code HTML from the DocumentCloud servers using oEmbed. You can freely toggle between visual and HTML mode without mangling embed code, and your embed will always be up to date with the latest embed code.
By default, documents will have a responsive width (it will narrow and widen as necessary to fill available content area) and use the theme's default height. If you want to override this, you can either set responsive="false"
or explicitly set a width
:
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html" width="600"]
You can set your own defaults in Settings > DocumentCloud, but default widths will be ignored unless responsive
is disabled:
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html" responsive="false"]
To embed a single page, use any page-specific URL. Pages ignore width/height
and always act responsively:
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html#document/p1"]
To embed a note, use any note-specific URL. Notes ignore width/height
and always act responsively:
[documentcloud url="https://www.documentcloud.org/documents/282753-lefler-thesis.html#document/p1/a53674"]
Here's the full list of embed options you can pass via shortcode attributes; some are specific to the type of resource you're embedding.
url
(required, string): Full URL of the DocumentCloud resource.container
(string): ID of element to insert the embed into; if excluded, embedder will create its own container.
height
(integer): Height (in pixels) of the embed.width
(integer): Width (in pixels) of the embed. If used, will implicitly setresponsive="false"
.responsive
(boolean): Use responsive layout, which dynamically adjusts width to fill content area. Defaultstrue
.responsive_offset
(integer): Distance (in pixels) to vertically offset the viewer for some responsive embeds.page
(integer): Page number to have the document scroll to by default.note
(integer): ID of the note that the document should highlight by default.notes
(boolean): Hide or show notes.search
(boolean): Hide or show search form.sidebar
(boolean): Hide or show sidebar.pdf
(boolean): Hide or show link to download original PDF.text
(boolean): Hide or show text tab.zoom
(boolean): Hide or show zoom slider.format
(string): Indicate to the theme that this is a wide asset by setting this towide
. Defaultsnormal
.
Or as a Gutenberg Block :
DocumentCloud
Here's the list of settings that can be used for the block:
WIDTH
(number): Sets the width of the document (optional)HEIGHT
(number): Sets the height of the document (optional)STYLE
(string): Adds additional style to the embedded document (optional)
The following options can only be used for Documents:
Show Title
(toggle): Determines whether to show the title of the embedded documentShow FullScreen Button
(toggle): Determines whether to show a full screen icon on the documentOnly Show Organization
(toggle): Determines whether to only show the organization name that published the document.Show PDF Download Link
(toggle): Determines whether to show the download as pdf icon for documents.
Note - The default width and height from the Settings does not work for the Gutenberg Block.
You can read more about publishing and embedding DocumentCloud resources on https://www.documentcloud.org/help/publishing.
To make a resource discoverable by oEmbed consumers, you can include a <link>
tag that specifies the oEmbed endpoint URL. So in one version of reality, once you tell WordPress "this resource is oEmbeddable", WordPress would cURL the resource URL, look for the oEmbed link tag in its header, pluck out the oEmbed endpoint from the <link>
tag's href
, and then hit that endpoint for the embed code. In our actual reality, that's considered a waste of a cURL, so we have to actually describe the format of our oEmbed endpoint within WordPress itself.
Ideally, when WordPress hits our oEmbed service to fetch the embed code, it would obey the cache_age
we return. Despite conversation around this, it doesn't seem to.
Instead, it lets us choose between no cache at all (so every pageload triggers a call to our oEmbed service to get the embed code) or a supposed 24-hour cache stored in the postmeta
table. Unfortunately, our tests seem to show this cache is never expired, which means we can choose between no cache (thus possibly DDOSing ourselves) or a permanent cache (thus possibly having stale embed codes). We've chosen the latter; hopefully this cache does eventually expire, and our embed codes shouldn't change that often anyway.
If you find yourself absolutely needing to expire the cache, though, you have two choices:
- Delete the appropriate
_oembed_*
rows from yourpostmeta
table. - Modify the shortcode attributes for the embed, since this is recognized as a new embed by WordPress.
Plugin files are located in src/documentcloud
Docker is used to spin up a development and testing WordPress environment.
Unit tests are setup using PHPUnit and Jest, please refer to Testing Setup for the setup steps
# Start services
docker compose up
# Fix permissions
docker compose exec wordpress chown -R www-data:www-data /var/www/html
- Go to
localhost:8000
- Create an account. Save the username and password, then log in.
- Go to the Plugins section, then activate the "DocumentCloud" plugin.
Tests can be run in a separate container called testing
.
To test the PHP plugin, use phpunit
command inside the testing container's bash
shell after setting it up:
# 1. Open a shell into the testing service
docker compose exec -it testing bash
# 2. Install the WordPress Test Suite anytime you rebuild the container
./bin/install-wp-tests.sh test root password db latest
# 3. Now the container is ready to run PHPUnit Tests
phpunit
To test the JS Gutenberg block, use npm test
command inside the testing container's bash
shell after setting it up:
# 1. Open a shell into the testing service
docker compose exec -it testing bash
# 2. Navigate to the blocks directory
cd src/documentcloud/blocks
# 3. Install Node modules
npm i
# 4. Now the container is ready to run Jest tests
npm test
Find more advanced instructions in TESTING.md
To create a new release:
- Update the version number in
src/documentcloud/documentcloud.php
andsrc/documentcloud/readme.txt
- Update changelog for new version in
README.md
andsrc/documentcloud/readme.txt
- Run
package-plugin.sh
to generate ZIP file for distribution
- Add Gutenberg block for embedding DocumentCloud documents resonating a functionality similar to the shortcode.
- Update the shortcode to support the following attributes
onlyshoworg
- When set to 1 it only displays the organization namepdf
- When set to 1 it shows a pdf download iconshowfullscreen
- When set to 1 it displays a full screen icon.title
- When set to 1 it displays the title of the document.
- Allow setting the query parameter attributes when directly embedding the url in Embed block.
- Expand regex support to catch more DocumentCloud URLs
- Add support for the DocumentCloud beta
- Separate the oEmbed config options (provided as params to the endpoint) from the embed config options (encoded as params on the
url
) (#48) - Rename
default_page
anddefault_note
options back topage
andnote
(#47) - Remove
sidebar
,text
, andpdf
default values
- Recognize Unicode document slugs (#37)
- Conform syntax to WordPress VIP plugin requirements (#30) (@bcampeau)
- Fixed: Bare URLs now get default parameters (#35)
- Fixed: Pages/notes on docs with uppercase slugs now embeddable (#36)
- Support embedding pages (#28)
- Support embedding raw contextual page/note URLs (#29)
- Check for existence of things to stop triggering PHP notices (#27)
- Add DocumentCloud logo for plugin (#26)
- Fix ability to specify a container in the shortcode
- Improve embeddable resource pattern recognition
- Remove unused TinyMCE components
- Resolve CVE-2015-2807 reported by dxw Security at https://security.dxw.com/advisories/publicly-exploitable-xss-in-wordpress-plugin-navis-documentcloud/
- Implement a few best practice security measures
- Check for old (Navis) plugin and warn admins of conflict
- Add note about raw URLs to README
- Stop storing shortcode attributes in the
postmeta
table
- Add support for embedding notes.
- Default to responsive.
- Enable caching.
- Fetch embed code via oEmbed instead of generating statically.
- Add new options:
container
,responsive
,responsive_offset
,default_page
,default_note
,notes
,search
, andzoom
. - Deprecate
id
attribute. It's still usable, but support may drop in the future. Useurl
instead.
- Initial release.
The DocumentCloud WordPress plugin is GPLv2. Initial development of this plugin by Chris Amico (@eyeseast) supported by NPR as part of the StateImpact project. Development continued by Justin Reese (@reefdog) at DocumentCloud.