flows: optimise queries (#3818)
* flows: optimise flow queries Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * index source on slug and name Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * binding index Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * add policy parent index Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix migrations Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * cleanup old migrations Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * add release note to upgrade Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
6882445937
commit
cfad472e1b
|
@ -1,55 +0,0 @@
|
||||||
# Generated by Django 3.0.6 on 2020-05-23 11:33
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0003_auto_20200523_1133"),
|
|
||||||
("authentik_core", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="application",
|
|
||||||
name="skip_authorization",
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="source",
|
|
||||||
name="authentication_flow",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Flow to use when authenticating existing users.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
related_name="source_authentication",
|
|
||||||
to="authentik_flows.Flow",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="source",
|
|
||||||
name="enrollment_flow",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Flow to use when enrolling new users.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
related_name="source_enrollment",
|
|
||||||
to="authentik_flows.Flow",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="provider",
|
|
||||||
name="authorization_flow",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
help_text="Flow used when authorizing this provider.",
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
related_name="provider_authorization",
|
|
||||||
to="authentik_flows.Flow",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,57 +0,0 @@
|
||||||
# Generated by Django 3.0.6 on 2020-05-23 16:40
|
|
||||||
from os import environ
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.conf import settings
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def create_default_user(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
from django.contrib.auth.hashers import make_password
|
|
||||||
|
|
||||||
User = apps.get_model("authentik_core", "User")
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
|
|
||||||
akadmin, _ = User.objects.using(db_alias).get_or_create(
|
|
||||||
username="akadmin", email="root@localhost", name="authentik Default Admin"
|
|
||||||
)
|
|
||||||
password = None
|
|
||||||
if "TF_BUILD" in environ or settings.TEST:
|
|
||||||
password = "akadmin" # noqa # nosec
|
|
||||||
if "AK_ADMIN_PASS" in environ:
|
|
||||||
password = environ["AK_ADMIN_PASS"]
|
|
||||||
if "AUTHENTIK_BOOTSTRAP_PASSWORD" in environ:
|
|
||||||
password = environ["AUTHENTIK_BOOTSTRAP_PASSWORD"]
|
|
||||||
if password:
|
|
||||||
akadmin.password = make_password(password)
|
|
||||||
else:
|
|
||||||
akadmin.password = make_password(None)
|
|
||||||
akadmin.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0002_auto_20200523_1133"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="user",
|
|
||||||
name="is_superuser",
|
|
||||||
),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="user",
|
|
||||||
name="is_staff",
|
|
||||||
),
|
|
||||||
migrations.RunPython(create_default_user),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="user",
|
|
||||||
name="is_superuser",
|
|
||||||
field=models.BooleanField(default=False),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="user", name="is_staff", field=models.BooleanField(default=False)
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,28 +0,0 @@
|
||||||
# Generated by Django 3.0.7 on 2020-07-03 22:13
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0003_default_user"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="application",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Application",
|
|
||||||
"verbose_name_plural": "Applications",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="user",
|
|
||||||
options={
|
|
||||||
"permissions": (("reset_user_password", "Reset Password"),),
|
|
||||||
"verbose_name": "User",
|
|
||||||
"verbose_name_plural": "Users",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.0.7 on 2020-07-05 21:11
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0004_auto_20200703_2213"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="token",
|
|
||||||
name="intent",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("verification", "Intent Verification"),
|
|
||||||
("api", "Intent Api"),
|
|
||||||
],
|
|
||||||
default="verification",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Generated by Django 3.0.8 on 2020-07-09 16:08
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0005_token_intent"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="source",
|
|
||||||
name="slug",
|
|
||||||
field=models.SlugField(help_text="Internal source name, used in URLs.", unique=True),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-15 18:41
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0006_auto_20200709_1608"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="user",
|
|
||||||
name="first_name",
|
|
||||||
field=models.CharField(blank=True, max_length=150, verbose_name="first name"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,36 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-24 15:32
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("auth", "0012_alter_user_first_name_max_length"),
|
|
||||||
("authentik_core", "0007_auto_20200815_1841"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="user",
|
|
||||||
name="groups",
|
|
||||||
field=models.ManyToManyField(to="authentik_core.Group"),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="user",
|
|
||||||
name="groups",
|
|
||||||
field=models.ManyToManyField(
|
|
||||||
blank=True,
|
|
||||||
help_text="The groups this user belongs to. A user will get all permissions granted to each of their groups.",
|
|
||||||
related_name="user_set",
|
|
||||||
related_query_name="user",
|
|
||||||
to="auth.Group",
|
|
||||||
verbose_name="groups",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="user",
|
|
||||||
name="pb_groups",
|
|
||||||
field=models.ManyToManyField(to="authentik_core.Group"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,59 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-15 19:53
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.core.models
|
|
||||||
|
|
||||||
|
|
||||||
def create_default_admin_group(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Group = apps.get_model("authentik_core", "Group")
|
|
||||||
User = apps.get_model("authentik_core", "User")
|
|
||||||
|
|
||||||
# Creates a default admin group
|
|
||||||
group, _ = Group.objects.using(db_alias).get_or_create(
|
|
||||||
is_superuser=True,
|
|
||||||
defaults={
|
|
||||||
"name": "authentik Admins",
|
|
||||||
},
|
|
||||||
)
|
|
||||||
group.users.set(User.objects.filter(username="akadmin"))
|
|
||||||
group.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0008_auto_20200824_1532"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="user",
|
|
||||||
name="is_superuser",
|
|
||||||
),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="user",
|
|
||||||
name="is_staff",
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="user",
|
|
||||||
name="pb_groups",
|
|
||||||
field=models.ManyToManyField(related_name="users", to="authentik_core.Group"),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="group",
|
|
||||||
name="is_superuser",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False, help_text="Users added to this group will be superusers."
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(create_default_admin_group),
|
|
||||||
migrations.AlterModelManagers(
|
|
||||||
name="user",
|
|
||||||
managers=[
|
|
||||||
("objects", authentik.core.models.UserManager()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-17 10:21
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0009_group_is_superuser"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="user",
|
|
||||||
options={
|
|
||||||
"permissions": (
|
|
||||||
("reset_user_password", "Reset Password"),
|
|
||||||
("impersonate", "Can impersonate other users"),
|
|
||||||
),
|
|
||||||
"verbose_name": "User",
|
|
||||||
"verbose_name_plural": "Users",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-03 17:34
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0010_auto_20200917_1021"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="provider",
|
|
||||||
name="name_temp",
|
|
||||||
field=models.TextField(default=""),
|
|
||||||
preserve_default=False,
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,20 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-03 17:37
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0011_provider_name_temp"),
|
|
||||||
("authentik_providers_oauth2", "0006_remove_oauth2provider_name"),
|
|
||||||
("authentik_providers_saml", "0006_remove_samlprovider_name"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="provider",
|
|
||||||
old_name="name_temp",
|
|
||||||
new_name="name",
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,35 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-03 21:32
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0012_auto_20201003_1737"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="token",
|
|
||||||
name="identifier",
|
|
||||||
field=models.TextField(default=""),
|
|
||||||
preserve_default=False,
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="token",
|
|
||||||
name="intent",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("verification", "Intent Verification"),
|
|
||||||
("api", "Intent Api"),
|
|
||||||
("recovery", "Intent Recovery"),
|
|
||||||
],
|
|
||||||
default="verification",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterUniqueTogether(
|
|
||||||
name="token",
|
|
||||||
unique_together={("identifier", "user")},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,48 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-18 11:58
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.core.models
|
|
||||||
|
|
||||||
|
|
||||||
def set_default_token_key(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Token = apps.get_model("authentik_core", "Token")
|
|
||||||
|
|
||||||
for token in Token.objects.using(db_alias).all():
|
|
||||||
token.key = token.pk.hex
|
|
||||||
token.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0013_auto_20201003_2132"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="token",
|
|
||||||
name="key",
|
|
||||||
field=models.TextField(default=authentik.core.models.default_token_key),
|
|
||||||
),
|
|
||||||
migrations.AlterUniqueTogether(
|
|
||||||
name="token",
|
|
||||||
unique_together=set(),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="token",
|
|
||||||
name="identifier",
|
|
||||||
field=models.SlugField(max_length=255),
|
|
||||||
),
|
|
||||||
migrations.AddIndex(
|
|
||||||
model_name="token",
|
|
||||||
index=models.Index(fields=["key"], name="authentik_co_key_e45007_idx"),
|
|
||||||
),
|
|
||||||
migrations.AddIndex(
|
|
||||||
model_name="token",
|
|
||||||
index=models.Index(fields=["identifier"], name="authentik_co_identif_1a34a8_idx"),
|
|
||||||
),
|
|
||||||
migrations.RunPython(set_default_token_key),
|
|
||||||
]
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-11-23 17:19
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0014_auto_20201018_1158"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="application",
|
|
||||||
name="meta_icon_url",
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="application",
|
|
||||||
name="meta_icon",
|
|
||||||
field=models.FileField(blank=True, default="", upload_to="application-icons/"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,34 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-12-02 22:34
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0015_application_icon"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveIndex(
|
|
||||||
model_name="token",
|
|
||||||
name="authentik_co_key_e45007_idx",
|
|
||||||
),
|
|
||||||
migrations.RemoveIndex(
|
|
||||||
model_name="token",
|
|
||||||
name="authentik_co_identif_1a34a8_idx",
|
|
||||||
),
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="user",
|
|
||||||
old_name="pb_groups",
|
|
||||||
new_name="ak_groups",
|
|
||||||
),
|
|
||||||
migrations.AddIndex(
|
|
||||||
model_name="token",
|
|
||||||
index=models.Index(fields=["identifier"], name="authentik_c_identif_d9d032_idx"),
|
|
||||||
),
|
|
||||||
migrations.AddIndex(
|
|
||||||
model_name="token",
|
|
||||||
index=models.Index(fields=["key"], name="authentik_c_key_f71355_idx"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,21 +0,0 @@
|
||||||
# Generated by Django 3.1.7 on 2021-03-30 13:45
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0017_managed"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="token",
|
|
||||||
options={
|
|
||||||
"permissions": (("view_token_key", "View token's key"),),
|
|
||||||
"verbose_name": "Token",
|
|
||||||
"verbose_name_plural": "Tokens",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.2 on 2021-04-09 14:06
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0018_auto_20210330_1345"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="source",
|
|
||||||
name="managed",
|
|
||||||
field=models.TextField(
|
|
||||||
default=None,
|
|
||||||
help_text="Objects which are managed by authentik. These objects are created and updated automatically. This is flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.",
|
|
||||||
null=True,
|
|
||||||
unique=True,
|
|
||||||
verbose_name="Managed by authentik",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,40 +0,0 @@
|
||||||
# Generated by Django 3.2 on 2021-05-03 17:06
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0019_source_managed"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="source",
|
|
||||||
name="user_matching_mode",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("identifier", "Use the source-specific identifier"),
|
|
||||||
(
|
|
||||||
"email_link",
|
|
||||||
"Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses.",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"email_deny",
|
|
||||||
"Use the user's email address, but deny enrollment when the email address already exists.",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"username_link",
|
|
||||||
"Link to a user with identical username. Can have security implications when a username is used with another source.",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"username_deny",
|
|
||||||
"Use the user's username, but deny enrollment when the username already exists.",
|
|
||||||
),
|
|
||||||
],
|
|
||||||
default="identifier",
|
|
||||||
help_text="How the source determines if an existing user should be authenticated or a new user enrolled.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,20 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-05-14 08:48
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0020_source_user_matching_mode"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="application",
|
|
||||||
name="slug",
|
|
||||||
field=models.SlugField(
|
|
||||||
help_text="Internal application name, used in URLs.", unique=True
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,58 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-05-29 22:14
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.conf import settings
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.core.models
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_sessions(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
from django.contrib.sessions.backends.cache import KEY_PREFIX
|
|
||||||
from django.core.cache import cache
|
|
||||||
|
|
||||||
session_keys = cache.keys(KEY_PREFIX + "*")
|
|
||||||
cache.delete_many(session_keys)
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0021_alter_application_slug"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="AuthenticatedSession",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"expires",
|
|
||||||
models.DateTimeField(default=authentik.core.models.default_token_duration),
|
|
||||||
),
|
|
||||||
("expiring", models.BooleanField(default=True)),
|
|
||||||
(
|
|
||||||
"uuid",
|
|
||||||
models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False),
|
|
||||||
),
|
|
||||||
("session_key", models.CharField(max_length=40)),
|
|
||||||
("last_ip", models.TextField()),
|
|
||||||
("last_user_agent", models.TextField(blank=True)),
|
|
||||||
("last_used", models.DateTimeField(auto_now=True)),
|
|
||||||
(
|
|
||||||
"user",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
to=settings.AUTH_USER_MODEL,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"abstract": False,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.RunPython(migrate_sessions),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-02 21:51
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
import authentik.lib.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0022_authenticatedsession"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="application",
|
|
||||||
name="meta_launch_url",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
default="",
|
|
||||||
validators=[authentik.lib.models.DomainlessURLValidator()],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
# Generated by Django 4.1.2 on 2022-10-19 18:57
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("authentik_core", "0022_alter_group_parent"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddIndex(
|
||||||
|
model_name="source",
|
||||||
|
index=models.Index(fields=["slug"], name="authentik_c_slug_ccb2e5_idx"),
|
||||||
|
),
|
||||||
|
migrations.AddIndex(
|
||||||
|
model_name="source",
|
||||||
|
index=models.Index(fields=["name"], name="authentik_c_name_affae6_idx"),
|
||||||
|
),
|
||||||
|
]
|
|
@ -1,35 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-03 09:33
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
from django.db.models import Count
|
|
||||||
|
|
||||||
|
|
||||||
def fix_duplicates(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Token = apps.get_model("authentik_core", "token")
|
|
||||||
identifiers = (
|
|
||||||
Token.objects.using(db_alias)
|
|
||||||
.values("identifier")
|
|
||||||
.annotate(identifier_count=Count("identifier"))
|
|
||||||
.filter(identifier_count__gt=1)
|
|
||||||
)
|
|
||||||
for ident in identifiers:
|
|
||||||
Token.objects.using(db_alias).filter(identifier=ident["identifier"]).delete()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0023_alter_application_meta_launch_url"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(fix_duplicates),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="token",
|
|
||||||
name="identifier",
|
|
||||||
field=models.SlugField(max_length=255, unique=True),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-05 19:04
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0024_alter_token_identifier"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="application",
|
|
||||||
name="meta_icon",
|
|
||||||
field=models.FileField(default=None, null=True, upload_to="application-icons/"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,27 +0,0 @@
|
||||||
# Generated by Django 3.2.5 on 2021-07-09 17:27
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0025_alter_application_meta_icon"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="application",
|
|
||||||
name="meta_icon",
|
|
||||||
field=models.FileField(
|
|
||||||
default=None, max_length=500, null=True, upload_to="application-icons/"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="authenticatedsession",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Authenticated Session",
|
|
||||||
"verbose_name_plural": "Authenticated Sessions",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,44 +0,0 @@
|
||||||
# Generated by Django 3.2.5 on 2021-08-11 19:40
|
|
||||||
from os import environ
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def create_default_user_token(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
from authentik.core.models import TokenIntents
|
|
||||||
|
|
||||||
User = apps.get_model("authentik_core", "User")
|
|
||||||
Token = apps.get_model("authentik_core", "Token")
|
|
||||||
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
|
|
||||||
akadmin = User.objects.using(db_alias).filter(username="akadmin")
|
|
||||||
if not akadmin.exists():
|
|
||||||
return
|
|
||||||
key = None
|
|
||||||
if "AK_ADMIN_TOKEN" in environ:
|
|
||||||
key = environ["AK_ADMIN_TOKEN"]
|
|
||||||
if "AUTHENTIK_BOOTSTRAP_TOKEN" in environ:
|
|
||||||
key = environ["AUTHENTIK_BOOTSTRAP_TOKEN"]
|
|
||||||
if not key:
|
|
||||||
return
|
|
||||||
Token.objects.using(db_alias).create(
|
|
||||||
identifier="authentik-bootstrap-token",
|
|
||||||
user=akadmin.first(),
|
|
||||||
intent=TokenIntents.INTENT_API,
|
|
||||||
expiring=False,
|
|
||||||
key=key,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0026_alter_application_meta_icon"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(create_default_user_token),
|
|
||||||
]
|
|
|
@ -1,26 +0,0 @@
|
||||||
# Generated by Django 3.2.6 on 2021-08-23 14:35
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0027_bootstrap_token"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="token",
|
|
||||||
name="intent",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("verification", "Intent Verification"),
|
|
||||||
("api", "Intent Api"),
|
|
||||||
("recovery", "Intent Recovery"),
|
|
||||||
("app_password", "Intent App Password"),
|
|
||||||
],
|
|
||||||
default="verification",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -472,6 +472,21 @@ class Source(ManagedModel, SerializerModel, PolicyBindingModel):
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
|
||||||
|
indexes = [
|
||||||
|
models.Index(
|
||||||
|
fields=[
|
||||||
|
"slug",
|
||||||
|
]
|
||||||
|
),
|
||||||
|
models.Index(
|
||||||
|
fields=[
|
||||||
|
"name",
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class UserSourceConnection(SerializerModel, CreatedUpdatedModel):
|
class UserSourceConnection(SerializerModel, CreatedUpdatedModel):
|
||||||
"""Connection between User and Source."""
|
"""Connection between User and Source."""
|
||||||
|
|
|
@ -1,70 +0,0 @@
|
||||||
# Generated by Django 3.0.6 on 2020-05-19 22:08
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.conf import settings
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
initial = True
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Event",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"event_uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"action",
|
|
||||||
models.TextField(
|
|
||||||
choices=[
|
|
||||||
("LOGIN", "login"),
|
|
||||||
("LOGIN_FAILED", "login_failed"),
|
|
||||||
("LOGOUT", "logout"),
|
|
||||||
("AUTHORIZE_APPLICATION", "authorize_application"),
|
|
||||||
("SUSPICIOUS_REQUEST", "suspicious_request"),
|
|
||||||
("SIGN_UP", "sign_up"),
|
|
||||||
("PASSWORD_RESET", "password_reset"),
|
|
||||||
("INVITE_CREATED", "invitation_created"),
|
|
||||||
("INVITE_USED", "invitation_used"),
|
|
||||||
("CUSTOM", "custom"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("date", models.DateTimeField(auto_now_add=True)),
|
|
||||||
("app", models.TextField()),
|
|
||||||
(
|
|
||||||
"context",
|
|
||||||
models.JSONField(blank=True, default=dict),
|
|
||||||
),
|
|
||||||
("client_ip", models.GenericIPAddressField(null=True)),
|
|
||||||
("created", models.DateTimeField(auto_now_add=True)),
|
|
||||||
(
|
|
||||||
"user",
|
|
||||||
models.ForeignKey(
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
to=settings.AUTH_USER_MODEL,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Event",
|
|
||||||
"verbose_name_plural": "Events",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,33 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-18 21:16
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("LOGIN", "login"),
|
|
||||||
("LOGIN_FAILED", "login_failed"),
|
|
||||||
("LOGOUT", "logout"),
|
|
||||||
("AUTHORIZE_APPLICATION", "authorize_application"),
|
|
||||||
("SUSPICIOUS_REQUEST", "suspicious_request"),
|
|
||||||
("SIGN_UP", "sign_up"),
|
|
||||||
("PASSWORD_RESET", "password_reset"),
|
|
||||||
("INVITE_CREATED", "invitation_created"),
|
|
||||||
("INVITE_USED", "invitation_used"),
|
|
||||||
("IMPERSONATION_STARTED", "impersonation_started"),
|
|
||||||
("IMPERSONATION_ENDED", "impersonation_ended"),
|
|
||||||
("CUSTOM", "custom"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,60 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-17 11:55
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.events.models
|
|
||||||
|
|
||||||
|
|
||||||
def convert_user_to_json(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
Event = apps.get_model("authentik_events", "Event")
|
|
||||||
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
for event in Event.objects.using(db_alias).all():
|
|
||||||
event.delete()
|
|
||||||
# Because event objects cannot be updated, we have to re-create them
|
|
||||||
event.pk = None
|
|
||||||
event.user_json = authentik.events.models.get_user(event.user) if event.user else {}
|
|
||||||
event._state.adding = True
|
|
||||||
event.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0002_auto_20200918_2116"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("LOGIN", "login"),
|
|
||||||
("LOGIN_FAILED", "login_failed"),
|
|
||||||
("LOGOUT", "logout"),
|
|
||||||
("AUTHORIZE_APPLICATION", "authorize_application"),
|
|
||||||
("SUSPICIOUS_REQUEST", "suspicious_request"),
|
|
||||||
("SIGN_UP", "sign_up"),
|
|
||||||
("PASSWORD_RESET", "password_reset"),
|
|
||||||
("INVITE_CREATED", "invitation_created"),
|
|
||||||
("INVITE_USED", "invitation_used"),
|
|
||||||
("IMPERSONATION_STARTED", "impersonation_started"),
|
|
||||||
("IMPERSONATION_ENDED", "impersonation_ended"),
|
|
||||||
("CUSTOM", "custom"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="event",
|
|
||||||
name="user_json",
|
|
||||||
field=models.JSONField(default=dict),
|
|
||||||
),
|
|
||||||
migrations.RunPython(convert_user_to_json),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="event",
|
|
||||||
name="user",
|
|
||||||
),
|
|
||||||
migrations.RenameField(model_name="event", old_name="user_json", new_name="user"),
|
|
||||||
]
|
|
|
@ -1,37 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-21 18:29
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0003_auto_20200917_1155"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("sign_up", "Sign Up"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,37 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-05 21:39
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0004_auto_20200921_1829"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,42 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-17 20:24
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0005_auto_20201005_2139"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="event",
|
|
||||||
name="date",
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,41 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-15 09:39
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0006_auto_20201017_2024"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,42 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-20 16:51
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0007_auto_20201215_0939"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,42 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-27 12:10
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0008_auto_20201220_1651"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,148 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2021-01-11 16:36
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.conf import settings
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
||||||
("authentik_policies", "0004_policy_execution_logging"),
|
|
||||||
("authentik_core", "0016_auto_20201202_2234"),
|
|
||||||
("authentik_events", "0009_auto_20201227_1210"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="NotificationTransport",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField(unique=True)),
|
|
||||||
(
|
|
||||||
"mode",
|
|
||||||
models.TextField(
|
|
||||||
choices=[
|
|
||||||
("webhook", "Generic Webhook"),
|
|
||||||
("webhook_slack", "Slack Webhook (Slack/Discord)"),
|
|
||||||
("email", "Email"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("webhook_url", models.TextField(blank=True)),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Notification Transport",
|
|
||||||
"verbose_name_plural": "Notification Transports",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="NotificationRule",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"policybindingmodel_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
to="authentik_policies.policybindingmodel",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField(unique=True)),
|
|
||||||
(
|
|
||||||
"severity",
|
|
||||||
models.TextField(
|
|
||||||
choices=[
|
|
||||||
("notice", "Notice"),
|
|
||||||
("warning", "Warning"),
|
|
||||||
("alert", "Alert"),
|
|
||||||
],
|
|
||||||
default="notice",
|
|
||||||
help_text="Controls which severity level the created notifications will have.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"group",
|
|
||||||
models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
help_text="Define which group of users this notification should be sent and shown to. If left empty, Notification won't ben sent.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
to="authentik_core.group",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"transports",
|
|
||||||
models.ManyToManyField(
|
|
||||||
help_text="Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI.",
|
|
||||||
to="authentik_events.NotificationTransport",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Notification Rule",
|
|
||||||
"verbose_name_plural": "Notification Rules",
|
|
||||||
},
|
|
||||||
bases=("authentik_policies.policybindingmodel",),
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Notification",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"severity",
|
|
||||||
models.TextField(
|
|
||||||
choices=[
|
|
||||||
("notice", "Notice"),
|
|
||||||
("warning", "Warning"),
|
|
||||||
("alert", "Alert"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("body", models.TextField()),
|
|
||||||
("created", models.DateTimeField(auto_now_add=True)),
|
|
||||||
("seen", models.BooleanField(default=False)),
|
|
||||||
(
|
|
||||||
"event",
|
|
||||||
models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_NULL,
|
|
||||||
to="authentik_events.event",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"user",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
to=settings.AUTH_USER_MODEL,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Notification",
|
|
||||||
"verbose_name_plural": "Notifications",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,15 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2021-01-10 18:57
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
(
|
|
||||||
"authentik_events",
|
|
||||||
"0010_notification_notificationtransport_notificationrule",
|
|
||||||
),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = []
|
|
|
@ -1,52 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-02 18:21
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0011_notification_rules_default_v1"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="notificationtransport",
|
|
||||||
name="send_once",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="Only send notification once, for example when sending a webhook into a chat channel.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,61 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-09 16:57
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def token_view_to_secret_view(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
from authentik.events.models import EventAction
|
|
||||||
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Event = apps.get_model("authentik_events", "Event")
|
|
||||||
|
|
||||||
events = Event.objects.using(db_alias).filter(action="token_view")
|
|
||||||
|
|
||||||
for event in events:
|
|
||||||
event.context["secret"] = event.context.pop("token")
|
|
||||||
event.action = EventAction.SECRET_VIEW
|
|
||||||
|
|
||||||
Event.objects.using(db_alias).bulk_update(events, ["context", "action"])
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0012_auto_20210202_1821"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(token_view_to_secret_view),
|
|
||||||
]
|
|
|
@ -1,87 +0,0 @@
|
||||||
# Generated by Django 3.1.7 on 2021-03-18 16:01
|
|
||||||
|
|
||||||
from datetime import timedelta
|
|
||||||
from typing import Iterable
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.events.models
|
|
||||||
|
|
||||||
|
|
||||||
# Taken from https://stackoverflow.com/questions/3173320/text-progress-bar-in-the-console
|
|
||||||
def progress_bar(
|
|
||||||
iterable: Iterable,
|
|
||||||
prefix="Writing: ",
|
|
||||||
suffix=" finished",
|
|
||||||
decimals=1,
|
|
||||||
length=100,
|
|
||||||
fill="█",
|
|
||||||
print_end="\r",
|
|
||||||
):
|
|
||||||
"""
|
|
||||||
Call in a loop to create terminal progress bar
|
|
||||||
@params:
|
|
||||||
iteration - Required : current iteration (Int)
|
|
||||||
total - Required : total iterations (Int)
|
|
||||||
prefix - Optional : prefix string (Str)
|
|
||||||
suffix - Optional : suffix string (Str)
|
|
||||||
decimals - Optional : positive number of decimals in percent complete (Int)
|
|
||||||
length - Optional : character length of bar (Int)
|
|
||||||
fill - Optional : bar fill character (Str)
|
|
||||||
print_end - Optional : end character (e.g. "\r", "\r\n") (Str)
|
|
||||||
"""
|
|
||||||
total = len(iterable)
|
|
||||||
if total < 1:
|
|
||||||
return
|
|
||||||
|
|
||||||
def print_progress_bar(iteration):
|
|
||||||
"""Progress Bar Printing Function"""
|
|
||||||
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
|
|
||||||
filledLength = int(length * iteration // total)
|
|
||||||
bar = fill * filledLength + "-" * (length - filledLength)
|
|
||||||
print(f"\r{prefix} |{bar}| {percent}% {suffix}", end=print_end)
|
|
||||||
|
|
||||||
# Initial Call
|
|
||||||
print_progress_bar(0)
|
|
||||||
# Update Progress Bar
|
|
||||||
for i, item in enumerate(iterable):
|
|
||||||
yield item
|
|
||||||
print_progress_bar(i + 1)
|
|
||||||
# Print New Line on Complete
|
|
||||||
print()
|
|
||||||
|
|
||||||
|
|
||||||
def update_expires(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Event = apps.get_model("authentik_events", "event")
|
|
||||||
all_events = Event.objects.using(db_alias).all()
|
|
||||||
if all_events.count() < 1:
|
|
||||||
return
|
|
||||||
|
|
||||||
print("\nAdding expiry to events, this might take a couple of minutes...")
|
|
||||||
for event in progress_bar(all_events):
|
|
||||||
event.expires = event.created + timedelta(days=365)
|
|
||||||
event.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0013_auto_20210209_1657"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="event",
|
|
||||||
name="expires",
|
|
||||||
field=models.DateTimeField(default=authentik.events.models.default_event_duration),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="event",
|
|
||||||
name="expiring",
|
|
||||||
field=models.BooleanField(default=True),
|
|
||||||
),
|
|
||||||
migrations.RunPython(update_expires),
|
|
||||||
]
|
|
|
@ -1,45 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-09 07:58
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0014_expiry"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("email_sent", "Email Sent"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,53 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-06-14 15:33
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
import authentik.events.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0015_alter_event_action"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="event",
|
|
||||||
name="tenant",
|
|
||||||
field=models.JSONField(blank=True, default=authentik.events.models.default_tenant),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("system_exception", "System Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("email_sent", "Email Sent"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,47 +0,0 @@
|
||||||
# Generated by Django 3.2.5 on 2021-07-14 19:15
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0016_add_tenant"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="event",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("secret_rotate", "Secret Rotate"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("system_exception", "System Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("email_sent", "Email Sent"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,46 +0,0 @@
|
||||||
# Generated by Django 3.2.6 on 2021-09-11 22:17
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0028_alter_token_intent"),
|
|
||||||
("authentik_events", "0017_alter_event_action"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="NotificationWebhookMapping",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"propertymapping_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
to="authentik_core.propertymapping",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Notification Webhook Mapping",
|
|
||||||
"verbose_name_plural": "Notification Webhook Mappings",
|
|
||||||
},
|
|
||||||
bases=("authentik_core.propertymapping",),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="notificationtransport",
|
|
||||||
name="webhook_mapping",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
default=None,
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
||||||
to="authentik_events.notificationwebhookmapping",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Generated by Django 3.2.7 on 2021-10-04 15:31
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
import authentik.lib.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_events", "0018_auto_20210911_2217"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="notificationtransport",
|
|
||||||
name="webhook_url",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True, validators=[authentik.lib.models.DomainlessURLValidator()]
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,138 +0,0 @@
|
||||||
# Generated by Django 3.0.6 on 2020-05-19 22:07
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
initial = True
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Flow",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"flow_uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField()),
|
|
||||||
("slug", models.SlugField(unique=True)),
|
|
||||||
(
|
|
||||||
"designation",
|
|
||||||
models.CharField(
|
|
||||||
choices=[
|
|
||||||
("authentication", "Authentication"),
|
|
||||||
("invalidation", "Invalidation"),
|
|
||||||
("enrollment", "Enrollment"),
|
|
||||||
("unenrollment", "Unrenollment"),
|
|
||||||
("recovery", "Recovery"),
|
|
||||||
("password_change", "Password Change"),
|
|
||||||
],
|
|
||||||
max_length=100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"pbm",
|
|
||||||
models.OneToOneField(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
related_name="+",
|
|
||||||
to="authentik_policies.PolicyBindingModel",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Flow",
|
|
||||||
"verbose_name_plural": "Flows",
|
|
||||||
},
|
|
||||||
bases=("authentik_policies.policybindingmodel",),
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Stage",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"stage_uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField()),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="FlowStageBinding",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"policybindingmodel_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
to="authentik_policies.PolicyBindingModel",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"fsb_uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"re_evaluate_policies",
|
|
||||||
models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="When this option is enabled, the planner will re-evaluate policies bound to this.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("order", models.IntegerField()),
|
|
||||||
(
|
|
||||||
"flow",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
to="authentik_flows.Flow",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"stage",
|
|
||||||
models.ForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
to="authentik_flows.Stage",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Flow Stage Binding",
|
|
||||||
"verbose_name_plural": "Flow Stage Bindings",
|
|
||||||
"ordering": ["order", "flow"],
|
|
||||||
"unique_together": {("flow", "stage", "order")},
|
|
||||||
},
|
|
||||||
bases=("authentik_policies.policybindingmodel",),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="flow",
|
|
||||||
name="stages",
|
|
||||||
field=models.ManyToManyField(
|
|
||||||
blank=True,
|
|
||||||
through="authentik_flows.FlowStageBinding",
|
|
||||||
to="authentik_flows.Stage",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Generated by Django 3.0.6 on 2020-05-23 11:33
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="designation",
|
|
||||||
field=models.CharField(
|
|
||||||
choices=[
|
|
||||||
("authentication", "Authentication"),
|
|
||||||
("authorization", "Authorization"),
|
|
||||||
("invalidation", "Invalidation"),
|
|
||||||
("enrollment", "Enrollment"),
|
|
||||||
("unenrollment", "Unrenollment"),
|
|
||||||
("recovery", "Recovery"),
|
|
||||||
("password_change", "Password Change"),
|
|
||||||
],
|
|
||||||
max_length=100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Generated by Django 3.0.7 on 2020-06-29 08:57
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0003_auto_20200523_1133"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="designation",
|
|
||||||
field=models.CharField(
|
|
||||||
choices=[
|
|
||||||
("authentication", "Authentication"),
|
|
||||||
("authorization", "Authorization"),
|
|
||||||
("invalidation", "Invalidation"),
|
|
||||||
("enrollment", "Enrollment"),
|
|
||||||
("unenrollment", "Unrenollment"),
|
|
||||||
("recovery", "Recovery"),
|
|
||||||
("stage_setup", "Stage Setup"),
|
|
||||||
],
|
|
||||||
max_length=100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,47 +0,0 @@
|
||||||
# Generated by Django 3.0.7 on 2020-07-03 20:59
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies", "0002_auto_20200528_1647"),
|
|
||||||
("authentik_flows", "0006_auto_20200629_0857"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="flowstagebinding",
|
|
||||||
options={
|
|
||||||
"ordering": ["order", "target"],
|
|
||||||
"verbose_name": "Flow Stage Binding",
|
|
||||||
"verbose_name_plural": "Flow Stage Bindings",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
old_name="flow",
|
|
||||||
new_name="target",
|
|
||||||
),
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="flow",
|
|
||||||
old_name="pbm",
|
|
||||||
new_name="policybindingmodel_ptr",
|
|
||||||
),
|
|
||||||
migrations.AlterUniqueTogether(
|
|
||||||
name="flowstagebinding",
|
|
||||||
unique_together={("target", "stage", "order")},
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="policybindingmodel_ptr",
|
|
||||||
field=models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
to="authentik_policies.PolicyBindingModel",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,28 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-08 15:42
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
import authentik.lib.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0011_flow_title"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="stage",
|
|
||||||
field=authentik.lib.models.InheritanceForeignKey(
|
|
||||||
on_delete=django.db.models.deletion.CASCADE, to="authentik_flows.stage"
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="stage",
|
|
||||||
name="name",
|
|
||||||
field=models.TextField(unique=True),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,44 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-24 16:05
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
from authentik.flows.models import FlowDesignation
|
|
||||||
|
|
||||||
|
|
||||||
def update_flow_designation(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
Flow = apps.get_model("authentik_flows", "Flow")
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
|
|
||||||
for flow in Flow.objects.using(db_alias).all():
|
|
||||||
if flow.designation == "stage_setup":
|
|
||||||
flow.designation = FlowDesignation.STAGE_CONFIGURATION
|
|
||||||
flow.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0012_auto_20200908_1542"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="designation",
|
|
||||||
field=models.CharField(
|
|
||||||
choices=[
|
|
||||||
("authentication", "Authentication"),
|
|
||||||
("authorization", "Authorization"),
|
|
||||||
("invalidation", "Invalidation"),
|
|
||||||
("enrollment", "Enrollment"),
|
|
||||||
("unenrollment", "Unrenollment"),
|
|
||||||
("recovery", "Recovery"),
|
|
||||||
("stage_configuration", "Stage Configuration"),
|
|
||||||
],
|
|
||||||
max_length=100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(update_flow_designation),
|
|
||||||
]
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-25 23:32
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0013_auto_20200924_1605"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="flowstagebinding",
|
|
||||||
options={
|
|
||||||
"ordering": ["target", "order"],
|
|
||||||
"verbose_name": "Flow Stage Binding",
|
|
||||||
"verbose_name_plural": "Flow Stage Bindings",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="re_evaluate_policies",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="When this option is enabled, the planner will re-evaluate policies bound to this binding.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-20 12:42
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0014_auto_20200925_2332"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="re_evaluate_policies",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="Evaluate policies when the Stage is present to the user.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="evaluate_on_plan",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=True,
|
|
||||||
help_text="Evaluate policies during the Flow planning process. Disable this for input-based policies.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,50 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-12-02 13:07
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0015_flowstagebinding_evaluate_on_plan"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="flow",
|
|
||||||
name="background",
|
|
||||||
field=models.FileField(
|
|
||||||
blank=True,
|
|
||||||
default="../static/dist/assets/images/flow_background.jpg",
|
|
||||||
help_text="Background shown during execution",
|
|
||||||
upload_to="flow-backgrounds/",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="designation",
|
|
||||||
field=models.CharField(
|
|
||||||
choices=[
|
|
||||||
("authentication", "Authentication"),
|
|
||||||
("authorization", "Authorization"),
|
|
||||||
("invalidation", "Invalidation"),
|
|
||||||
("enrollment", "Enrollment"),
|
|
||||||
("unenrollment", "Unrenollment"),
|
|
||||||
("recovery", "Recovery"),
|
|
||||||
("stage_configuration", "Stage Configuration"),
|
|
||||||
],
|
|
||||||
help_text="Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik.",
|
|
||||||
max_length=100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="slug",
|
|
||||||
field=models.SlugField(help_text="Visible in the URL.", unique=True),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="title",
|
|
||||||
field=models.TextField(help_text="Shown as the Title in Flow pages."),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,25 +0,0 @@
|
||||||
# Generated by Django 3.1.7 on 2021-03-29 13:34
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0016_auto_20201202_1307"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="flow",
|
|
||||||
options={
|
|
||||||
"permissions": [
|
|
||||||
("export_flow", "Can export a Flow"),
|
|
||||||
("view_flow_cache", "View Flow's cache metrics"),
|
|
||||||
("clear_flow_cache", "Clear Flow's cache metrics"),
|
|
||||||
],
|
|
||||||
"verbose_name": "Flow",
|
|
||||||
"verbose_name_plural": "Flows",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,23 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-05 17:34
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0018_oob_flows"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="background",
|
|
||||||
field=models.FileField(
|
|
||||||
default=None,
|
|
||||||
help_text="Background shown during execution",
|
|
||||||
null=True,
|
|
||||||
upload_to="flow-backgrounds/",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,21 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-05 17:56
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0019_alter_flow_background"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="flow",
|
|
||||||
name="compatibility_mode",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=True,
|
|
||||||
help_text="Enable compatibility mode, increases compatibility with password managers on mobile devices.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-06-27 16:20
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0020_flow_compatibility_mode"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="invalid_response_action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[("retry", "Retry"), ("continue", "Continue")],
|
|
||||||
default="retry",
|
|
||||||
help_text="Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor while CONTINUE continues with the next stage.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,26 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-07-03 13:13
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0021_flowstagebinding_invalid_response_action"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flowstagebinding",
|
|
||||||
name="invalid_response_action",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("retry", "Retry"),
|
|
||||||
("restart", "Restart"),
|
|
||||||
("restart_with_context", "Restart With Context"),
|
|
||||||
],
|
|
||||||
default="retry",
|
|
||||||
help_text="Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.2.5 on 2021-07-09 17:27
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0022_alter_flowstagebinding_invalid_response_action"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="background",
|
|
||||||
field=models.FileField(
|
|
||||||
default=None,
|
|
||||||
help_text="Background shown during execution",
|
|
||||||
max_length=500,
|
|
||||||
null=True,
|
|
||||||
upload_to="flow-backgrounds/",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,21 +0,0 @@
|
||||||
# Generated by Django 3.2.6 on 2021-08-30 14:49
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_flows", "0023_alter_flow_background"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="flow",
|
|
||||||
name="compatibility_mode",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="Enable compatibility mode, increases compatibility with password managers on mobile devices.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -192,16 +192,18 @@ class FlowPlanner:
|
||||||
if default_context:
|
if default_context:
|
||||||
plan.context = default_context
|
plan.context = default_context
|
||||||
# Check Flow policies
|
# Check Flow policies
|
||||||
for binding in FlowStageBinding.objects.filter(target__pk=self.flow.pk).order_by(
|
bindings = list(
|
||||||
"order"
|
FlowStageBinding.objects.filter(target__pk=self.flow.pk).order_by("order")
|
||||||
):
|
)
|
||||||
|
stages = Stage.objects.filter(flowstagebinding__in=[binding.pk for binding in bindings])
|
||||||
|
for binding in bindings:
|
||||||
binding: FlowStageBinding
|
binding: FlowStageBinding
|
||||||
stage = binding.stage
|
stage = [stage for stage in stages if stage.pk == binding.stage_id][0]
|
||||||
marker = StageMarker()
|
marker = StageMarker()
|
||||||
if binding.evaluate_on_plan:
|
if binding.evaluate_on_plan:
|
||||||
self._logger.debug(
|
self._logger.debug(
|
||||||
"f(plan): evaluating on plan",
|
"f(plan): evaluating on plan",
|
||||||
stage=binding.stage,
|
stage=stage,
|
||||||
)
|
)
|
||||||
engine = PolicyEngine(binding, user, request)
|
engine = PolicyEngine(binding, user, request)
|
||||||
engine.request.context["flow_plan"] = plan
|
engine.request.context["flow_plan"] = plan
|
||||||
|
@ -210,19 +212,19 @@ class FlowPlanner:
|
||||||
if engine.passing:
|
if engine.passing:
|
||||||
self._logger.debug(
|
self._logger.debug(
|
||||||
"f(plan): stage passing",
|
"f(plan): stage passing",
|
||||||
stage=binding.stage,
|
stage=stage,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
stage = None
|
stage = None
|
||||||
else:
|
else:
|
||||||
self._logger.debug(
|
self._logger.debug(
|
||||||
"f(plan): not evaluating on plan",
|
"f(plan): not evaluating on plan",
|
||||||
stage=binding.stage,
|
stage=stage,
|
||||||
)
|
)
|
||||||
if binding.re_evaluate_policies and stage:
|
if binding.re_evaluate_policies and stage:
|
||||||
self._logger.debug(
|
self._logger.debug(
|
||||||
"f(plan): stage has re-evaluate marker",
|
"f(plan): stage has re-evaluate marker",
|
||||||
stage=binding.stage,
|
stage=stage,
|
||||||
)
|
)
|
||||||
marker = ReevaluateMarker(binding=binding)
|
marker = ReevaluateMarker(binding=binding)
|
||||||
if stage:
|
if stage:
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-25 20:45
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.contrib.postgres.fields
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
initial = True
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0008_auto_20200824_1532"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="Outpost",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField()),
|
|
||||||
(
|
|
||||||
"channels",
|
|
||||||
django.contrib.postgres.fields.ArrayField(
|
|
||||||
base_field=models.TextField(), size=None
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("providers", models.ManyToManyField(to="authentik_core.Provider")),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,25 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-26 13:06
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
import authentik.outposts.models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="_config",
|
|
||||||
field=models.JSONField(default=authentik.outposts.models.default_outpost_config),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="type",
|
|
||||||
field=models.TextField(choices=[("proxy", "Proxy")], default="proxy"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,34 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-27 21:08
|
|
||||||
|
|
||||||
import django.contrib.postgres.fields
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0002_auto_20200826_1306"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("docker_compose", "Docker Compose"),
|
|
||||||
("kubernetes", "Kubernetes"),
|
|
||||||
("custom", "Custom"),
|
|
||||||
],
|
|
||||||
default="custom",
|
|
||||||
help_text="Select between authentik-managed deployment types or a custom deployment.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="channels",
|
|
||||||
field=django.contrib.postgres.fields.ArrayField(
|
|
||||||
base_field=models.TextField(), default=list, size=None
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Generated by Django 3.1 on 2020-08-30 10:56
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0003_auto_20200827_2108"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[("kubernetes", "Kubernetes"), ("custom", "Custom")],
|
|
||||||
default="custom",
|
|
||||||
help_text="Select between authentik-managed deployment types or a custom deployment.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Generated by Django 3.1.1 on 2020-09-09 17:33
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0004_auto_20200830_1056"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[("custom", "Custom")],
|
|
||||||
default="custom",
|
|
||||||
help_text="Select between authentik-managed deployment types or a custom deployment.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,25 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-03 22:39
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0005_auto_20200909_1733"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("docker", "Docker"),
|
|
||||||
("custom", "Custom"),
|
|
||||||
],
|
|
||||||
default="custom",
|
|
||||||
help_text="Select between authentik-managed deployment types or a custom deployment.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,17 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-14 08:32
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0006_auto_20201003_2239"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="channels",
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,26 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-14 15:47
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0007_remove_outpost_channels"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
field=models.TextField(
|
|
||||||
choices=[
|
|
||||||
("kubernetes", "Kubernetes"),
|
|
||||||
("docker", "Docker"),
|
|
||||||
("custom", "Custom"),
|
|
||||||
],
|
|
||||||
default="custom",
|
|
||||||
help_text="Select between authentik-managed deployment types or a custom deployment.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,34 +0,0 @@
|
||||||
# Generated by Django 3.1.2 on 2020-10-17 14:26
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def fix_missing_token_identifier(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
User = apps.get_model("authentik_core", "User")
|
|
||||||
Token = apps.get_model("authentik_core", "Token")
|
|
||||||
from authentik.outposts.models import Outpost
|
|
||||||
|
|
||||||
for outpost in Outpost.objects.using(schema_editor.connection.alias).all().only("pk"):
|
|
||||||
user_identifier = outpost.user_identifier
|
|
||||||
users = User.objects.filter(username=user_identifier)
|
|
||||||
if not users.exists():
|
|
||||||
continue
|
|
||||||
tokens = Token.objects.filter(user=users.first())
|
|
||||||
for token in tokens:
|
|
||||||
if token.identifier != outpost.token_identifier:
|
|
||||||
token.identifier = outpost.token_identifier
|
|
||||||
token.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0014_auto_20201018_1158"),
|
|
||||||
("authentik_outposts", "0008_auto_20201014_1547"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(fix_missing_token_identifier),
|
|
||||||
]
|
|
|
@ -1,164 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-11-04 09:11
|
|
||||||
|
|
||||||
import uuid
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.core.exceptions import FieldError
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
import authentik.lib.models
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_to_service_connection(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
db_alias = schema_editor.connection.alias
|
|
||||||
Outpost = apps.get_model("authentik_outposts", "Outpost")
|
|
||||||
DockerServiceConnection = apps.get_model("authentik_outposts", "DockerServiceConnection")
|
|
||||||
KubernetesServiceConnection = apps.get_model(
|
|
||||||
"authentik_outposts", "KubernetesServiceConnection"
|
|
||||||
)
|
|
||||||
|
|
||||||
docker = DockerServiceConnection.objects.filter(local=True).first()
|
|
||||||
k8s = KubernetesServiceConnection.objects.filter(local=True).first()
|
|
||||||
|
|
||||||
try:
|
|
||||||
for outpost in Outpost.objects.using(db_alias).all().exclude(deployment_type="custom"):
|
|
||||||
if outpost.deployment_type == "kubernetes":
|
|
||||||
outpost.service_connection = k8s
|
|
||||||
elif outpost.deployment_type == "docker":
|
|
||||||
outpost.service_connection = docker
|
|
||||||
outpost.save()
|
|
||||||
except FieldError:
|
|
||||||
# This is triggered during e2e tests when this function is called on an already-upgraded
|
|
||||||
# schema
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0009_fix_missing_token_identifier"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="OutpostServiceConnection",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"uuid",
|
|
||||||
models.UUIDField(
|
|
||||||
default=uuid.uuid4,
|
|
||||||
editable=False,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("name", models.TextField()),
|
|
||||||
(
|
|
||||||
"local",
|
|
||||||
models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="If enabled, use the local connection. Required Docker socket/Kubernetes Integration",
|
|
||||||
unique=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="DockerServiceConnection",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"outpostserviceconnection_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
to="authentik_outposts.outpostserviceconnection",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("url", models.TextField()),
|
|
||||||
("tls", models.BooleanField()),
|
|
||||||
],
|
|
||||||
bases=("authentik_outposts.outpostserviceconnection",),
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="KubernetesServiceConnection",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"outpostserviceconnection_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
to="authentik_outposts.outpostserviceconnection",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("kubeconfig", models.JSONField()),
|
|
||||||
],
|
|
||||||
bases=("authentik_outposts.outpostserviceconnection",),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="service_connection",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
||||||
to="authentik_outposts.outpostserviceconnection",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(migrate_to_service_connection),
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="deployment_type",
|
|
||||||
),
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="dockerserviceconnection",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Docker Service-Connection",
|
|
||||||
"verbose_name_plural": "Docker Service-Connections",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="kubernetesserviceconnection",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Kubernetes Service-Connection",
|
|
||||||
"verbose_name_plural": "Kubernetes Service-Connections",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="service_connection",
|
|
||||||
field=authentik.lib.models.InheritanceForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
||||||
to="authentik_outposts.outpostserviceconnection",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="outpostserviceconnection",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Outpost Service-Connection",
|
|
||||||
"verbose_name_plural": "Outpost Service-Connections",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="kubernetesserviceconnection",
|
|
||||||
name="kubeconfig",
|
|
||||||
field=models.JSONField(
|
|
||||||
default=None,
|
|
||||||
help_text="Paste your kubeconfig here. authentik will automatically use the currently selected context.",
|
|
||||||
),
|
|
||||||
preserve_default=False,
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,45 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-11-18 21:51
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_crypto", "0002_create_self_signed_kp"),
|
|
||||||
("authentik_outposts", "0010_service_connection"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name="dockerserviceconnection",
|
|
||||||
name="tls",
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="dockerserviceconnection",
|
|
||||||
name="tls_authentication",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="Certificate/Key used for authentication. Can be left empty for no authentication.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
||||||
related_name="+",
|
|
||||||
to="authentik_crypto.certificatekeypair",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="dockerserviceconnection",
|
|
||||||
name="tls_verification",
|
|
||||||
field=models.ForeignKey(
|
|
||||||
blank=True,
|
|
||||||
default=None,
|
|
||||||
help_text="CA which the endpoint's Certificate is verified against. Can be left empty for no validation.",
|
|
||||||
null=True,
|
|
||||||
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
||||||
related_name="+",
|
|
||||||
to="authentik_crypto.certificatekeypair",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,21 +0,0 @@
|
||||||
# Generated by Django 3.1.3 on 2020-11-18 21:54
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0011_docker_tls_auth"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpostserviceconnection",
|
|
||||||
name="local",
|
|
||||||
field=models.BooleanField(
|
|
||||||
default=False,
|
|
||||||
help_text="If enabled, use the local connection. Required Docker socket/Kubernetes Integration",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,28 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-03 20:09
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def remove_pb_prefix_users(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
alias = schema_editor.connection.alias
|
|
||||||
User = apps.get_model("authentik_core", "User")
|
|
||||||
Outpost = apps.get_model("authentik_outposts", "Outpost")
|
|
||||||
|
|
||||||
for outpost in Outpost.objects.using(alias).all():
|
|
||||||
matching = User.objects.using(alias).filter(username=f"pb-outpost-{outpost.uuid.hex}")
|
|
||||||
if matching.exists():
|
|
||||||
matching.delete()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_core", "0016_auto_20201202_2234"),
|
|
||||||
("authentik_outposts", "0012_service_connection_non_unique"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(remove_pb_prefix_users),
|
|
||||||
]
|
|
|
@ -1,38 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-13 14:07
|
|
||||||
|
|
||||||
from django.apps.registry import Apps
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
||||||
|
|
||||||
|
|
||||||
def update_config_prefix(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
|
||||||
alias = schema_editor.connection.alias
|
|
||||||
Outpost = apps.get_model("authentik_outposts", "Outpost")
|
|
||||||
|
|
||||||
for outpost in Outpost.objects.using(alias).all():
|
|
||||||
config = outpost._config
|
|
||||||
for key in list(config):
|
|
||||||
if "passbook" in key:
|
|
||||||
new_key = key.replace("passbook", "authentik")
|
|
||||||
config[new_key] = config[key]
|
|
||||||
del config[key]
|
|
||||||
outpost._config = config
|
|
||||||
outpost.save()
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0013_auto_20201203_2009"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RunPython(update_config_prefix),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="dockerserviceconnection",
|
|
||||||
name="url",
|
|
||||||
field=models.TextField(
|
|
||||||
help_text="Can be in the format of 'unix://<path>' when connecting to a local docker daemon, or 'https://<hostname>:2376' when connecting to a remote system."
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,21 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-24 12:06
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0014_auto_20201213_1407"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="kubernetesserviceconnection",
|
|
||||||
name="kubeconfig",
|
|
||||||
field=models.JSONField(
|
|
||||||
blank=True,
|
|
||||||
help_text="Paste your kubeconfig here. authentik will automatically use the currently selected context.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Generated by Django 3.2 on 2021-04-26 09:27
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0015_auto_20201224_1206"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="type",
|
|
||||||
field=models.TextField(choices=[("proxy", "Proxy"), ("ldap", "Ldap")], default="proxy"),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-06-23 19:25
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_outposts", "0016_alter_outpost_type"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="outpost",
|
|
||||||
name="managed",
|
|
||||||
field=models.TextField(
|
|
||||||
default=None,
|
|
||||||
help_text="Objects which are managed by authentik. These objects are created and updated automatically. This is flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.",
|
|
||||||
null=True,
|
|
||||||
unique=True,
|
|
||||||
verbose_name="Managed by authentik",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Generated by Django 4.1.2 on 2022-10-19 19:24
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("authentik_policies_dummy", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddIndex(
|
||||||
|
model_name="dummypolicy",
|
||||||
|
index=models.Index(fields=["policy_ptr_id"], name="authentik_p_policy__648f9b_idx"),
|
||||||
|
),
|
||||||
|
]
|
|
@ -40,7 +40,7 @@ class DummyPolicy(Policy):
|
||||||
sleep(wait)
|
sleep(wait)
|
||||||
return PolicyResult(self.result, "dummy")
|
return PolicyResult(self.result, "dummy")
|
||||||
|
|
||||||
class Meta:
|
class Meta(Policy.PolicyMeta):
|
||||||
|
|
||||||
verbose_name = _("Dummy Policy")
|
verbose_name = _("Dummy Policy")
|
||||||
verbose_name_plural = _("Dummy Policies")
|
verbose_name_plural = _("Dummy Policies")
|
||||||
|
|
|
@ -1,70 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-24 10:32
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
initial = True
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies", "0004_policy_execution_logging"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name="EventMatcherPolicy",
|
|
||||||
fields=[
|
|
||||||
(
|
|
||||||
"policy_ptr",
|
|
||||||
models.OneToOneField(
|
|
||||||
auto_created=True,
|
|
||||||
on_delete=django.db.models.deletion.CASCADE,
|
|
||||||
parent_link=True,
|
|
||||||
primary_key=True,
|
|
||||||
serialize=False,
|
|
||||||
to="authentik_policies.policy",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"action",
|
|
||||||
models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_created", "Invite Created"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
(
|
|
||||||
"property_mapping_exception",
|
|
||||||
"Property Mapping Exception",
|
|
||||||
),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
("client_ip", models.TextField(blank=True)),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
"verbose_name": "Group Membership Policy",
|
|
||||||
"verbose_name_plural": "Group Membership Policies",
|
|
||||||
},
|
|
||||||
bases=("authentik_policies.policy",),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,43 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2020-12-30 20:46
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0001_initial"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,114 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2021-01-10 19:07
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0002_auto_20201230_2046"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.stages.otp_static", "authentik OTP.Static"),
|
|
||||||
("authentik.stages.authenticator_totp", "authentik OTP.Time"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik OTP.Validate",
|
|
||||||
),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
help_text="Match created events with this action type. When left empty, all action types will be matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="client_ip",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
help_text="Matches Event's Client IP (strict matching, for network matching use an Expression Policy)",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,85 +0,0 @@
|
||||||
# Generated by Django 3.1.4 on 2021-01-12 21:58
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0003_auto_20210110_1907"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name="eventmatcherpolicy",
|
|
||||||
options={
|
|
||||||
"verbose_name": "Event Matcher Policy",
|
|
||||||
"verbose_name_plural": "Event Matcher Policies",
|
|
||||||
},
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.stages.otp_static", "authentik Stages.OTP.Static"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.OTP.Time",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.OTP.Validate",
|
|
||||||
),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,46 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-02 18:21
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0004_auto_20210112_2158"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("token_view", "Token View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
help_text="Match created events with this action type. When left empty, all action types will be matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,79 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-03 11:34
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0005_auto_20210202_1821"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.stages.otp_static", "authentik Stages.OTP.Static"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.OTP.Time",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.OTP.Validate",
|
|
||||||
),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,46 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-09 16:57
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0006_auto_20210203_1134"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
help_text="Match created events with this action type. When left empty, all action types will be matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,83 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-13 16:40
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0007_auto_20210209_1657"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.stages.otp_static", "authentik Stages.OTP.Static"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.OTP.Time",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.OTP.Validate",
|
|
||||||
),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,86 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-15 21:59
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0008_auto_20210213_1640"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,86 +0,0 @@
|
||||||
# Generated by Django 3.1.6 on 2021-02-22 18:21
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0009_auto_20210215_2159"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,87 +0,0 @@
|
||||||
# Generated by Django 3.1.7 on 2021-03-02 08:56
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0010_auto_20210222_1821"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
(
|
|
||||||
"authentik.policies.group_membership",
|
|
||||||
"authentik Policies.Group Membership",
|
|
||||||
),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.deny", "authentik Stages.Deny"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,83 +0,0 @@
|
||||||
# Generated by Django 3.1.7 on 2021-03-23 13:39
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0011_auto_20210302_0856"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.deny", "authentik Stages.Deny"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,84 +0,0 @@
|
||||||
# Generated by Django 3.2 on 2021-05-02 17:06
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0012_auto_20210323_1339"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.plex", "authentik Sources.Plex"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.deny", "authentik Stages.Deny"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,85 +0,0 @@
|
||||||
# Generated by Django 3.2.1 on 2021-05-05 17:17
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0013_alter_eventmatcherpolicy_app"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.ldap", "authentik Providers.LDAP"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.plex", "authentik Sources.Plex"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.deny", "authentik Stages.Deny"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,90 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-05-25 12:58
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0014_alter_eventmatcherpolicy_app"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="app",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("authentik.admin", "authentik Admin"),
|
|
||||||
("authentik.api", "authentik API"),
|
|
||||||
("authentik.events", "authentik Events"),
|
|
||||||
("authentik.crypto", "authentik Crypto"),
|
|
||||||
("authentik.flows", "authentik Flows"),
|
|
||||||
("authentik.outposts", "authentik Outpost"),
|
|
||||||
("authentik.lib", "authentik lib"),
|
|
||||||
("authentik.policies", "authentik Policies"),
|
|
||||||
("authentik.policies.dummy", "authentik Policies.Dummy"),
|
|
||||||
(
|
|
||||||
"authentik.policies.event_matcher",
|
|
||||||
"authentik Policies.Event Matcher",
|
|
||||||
),
|
|
||||||
("authentik.policies.expiry", "authentik Policies.Expiry"),
|
|
||||||
("authentik.policies.expression", "authentik Policies.Expression"),
|
|
||||||
("authentik.policies.hibp", "authentik Policies.HaveIBeenPwned"),
|
|
||||||
("authentik.policies.password", "authentik Policies.Password"),
|
|
||||||
("authentik.policies.reputation", "authentik Policies.Reputation"),
|
|
||||||
("authentik.providers.proxy", "authentik Providers.Proxy"),
|
|
||||||
("authentik.providers.ldap", "authentik Providers.LDAP"),
|
|
||||||
("authentik.providers.oauth2", "authentik Providers.OAuth2"),
|
|
||||||
("authentik.providers.saml", "authentik Providers.SAML"),
|
|
||||||
("authentik.recovery", "authentik Recovery"),
|
|
||||||
("authentik.sources.ldap", "authentik Sources.LDAP"),
|
|
||||||
("authentik.sources.oauth", "authentik Sources.OAuth"),
|
|
||||||
("authentik.sources.plex", "authentik Sources.Plex"),
|
|
||||||
("authentik.sources.saml", "authentik Sources.SAML"),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_duo",
|
|
||||||
"authentik Stages.Authenticator.Duo",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_static",
|
|
||||||
"authentik Stages.Authenticator.Static",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_totp",
|
|
||||||
"authentik Stages.Authenticator.TOTP",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_validate",
|
|
||||||
"authentik Stages.Authenticator.Validate",
|
|
||||||
),
|
|
||||||
(
|
|
||||||
"authentik.stages.authenticator_webauthn",
|
|
||||||
"authentik Stages.Authenticator.WebAuthn",
|
|
||||||
),
|
|
||||||
("authentik.stages.captcha", "authentik Stages.Captcha"),
|
|
||||||
("authentik.stages.consent", "authentik Stages.Consent"),
|
|
||||||
("authentik.stages.deny", "authentik Stages.Deny"),
|
|
||||||
("authentik.stages.dummy", "authentik Stages.Dummy"),
|
|
||||||
("authentik.stages.email", "authentik Stages.Email"),
|
|
||||||
(
|
|
||||||
"authentik.stages.identification",
|
|
||||||
"authentik Stages.Identification",
|
|
||||||
),
|
|
||||||
("authentik.stages.invitation", "authentik Stages.User Invitation"),
|
|
||||||
("authentik.stages.password", "authentik Stages.Password"),
|
|
||||||
("authentik.stages.prompt", "authentik Stages.Prompt"),
|
|
||||||
("authentik.stages.user_delete", "authentik Stages.User Delete"),
|
|
||||||
("authentik.stages.user_login", "authentik Stages.User Login"),
|
|
||||||
("authentik.stages.user_logout", "authentik Stages.User Logout"),
|
|
||||||
("authentik.stages.user_write", "authentik Stages.User Write"),
|
|
||||||
("authentik.tenants", "authentik Tenants"),
|
|
||||||
("authentik.core", "authentik Core"),
|
|
||||||
("authentik.blueprints", "authentik Blueprints"),
|
|
||||||
],
|
|
||||||
default="",
|
|
||||||
help_text="Match events created by selected application. When left empty, all applications are matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,47 +0,0 @@
|
||||||
# Generated by Django 3.2.3 on 2021-06-09 07:58
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0015_alter_eventmatcherpolicy_app"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("email_sent", "Email Sent"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
help_text="Match created events with this action type. When left empty, all action types will be matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,48 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-06-14 15:32
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("authentik_policies_event_matcher", "0016_alter_eventmatcherpolicy_action"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="eventmatcherpolicy",
|
|
||||||
name="action",
|
|
||||||
field=models.TextField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("login", "Login"),
|
|
||||||
("login_failed", "Login Failed"),
|
|
||||||
("logout", "Logout"),
|
|
||||||
("user_write", "User Write"),
|
|
||||||
("suspicious_request", "Suspicious Request"),
|
|
||||||
("password_set", "Password Set"),
|
|
||||||
("secret_view", "Secret View"),
|
|
||||||
("invitation_used", "Invite Used"),
|
|
||||||
("authorize_application", "Authorize Application"),
|
|
||||||
("source_linked", "Source Linked"),
|
|
||||||
("impersonation_started", "Impersonation Started"),
|
|
||||||
("impersonation_ended", "Impersonation Ended"),
|
|
||||||
("policy_execution", "Policy Execution"),
|
|
||||||
("policy_exception", "Policy Exception"),
|
|
||||||
("property_mapping_exception", "Property Mapping Exception"),
|
|
||||||
("system_task_execution", "System Task Execution"),
|
|
||||||
("system_task_exception", "System Task Exception"),
|
|
||||||
("system_exception", "System Exception"),
|
|
||||||
("configuration_error", "Configuration Error"),
|
|
||||||
("model_created", "Model Created"),
|
|
||||||
("model_updated", "Model Updated"),
|
|
||||||
("model_deleted", "Model Deleted"),
|
|
||||||
("email_sent", "Email Sent"),
|
|
||||||
("update_available", "Update Available"),
|
|
||||||
("custom_", "Custom Prefix"),
|
|
||||||
],
|
|
||||||
help_text="Match created events with this action type. When left empty, all action types will be matched.",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue