forked from uncloud/uncloud
67 lines
2.8 KiB
Python
67 lines
2.8 KiB
Python
"""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/
|
|
"""
|
|
|
|
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
|
|
from rest_framework import routers
|
|
from rest_framework.schemas import get_schema_view
|
|
|
|
#from opennebula import views as oneviews
|
|
from uncloud import views as uncloudviews
|
|
from uncloud_auth import views as authviews
|
|
from uncloud_net import views as netviews
|
|
from uncloud_pay import views as payviews
|
|
from uncloud_vm import views as vmviews
|
|
import notifications.urls
|
|
from uncloud_service import views as serviceviews
|
|
from matrixhosting import views as matrixviews
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
# Beta endpoints
|
|
router.register(r'beta/vm', vmviews.NicoVMProductViewSet, basename='nicovmproduct')
|
|
|
|
################################################################################
|
|
# v2
|
|
|
|
# Net
|
|
router.register(r'v2/net/wireguardvpn', netviews.WireGuardVPNViewSet, basename='wireguardvpnnetwork')
|
|
router.register(r'v2/net/wireguardvpnsizes', netviews.WireGuardVPNSizes, basename='wireguardvpnnetworksizes')
|
|
|
|
# Payment related for a user
|
|
router.register(r'v2/payment/credit-card', payviews.CreditCardViewSet, basename='stripecreditcard')
|
|
router.register(r'v2/payment/payment', payviews.PaymentViewSet, basename='payment')
|
|
router.register(r'v2/payment/balance', payviews.BalanceViewSet, basename='payment-balance')
|
|
router.register(r'v2/payment/address', payviews.BillingAddressViewSet, basename='billingaddress')
|
|
router.register(r'v2/orders', payviews.OrderViewSet, basename='orders')
|
|
router.register(r'v2/bill', payviews.BillViewSet, basename='bills')
|
|
router.register(r'v2/machines', matrixviews.MachineViewSet, basename='machines')
|
|
|
|
# Generic helper views that are usually not needed
|
|
router.register(r'v2/generic/vat-rate', payviews.VATRateViewSet, basename='vatrate')
|
|
|
|
|
|
urlpatterns = [
|
|
path(r'api/', include(router.urls), name='api'),
|
|
|
|
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",
|
|
version="2.0.0"
|
|
), name='openapi-schema'),
|
|
|
|
path('admin/', admin.site.urls),
|
|
path('accounts/', include('allauth.urls')),
|
|
path('pricing/<slug:name>/calculate/', payviews.PricingView.as_view(), name='pricing_calculator'),
|
|
path('cc/reg/', payviews.RegisterCard.as_view(), name="cc_register"),
|
|
path('inbox/notifications/', include(notifications.urls, namespace='notifications')),
|
|
path('', include('matrixhosting.urls', namespace='matrix')),
|
|
# path('', uncloudviews.UncloudIndex.as_view(), name="uncloudindex"),
|
|
]
|