Age | Commit message (Collapse) | Author |
|
This shows some more markup features / edge cases.
|
|
The new custom and text/gemini inspired markup has to be converted to
HTML to display the recipe.
|
|
The gemini protocol specification includes a section about the
text/gemini MIME type. This file format is a easy to parse markup
language which should be used for the Ceres recipe server.
|
|
The new recipe markup which replaces Markdown will need an own file to
be implemented.
|
|
This step prepares moving to a new, custom and easily parsable markup
language.
|
|
|
|
|
|
|
|
Using a database is way more complex (see the commit statistics of this
commit) than using files to store recipe data. Also administration and
usage is simpler.
|
|
This prepares the switch to a file-based store of recipe data replacing
MariaDB.
|
|
|
|
|
|
|
|
The upstream URL can be encoded easily by the user in the Markdown-based
description. The title can be parsed by the first found top-level
heading in the Markdown text.
Thus these two columns are no longer used. To avoid an additional
migration they will be kept in the database.
|
|
Recipe images are currently complicated to implement and have little
use. Probably they will not be covered in the next release.
|
|
Since there are no good solutions to upload the file and markdown
description text via HTML forms the edit page will upload the changes
using embedded javascript.
The page is now complete apart from the necessary javascript code and
the backend handlers.
|
|
|
|
This allows to use partial HTML files via Go's templating features.
|
|
|
|
This reduces copies of the same HTML code.
|
|
This makes templating easier and allows to use partial templates.
|
|
Docstrings for functions are a good thing. But the inside of a function
should be written in a way that is self-explaining. Thus inline comments
are just extra stuff to maintain and read.
|
|
This auto-applies the recommended Go codestyle.
|
|
This has nothing to do with the database. Because the db is now a global
pointer the shutdown code can live in main.go.
|
|
Logging during a request is at the moment not really needed. Printing
the config to the log was a stupid idea too.
|
|
Multiplexer functions used to return closures which are able to handle
HTTP requests for historc reasons. Now the multiplexers can be regular
HTTP handlers which is simpler.
|
|
Passing the database pointer around is a lot of text and has no benefit.
|
|
|
|
|
|
|
|
|
|
This fits better because this file is the central entry point of the
Ceres webserver.
|
|
Passing the config completly or just partial around via function
arguments creates a lot of noice and does not have benefits.
The only downside is that it is possible to write the config after
initialization but it is realistic that this can be avoided.
|
|
|
|
|
|
This introduces a layered approach to handling HTTP requests:
- server layer
- path layer
- request layer
The multiplexer file cares about the path layer. It delegates the
request handling to handlers from the request layer.
|
|
It is shorter.
|
|
This commit refactors the codebase. The functionality of the error
handling is slightly reduced but the benefit are around 80 lines of code
which could be removed.
|
|
|
|
This project is not so big that it needs multiple packages.
|
|
Recipes should be completely editable and removable. Thus this edit page
was added.
|
|
This makes it easier to maintain and it looks better.
|
|
|
|
|
|
|
|
|
|
|
|
This was based on recommendations from the Arch Linux wiki. Because they
could maybe break something on other distributions they are removed here
and maybe re-introduced later in a packaging repository.
Furthermore the Makefile is more readable this way.
|
|
A not existing data/storage folder could break the program with the
debug.json config file used. The .gitkeep file which is introduced with
this commit ensures that the folder exists.
|
|
This drops also the -d flag and the database/user config option.
The -d flag used to override specific parts of the config file. This is
just confusing behaviour. Instead a new config/debug.json file is
introduced with useful default values.
Instead of configuring the database user via the database/user entry in
the config file, the user is determined from the Linux user of the
server process. This enforces that a database user with the same name as
the Linux user is configured which is already described in the README.
|