8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-24 20:33:11 +00:00
re2o/api/urls.py

75 lines
2.7 KiB
Python
Raw Permalink Normal View History

2018-06-30 01:25:46 +00:00
# -*- mode: python; coding: utf-8 -*-
2018-03-17 17:20:31 +00:00
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
2018-06-17 01:06:58 +00:00
# Copyright © 2018 Maël Kervella
2018-03-17 17:20:31 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2018-06-17 01:06:58 +00:00
"""Defines the URLs of the API
2018-03-17 17:20:31 +00:00
2018-06-17 01:06:58 +00:00
A custom router is used to register all the routes. That allows to register
all the URL patterns from the viewsets as a standard router but, the views
can also be register. That way a complete API root page presenting all URLs
can be generated automatically.
"""
2018-03-17 17:20:31 +00:00
import importlib
from django.conf import settings
2018-04-19 22:00:49 +00:00
from django.conf.urls import url, include
2018-03-17 17:20:31 +00:00
2018-03-17 17:50:03 +00:00
from . import views
2018-06-17 01:06:58 +00:00
from .routers import AllViewsRouter
2018-06-16 19:20:13 +00:00
router = AllViewsRouter()
for app in settings.INSTALLED_APPS:
try:
module = importlib.import_module(app + '.api.urls')
add_to_router = getattr(module, 'add_to_router')
add_to_router(router)
except ImportError:
pass
2018-06-17 01:06:58 +00:00
# SERVICE REGEN
2018-06-16 19:20:13 +00:00
router.register_viewset(r'services/regen', views.ServiceRegenViewSet, base_name='serviceregen')
# DHCP
router.register_view(r'dhcp/hostmacip', views.HostMacIpView),
2018-07-30 15:00:41 +00:00
# LOCAL EMAILS
router.register_view(r'localemail/users', views.LocalEmailUsersView),
# Firewall
router.register_view(r'firewall/subnet-ports', views.SubnetPortsOpenView),
router.register_view(r'firewall/interface-ports', views.InterfacePortsOpenView),
2018-07-02 09:00:32 +00:00
# Switches config
router.register_view(r'switchs/ports-config', views.SwitchPortView),
router.register_view(r'switchs/role', views.RoleView),
# Reminder
router.register_view(r'reminder/get-users', views.ReminderView),
2018-06-16 19:20:13 +00:00
# DNS
router.register_view(r'dns/zones', views.DNSZonesView),
2018-07-14 08:59:17 +00:00
router.register_view(r'dns/reverse-zones', views.DNSReverseZonesView),
2018-06-16 19:20:13 +00:00
# MAILING
router.register_view(r'mailing/standard', views.StandardMailingView),
router.register_view(r'mailing/club', views.ClubMailingView),
2018-06-17 01:06:58 +00:00
# TOKEN AUTHENTICATION
2018-06-16 19:20:13 +00:00
router.register_view(r'token-auth', views.ObtainExpiringAuthToken)
2018-03-17 17:20:31 +00:00
urlpatterns = [
2018-04-19 22:00:49 +00:00
url(r'^', include(router.urls)),
2018-03-17 17:20:31 +00:00
]