aboutsummaryrefslogtreecommitdiffstats
path: root/src/analytics
diff options
context:
space:
mode:
Diffstat (limited to 'src/analytics')
-rw-r--r--src/analytics/__init__.py0
-rw-r--r--src/analytics/admin.py13
-rw-r--r--src/analytics/apps.py14
-rw-r--r--src/analytics/migrations/0001_initial.py22
-rw-r--r--src/analytics/migrations/0002_auto_20201109_2149.py27
-rw-r--r--src/analytics/migrations/__init__.py0
-rw-r--r--src/analytics/models.py30
-rw-r--r--src/analytics/tests.py10
-rw-r--r--src/analytics/views.py10
9 files changed, 0 insertions, 126 deletions
diff --git a/src/analytics/__init__.py b/src/analytics/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/src/analytics/__init__.py
+++ /dev/null
diff --git a/src/analytics/admin.py b/src/analytics/admin.py
deleted file mode 100644
index 63f139f..0000000
--- a/src/analytics/admin.py
+++ /dev/null
@@ -1,13 +0,0 @@
-##############################################################################
-# Copyright (c) 2020 Sean Smith and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-from django.contrib import admin
-from analytics.models import ActiveVPNUser
-
-admin.site.register(ActiveVPNUser)
diff --git a/src/analytics/apps.py b/src/analytics/apps.py
deleted file mode 100644
index fe1b11f..0000000
--- a/src/analytics/apps.py
+++ /dev/null
@@ -1,14 +0,0 @@
-##############################################################################
-# Copyright (c) 2020 Sean Smith and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-from django.apps import AppConfig
-
-
-class AnalyticsConfig(AppConfig):
- name = 'analytics'
diff --git a/src/analytics/migrations/0001_initial.py b/src/analytics/migrations/0001_initial.py
deleted file mode 100644
index 05a7ec8..0000000
--- a/src/analytics/migrations/0001_initial.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# Generated by Django 2.2 on 2020-08-10 20:10
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ]
-
- operations = [
- migrations.CreateModel(
- name='ActiveVPNUsers',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('time_stamp', models.DateTimeField(auto_now_add=True)),
- ('active_users', models.IntegerField()),
- ],
- ),
- ]
diff --git a/src/analytics/migrations/0002_auto_20201109_2149.py b/src/analytics/migrations/0002_auto_20201109_2149.py
deleted file mode 100644
index a845ff8..0000000
--- a/src/analytics/migrations/0002_auto_20201109_2149.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Generated by Django 2.2 on 2020-11-09 21:49
-
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('account', '0006_auto_20201109_1947'),
- ('analytics', '0001_initial'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='ActiveVPNUser',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('time_stamp', models.DateTimeField(auto_now_add=True)),
- ('active_users', models.IntegerField()),
- ('lab', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='account.Lab')),
- ],
- ),
- migrations.DeleteModel(
- name='ActiveVPNUsers',
- ),
- ]
diff --git a/src/analytics/migrations/__init__.py b/src/analytics/migrations/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/src/analytics/migrations/__init__.py
+++ /dev/null
diff --git a/src/analytics/models.py b/src/analytics/models.py
deleted file mode 100644
index 10baa0c..0000000
--- a/src/analytics/models.py
+++ /dev/null
@@ -1,30 +0,0 @@
-##############################################################################
-# Copyright (c) 2020 Sean Smith and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-from django.db import models
-from account.models import Lab
-
-
-class ActiveVPNUser(models.Model):
- """ Keeps track of how many VPN Users are connected to Lab """
- time_stamp = models.DateTimeField(auto_now_add=True)
- lab = models.ForeignKey(Lab, on_delete=models.CASCADE, null=False)
- active_users = models.IntegerField()
-
- @classmethod
- def create(cls, lab_name, active_users):
- """
- This creates an Active VPN Users entry from
- from lab_name as a string
- """
-
- lab = Lab.objects.get(name=lab_name)
- avu = cls(lab=lab, active_users=active_users)
- avu.save()
- return avu
diff --git a/src/analytics/tests.py b/src/analytics/tests.py
deleted file mode 100644
index d234f48..0000000
--- a/src/analytics/tests.py
+++ /dev/null
@@ -1,10 +0,0 @@
-##############################################################################
-# Copyright (c) 2020 Sean Smith and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-# from django.test import TestCase
diff --git a/src/analytics/views.py b/src/analytics/views.py
deleted file mode 100644
index 160bc59..0000000
--- a/src/analytics/views.py
+++ /dev/null
@@ -1,10 +0,0 @@
-##############################################################################
-# Copyright (c) 2020 Sean Smith and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-# from django.shortcuts import render