2020-02-20 16:52:50 +01:00
|
|
|
"""uncloud URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/3.0/topics/http/urls/
|
|
|
|
"""
|
2020-04-03 18:41:17 +02:00
|
|
|
|
2020-02-20 16:52:50 +01:00
|
|
|
from django.contrib import admin
|
2020-02-20 18:58:07 +01:00
|
|
|
from django.urls import path, include
|
2020-04-03 18:41:17 +02:00
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
|
2020-02-20 18:58:07 +01:00
|
|
|
from rest_framework import routers
|
2020-04-12 22:55:22 +02:00
|
|
|
from rest_framework.schemas import get_schema_view
|
2020-02-20 18:58:07 +01:00
|
|
|
|
2020-09-28 20:59:08 +02:00
|
|
|
#from opennebula import views as oneviews
|
2020-12-25 10:31:42 +01:00
|
|
|
from uncloud import views as uncloudviews
|
2020-03-18 14:36:40 +01:00
|
|
|
from uncloud_auth import views as authviews
|
2020-04-03 19:27:49 +02:00
|
|
|
from uncloud_net import views as netviews
|
|
|
|
from uncloud_pay import views as payviews
|
|
|
|
from uncloud_vm import views as vmviews
|
2020-04-13 11:39:49 +02:00
|
|
|
from uncloud_service import views as serviceviews
|
2020-02-21 20:33:37 +05:00
|
|
|
|
2020-02-20 18:58:07 +01:00
|
|
|
router = routers.DefaultRouter()
|
2020-02-26 11:31:17 +01:00
|
|
|
|
2020-05-02 19:15:48 +02:00
|
|
|
# Beta endpoints
|
|
|
|
router.register(r'beta/vm', vmviews.NicoVMProductViewSet, basename='nicovmproduct')
|
|
|
|
|
2020-12-13 13:28:43 +01:00
|
|
|
################################################################################
|
|
|
|
# v2
|
|
|
|
|
|
|
|
# Net
|
|
|
|
router.register(r'v2/net/wireguardvpn', netviews.WireGuardVPNViewSet, basename='wireguardvpnnetwork')
|
2020-12-20 21:45:47 +01:00
|
|
|
router.register(r'v2/net/wireguardvpnsizes', netviews.WireGuardVPNSizes, basename='wireguardvpnnetworksizes')
|
2020-12-13 13:28:43 +01:00
|
|
|
|
2020-12-28 23:35:34 +01:00
|
|
|
# Payment related
|
2021-01-01 13:25:52 +01:00
|
|
|
router.register(r'v2/payment/credit-card', payviews.CreditCardViewSet, basename='stripecreditcard')
|
2020-12-29 01:43:33 +01:00
|
|
|
router.register(r'v2/payment/payment', payviews.PaymentViewSet, basename='payment')
|
2021-01-01 12:41:54 +01:00
|
|
|
router.register(r'v2/payment/balance', payviews.BalanceViewSet, basename='payment-balance')
|
2021-01-17 15:53:30 +01:00
|
|
|
router.register(r'v2/payment/address', payviews.BillingAddressViewSet, basename='billingaddress')
|
2020-12-13 13:28:43 +01:00
|
|
|
|
2020-02-20 16:52:50 +01:00
|
|
|
urlpatterns = [
|
2020-12-28 23:35:34 +01:00
|
|
|
path(r'api/', include(router.urls), name='api'),
|
2020-04-03 19:27:49 +02:00
|
|
|
|
2020-04-12 22:55:22 +02:00
|
|
|
path('api-auth/', include('rest_framework.urls', namespace='rest_framework')), # for login to REST API
|
|
|
|
path('openapi', get_schema_view(
|
|
|
|
title="uncloud",
|
|
|
|
description="uncloud API",
|
2020-12-29 01:43:33 +01:00
|
|
|
version="2.0.0"
|
2020-04-12 22:55:22 +02:00
|
|
|
), name='openapi-schema'),
|
2020-12-13 13:28:43 +01:00
|
|
|
|
2020-12-29 01:43:33 +01:00
|
|
|
path('admin/', admin.site.urls),
|
2020-12-25 17:29:17 +01:00
|
|
|
|
2020-12-09 20:22:33 +01:00
|
|
|
path('login/', authviews.LoginView.as_view(), name="login"),
|
|
|
|
path('logout/', authviews.LogoutView.as_view(), name="logout"),
|
2020-12-25 10:31:42 +01:00
|
|
|
path('cc/reg/', payviews.RegisterCard.as_view(), name="cc_register"),
|
2020-12-26 11:22:51 +01:00
|
|
|
|
2020-12-25 10:31:42 +01:00
|
|
|
path('', uncloudviews.UncloudIndex.as_view(), name="uncloudindex"),
|
2020-02-20 16:52:50 +01:00
|
|
|
]
|