Have cleaned up redundant logic used for testing it ruined my life today. Port mapping works but it's simply picking it up from a single integer field. We might have to expand on this logic for multi port mappings per instance. Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
121 lines
4.7 KiB
Python
121 lines
4.7 KiB
Python
from django.db import models
|
|
import podman
|
|
import shlex
|
|
import re
|
|
|
|
|
|
class Game(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
genre = models.CharField(max_length=50, blank=True, null=True)
|
|
thumbnail = models.ImageField(upload_to='media/game_thumbnails/', null=True, blank=True)
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
class Server(models.Model):
|
|
STATUS_CHOICES = [
|
|
('online', 'Online'),
|
|
('offline', 'Offline'),
|
|
]
|
|
last_log = models.TextField(blank=True, null=True)
|
|
game = models.ForeignKey(Game, on_delete=models.CASCADE)
|
|
name = models.CharField(max_length=100)
|
|
ip_address = models.GenericIPAddressField(null=True)
|
|
port = models.PositiveIntegerField(null=True)
|
|
image = models.CharField(max_length=200, null=True)
|
|
run_command = models.CharField(max_length=500, blank=True, null=True)
|
|
command_args = models.TextField(blank=True, null=True)
|
|
container_id = models.CharField(max_length=64, blank=True, null=True)
|
|
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default='offline')
|
|
|
|
def __str__(self):
|
|
return f"{self.game.name} Server at {self.ip_address}:{self.port}"
|
|
|
|
def sync_status(self):
|
|
"""Check the real-time status of the container and update the field."""
|
|
safe_name = re.sub(r'[^a-zA-Z0-9_.-]', '_', self.name)
|
|
client = podman.PodmanClient(base_url="unix:///run/user/1000/podman/podman.sock")
|
|
try:
|
|
container = client.containers.get(safe_name)
|
|
if container.status == "running":
|
|
self.status = "online"
|
|
else:
|
|
self.status = "offline"
|
|
except podman.errors.NotFound:
|
|
self.status = "offline"
|
|
except Exception as e:
|
|
self.status = "offline"
|
|
self.save()
|
|
|
|
def launch_pod_container(self):
|
|
safe_name = re.sub(r'[^a-zA-Z0-9_.-]', '_', self.name) # sanitize name
|
|
client = podman.PodmanClient(base_url="unix:///run/user/1000/podman/podman.sock")
|
|
try:
|
|
container = client.containers.create(
|
|
name=safe_name,
|
|
image=self.image,
|
|
ports={
|
|
f'{self.port}/udp': ('0.0.0.0', self.port),
|
|
f'{self.port}/tcp': ('0.0.0.0', self.port),
|
|
},
|
|
command=shlex.split(self.run_command),
|
|
detach=True,
|
|
)
|
|
container.start()
|
|
self.container_id = container.id
|
|
self.last_log = f"Launched container {container.id}"
|
|
self.is_running = True
|
|
self.sync_status()
|
|
self.save()
|
|
return f"Container launched successfully: {container.id}"
|
|
except podman.errors.APIError as e:
|
|
self.last_log = f"API Error: {str(e)}"
|
|
self.save()
|
|
return f"API Error: {e}"
|
|
except Exception as e:
|
|
self.last_log = f"Error: {str(e)}"
|
|
self.save()
|
|
return f"Error: {e}"
|
|
|
|
def stop_pod_container(self):
|
|
safe_name = re.sub(r'[^a-zA-Z0-9_.-]', '_', self.name)
|
|
client = podman.PodmanClient(base_url="unix:///run/user/1000/podman/podman.sock")
|
|
try:
|
|
container = client.containers.get(safe_name)
|
|
container.stop()
|
|
self.status = "offline"
|
|
self.last_log = f"Stopped container {container.id}"
|
|
self.sync_status()
|
|
self.save()
|
|
return f"Container stopped successfully: {container.id}"
|
|
except podman.errors.NotFound:
|
|
self.last_log = f"Container '{safe_name}' not found"
|
|
self.save()
|
|
return f"Error: Container '{safe_name}' not found"
|
|
except Exception as e:
|
|
self.last_log = f"Error stopping container: {str(e)}"
|
|
self.save()
|
|
return f"Error: {e}"
|
|
|
|
def remove_pod_container(self):
|
|
safe_name = re.sub(r'[^a-zA-Z0-9_.-]', '_', self.name)
|
|
client = podman.PodmanClient(base_url="unix:///run/user/1000/podman/podman.sock")
|
|
try:
|
|
container = client.containers.get(safe_name)
|
|
container.remove(force=True)
|
|
self.status = "offline"
|
|
self.container_id = None
|
|
self.last_log = f"Removed container {safe_name}"
|
|
self.sync_status()
|
|
self.save()
|
|
return f"Container removed successfully: {safe_name}"
|
|
except podman.errors.NotFound:
|
|
self.last_log = f"Container '{safe_name}' not found"
|
|
self.save()
|
|
return f"Error: Container '{safe_name}' not found"
|
|
except Exception as e:
|
|
self.last_log = f"Error removing container: {str(e)}"
|
|
self.save()
|
|
return f"Error: {e}"
|
|
|