mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
* Upgrade to Django 2.0 * more models * i18n foo * Update setup.py * Fix Sentry exception PRETIXEU-JC * Enforce slug uniqueness * Import sorting * Upgrade to Django 2.1 * Travis config * Try to fix PostgreSQL failure * Smaller test matrix * staticfiles→static * Include request in all authenticate() calls
129 lines
6.4 KiB
Python
129 lines
6.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.13 on 2018-06-04 11:19
|
|
from __future__ import unicode_literals
|
|
|
|
import django.db.models.deletion
|
|
import oauth2_provider.generators
|
|
import oauth2_provider.validators
|
|
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='OAuthAccessToken',
|
|
fields=[
|
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
|
('token', models.CharField(max_length=255, unique=True)),
|
|
('expires', models.DateTimeField()),
|
|
('scope', models.TextField(blank=True)),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('updated', models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='OAuthApplication',
|
|
fields=[
|
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
|
('client_type',
|
|
models.CharField(choices=[('confidential', 'Confidential'), ('public', 'Public')], max_length=32)),
|
|
('authorization_grant_type', models.CharField(
|
|
choices=[('authorization-code', 'Authorization code'), ('implicit', 'Implicit'),
|
|
('password', 'Resource owner password-based'),
|
|
('client-credentials', 'Client credentials')], max_length=32)),
|
|
('skip_authorization', models.BooleanField(default=False)),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('updated', models.DateTimeField(auto_now=True)),
|
|
('name', models.CharField(max_length=255, verbose_name='Application name')),
|
|
('redirect_uris', models.TextField(help_text='Allowed URIs list, space separated',
|
|
validators=[oauth2_provider.validators.URIValidator],
|
|
verbose_name='Redirection URIs')),
|
|
('client_id',
|
|
models.CharField(db_index=True, default=oauth2_provider.generators.generate_client_id, max_length=100,
|
|
unique=True, verbose_name='Client ID')),
|
|
('client_secret',
|
|
models.CharField(db_index=True, default=oauth2_provider.generators.generate_client_secret,
|
|
max_length=255, verbose_name='Client secret')),
|
|
('active', models.BooleanField(default=True)),
|
|
('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE,
|
|
related_name='pretixapi_oauthapplication', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='OAuthGrant',
|
|
fields=[
|
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
|
('code', models.CharField(max_length=255, unique=True)),
|
|
('expires', models.DateTimeField()),
|
|
('redirect_uri', models.CharField(max_length=255)),
|
|
('scope', models.TextField(blank=True)),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('updated', models.DateTimeField(auto_now=True)),
|
|
('application', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE,
|
|
to=settings.OAUTH2_PROVIDER_APPLICATION_MODEL)),
|
|
('user',
|
|
models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='pretixapi_oauthgrant',
|
|
to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='OAuthRefreshToken',
|
|
fields=[
|
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
|
('token', models.CharField(max_length=255)),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
('updated', models.DateTimeField(auto_now=True)),
|
|
('revoked', models.DateTimeField(null=True)),
|
|
('access_token',
|
|
models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name='refresh_token', to=settings.OAUTH2_PROVIDER_ACCESS_TOKEN_MODEL)),
|
|
('application', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE,
|
|
to=settings.OAUTH2_PROVIDER_APPLICATION_MODEL)),
|
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE,
|
|
related_name='pretixapi_oauthrefreshtoken', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
migrations.AddField(
|
|
model_name='oauthaccesstoken',
|
|
name='application',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE,
|
|
to=settings.OAUTH2_PROVIDER_APPLICATION_MODEL),
|
|
),
|
|
migrations.AddField(
|
|
model_name='oauthaccesstoken',
|
|
name='source_refresh_token',
|
|
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name='refreshed_access_token',
|
|
to=settings.OAUTH2_PROVIDER_REFRESH_TOKEN_MODEL),
|
|
),
|
|
migrations.AddField(
|
|
model_name='oauthaccesstoken',
|
|
name='user',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE,
|
|
related_name='pretixapi_oauthaccesstoken', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name='oauthrefreshtoken',
|
|
unique_together=set([('token', 'revoked')]),
|
|
),
|
|
]
|