2020-06-07 14:35:08 +00:00
|
|
|
# Generated by Django 3.0.6 on 2020-05-24 11:34
|
|
|
|
|
|
|
|
from django.apps.registry import Apps
|
|
|
|
from django.db import migrations
|
|
|
|
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
|
|
|
|
|
|
from passbook.flows.models import FlowDesignation
|
|
|
|
|
|
|
|
|
|
|
|
def create_default_provider_authz_flow(
|
|
|
|
apps: Apps, schema_editor: BaseDatabaseSchemaEditor
|
|
|
|
):
|
|
|
|
Flow = apps.get_model("passbook_flows", "Flow")
|
|
|
|
FlowStageBinding = apps.get_model("passbook_flows", "FlowStageBinding")
|
|
|
|
|
|
|
|
ConsentStage = apps.get_model("passbook_stages_consent", "ConsentStage")
|
|
|
|
|
|
|
|
db_alias = schema_editor.connection.alias
|
|
|
|
|
2020-06-19 18:33:35 +00:00
|
|
|
# Empty flow for providers where consent is implicitly given
|
2020-06-19 18:35:38 +00:00
|
|
|
Flow.objects.using(db_alias).create(
|
2020-06-19 18:33:35 +00:00
|
|
|
name="Authorize Application",
|
|
|
|
slug="default-provider-authorization-implicit-consent",
|
2020-06-07 14:35:08 +00:00
|
|
|
designation=FlowDesignation.AUTHORIZATION,
|
|
|
|
)
|
|
|
|
|
2020-06-19 18:33:35 +00:00
|
|
|
# Flow with consent form to obtain explicit user consent
|
2020-06-19 18:35:38 +00:00
|
|
|
flow = Flow.objects.using(db_alias).create(
|
2020-06-19 18:33:35 +00:00
|
|
|
name="Authorize Application",
|
|
|
|
slug="default-provider-authorization-explicit-consent",
|
2020-06-07 14:35:08 +00:00
|
|
|
designation=FlowDesignation.AUTHORIZATION,
|
|
|
|
)
|
2020-06-19 18:35:38 +00:00
|
|
|
stage = ConsentStage.objects.using(db_alias).create(
|
|
|
|
name="default-provider-authorization-consent"
|
|
|
|
)
|
|
|
|
FlowStageBinding.objects.using(db_alias).create(flow=flow, stage=stage, order=0)
|
2020-06-07 14:35:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
("passbook_flows", "0004_source_flows"),
|
|
|
|
("passbook_stages_consent", "0001_initial"),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [migrations.RunPython(create_default_provider_authz_flow)]
|