forked from uncloud/uncloud
938f0a3390
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
import uuid
|
|
|
|
from django.db import models
|
|
from django.contrib.auth import get_user_model
|
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
|
|
|
|
|
from uncloud_pay.models import Product, RecurringPeriod
|
|
from uncloud.models import UncloudModel, UncloudStatus
|
|
|
|
|
|
class MACAdress(models.Model):
|
|
default_prefix = 0x420000000000
|
|
|
|
class VPNPool(UncloudModel):
|
|
"""
|
|
Network address pools from which VPNs can be created
|
|
"""
|
|
|
|
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
|
|
network = models.GenericIPAddressField(unique=True)
|
|
network_size = models.IntegerField(validators=[MinValueValidator(0),
|
|
MaxValueValidator(128)])
|
|
|
|
subnetwork_size = models.IntegerField(validators=[MinValueValidator(0),
|
|
MaxValueValidator(128)])
|
|
|
|
vpn_hostname = models.CharField(max_length=256)
|
|
|
|
wireguard_private_key = models.CharField(max_length=48)
|
|
|
|
|
|
class VPNNetworkReservation(UncloudModel):
|
|
"""
|
|
This class tracks the used VPN networks. It will be deleted, when the product is cancelled.
|
|
"""
|
|
vpnpool = models.ForeignKey(VPNPool,
|
|
on_delete=models.CASCADE)
|
|
|
|
address = models.GenericIPAddressField(primary_key=True)
|
|
|
|
|
|
class VPNNetwork(Product):
|
|
"""
|
|
A selected network. Used for tracking reservations / used networks
|
|
"""
|
|
network = models.ForeignKey(VPNNetworkReservation,
|
|
on_delete=models.CASCADE,
|
|
editable=False)
|
|
|
|
wireguard_public_key = models.CharField(max_length=48)
|