Skip to content
Snippets Groups Projects
  1. Sep 24, 2022
  2. Mar 09, 2022
  3. Feb 10, 2022
    • Kevin Morris's avatar
      change: report unhandled tracebacks to a repository · 7485cc23
      Kevin Morris authored
      
      As repeats of these traceback notifications were annoying some of
      the devops staff, and it took coordination to share tracebacks with
      developers, this commit removes that responsibility off of devops
      by reporting tracebacks to Gitlab repositories in the form of issues.
      
      - removed ServerErrorNotification
      - removed notifications.postmaster configuration option
      - added notifications.gitlab-instance option
      - added notifications.error-project option
      - added notifications.error-token option
      - added aurweb.exceptions.handle_form_exceptions, a POST route decorator
      
      Issues are filed confidentially. This change will need updates
      in infrastructure's ansible configuration before this can be
      applied to aur.archlinux.org.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      7485cc23
  4. Jan 10, 2022
    • Kevin Morris's avatar
      feat(python): catch all exceptions thrown through fastapi route paths · d675c0dc
      Kevin Morris authored
      
      This commit does quite a bit:
      - Catches unhandled exceptions raised in the route handler and
        produces a 500 Internal Server Error Arch-themed response.
      - Each unhandled exception causes a notification to be sent to new
        `notifications.postmaster` email with a "Traceback ID."
      - Traceback ID is logged to the server along with the traceback which
        caused the 500: `docker-compose logs fastapi | grep '<traceback_id>'`
      - If `options.traceback` is set to `1`, traceback is displayed in
        the new 500.html template.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      d675c0dc
  5. Nov 29, 2021
  6. Nov 25, 2021
  7. Nov 17, 2021
  8. Nov 10, 2021
  9. Nov 09, 2021
  10. Nov 06, 2021
  11. Oct 25, 2021
    • Kevin Morris's avatar
      feat(fastapi): add configurable commit hash display · 0d734eb0
      Kevin Morris authored
      
      Two new options have been added:
      
      - [devel] commit_url
          - URL including an %s format specifier that can be used to link
            to a webpage for the commit.
      - [devel] commit_hash
          - HEAD's commit hash (produced via `git rev-parse HEAD`)
      
      If a `[devel] commit_hash` is configured, a link to the commit based on
      `[devel] commit_url` will be displayed in the aurweb footer in
      the form: `HEAD@<commit_hash>`. If no `[devel] commit_url` is
      configured, a non-linked hash will be displayed.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      0d734eb0
  12. Oct 21, 2021
  13. Oct 19, 2021
  14. Oct 02, 2021
  15. Sep 19, 2021
    • Kevin Morris's avatar
      feat(FastAPI): add /packages (get) search · 5cf70620
      Kevin Morris authored
      In terms of performance, most queries on this page win over
      PHP in query times, with the exception of sorting by Voted or
      Notify (archlinux/aurweb#102
      
      ).
      Otherwise, there are a few modifications: described below.
      
      * Pagination
          * The `paginate` Python module has been used in the FastAPI
            project
            here to implement paging on the packages search page. This
            changes how pagination is displayed, however it serves the
            same purpose. We'll take advantage of this module in other
            places as well.
      * Form action
          * The form action for actions now use `POST /packages` to
            perform. This is currently implemented and will be
            addressed in a follow-up commit.
      * Input names and values
          * Input names and values have been modified to satisfy the
            snake_case naming convention we'd like to use as much as
            possible.
          * Some input names and values were modified to comply with
            FastAPI Forms: (IDs[<id>]) -> (IDs, <id>).
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      5cf70620
  16. Sep 04, 2021
    • Kevin Morris's avatar
      use Poetry to deal with deps and package install · 2f999480
      Kevin Morris authored
      
      As the new-age Python package manager, Poetry brings a lot
      of good additions to the table. It allows us to more easily
      deal with virtualenvs for the project and resolve dependencies.
      
      As of this commit, `requirements.txt` is replaced by Poetry,
      configured at `pyproject.toml`.
      
      In Docker and GitLab, we currently use Poetry in a root fashion.
      We should work toward purely using virtualenvs in Docker, but,
      for now we'd like to move forward with other things. The project
      can still be installed to a virtualenv and used on a user's system
      through Poetry; it is just not yet doing so in Docker.
      
      Modifications:
      
      * docker/scripts/install-deps.sh
          * Remove python dependencies.
      * conf/config.defaults
          * Script paths have been updated to use '/usr/bin'.
      * docker/git-entrypoint.sh
          * Use '/usr/bin/aurweb-git-auth' instead of
            '/usr/local/bin/aurweb-git-auth'.
      
      Additions:
      
      * docker/scripts/install-python-deps.sh
          * A script used purely to install Python dependencies with Poetry.
            This has to be used within the aurweb project directory and
            requires system-wide dependencies are installed beforehand.
          * Also upgrades system-wide pip.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      2f999480
  17. Aug 18, 2021
  18. Aug 17, 2021
  19. Jun 26, 2021
    • Kevin Morris's avatar
      config: add options.salt_rounds · d8556b0d
      Kevin Morris authored
      
      During development, the lower this value is (must be >= 4)
      equals faster User generation. This is particularly useful
      for running tests.
      
      In production, a higher value (like 12 which is used by various
      popular frameworks) should be used.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      d8556b0d
  20. Jun 25, 2021
  21. Jun 23, 2021
  22. Jun 10, 2021
  23. Jun 06, 2021
    • Kevin Morris's avatar
      use mysql backend in config.dev · aecb6494
      Kevin Morris authored
      
      First off: This commit changes the default development database
      backend to mysql. sqlite, however, is still completely supported
      with the caveat that a user must now modify config.dev to use
      the sqlite backend.
      
      While looking into this, it was discovered that our SQLAlchemy
      backend for mysql (mysql-connector) completely broke model
      attributes when we switched to utf8mb4_bin (binary) -- it does
      not correct the correct conversion to and from binary utf8mb4.
      
      The new, replacement dependency mysqlclient does. mysqlclient
      is also recommended in SQLAlchemy documentation as the "best"
      one available.
      
      The mysqlclient backend uses a different exception flow then
      sqlite, and so tests expecting IntegrityError has to be modified
      to expect OperationalError from sqlalchemy.exc.
      
      So, for each model that we define, check keys that can't be
      NULL and raise sqlalchemy.exc.IntegrityError if we have to.
      This way we keep our exceptions uniform.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      aecb6494
    • Kevin Morris's avatar
      add passreset routes · a33d076d
      Kevin Morris authored
      
      Introduced `get|post` `/passreset` routes. These routes mimic the
      behavior of the existing PHP implementation, with the exception of
      HTTP status code returns.
      
      Routes added:
          GET /passreset
          POST /passreset
      
      Routers added:
          aurweb.routers.accounts
      
      * On an unknown user or mismatched resetkey (where resetkey must ==
        user.resetkey), return HTTP status NOT_FOUND (404).
      * On another error in the request, return HTTP status BAD_REQUEST (400).
      
      Both `get|post` routes requires that the current user is **not**
      authenticated, hence `@auth_required(False, redirect="/")`.
      
      + Added auth_required decorator to aurweb.auth.
      + Added some more utility to aurweb.models.user.User.
      + Added `partials/error.html` template.
      + Added `passreset.html` template.
      + Added aurweb.db.ConnectionExecutor functor for paramstyle logic.
        Decoupling the executor logic from the database connection logic
        is needed for us to easily use the same logic with a fastapi
        database session, when we need to use aurweb.scripts modules.
      
      At this point, notification configuration is now required to complete
      tests involved with notifications properly, like passreset.
      `conf/config.dev` has been modified to include [notifications] sendmail,
      sender and reply-to overrides. Dockerfile and .gitlab-ci.yml have been
      updated to setup /etc/hosts and start postfix before running tests.
      
      * setup.cfg: ignore E741, C901 in aurweb.routers.accounts
      
      These two warnings (shown in the commit) are not dangerous and a bi-product
      of maintaining compatibility with our current code flow.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      a33d076d
    • Leonidas Spyropoulos's avatar
    • Kevin Morris's avatar
      port over base HTML layout from PHP to FastAPI+Jinja2 · 2df90ce2
      Kevin Morris authored
      
      + Mounted static files (at web/html) to /static.
      + Added AURWEB_VERSION to aurweb.config (this is used around HTML
        to refer back to aurweb's release on git.archlinux.org), so we
        need it easily accessible in the Python codebase.
      + Implemented basic Jinja2 partials to put together whole aurweb
        pages. This may be missing some things currently and is a WIP
        until this set is ready to be merged.
      + Added config [options] aurwebdir = YOUR_AUR_ROOT; this configuration
        option should specify the root directory of the aurweb project.
        It is used by various parts of the FastAPI codebase to target
        project directories.
      
      Added routes via aurweb.routers.html:
          * POST /language: Set your session language.
          * GET /favicon.ico: Redirect to /static/images/favicon.ico.
              * Some browsers always look for $ROOT/favicon.ico to get an icon
                for the page being loaded, regardless of a specified "shortcut
                icon" given in a <link> directive.
          * GET /: Home page; WIP.
      
      * Updated aurweb.routers.html.language passes query parameters to
        its next redirection.
      
      When calling aurweb.templates.render_template, the context passed should
      be formed via the aurweb.templates.make_context. See
      aurweb.routers.html.index for an example of this.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      2df90ce2
    • Kevin Morris's avatar
      aurweb: Globalize a Translator instance, add more utility · c1e29e90
      Kevin Morris authored
      
      + Added SUPPORTED_LANGUAGES, a global constant dictionary of
        language => display pairs for languages we support.
      + Add Translator.get_translator, a function used to retrieve a
        translator after initializing it (if needed). Use `fallback=True`
        while creating languages, in case we setup a language that we
        don't have a translation for, it will noop the translation.
        This is particularly useful for "en," since we do not translate
        it, but doing this will allow us to go through our normal translation
        flow in any case.
      + Added typing.
      + Added get_request_language, a function that grabs the language for
        a request session, defaulting to aurweb.config [options] default_lang.
      + Added get_raw_translator_for_request, a function that retrieves
        the concrete translation object for a given language.
      + Added tr, a jinja2 contextfilter that can be used to inline translate
        strings in jinja2 templates.
      + Added `python-jinja` dep to .gitlab-ci.yml. This needs to be
        included in documentation before this set is merged in.
      + Introduce pytest units (test_l10n.py) in `test` along with
        __init__.py, which marks `test` as a test package.
      + Additionally, fix up notify.py to use the global translator. Also
        reduce its source width to <= 80 by newlining some code.
      + Additionally, prepare locale in .gitlab-ci.yml and add
        aurweb.config [options] localedir to config.dev with YOUR_AUR_ROOT
        like others.
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Signed-off-by: default avatarLukas Fleischer <lfleischer@archlinux.org>
      c1e29e90
  24. Feb 20, 2021
Loading