mirror of
https://github.com/tanrax/SSE-Fake.git
synced 2025-07-01 09:15:42 +02:00
The first commit
This commit is contained in:
0
sse_fake/__init__.py
Normal file
0
sse_fake/__init__.py
Normal file
62
sse_fake/asgi.py
Normal file
62
sse_fake/asgi.py
Normal file
@ -0,0 +1,62 @@
|
||||
# sse_fake/asgi.py
|
||||
import os
|
||||
from django.core.asgi import get_asgi_application
|
||||
from channels.auth import AuthMiddlewareStack
|
||||
from channels.routing import ProtocolTypeRouter, URLRouter
|
||||
from django.urls import re_path
|
||||
import django_eventstream
|
||||
from django_eventstream import send_event
|
||||
from faker import Faker
|
||||
from random import randint
|
||||
from time import sleep
|
||||
import threading
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sse_fake.settings")
|
||||
|
||||
application = ProtocolTypeRouter(
|
||||
{
|
||||
# Django's ASGI application to handle traditional HTTP requests
|
||||
"http": URLRouter(
|
||||
[
|
||||
re_path(
|
||||
r"^events/",
|
||||
AuthMiddlewareStack(
|
||||
URLRouter(django_eventstream.routing.urlpatterns)
|
||||
),
|
||||
{"channels": ["events"]},
|
||||
),
|
||||
re_path(r"", get_asgi_application()),
|
||||
]
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
def send_random_event():
|
||||
fake = Faker()
|
||||
while True:
|
||||
random_event = randint(0, 2)
|
||||
random_data = ""
|
||||
if random_event == 0:
|
||||
# User connected
|
||||
random_data = {"action": "User connected", "name": fake.first_name()}
|
||||
elif random_event == 1:
|
||||
# User disconnected
|
||||
random_data = {"action": "User disconnected", "name": fake.first_name()}
|
||||
elif random_event == 2:
|
||||
# New message
|
||||
random_data = {
|
||||
"action": "New message",
|
||||
"name": fake.first_name(),
|
||||
"text": fake.text(),
|
||||
}
|
||||
send_event(
|
||||
"events",
|
||||
"message"
|
||||
,
|
||||
random_data,
|
||||
)
|
||||
sleep(randint(1, 5))
|
||||
|
||||
# Run in other thread send_random_event()
|
||||
threading.Thread(target=send_random_event).start()
|
154
sse_fake/settings.py
Normal file
154
sse_fake/settings.py
Normal file
@ -0,0 +1,154 @@
|
||||
"""
|
||||
Django settings for sse_fake project.
|
||||
|
||||
Generated by 'django-admin startproject' using Django 4.0.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/4.0/topics/settings/
|
||||
|
||||
For the full list of settings and their values, see
|
||||
https://docs.djangoproject.com/en/4.0/ref/settings/
|
||||
"""
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||
|
||||
|
||||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = os.environ.get("SECRET_KEY")
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = os.environ.get("DEBUG", "True") == "True"
|
||||
|
||||
ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS").split(",")
|
||||
|
||||
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
"channels",
|
||||
"django_eventstream",
|
||||
"django.contrib.admin",
|
||||
"django.contrib.auth",
|
||||
"django.contrib.contenttypes",
|
||||
"django.contrib.sessions",
|
||||
"django.contrib.messages",
|
||||
"django.contrib.staticfiles",
|
||||
"app.website",
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
"django_grip.GripMiddleware",
|
||||
"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 = "sse_fake.urls"
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
||||
"DIRS": [],
|
||||
"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",
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#databases
|
||||
|
||||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": os.environ.get("DB_ENGINE"),
|
||||
"NAME": os.environ.get("DB_NAME"),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# Password validation
|
||||
# https://docs.djangoproject.com/en/4.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/4.0/topics/i18n/
|
||||
|
||||
LANGUAGE_CODE = "en-us"
|
||||
|
||||
TIME_ZONE = "UTC"
|
||||
|
||||
USE_I18N = True
|
||||
|
||||
USE_TZ = True
|
||||
|
||||
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/4.0/howto/static-files/
|
||||
|
||||
STATIC_ROOT = os.environ.get("STATIC_ROOT")
|
||||
STATIC_URL = os.environ.get("STATIC_URL")
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
||||
MEDIA_URL = os.environ.get("MEDIA_URL")
|
||||
|
||||
DOMAIN = os.environ.get("DOMAIN")
|
||||
DOMAIN_URL = os.environ.get("DOMAIN_URL")
|
||||
CSRF_TRUSTED_ORIGINS = [DOMAIN_URL]
|
||||
|
||||
"""EMAIL CONFIG"""
|
||||
DEFAULT_FROM_EMAIL = os.environ.get("EMAIL_ADDRESS")
|
||||
EMAIL_USE_TLS = os.environ.get("EMAIL_USE_TLS") == "True"
|
||||
EMAIL_USE_SSL = os.environ.get("EMAIL_USE_SSL") == "True"
|
||||
EMAIL_HOST = os.environ.get("EMAIL_HOST")
|
||||
EMAIL_PORT = os.environ.get("EMAIL_PORT")
|
||||
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER")
|
||||
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD")
|
||||
|
||||
# Default primary key field type
|
||||
# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
|
||||
|
||||
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
|
||||
|
||||
CHANNEL_LAYERS = {
|
||||
"default": {
|
||||
"BACKEND": "channels_redis.core.RedisChannelLayer",
|
||||
"CONFIG": {
|
||||
"hosts": [(os.environ.get("REDIS_HOST"), os.environ.get("REDIS_PORT"))],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
ASGI_APPLICATION = "sse_fake.asgi.application"
|
||||
|
||||
EVENTSTREAM_ALLOW_ORIGIN = "*"
|
||||
|
23
sse_fake/urls.py
Normal file
23
sse_fake/urls.py
Normal file
@ -0,0 +1,23 @@
|
||||
"""sse_fake URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/4.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.contrib import admin
|
||||
from django.urls import path
|
||||
from app.website import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
path("admin/", admin.site.urls),
|
||||
]
|
Reference in New Issue
Block a user