commit 9e4a35ce98fa0031fe502e2e44eb34249a855cad Author: Ajurna Date: Mon Apr 16 09:03:51 2018 +0100 Initial commit diff --git a/eve_auth/__init__.py b/eve_auth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/eve_auth/__pycache__/__init__.cpython-36.pyc b/eve_auth/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..beaa6b1 Binary files /dev/null and b/eve_auth/__pycache__/__init__.cpython-36.pyc differ diff --git a/eve_auth/__pycache__/admin.cpython-36.pyc b/eve_auth/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000..1afdbd2 Binary files /dev/null and b/eve_auth/__pycache__/admin.cpython-36.pyc differ diff --git a/eve_auth/__pycache__/models.cpython-36.pyc b/eve_auth/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000..d38c9ee Binary files /dev/null and b/eve_auth/__pycache__/models.cpython-36.pyc differ diff --git a/eve_auth/admin.py b/eve_auth/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/eve_auth/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/eve_auth/apps.py b/eve_auth/apps.py new file mode 100644 index 0000000..a129ec3 --- /dev/null +++ b/eve_auth/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class EveAuthConfig(AppConfig): + name = 'eve_auth' diff --git a/eve_auth/migrations/__init__.py b/eve_auth/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/eve_auth/migrations/__pycache__/__init__.cpython-36.pyc b/eve_auth/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..c6afe87 Binary files /dev/null and b/eve_auth/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/eve_auth/models.py b/eve_auth/models.py new file mode 100644 index 0000000..8f85a5c --- /dev/null +++ b/eve_auth/models.py @@ -0,0 +1,19 @@ +from django.contrib.auth.models import User +from django.db import models +from django.db.models.signals import post_save +from django.dispatch import receiver +# Create your models here. + + +# class Alliance(models.Model): +# id = models.IntegerField(primary_key=True) +# name = models.CharField(max_length=255, blank=True, null=True) +# creator_id = models.IntegerField(blank=True, null=True) +# creator_corporation_id = models.IntegerField(blank=True, null=True) +# ticker = models.CharField(max_length=20, blank=True, null=True) +# date_founded = models.DateTimeField(blank=True, null=True) +# executor_corporation_id = models.IntegerField(blank=True, null=True) +# updated = models.DateTimeField(auto_now=True) +# +# class Corporation(models.Model): +# id = models.IntegerField(primary_key=True) \ No newline at end of file diff --git a/eve_auth/tests.py b/eve_auth/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/eve_auth/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/eve_auth/urls.py b/eve_auth/urls.py new file mode 100644 index 0000000..e69de29 diff --git a/eve_auth/views.py b/eve_auth/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/eve_auth/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/eve_verify/__init__.py b/eve_verify/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/eve_verify/__pycache__/__init__.cpython-35.pyc b/eve_verify/__pycache__/__init__.cpython-35.pyc new file mode 100644 index 0000000..7573301 Binary files /dev/null and b/eve_verify/__pycache__/__init__.cpython-35.pyc differ diff --git a/eve_verify/__pycache__/__init__.cpython-36.pyc b/eve_verify/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..a089783 Binary files /dev/null and b/eve_verify/__pycache__/__init__.cpython-36.pyc differ diff --git a/eve_verify/__pycache__/settings.cpython-35.pyc b/eve_verify/__pycache__/settings.cpython-35.pyc new file mode 100644 index 0000000..f80aefc Binary files /dev/null and b/eve_verify/__pycache__/settings.cpython-35.pyc differ diff --git a/eve_verify/__pycache__/settings.cpython-36.pyc b/eve_verify/__pycache__/settings.cpython-36.pyc new file mode 100644 index 0000000..45c87e9 Binary files /dev/null and b/eve_verify/__pycache__/settings.cpython-36.pyc differ diff --git a/eve_verify/__pycache__/urls.cpython-36.pyc b/eve_verify/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000..4c2c928 Binary files /dev/null and b/eve_verify/__pycache__/urls.cpython-36.pyc differ diff --git a/eve_verify/__pycache__/wsgi.cpython-36.pyc b/eve_verify/__pycache__/wsgi.cpython-36.pyc new file mode 100644 index 0000000..93bdaa0 Binary files /dev/null and b/eve_verify/__pycache__/wsgi.cpython-36.pyc differ diff --git a/eve_verify/settings.py b/eve_verify/settings.py new file mode 100644 index 0000000..194bb1b --- /dev/null +++ b/eve_verify/settings.py @@ -0,0 +1,140 @@ +""" +Django settings for eve_verify project. + +Generated by 'django-admin startproject' using Django 2.0.4. + +For more information on this file, see +https://docs.djangoproject.com/en/2.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/2.0/ref/settings/ +""" + +import os + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '$2*ypabm_f2p)z6=1a*n!w-i%m$au&uiz&%ebu10btwaarwd#n' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.sites', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'eve_auth', + 'allauth', + 'allauth.account', + 'allauth.socialaccount', + 'allauth.socialaccount.providers.eveonline', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +AUTHENTICATION_BACKENDS = ( + # Needed to login by username in Django admin, regardless of `allauth` + 'django.contrib.auth.backends.ModelBackend', + # `allauth` specific authentication methods, such as login by e-mail + 'allauth.account.auth_backends.AuthenticationBackend', +) + +ROOT_URLCONF = 'eve_verify.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates')] + , + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'eve_verify.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/2.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/2.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/2.0/howto/static-files/ + +STATIC_URL = '/static/' + + +EVE_CLIENT_ID = '2f398f82dbdb43ff86c60effcc423f93' +EVE_SECRET_KEY = 'xnaKPpbqoDH9LO8aE7FVq5Xb4aqI6guXeTBkdMB4' + +SITE_ID = 1 \ No newline at end of file diff --git a/eve_verify/urls.py b/eve_verify/urls.py new file mode 100644 index 0000000..7955d42 --- /dev/null +++ b/eve_verify/urls.py @@ -0,0 +1,23 @@ +"""eve_verify URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/2.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.conf.urls import url +from django.contrib import admin +from django.urls import path, include +import allauth +urlpatterns = [ + path('admin/', admin.site.urls), + url(r'^accounts/', include('allauth.urls')), +] diff --git a/eve_verify/wsgi.py b/eve_verify/wsgi.py new file mode 100644 index 0000000..c668931 --- /dev/null +++ b/eve_verify/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for eve_verify project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "eve_verify.settings") + +application = get_wsgi_application() diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..4024a2c --- /dev/null +++ b/manage.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "eve_verify.settings") + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e11314d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +Django +requests +django-allauth \ No newline at end of file