aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-09-26Update `user_roles`: Return roles for user by resource.Frederick Muriuki Muriithi
2023-09-26Move `groups` package under `resources` packageFrederick Muriuki Muriithi
With user groups being resources that users can act on (with the recent changes), this commit moves the `groups` module to under the `resources` module. It also renames the `*_resources.py` modules by dropping the `_resources` part since the code is under the `resources` module anyway.
2023-09-26Update tests & fixtures to conform to schema changesFrederick Muriuki Muriithi
2023-09-26Remove group from resource objectsFrederick Muriuki Muriithi
With the new schema, not all Resource objects are "owned" by a group. Those that are, are linked together through a different db table (`resource_ownership`). This commit removes the `Group` object from `Resource` objects and updates the `resource_ownership` where relevant.
2023-09-26Raise exception if no group for `resource_group`Frederick Muriuki Muriithi
Rather than using pymonad's Maybe monad and dealing with the complexity it introduces, raise an exception if there is no group found for the given resource.
2023-09-26Add `resource_group` function to retrieve the owning groupFrederick Muriuki Muriithi
Some resources are "owned" by specific user groups. This commit adds a way to retrieve those "owners" where relevant.
2023-09-26Extract resource-type-specific code into separate modulesFrederick Muriuki Muriithi
For easier maintenance, extract the code that relates to specific resource types/categories into separate modules, each dealing with a single resource type/category.
2023-09-26Extract basic resource types to a separate module.Frederick Muriuki Muriithi
2023-09-26Fix foreign-key refs. Merge tables.Frederick Muriuki Muriithi
* Link the `role_id` field to the `roles` table rather than the `group_roles` table. * Merge the data in the `group_user_roles_on_resources` table in the `user_roles` table to have a single point-of-truth for all user roles on resources.
2023-09-26Add a 'system' resourceFrederick Muriuki Muriithi
Add a 'system' resource to allow users to have roles they can use to act on the system itself.
2023-09-26migrations: Create `group_resources` table.Frederick Muriuki Muriithi
2023-09-26Drop `group_id` from resources tableFrederick Muriuki Muriithi
Drop the `group_id` from the `resources` table and update all dependent tables to fix FOREIGN KEY constraints to ensure integrity of the data.
2023-09-26Add `system` and `group` resource categories.Frederick Muriuki Muriithi
2023-09-26Resources refactor: Add `resource_ownership` tableFrederick Muriuki Muriithi
New table to link resources to groups, where relevant.
2023-09-19Remove pinned commitFrederick Muriuki Muriithi
2023-09-06Update yoyo-migration and mypyFrederick Muriuki Muriithi
Update the dependencies to enable the use of Python-3.10
2023-08-31Add documentation on troubleshooting tokensFrederick Muriuki Muriithi
2023-08-31Indent the code with `guix-devel-mode`Frederick Muriuki Muriithi
2023-08-30Replace `(...) with (list ...): Fixes "undefined gexp" failure.Frederick Muriuki Muriithi
Replace the backquoted expression in the (arguments ...) section of the package definition to fix the error where the build could not find the variable gexp
2023-08-30Include missing module.Frederick Muriuki Muriithi
2023-08-25Fix linting issues with package definition.Frederick Muriuki Muriithi
2023-08-24Add LICENSE fileFrederick Muriuki Muriithi
2023-08-23Add gunicorn as a dependency.Frederick Muriuki Muriithi
2023-08-23pylint: Load extra checkers.Frederick Muriuki Muriithi
2023-08-23pylint: Remove statement calling non-existent memberFrederick Muriuki Muriithi
2023-08-23pylint: replace ellipsis with statement raising exception.Frederick Muriuki Muriithi
2023-08-23pylint: Replace `lambda ...` statements with `def ...`Frederick Muriuki Muriithi
2023-08-16Do not use current-filename.Frederick Muriuki Muriithi
For some reason, current-filename does not work with Guix channels. This change was provided by Arun Isaac<arunisaac@systemreboot.net> but I could not seem to figure out how to download the patches from protonmail therefore I give the credit here.
2023-08-16Fix typo in package name.Frederick Muriuki Muriithi
2023-08-16Do not find the exact version for Guix package.Frederick Muriuki Muriithi
Finding the exact version number is a lot of work for a minor cosmetic effect. This change was suggested by Arun. I could not figure out how to download the patch from protonmail directly, so I have to give credit here.
2023-08-16Remove definition (use on in `guix-bioinformatics`)Frederick Muriuki Muriithi
2023-08-16Add `guix-bioinformatics` and `guix-past` as channel dependencies.Frederick Muriuki Muriithi
2023-08-16Avoid extreme nesting for single-package channel.Frederick Muriuki Muriithi
2023-08-14Set version to hard-coded value in checkoutFrederick Muriuki Muriithi
2023-08-14Fix bugsFrederick Muriuki Muriithi
2023-08-14Wrap package definition in `(define-public ...)`Frederick Muriuki Muriithi
2023-08-14Add missing dependencyFrederick Muriuki Muriithi
Define `python-authlib` package.
2023-08-14Make repository a channel.Frederick Muriuki Muriithi
2023-08-09Add documentation on configuration and installation.Frederick Muriuki Muriithi
2023-08-08Set the root packages as "gn_auth"Munyoki Kilyungi
* setup.py: Delete "packages". Add package_dir.
2023-08-08Quiet linter: Eliminate trailing newline.Frederick Muriuki Muriithi
2023-08-08Run test with buildFrederick Muriuki Muriithi
Modify the guix build `check' phase to run the tests with pytest.
2023-08-08Use relative imports to break circular import errorsFrederick Muriuki Muriithi
2023-08-08Docs: Add documentationFrederick Muriuki Muriithi
2023-08-08Add WSGI entry point.Frederick Muriuki Muriithi
2023-08-08Fix type-checking errorsFrederick Muriuki Muriithi
2023-08-08Fix issues caught by linterFrederick Muriuki Muriithi
* Add a .pylintrc to silence annoying messages * Fix imports * Add missing `parse_db_url` function * Add a new `gn_auth.auth.db.redis` module
2023-08-07Add documentation on expected checks.Frederick Muriuki Muriithi
2023-08-07Fix testsFrederick Muriuki Muriithi
2023-08-07Add routes to the applicationFrederick Muriuki Muriithi