-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement permission request/approve flow. (#1095)
* Implement permission request/approve flow * Address the comments. * Refactor the code to support multiple datasources. * Reformat the queries.
- Loading branch information
Showing
7 changed files
with
604 additions
and
45 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
caravel/migrations/versions/5e4a03ef0bf0_add_request_access_model.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,33 @@ | ||
"""Add access_request table to manage requests to access datastores. | ||
Revision ID: 5e4a03ef0bf0 | ||
Revises: 41f6a59a61f2 | ||
Create Date: 2016-09-09 17:39:57.846309 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '5e4a03ef0bf0' | ||
down_revision = 'b347b202819b' | ||
|
||
|
||
def upgrade(): | ||
op.create_table( | ||
'access_request', | ||
sa.Column('created_on', sa.DateTime(), nullable=True), | ||
sa.Column('changed_on', sa.DateTime(), nullable=True), | ||
sa.Column('id', sa.Integer(), nullable=False), | ||
sa.Column('datasource_type', sa.String(length=200), nullable=True), | ||
sa.Column('datasource_id', sa.Integer(), nullable=True), | ||
sa.Column('changed_by_fk', sa.Integer(), nullable=True), | ||
sa.Column('created_by_fk', sa.Integer(), nullable=True), | ||
sa.ForeignKeyConstraint(['changed_by_fk'], ['ab_user.id'], ), | ||
sa.ForeignKeyConstraint(['created_by_fk'], ['ab_user.id'], ), | ||
sa.PrimaryKeyConstraint('id') | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.drop_table('access_request') |
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
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,24 @@ | ||
{% extends "caravel/basic.html" %} | ||
{% block title %}{{ _("No Access!") }}{% endblock %} | ||
{% block body %} | ||
{% include "caravel/flash_wrapper.html" %} | ||
<div class="container"> | ||
<h4> | ||
{{ _("You do not have permissions to access the datasource %(name)s.", | ||
name=datasource_name) | ||
}} | ||
</h4> | ||
<div id="buttons"> | ||
<button onclick="window.location.href = '{{ request_access_url }}';" | ||
id="request" | ||
> | ||
{{ _("Request Permissions") }} | ||
</button> | ||
<button onclick="window.location.href = '{{ slicemodelview_link }}';" | ||
id="cancel" | ||
> | ||
{{ _("Cancel") }} | ||
</button> | ||
</div> | ||
</div> | ||
{% endblock %} |
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
Oops, something went wrong.