halostatue

halostatue

TableauRedirectsExtension - Cool URIs don't change with Tableau

Over the last several months, I’ve been using Tableau to rebuild my long-neglected website. Tableau is part of the Elixir Tools project headed by @mhanberg, and is built on top of MDEx by @leandrocp. This library is one of ten libraries and Elixir extensions that I built. Most of these were built with the assistance of Kiro.

TableauRedirectsExtension is a Tableau extension for generating redirects because Cool URIs don’t change. Redirects are specified in configuration and content metadata and can generate HTML redirects or a JSON redirect map to produce redirect configurations for Caddy, nginx, Apache, or other servers.

HTML Meta-Refresh Redirects

When serving a Tableau site via AWS S3 or similar scenarios, it is often necessary to produce browser-based redirects using HTML files with the “meta refresh” approach. This is generated for directory-style paths and HTML-like files (.html, .htm, and .php). Other redirects configured (redirecting a .jpg to a .svg, for example) will not be written in this way.

config :tableau, TableauRedirectsExtension,
  redirects: %{"/old-url/" => "/new-url/"}
<!DOCTYPE html>
<!-- /old-url/index.html -->
<meta charset="utf-8">
<title>Redirecting to /new-url/…</title>
<link rel="canonical" href="/new-url/">
<meta http-equiv="refresh" content="0; url=/new-url/">
<p>Redirecting to <a href="/new-url/">/new-url/</a>…</p>

JSON Manifest Redirects

When a Tableau site is behind another server like Caddy, Apache, or nginx it is often better to use the generated redirects.json to generate appropriate redirect configuration files. The configuration (and content metadata) produce the mapping:

config :tableau, TableauRedirectsExtension,
  redirects: %{"/old-url/" => "/new-url/"}
{
  "permanent_redirects": [
    {
      "from": ["/old", "/old/", "/old/index.html"],
      "type": "path",
      "to": "/new/",
      "target_type": "internal"
    }
  ]
}

Which can then be converted into a Caddyfile for inclusion:

redir /old-url /new-url permanent
redir /old-url/ /new-url permanent
redir /old-url/index.html /new-url permanent

Configuration

Configuration may be either global (for content that has been removed but redirects to somewhere that is either useful or explains) or specified in the content frontmatter metadata.

Global Redirects

config :tableau, TableauRedirectsExtension,
  enabled: true,
  html: %{enabled: true, message: "Redirecting..."},
  json: %{enabled: true},
  redirects: %{
    "/old-path/" => "/new-path/",
    "/external/" => "https://example.com",
    "/bad-info/" => "/removed/#bad-info"
  }

Frontmatter Redirects

---
title: My Post
permalink: /posts/my-post/
redirects:
  aliases:
    - /blog/old-post
    - /old-location/post
  fragments:
    /other-old-post: "#new-section"
---

An alias redirect goes to the content’s permalink, whereas a fragment redirect goes to the content’s permalink at a specific URI fragment.

https://github.com/halostatue/tableau_redirects_extension

Where Next?

Popular in Announcing Top

OvermindDL1
I created a new library (rather I pulled out a couple files from my big project), it manages an operating system PID file for the BEAM. ...
New
dominicletz
Hi, I thought I had posted my library before but seems I hadn’t. The project is still in early stages but it’s growing and so I think it...
New
mtrudel
Bandit is an HTTP server for Plug and WebSock apps. Bandit is written entirely in Elixir and is built atop Thousand Island. It can serve...
New
maltoe
Hello! Came here to announce ChromicPDF, a pet project PDF generator I’ve been working on for the past few months. Why another PDF gener...
New
aesmail
Hello guys, I have finally made it. I created an admin interface for a framework. It’s been on my todo list for years and with the curre...
New
blatyo
The best overview for how things are tied together is this presentation. Modules and functions are pretty well documented at this point, ...
New
cjen07
parameterized pipe in elixir: |n&gt; edit: negative index in |n&gt; and mixed usage with |&gt; are supported example: use ParamPipe ...
New
fuelen
Hey folks! Want to present a toolkit for writing command-line user interfaces. It provides a convenient interface for colorizing text...
New
benlime
LiveMotion enables high performance animations declared on the server and run on the client. As a follow up to my previous thread A libr...
New
alisinabh
Hey everyone i’ve developed a library for Jalaali calendar for elixir which supports converting Gregorian dates to Jalaali and vice vers...
New

Other popular topics Top

New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
pmjoe
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
msaraiva
Surface is an experimental library built on top of Phoenix LiveView and its new LiveComponent API that aims to provide a more declarative...
564 43757 214
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
JakeBecker
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
1144 54120 245
New
dogweather
I wrote this comment on r/haskell, and it’s not popular there. :wink: But I think I’m on to something… Haskell reminds me of Java, and e...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

We're in Beta

About us Mission Statement