Skip to content
Snippets Groups Projects
  1. Apr 22, 2022
  2. Apr 20, 2022
    • Julian's avatar
      Fix "new invite" form resetting on error · bfd759bd
      Julian authored
      When the "new invite" page was submitted with e.g. an invalid "Valid Until"
      value, uffd displayed an error and reset the whole form. This was confusing
      to users.
      
      Now the form content is preserved on errors. Also the "Valid Until" field now
      has min/max attributes to prevent submitting the form with invalid values.
      
      Fixes #134
      bfd759bd
  3. Apr 02, 2022
  4. Mar 29, 2022
  5. Mar 28, 2022
  6. Mar 24, 2022
  7. Mar 23, 2022
  8. Mar 22, 2022
  9. Feb 28, 2022
    • Julian's avatar
    • Julian's avatar
      Fix regression in service overview access behavior · 3880be9a
      Julian authored
      When the service overview was introduced, it was meant to be optional. Thus
      if the SERVICES config option was empty (the default), uffd returned 404.
      
      Commit fa67bde0 (Migrate OAuth2 and API clients to database) introduced the
      regression that accessing the service overview page when no services are
      visible based on the permissions of the current user (or guest if not logged
      in), 404 is returned.
      
      This change fixes the regression and further changes the behavior to improve
      consistency. Since fa67bde0, the page is relevant to admin users regardless of
      the SERVICES config option. Therefore uffd asks for login or reports missing
      permissions in all cases it originally returned 404.
      3880be9a
  10. Feb 27, 2022
  11. Feb 25, 2022
  12. Feb 24, 2022
    • Julian's avatar
      Migrate OAuth2 and API clients to database · fa67bde0
      Julian authored
      Also adds a shallow Service model that coexists with the config-defined
      services to group multiple OAuth2 and API clients together.
      
      Clients defined in the config with OAUTH2_CLIENTS and API_CLIENTS_2 are
      imported by the database migrations.
      
      Removes support for complex values for the OAuth2 client group_required option.
      Only simple group names are supported, not (nested) lists of groups previously
      interpreted as AND/OR conjunctions. Also removes support for the login_message
      parameter of OAuth2 clients.
      fa67bde0
  13. Feb 17, 2022
    • Julian's avatar
      Refactor Unix UID/GID generation · 66df931d
      Julian authored
      The generation now happens in a subquery inside the INSERT statement instead
      of separate client-managed query. This should also reduce the risk of race
      conditions.
      
      Service and non-service users may now use the same UID range.
      66df931d
  14. Feb 16, 2022
  15. Feb 14, 2022
  16. Feb 13, 2022
    • Julian's avatar
      Minor fix for last migration · 1a8960d4
      Julian authored
      Calling op.get_bind outside a callback broke "flask db history".
      1a8960d4
    • Julian's avatar
      Argon2 for user password hashing · ac003909
      Julian authored
      Argon2 is a modern password hashing algorithm. It is significantly more secure
      than the previous algorithm (salted SHA512). User logins with Argon2 are
      relativly slow and cause significant spikes in CPU and memory (100MB) usage.
      
      Existing passwords are gradually migrated to Argon2 on login.
      ac003909
    • Julian's avatar
      Unified password hashing for User and Signup · 117e257c
      Julian authored
      Previously User used salted SHA512 with OpenLDAP-style prefix syntax and
      Signup used crypt. Both models had their own hashing and verification
      code. Now both use OpenLDAP-style syntax with support for all traditional
      formats including crypt. Salted SHA512 is used for new User and Signup
      passwords.
      
      Existing Signup objects are migrated to the new format and remain functional.
      User passwords now support gradual migration to another hash algorithm when
      it is changed in the future.
      
      This code is planned to be used for database-stored API and OAuth2 client
      secrets.
      117e257c
  17. Feb 08, 2022
  18. Feb 04, 2022
    • Julian's avatar
      Constrain mail receive addresses and fix case-folding in API · 17b99372
      Julian authored
      Previously the getmails API endpoint did not match "receive_address" values
      case-insensitivly like it did pre-v2. To solve this independent of database
      collations, all existing mail receive addresses are converted to lower-case
      and new/changed receive addresses are constraint to ASCII lower-case letters,
      digits and symbols.
      17b99372
  19. Feb 01, 2022
  20. Dec 11, 2021
  21. Dec 09, 2021
    • Julian's avatar
      Replace CONFIG_FILENAME with CONFIG_PATH · 73c9b77e
      Julian authored
      CONFIG_FILENAME works relative to the app's instance path. While (strictly
      speaking) CONFIG_FILENAME is named correctly, it is not really obvious that
      it should be set to an instance-relative filename instead of a path. The
      current uwsgi.ini file illustrates this problem.
      
      Not having a way to specify an absolute config file path is a problem for
      the Debian package: The actual config file /etc/uffd/uffd.cfg must be
      symlinked to /usr/share/uffd/instance/config.cfg to be found. Setting
      CONFIG_PATH to "/etc/uffd/uffd.cfg" simplifies this.
      
      Since this change is part of a new major release, we can drop
      CONFIG_FILENAME in favour of CONFIG_PATH.
      73c9b77e
    • Julian's avatar
      Workaround for linter bug · d22b62ef
      Julian authored
      Pylint non-deterministicly fails to detect that a method is overwritten later
      and complains that the method does not exist. This is pretty annoying and
      remains unfixed in the most recent version.
      d22b62ef
  22. Dec 03, 2021
    • Julian's avatar
      HTTP Basic auth for API with new API_CLIENTS_2 · 917f9ecd
      Julian authored
      This change is going to be backported to v1.x.x to have a good migration path.
      Bearer auth with API_CLIENTS config key is deprecated and planned to be
      removed in v2.0.0.
      917f9ecd
  23. Oct 26, 2021
    • sistason's avatar
    • Julian's avatar
      Fixes and improvements for changelog auto-generation · 328caf00
      Julian authored
      The script generated a broken changelog if the current commit is tagged as
      a release. That works now.
      
      Additional improvements:
      * Merge commits are ignored
      * "^fixup!" commits are ignored
      * Commit summaries are line-wrapped
      * Authors can be merged by manually supplied name mapping
      * The first release also includes a list of commits. They were originally
        excluded because the first release contains so many commits, including
        many unclean ones. But excluding those commits also means excluding the
        attribution, so it is not really an option.
      * Authors are ordered by the number of their contributions in a release
        to make occasional contributors more visible.
      328caf00
  24. Oct 25, 2021
    • Julian's avatar
      Removed CHANGELOG and simplified Debian release workflow · 5c9ab56e
      Julian authored
      Previously CHANGELOG had to be updated manually. This was done by downloading
      the output of a CI job that used listed commits since the last release. This
      made releasing a bit more complicated and led to uselsess release commits.
      
      Now a script creates the full debian/changelog with all versions based on
      git tags and git commits.
      5c9ab56e
  25. Oct 05, 2021
Loading