2023-03-04 14:27:39 +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
|
|
|
|
from django.contrib.auth.views import LogoutView
|
|
|
|
from django.urls import include, path
|
|
|
|
from two_factor.urls import urlpatterns as tf_urls
|
|
|
|
|
2023-03-10 02:21:36 +00:00
|
|
|
from core.views import ads, aggregators, banks, base, notifications, platforms
|
2023-03-04 14:27:39 +00:00
|
|
|
|
|
|
|
# from core.views.stripe_callbacks import Callback
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("__debug__/", include("debug_toolbar.urls")),
|
|
|
|
path("", base.Home.as_view(), name="home"),
|
|
|
|
path("sapp/", admin.site.urls),
|
|
|
|
# 2FA login urls
|
|
|
|
path("", include(tf_urls)),
|
|
|
|
path("accounts/signup/", base.Signup.as_view(), name="signup"),
|
|
|
|
path("accounts/logout/", LogoutView.as_view(), name="logout"),
|
2023-03-07 16:59:39 +00:00
|
|
|
# Notifications
|
2023-03-04 14:27:39 +00:00
|
|
|
path(
|
|
|
|
"notifications/<str:type>/update/",
|
|
|
|
notifications.NotificationsUpdate.as_view(),
|
|
|
|
name="notifications_update",
|
|
|
|
),
|
2023-03-07 16:59:39 +00:00
|
|
|
# Aggregators
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/",
|
|
|
|
aggregators.AggregatorList.as_view(),
|
|
|
|
name="aggregators",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/create/",
|
|
|
|
aggregators.AggregatorCreate.as_view(),
|
|
|
|
name="aggregator_create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/update/<str:pk>/",
|
|
|
|
aggregators.AggregatorUpdate.as_view(),
|
|
|
|
name="aggregator_update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/delete/<str:pk>/",
|
|
|
|
aggregators.AggregatorDelete.as_view(),
|
|
|
|
name="aggregator_delete",
|
|
|
|
),
|
2023-03-08 12:48:05 +00:00
|
|
|
# Aggregator Requisitions
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/info/<str:pk>/",
|
|
|
|
aggregators.ReqsList.as_view(),
|
|
|
|
name="reqs",
|
|
|
|
),
|
|
|
|
# Aggregator Account link flow
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/countries/<str:pk>/",
|
|
|
|
aggregators.AggregatorCountriesList.as_view(),
|
|
|
|
name="aggregator_countries",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/countries/<str:pk>/<str:country>/banks/",
|
|
|
|
aggregators.AggregatorCountryBanksList.as_view(),
|
|
|
|
name="aggregator_country_banks",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/link/<str:pk>/<str:bank>/",
|
|
|
|
aggregators.AggregatorLinkBank.as_view(),
|
|
|
|
name="aggregator_link",
|
|
|
|
),
|
2023-03-08 15:44:21 +00:00
|
|
|
# Delete requisition
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/delete/<str:pk>/<str:req_id>/",
|
|
|
|
aggregators.ReqDelete.as_view(),
|
|
|
|
name="req_delete",
|
|
|
|
),
|
2023-03-08 17:04:47 +00:00
|
|
|
# Requisition info
|
|
|
|
path(
|
|
|
|
"aggs/<str:type>/info/<str:pk>/<str:req_id>/",
|
|
|
|
aggregators.ReqInfo.as_view(),
|
|
|
|
name="req_info",
|
|
|
|
),
|
2023-03-09 16:44:16 +00:00
|
|
|
# Request bank fetch
|
|
|
|
path(
|
|
|
|
"ops/bank_fetch/<str:pk>/",
|
|
|
|
aggregators.RequestBankFetch.as_view(),
|
|
|
|
name="bank_fetch",
|
|
|
|
),
|
2023-03-09 18:13:32 +00:00
|
|
|
path(
|
|
|
|
"ops/bank_fetch/",
|
|
|
|
aggregators.RequestBankFetch.as_view(),
|
|
|
|
name="bank_fetch",
|
|
|
|
),
|
2023-03-09 16:44:16 +00:00
|
|
|
# Bank details by currency
|
|
|
|
path(
|
|
|
|
"banks/<str:type>/details/",
|
|
|
|
banks.BanksCurrencies.as_view(),
|
|
|
|
name="currencies",
|
|
|
|
),
|
2023-03-09 18:09:29 +00:00
|
|
|
# Bank balances
|
|
|
|
path(
|
|
|
|
"banks/<str:type>/balances/",
|
|
|
|
banks.BanksBalances.as_view(),
|
|
|
|
name="balances",
|
|
|
|
),
|
2023-03-09 20:24:46 +00:00
|
|
|
# Transactions
|
|
|
|
path(
|
|
|
|
"banks/<str:type>/transactions/<str:aggregator_id>/<str:account_id>/",
|
|
|
|
banks.BanksTransactions.as_view(),
|
|
|
|
name="transactions",
|
|
|
|
),
|
2023-03-09 23:27:16 +00:00
|
|
|
# Platforms
|
|
|
|
path(
|
|
|
|
"platforms/<str:type>/",
|
|
|
|
platforms.PlatformList.as_view(),
|
|
|
|
name="platforms",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"platforms/<str:type>/create/",
|
|
|
|
platforms.PlatformCreate.as_view(),
|
|
|
|
name="platform_create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"platforms/<str:type>/update/<str:pk>/",
|
|
|
|
platforms.PlatformUpdate.as_view(),
|
|
|
|
name="platform_update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"platforms/<str:type>/delete/<str:pk>/",
|
|
|
|
platforms.PlatformDelete.as_view(),
|
|
|
|
name="platform_delete",
|
|
|
|
),
|
2023-03-10 00:23:05 +00:00
|
|
|
# Trades
|
|
|
|
path(
|
|
|
|
"trades/<str:type>/",
|
|
|
|
platforms.PlatformTrades.as_view(),
|
|
|
|
name="trades",
|
|
|
|
),
|
2023-03-10 02:21:36 +00:00
|
|
|
# Ads
|
|
|
|
path(
|
|
|
|
"ads/<str:type>/",
|
|
|
|
ads.AdList.as_view(),
|
|
|
|
name="ads",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"ads/<str:type>/create/",
|
|
|
|
ads.AdCreate.as_view(),
|
|
|
|
name="ad_create",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"ads/<str:type>/update/<str:pk>/",
|
|
|
|
ads.AdUpdate.as_view(),
|
|
|
|
name="ad_update",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"ads/<str:type>/delete/<str:pk>/",
|
|
|
|
ads.AdDelete.as_view(),
|
|
|
|
name="ad_delete",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"ops/ads/dist/",
|
|
|
|
ads.AdDist.as_view(),
|
|
|
|
name="ad_dist",
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"ops/ads/redist/",
|
|
|
|
ads.AdRedist.as_view(),
|
|
|
|
name="ad_redist",
|
|
|
|
),
|
2023-03-04 14:27:39 +00:00
|
|
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|