summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-05-15When adding a recipe step or an ingredient the browser should focus onxengineering
the first text input of that new element. This supports using Ceres without a mouse and only with tab-based navigation with a keyboard.
2024-05-14Update CHANGELOG.mdxengineering
2024-05-14view: Complete ingredient editingxengineering
2024-05-13view: Add HTML for editing recipe ingredientsxengineering
2024-05-12view: Add ingredient overview to recipe read pagexengineering
2024-05-12view: Show ingredients on read pagexengineering
2024-05-12model: Add per-step ingredientsxengineering
2024-05-12view: Use HTML template to add recipe stepsxengineering
This makes the JS function way simpler and removes a duplication of the step HTML code.
2024-05-12view: Create new html/recipe-step.htmlxengineering
This allows to use it in two places: - template for loop for backend-generated steps - a HTML template tag for frontend- / JS-generated steps
2024-05-12view: Move all JS code to static/ceres.jsxengineering
2024-05-12view: Remove global JS code in recipe-edit.htmlxengineering
This makes it impossible to move the whole JS functionality into the central ceres.js script. Moving that JS code there makes caching possible and bundles all JS-related code in one file. The overall goal is to get rid of as many JS code as possible.
2024-05-12Move config path from config to flags structxengineering
This is metadata about the config and thus does not belong to the config itself. Moving it to the struct holding flag values is straight forward since it is defined by flags.
2024-05-12Group flag variables in structxengineering
2024-05-11view: Add unit test for index handlerxengineering
2024-05-09Inject examples only with new --example flagxengineering
The default use case should be to not inject example recipes.
2024-05-09model: Fix unit testsxengineering
2024-05-09model: Rename version to execVersionxengineering
This makes the code easier to understand because there is an executable version and a database version handled inside that file.
2024-05-09Add version to log outputxengineering
2024-05-09model: Require same version for executable and DBxengineering
Currently only an empty database and an existing database with the same version are supported. Support for migrations based on semantic versioning will be added in future versions of Ceres.
2024-05-09model: Migrate only in empty databasesxengineering
2024-05-09model: Initial database version injectionxengineering
If the database was empty on startup a metadata table with a key and value row is created. In addition the Ceres executable version is inserted as value under the key 'version'. This allows to detect on not-empty databases which Ceres version was used before which is the starting point to implement migrations.
2024-05-09model: Detect if database is emptyxengineering
An empty database requires to add the metadata table with the version entry to make migrations possible. Thus this detection will be required.
2024-05-09model: Wrap migration completely in transactionxengineering
This makes it more clear that the full migration will be rolled back on errors.
2024-05-09view: Fix cancel button on recipe createxengineering
2024-05-09view: Replace HTML form labels by placeholdersxengineering
This takes up way less space in the code and the actual user view.
2024-05-09Remove default recipe namexengineering
To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name.
2024-05-09view: Enforce recipe titlesxengineering
In addition to the enforcement of titles in the model package the HTML form field for the title is set to 'required' to give the user feedback via the browser that a title is required.
2024-05-09model: Enforce recipe titlesxengineering
If a recipe has no title it is hard to reference in the front end. Especially the /recipes page makes problems in that case since it is impossible to click on that recipes and thus also to remove it.
2024-05-09model: Use defer for tx.Rollback()xengineering
A committed transaction cannot be rolled back. Using defer to roll back guarantees that the transaction is always rolled back if not the commit in the last line of model.Transaction was excuted. [1]: https://go.dev/doc/database/execute-transactions
2024-05-09Restructure database-related functionsxengineering
2024-05-08Introduce model.Transaction()xengineering
It is a very common pattern that some function needs to access the database and wants to wrap all the actions into one transaction. The advantage of a transaction is that it is ACID: - atomic - consistent - isolated - durable In Go it is required to request a new transaction, execute functionality on it and handle rollback or commit of this transaction based on the success of the operation. All this and the error handling can be written down in the model.Transaction() function exactly once. The full signature of it is: func Transaction(f func(*sql.Tx) error) error It requires a function or closure passed as argument which takes the transaction (*sql.Tx) and returns an error which might be nil. This is very generic. It is applied to: - injecting test data - database migrations - data read requests - data write requests
2024-05-08Add 'tests' target to Makefilexengineering
This makes it easier to run unit tests.
2024-05-08Fix unit testsxengineering
2024-05-08Rename gitDescribe to versionxengineering
This variable will be the only used representation for version information. It can trivially be used for an equality check. Further data as semantic versioning must be parsed from this string.
2024-05-07Introduce await() functionxengineering
This improves readability of the main() function.
2024-05-07view: Use init() function to parse templatesxengineering
This makes it unnecessary to call this functionality from main().
2024-05-07model: Init database with database pathxengineering
2024-05-07Move HTTP server code to new server.go filexengineering
This separates the main control flow and HTTP-related high-level code. Furthermore the new main.Server type makes the related methods and function more like the functions from the standard library with a NewServer() function and methods with only one word as name.
2024-05-06model: Do not write version.txt inside storagexengineering
The intention of this file was that a Ceres executable could compare its version with the version of the storage folder. If the versions match the storage folder could be directly used. If the storage version is lower the executable can apply migrations to the storage folder until the versions match. The problem is that executing migrations inside the database and updating the version.txt cannot be atomic. In contrast the version string could be saved inside the database itself in a metadata table. In that case the migration together with the update of the version string can be executed inside one database transaction which guarantees atomicity. The problem could still be that migrations should be applied also to the files and folders inside the storage folder. This problem can only be avoided by not using files to store data and instead use the BLOB datatype if necessary. Even in case of a future filesystem use it is still better to have the guarantee that the database with file paths and metadata and the there included version string are in sync.
2024-05-06model: Introduce NewStorage() functionxengineering
It is a common pattern inside the Go standard library to provide a constructor with this naming scheme to custom types of the package. Doing this here results in a style closer to the standard library which improves readability.
2024-05-04Move storage path logging to main() functionxengineering
The model package where this used to be implemented should not care too much about logging. Furthermore it is easier to compare the log output with the main() function if the log statements are there.
2024-05-04Add explicit startup / shutdown log messagesxengineering
This makes it easier to read the logs and follows the pattern to move log messages more to the main() function instead of spreading them accross the whole code base.
2024-05-04model: Add storage.Exists() and storage.Create()xengineering
These new methods provide essential functionality related to the storage folder.
2024-05-04model: Introduce type Storagexengineering
This new type definition will make it easier to handle the storage directory of Ceres and related functionality which can be implemented with methods.
2024-05-04Fix build instructionsxengineering
The missing submodule init / update caused build issues because the external simple.css file could not be included.
2024-05-01Add usage instructions to README.mdxengineering
2024-05-01Add configuration file to semver APIxengineering
This aspect of Ceres is also part of the public API. A breaking change in the configuration file format will require a version change which indicates that.
2024-05-01Add build instructions to README.mdxengineering
2024-05-01Make build-time version information mandatoryxengineering
This ensures that Ceres is never executed without Git version information. This removes the requirement to check for this on every use. To ensure the server does not work with an incompatible storage directory it is in every case needed to know the exact version of the running executable.
2024-05-01Add --config flagxengineering
This re-enables config file support.