Copy files from director

This commit is contained in:
Akash Bhave 2019-09-21 11:30:38 -04:00
parent 428897bcf7
commit 41fe4786b5
No known key found for this signature in database
GPG Key ID: 7293775E03FE1380
23 changed files with 392 additions and 0 deletions

0
hoco/__init__.py Normal file
View File

View File

View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ContentConfig(AppConfig):
name = 'content'

View File

View File

@ -0,0 +1 @@
from django.db import models

View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@ -0,0 +1,10 @@
from django.shortcuts import render, redirect
from django.urls import reverse
# Create your views here.
def index(request):
if "admin" in request.session and request.session["admin"] == True:
return render(request, "index.html")
else:
request.session.flush()
return render(request, "fail.html")

View File

3
hoco/apps/oauth/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
hoco/apps/oauth/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class OauthConfig(AppConfig):
name = 'oauth'

View File

View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
hoco/apps/oauth/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

33
hoco/apps/oauth/views.py Normal file
View File

@ -0,0 +1,33 @@
import json
from oauthlib.oauth2.rfc6749.errors import InvalidGrantError
from requests_oauthlib import OAuth2Session
from django.conf import settings
from django.shortcuts import redirect, render
from django.urls import reverse
# Create your views here.
def login(request):
oauth = OAuth2Session(settings.CLIENT_ID, redirect_uri=settings.REDIRECT_URI, scope=["read"])
if "error" in request.GET:
return redirect(reverse("login"))
if "code" not in request.GET:
authorization_url, state = oauth.authorization_url("https://ion.tjhsst.edu/oauth/authorize/")
return redirect(authorization_url)
try:
oauth.fetch_token("https://ion.tjhsst.edu/oauth/token/", code=request.GET["code"], client_secret=settings.CLIENT_SECRET)
profile = oauth.get("https://ion.tjhsst.edu/api/profile")
user_data = json.loads(profile.content.decode())
authorized_user = False
authorized_users = ["2021abhave", "2020rranjan"]
for user in authorized_users:
if user == user_data["ion_username"]:
authorized_user = True
request.session["user"] = user_data["ion_username"]
request.session["admin"] = user_data["is_teacher"] or user_data["is_eighth_admin"] or authorized_user
return redirect(reverse("index"))
except InvalidGrantError:
return redirect(reverse("login"))

126
hoco/settings.py Normal file
View File

@ -0,0 +1,126 @@
"""
Django settings for hoco project.
Generated by 'django-admin startproject' using Django 2.2.5.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/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.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '-lq2h6ax-h-r94p213v-f@1pj*!8^yf!!w%l^p@o&gie%#8xr0'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
CLIENT_ID = "0QfO8ZlP7naRYdNLOxpMWayzm2Mlc25FUyeCihGN"
CLIENT_SECRET = "gPfDm2CvNbTnUyj7IG2rCeEBhMaiqicGjLr4xhSO8rDGqTxLVIENX2mWdWNPhg4sSsp48UjILkZCDG83SC3IMnPOSDYj8KnY4bNGJiMjmmPK6d9BZi42ittI4oa62z3j"
REDIRECT_URI = "http://hoco.sites.tjhsst.edu/login"
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
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',
]
ROOT_URLCONF = 'hoco.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, "hoco/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 = 'hoco.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.2/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.2/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.2/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.2/howto/static-files/
STATIC_URL = '/static/'

23
hoco/templates/base.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
{% load static %}
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>TJHSST</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
<link rel="stylesheet" href="{% static 'style.css' %}">
{% block head %}{% endblock %}
</head>
<body>
{% block root %}
<div class="" id="root" style="background: #FFFFFF;margin:10px;margin-left:20px;">
{% block body %}{% endblock %}
</div>
{% endblock %}
</body>
</html>

18
hoco/templates/fail.html Normal file
View File

@ -0,0 +1,18 @@
{% extends 'base.html' %}
{% block body %}
<div class="header">
<h1>Homecoming 2019</h1>
</div>
<div class="main">
<div class="login-box">
<p>Only staff can access this site. Please login with Ion to proceed.</p>
<center>
<b>{{ message }}</b><br />
<a href="{% url 'login' %}" class="button">
Log In with Ion
</a>
</center>
</div>
</div>
{% endblock %}

81
hoco/templates/index.html Normal file
View File

@ -0,0 +1,81 @@
{% extends 'base.html' %}
{% block body %}
<style>
.category {
border: 1px solid #44cc44;
padding: 0px 3px;
color: #44cc44;
font-size: 100%;
text-decoration: none;
}
.category:hover {
color: white;
background-color: #44cc44;
text-decoration: none;
}
.box {
border: 5px solid #2378e8;
border-radius: 20px;
background-color: #c7dffc;
padding: 10px;
margin:10px;
display: inline-block;
}
.box:target {
background-color: #f0650e;
border-color: #f5b790;
}
</style>
<h1>Homecoming 2019 Voting</h1>
<h4>Thank you for voting! Without your help homecoming wouldn't be possible. Choose a category:</h4>
<h3>
<a href="#banner" class="category">Banner</a>
<a href="#canned" class="category">Canned Food Sculpture</a>
<a href="#song" class="category">Class Song</a>
<a href="#float" class="category">Float</a>
<a href="#mex" class="category">MEX</a>
<a href="#shirt" class="category">T-Shirt Design</a>
<a href="#video" class="category">Spirit Video</a>
</h3>
<div id="banner" class="box">
<h2>Banner <a href="">(back)</a></h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfpkYXfxjfUpz454rrQpRJn3n7Y2U7VB_HhUPStJuvh8oNMrA/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="canned" class="box">
<h2>Canned Food Sculpture <a href="">(back)</a></h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfybHzaZFgOfUL5JUmTCi_pY0r3Zcw1JMIg6PJ3lUXvuLVbdw/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="song" class="box">
<h2>Class Song <a href="">(back)</a></h2>
<ul>
<li><a href="https://soundcloud.com/robert-crotts-173234691/2020-class-song" target="_blank">Class of 2020</a></li>
<li><a href="https://soundcloud.com/user-659478903/juicy-juniors-prod-by-nape" target="_blank">Class of 2021</a></li>
<li><a href="https://soundcloud.com/lildahroo/22thefuture" target="_blank">Class of 2022</a></li>
<li><a href="https://soundcloud.com/notjohanna/funky-freshmen-prod-atomic-blonde-feat-atomic-blonde-frat-boy-chad-and-dj-dawg" target="_blank">Class of 2023</a></li>
</ul>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeMVJodGYwrogK0kizAk42gmVCpCnawygHUOIX24qCY0LRTOg/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="float" class="box">
<h2>Float <a href="">(back)</a></h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfO-nTl16o6XDfdS8bN_xTIUcTomcN6tom5_0P9seZ8zVypGA/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="mex" class="box">
<h2>MEX <a href="">(back)</a></h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSet8Pthsy1f9XSnRf_VOE1kp8fYFaATVseR54anq6i6AR0nsw/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="shirt" class="box">
<h2>T-Shirt Design <a href="">(back)</a></h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSenfNOPjojuTiSxmdHJF5DxtiT3o6HKkLljCSgDZbHDg6egkw/viewform?embedded=true" width="640" height="801" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="video" class="box">
<h2>Spirit Video <a href="">(back)</a></h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=0W239EdfliQ" target="_blank">Class of 2020</a></li>
<li><a href="https://www.youtube.com/watch?v=xlJXoDRxkmI" target="_blank">Class of 2021</a></li>
<li><a href="https://www.youtube.com/watch?v=DrVMapM1KRw" target="_blank">Class of 2022</a></li>
<li><a href="https://www.youtube.com/watch?v=9dcUTN3Yka4" target="_blank">Class of 2023</a></li>
</ul>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdpZ147bp--T0UPhVavOgV884wO5P17_q4yIu7nCEr_OMWsOw/viewform?embedded=true" width="640" height="804" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
{% endblock %}

26
hoco/urls.py Normal file
View File

@ -0,0 +1,26 @@
"""hoco URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/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.contrib import admin
from django.urls import path
from .apps.oauth import views as oauth_views
from .apps.content import views as content_views
urlpatterns = [
path('admin/', admin.site.urls),
path('login/', oauth_views.login, name="login"),
path('', content_views.index, name="index"),
]

16
hoco/wsgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
WSGI config for hoco 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.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hoco.settings')
application = get_wsgi_application()

21
manage.py Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hoco.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)
if __name__ == '__main__':
main()

12
requirements.txt Normal file
View File

@ -0,0 +1,12 @@
certifi==2019.9.11
chardet==3.0.4
Django==2.2.5
idna==2.8
oauthlib==3.1.0
pkg-resources==0.0.0
pytz==2019.2
requests==2.22.0
requests-oauthlib==1.2.0
sqlparse==0.3.0
urllib3==1.25.3