hugolib, target: Rework/move the target package
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 3 Mar 2017 09:47:43 +0000 (10:47 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 4 Mar 2017 22:33:35 +0000 (23:33 +0100)
commite52e2a70e5e0a2d15fc9befbcd7290761c98589e
treece133a021fcd7535ec2c89ea7897ff543b710a4a
parentea165bf9e71c7ca9ddb9f14ddbdbcd506ce554bb
hugolib, target: Rework/move the target package

This relates to #3123.

The interfaces and types in `target` made sense at some point, but now this package is too restricted to a hardcoded set of media types.

The overall current logic:

* Create a file path based on some `Translator` with some hardcoded logic handling uglyURLs, hardcoded html suffix etc.
* In in some cases (alias), a template is applied to create the alias file.
* Then the content is written to destination.

One could argue that it is the last bullet that is the actual core responsibility.

This commit fixes that by moving the `hugolib`-related logic where it belong, and simplify the code, i.e. remove the abstractions.

This code will most certainly evolve once we start on #3123, but now it is at least possible to understand where to start.

Fixes #3123
14 files changed:
hugolib/alias.go [new file with mode: 0644]
hugolib/handler_file.go
hugolib/hugo_sites_build.go
hugolib/site.go
hugolib/site_render.go
hugolib/site_writer.go [new file with mode: 0644]
hugolib/site_writer_test.go [new file with mode: 0644]
hugolib/testhelpers_test.go
target/alias_test.go [deleted file]
target/file.go [deleted file]
target/htmlredirect.go [deleted file]
target/memory.go [deleted file]
target/page.go [deleted file]
target/page_test.go [deleted file]