2022-10-13 14:26:43 +00:00
|
|
|
"""app 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.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
from django.contrib import admin
|
2022-10-15 20:51:47 +00:00
|
|
|
from django.contrib.auth.views import LoginView
|
2022-10-13 14:26:43 +00:00
|
|
|
from django.urls import include, path
|
|
|
|
from django.views.generic import TemplateView
|
2022-10-15 20:51:47 +00:00
|
|
|
from django_otp.forms import OTPAuthenticationForm
|
2022-10-13 14:26:43 +00:00
|
|
|
|
2022-10-27 17:08:40 +00:00
|
|
|
from core.views import accounts, base, callbacks, hooks, positions, strategies, trades
|
2022-10-15 20:51:47 +00:00
|
|
|
from core.views.stripe_callbacks import Callback
|
2022-10-13 14:26:43 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("__debug__/", include("debug_toolbar.urls")),
|
|
|
|
path("", base.Home.as_view(), name="home"),
|
|
|
|
path("callback", Callback.as_view(), name="callback"),
|
|
|
|
path("billing/", base.Billing.as_view(), name="billing"),
|
|
|
|
path("order/<str:plan_name>/", base.Order.as_view(), name="order"),
|
|
|
|
path(
|
|
|
|
"cancel_subscription/<str:plan_name>/",
|
|
|
|
base.Cancel.as_view(),
|
|
|
|
name="cancel_subscription",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"success/", TemplateView.as_view(template_name="success.html"), name="success"
|
|
|
|
),
|
|
|
|
path("cancel/", TemplateView.as_view(template_name="cancel.html"), name="cancel"),
|
|
|
|
path("portal", base.Portal.as_view(), name="portal"),
|
2022-10-15 20:51:47 +00:00
|
|
|
path("sapp/", admin.site.urls),
|
|
|
|
path(
|
|
|
|
"accounts/login/", LoginView.as_view(authentication_form=OTPAuthenticationForm)
|
|
|
|
),
|
2022-10-13 14:26:43 +00:00
|
|
|
path("accounts/", include("django.contrib.auth.urls")),
|
|
|
|
path("accounts/signup/", base.Signup.as_view(), name="signup"),
|
2022-10-29 11:43:13 +00:00
|
|
|
path("hooks/<str:type>/", hooks.HookList.as_view(), name="hooks"),
|
|
|
|
path("hooks/<str:type>/create/", hooks.HookCreate.as_view(), name="hook_create"),
|
2022-10-15 17:45:25 +00:00
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"hooks/<str:type>/update/<str:pk>/",
|
|
|
|
hooks.HookUpdate.as_view(),
|
|
|
|
name="hook_update",
|
2022-10-16 13:14:53 +00:00
|
|
|
),
|
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"hooks/<str:type>/delete/<str:pk>/",
|
|
|
|
hooks.HookDelete.as_view(),
|
|
|
|
name="hook_delete",
|
2022-10-15 20:51:47 +00:00
|
|
|
),
|
|
|
|
path(
|
|
|
|
f"{settings.HOOK_PATH}/<str:hook_name>/", hooks.HookAPI.as_view(), name="hook"
|
|
|
|
),
|
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"callbacks/<str:type>/<str:pk>/",
|
2022-10-15 20:51:47 +00:00
|
|
|
callbacks.Callbacks.as_view(),
|
|
|
|
name="callbacks",
|
2022-10-15 17:45:25 +00:00
|
|
|
),
|
2022-10-15 20:51:47 +00:00
|
|
|
path("callbacks/<str:type>/", callbacks.Callbacks.as_view(), name="callbacks"),
|
2022-10-29 11:43:13 +00:00
|
|
|
path("accounts/<str:type>/", accounts.AccountList.as_view(), name="accounts"),
|
2022-10-17 17:56:16 +00:00
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"accounts/<str:type>/create/",
|
|
|
|
accounts.AccountCreate.as_view(),
|
|
|
|
name="account_create",
|
2022-10-17 17:56:16 +00:00
|
|
|
),
|
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"accounts/<str:type>/info/<str:pk>/",
|
2022-10-21 22:57:32 +00:00
|
|
|
accounts.AccountInfo.as_view(),
|
|
|
|
name="account_info",
|
|
|
|
),
|
2022-10-17 17:56:16 +00:00
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"accounts/<str:type>/update/<str:pk>/",
|
|
|
|
accounts.AccountUpdate.as_view(),
|
|
|
|
name="account_update",
|
2022-10-17 17:56:16 +00:00
|
|
|
),
|
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"accounts/<str:type>/delete/<str:pk>/",
|
|
|
|
accounts.AccountDelete.as_view(),
|
|
|
|
name="account_delete",
|
2022-10-17 17:56:16 +00:00
|
|
|
),
|
2022-10-29 11:43:13 +00:00
|
|
|
path("trades/<str:type>/", trades.TradeList.as_view(), name="trades"),
|
2022-10-17 17:56:16 +00:00
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"trades/<str:type>/create/", trades.TradeCreate.as_view(), name="trade_create"
|
2022-10-17 17:56:16 +00:00
|
|
|
),
|
|
|
|
path(
|
2022-10-29 11:43:13 +00:00
|
|
|
"trades/<str:type>/update/<str:pk>/",
|
|
|
|
trades.TradeUpdate.as_view(),
|
|
|
|
name="trade_update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"trades/<str:type>/delete/<str:pk>/",
|
|
|
|
trades.TradeDelete.as_view(),
|
|
|
|
name="trade_delete",
|
2022-10-17 17:56:16 +00:00
|
|
|
),
|
2022-10-30 10:57:41 +00:00
|
|
|
path(
|
|
|
|
"trades/action/delete_all/",
|
|
|
|
trades.TradeDeleteAll.as_view(),
|
|
|
|
name="trade_delete_all",
|
|
|
|
),
|
2022-10-17 06:20:30 +00:00
|
|
|
path("positions/<str:type>/", positions.Positions.as_view(), name="positions"),
|
|
|
|
path(
|
|
|
|
"positions/<str:type>/<str:account_id>/",
|
|
|
|
positions.Positions.as_view(),
|
|
|
|
name="positions",
|
|
|
|
),
|
2022-10-27 17:08:40 +00:00
|
|
|
path(
|
2022-11-02 18:25:34 +00:00
|
|
|
"positions/<str:type>/<str:account_id>/<str:symbol>/",
|
2022-10-27 17:08:40 +00:00
|
|
|
positions.PositionAction.as_view(),
|
|
|
|
name="position_action",
|
|
|
|
),
|
2022-10-29 11:43:13 +00:00
|
|
|
path(
|
|
|
|
"strategies/<str:type>/", strategies.StrategyList.as_view(), name="strategies"
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"strategies/<str:type>/create/",
|
|
|
|
strategies.StrategyCreate.as_view(),
|
|
|
|
name="strategy_create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"strategies/<str:type>/update/<str:pk>/",
|
|
|
|
strategies.StrategyUpdate.as_view(),
|
|
|
|
name="strategy_update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"strategies/<str:type>/delete/<str:pk>/",
|
|
|
|
strategies.StrategyDelete.as_view(),
|
|
|
|
name="strategy_delete",
|
2022-10-27 17:08:40 +00:00
|
|
|
),
|
2022-10-13 14:26:43 +00:00
|
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|