-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add migration script for scoped API keys (#655)
* Add migration script for scoped API keys Update package_versions uploader with API keys owner instead of the key anonymous user. This is linked to #647 and allow to update existing databases. * Fix issue with sqlalchemy >=2.0 SQL query needs to be wrapped in sqlalchemy.text. Using raw string as been removed.
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
quetz/migrations/versions/3ba25f23fb7d_update_scoped_api_key_uploader_id.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
"""Update scoped API key uploader id | ||
Revision ID: 3ba25f23fb7d | ||
Revises: d212023a8e0b | ||
Create Date: 2023-08-02 08:03:09.961559 | ||
""" | ||
import sqlalchemy as sa | ||
from alembic import op | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '3ba25f23fb7d' | ||
down_revision = 'd212023a8e0b' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
package_versions = sa.sql.table("package_versions", sa.sql.column("uploader_id")) | ||
conn = op.get_bind() | ||
# Get all user_id/owner_id from channel scoped API keys | ||
# (user is anonymous - username is null) | ||
res = conn.execute( | ||
sa.text( | ||
"""SELECT api_keys.user_id, api_keys.owner_id FROM api_keys | ||
INNER JOIN users ON users.id = api_keys.user_id | ||
WHERE users.username is NULL; | ||
""" | ||
) | ||
) | ||
results = res.fetchall() | ||
# Replace the uploader with the key owner (real user instead of the anonymous one) | ||
for result in results: | ||
op.execute( | ||
package_versions.update() | ||
.where(package_versions.c.uploader_id == result[0]) | ||
.values(uploader_id=result[1]) | ||
) | ||
|
||
|
||
def downgrade(): | ||
package_versions = sa.sql.table("package_versions", sa.sql.column("uploader_id")) | ||
conn = op.get_bind() | ||
# Get all user_id/owner_id from channel scoped API keys | ||
# (user is anonymous - username is null) | ||
res = conn.execute( | ||
sa.text( | ||
"""SELECT api_keys.user_id, api_keys.owner_id FROM api_keys | ||
INNER JOIN users ON users.id = api_keys.user_id | ||
WHERE users.username is NULL; | ||
""" | ||
) | ||
) | ||
results = res.fetchall() | ||
# Replace the uploader with the key anonymous user | ||
for result in results: | ||
op.execute( | ||
package_versions.update() | ||
.where(package_versions.c.uploader_id == result[1]) | ||
.values(uploader_id=result[0]) | ||
) |