Validate External Links

From OniGalore
Revision as of 14:22, 23 August 2022 by Iritscen (talk | contribs) (→‎Exceptions: about the audit)
Jump to navigation Jump to search

Developed by Iritscen, Validate External Links ("ValExtLinks" for short, or "Val" for even shorter) is a Bash shell script made to help fight the battle against link rot on OniGalore. The latest report on link issues is found HERE. Further link work which requires a bot is performed by ValBot.

Background

While MediaWiki makes it easy to find bad intrawiki links (links to nonexistent pages on our own wiki), marking them in red and providing tools like Special:Wantedpages, there is no automatic check of external (outbound) links. MediaWiki compiles external links into a table, but it does not ping the URLs to see if they give any response. Over the years, many links on our wiki went dead as the Web changed and various file hosts went out of business. ValExtLinks has been used to fix over 1,000 link issues on OniGalore such as 404s and redirects.

Here's how the process works: at 6:20am and 2:20pm (GMT) each day, a script written by Alloc dumps the wiki's external links table to this location. ValExtLinks, which Iritscen runs on his computer periodically, walks through the exported table and looks for URLs that return problematic codes such as 404. It also detects other lesser problems with links. Val then makes suggestions for fixing these links and uploads its report in HTML, RTF and TXT formats to THIS directory. A wiki editor can then review the report and act accordingly.

How to fix link issues

Here are the codes that you'll see on problem links in the report.

  • NG: In most cases, fixing an "NG" link will mean finding the desired web page in the Internet Archive's Wayback Machine and linking to that archived page instead. In some cases, an NG link will not be salvageable and should be either removed from the page or, if the link was a part of a conversation and it would be confusing for it to be absent, it should be surrounded in nowiki tags like this to prevent it from showing up in future reports.
    • Val automatically queries the Archive for the latest snapshot of each NG page and will put the returned snapshot URL in its report. Note that you still have to verify this link by clicking on it, as it may not have the correct content. You may have to go further back in the Wayback Machine to find the proper snapshot to use. Sometimes the Archive simply never got around to archiving a given site. In that case, you will need to follow the advice above as to deleting the link or marking it with nowiki tags.
    • Note: In a typical run of Val across the 3,000+ links on the wiki, 1-3 sites will happen to be offline at the moment or the HTTP packets requesting them will get lost in the Internet. It's best to wait for another Val report to make sure that the URL is really dead before performing any of the above fixes.
  • RD: The site is redirecting the browser to a new page. The new page should be evaluated, and if it has the content we intended to link to then we should update the link to point to the new location. However, many redirects actually are "soft 404s" and simply redirect the browser to the site's main page. In this case, an RD link needs to be treated like an NG link (see above).
  • EI: An "external internal" link, that is, a full URL for a page that is on our own wiki and which should simply be an intrawiki link. Sometimes an "external internal" may seem to be necessary but can be avoided with one of these special wiki features:
    • If you want to link to a specific revision of a page, you might think you need a full URL like this one. There's actually no need to link to any page at all, as the "ID" of a page revision like the one you see in that sample URL is unique wiki-wide. All you need to do is supply the revision ID to the Special:Permalink page like this — Special:Permalink/7685 — and you're done.
    • If you need to link to a diff between two revisions of a page, or between two different pages, plug the old and new revision numbers into the Special:Diff page like this: Special:Diff/21491/21492 (no need for page names, as explained above).
    • If there's no way around a bare URL, see "Exceptions" below to remove the link from the report.
  • IW: This marks an external link (bare URL) to another wiki which could be an interwiki link. Interwiki links are shorter and more resistant to rot. The suggested interwiki link markup will be given in the report. For foreign-language Wikipedia pages, you can add a language code, e.g. [[wp:de:Test]] for the German version of the page.
  • (xxx): The HTTP response code (see reference HERE).
  • (000-xx): The response code from the Unix tool 'curl', for cases where it did not get an HTTP response code. See HERE for a list of codes. The most common curl error by far is "000-28", a timeout from an unresponsive site.

Exceptions

Some links simply must be presented in an unconventional way which Val thinks is a problem. Some links return error codes but actually work fine. Such links can be added to the exceptions list in order to hide them in future reports.

In the summary at the bottom of the report, Val will list any exception that didn't have the intended effect because the link is no longer present on the listed page, or because it doesn't return that error code anymore. You can then edit the above exceptions list accordingly. Note that the HTML report only gives the number of issues detected, and the list of issues is found in the RTF and TXT versions of the report.

Coming features

  • It seems that many external links no longer display the content that they were intended to display. In many cases, web sites are silently redirecting the user to their main page without using the appropriate code that indicates the content was not found. Only visual inspections of the pages can catch these issues. Once we have dealt with the more obvious link issues, the screenshot feature in the script can be activated, which will allow us to confirm if the "OK" links are loading the intended page.

Source code

The project is found HERE. Along with the Bash script itself, you'll find documentation on how to run ValExtLinks on your own computer as well as resources for contributing to the code.