Module which tracks external broken links in SilverStripe CMS pages
Go to file
Dylan Wagstaff 4b59fdba02 Update supporting items for SilverStripe 4 conventions
Update versions and configurations for tests and code checkers, such as
phpunit and the SilverStripe CI tools. Altered the layout of the
repository to be more in line with other SilverStripe 4 modules (including
core ones).
2017-11-22 14:01:40 +13:00
_config Tests, refactor, cleanup, fix issues 2014-08-07 15:24:20 +12:00
javascript BUG Indicator stuck on 0% until you refresh the page. 2014-08-13 15:39:29 +12:00
lang Update translations 2016-08-17 11:08:00 +12:00
src Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
tests FIX Ensure that translatable cannot break tests. Separate page stub class. Remove injector nesting. 2017-05-12 11:38:49 +12:00
.editorconfig Added standard .editorconfig file 2015-12-17 10:34:43 +13:00
.gitattributes Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
.gitignore Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
.scrutinizer.yml Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
.travis.yml Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
README.md Update Travis badge in readme 2017-05-12 11:41:14 +12:00
changelog.md Update changelog for 1.0.5 2016-05-18 17:14:35 +12:00
code-of-conduct.md Added standard code of conduct 2015-11-21 20:13:30 +13:00
codecov.yml Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
composer.json Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
license.md Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
phpcs.xml.dist Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00
phpunit.xml.dist Update supporting items for SilverStripe 4 conventions 2017-11-22 14:01:40 +13:00

README.md

External links

Build Status

Introduction

The external links module is a task and ModelAdmin to track and to report on broken external links.

Maintainer Contact

Requirements

* SilverStripe 3.1 +

Features

  • Add external links to broken links reports
  • Add a task to track external broken links

See the changelog for version history.

Installation

  1. If you have composer you can use composer require silverstripe/externallinks:*. Otherwise, download the module from GitHub and extract to the 'externallinks' folder. Place this directory in your sites root directory. This is the one with framework and cms in it.
  2. Run in your browser - /dev/build to rebuild the database.
  3. Run the following task http://path.to.silverstripe/dev/tasks/CheckExternalLinks to check for broken external links

Report

A new report is added called 'External Broken links report'. When viewing this report, a user may press the "Create new report" button which will trigger an ajax request to initiate a report run.

In this initial ajax request this module will do one of two things, depending on which modules are included:

  • If the queuedjobs module is installed, a new queued job will be initiated. The queuedjobs module will then manage the progress of the task.
  • If the queuedjobs module is absent, then the controller will fallback to running a buildtask in the background. This is less robust, as a failure or error during this process will abort the run.

In either case, the background task will loop over every page in the system, inspecting all external urls and checking the status code returned by requesting each one. If a URL returns a response code that is considered "broken" (defined as < 200 or > 302) then the ss-broken css class will be assigned to that url, and a line item will be added to the report. If a previously broken link has been corrected or fixed, then this class is removed.

In the actual report generated the user can click on any broken link item to either view the link in their browser, or edit the containing page in the CMS.

While a report is running the current status of this report will be displayed on the report details page, along with the status. The user may leave this page and return to it later to view the ongoing status of this report.

Any subsequent report may not be generated until a prior report has completed.

Dev task

Run the following task http://path.to.silverstripe/dev/tasks/CheckExternalLinks to check your site for external broken links.

Queued job

If you have the queuedjobs module installed you can set the task to be run every so ofter Add the following yml config to config.yml in mysite/_config have the the task run once every day (86400 seconds)

CheckExternalLinks:
  Delay: 86400

Whitelisting codes

If you want to ignore or whitelist certain http codes this can be setup via IgnoreCodes in the config.yml file in mysite/_config

CheckExternalLinks:
  Delay: 60
  IgnoreCodes:
    - 401
    - 403
    - 501