Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
fa1b0c9700 | |||
7cf29376bd | |||
a1d0b8e14f | |||
6c6e8867fd | |||
fc007cfdcd | |||
24e0029d10 | |||
e9574ff7a8 |
@ -19,6 +19,7 @@ services:
|
|||||||
RABBITMQ_PASSWORD: $RABBITMQ_PASSWORD_PROD
|
RABBITMQ_PASSWORD: $RABBITMQ_PASSWORD_PROD
|
||||||
VK_SERVICE_TOKEN: $VK_SERVICE_TOKEN
|
VK_SERVICE_TOKEN: $VK_SERVICE_TOKEN
|
||||||
YANDEX_SERVICE_TOKEN: $YANDEX_SERVICE_TOKEN
|
YANDEX_SERVICE_TOKEN: $YANDEX_SERVICE_TOKEN
|
||||||
|
TELEGRAM_TOKEN: $TELEGRAM_TOKEN
|
||||||
PLATFORM_SECURITY_TOKEN: $PLATFORM_SECURITY_TOKEN
|
PLATFORM_SECURITY_TOKEN: $PLATFORM_SECURITY_TOKEN
|
||||||
command: runserver 0.0.0.0:1238
|
command: runserver 0.0.0.0:1238
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@ -31,6 +32,10 @@ services:
|
|||||||
mode: replicated
|
mode: replicated
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: any
|
condition: any
|
||||||
|
placement:
|
||||||
|
constraints:
|
||||||
|
- node.role == worker
|
||||||
|
- node.labels.zone == ru
|
||||||
update_config:
|
update_config:
|
||||||
parallelism: 1
|
parallelism: 1
|
||||||
order: start-first
|
order: start-first
|
||||||
@ -65,6 +70,7 @@ services:
|
|||||||
DB_PASSWORD: $DB_PASSWORD_PROD
|
DB_PASSWORD: $DB_PASSWORD_PROD
|
||||||
MINIO_HOST: "minio.sprinthub.ru"
|
MINIO_HOST: "minio.sprinthub.ru"
|
||||||
MINIO_SECRET_KEY: $MINIO _SECRET_KEY_PROD
|
MINIO_SECRET_KEY: $MINIO _SECRET_KEY_PROD
|
||||||
|
TELEGRAM_TOKEN: $TELEGRAM_TOKEN
|
||||||
command: migrate
|
command: migrate
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
|
@ -48,8 +48,7 @@ INSTALLED_APPS = [
|
|||||||
'web.apps.WebConfig',
|
'web.apps.WebConfig',
|
||||||
'configs.apps.ConfigsConfig',
|
'configs.apps.ConfigsConfig',
|
||||||
'experiments.apps.ExperimentsConfig',
|
'experiments.apps.ExperimentsConfig',
|
||||||
'stats.apps.StatsConfig',
|
'stats.apps.StatsConfig'
|
||||||
'schemas.apps.SchemasConfig',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
@ -21,6 +21,5 @@ urlpatterns = [
|
|||||||
path('configs/', include('configs.urls')),
|
path('configs/', include('configs.urls')),
|
||||||
path('experiments/', include('experiments.urls')),
|
path('experiments/', include('experiments.urls')),
|
||||||
path('stats/', include('stats.urls')),
|
path('stats/', include('stats.urls')),
|
||||||
path('schemas/', include('schemas.urls')),
|
|
||||||
path('', include('web.urls'))
|
path('', include('web.urls'))
|
||||||
]
|
]
|
||||||
|
37
generator.py
37
generator.py
@ -1,37 +0,0 @@
|
|||||||
import json
|
|
||||||
import urllib.request
|
|
||||||
import os
|
|
||||||
import shutil
|
|
||||||
|
|
||||||
|
|
||||||
projects = {
|
|
||||||
'queues': 'tasks.proto'
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
try:
|
|
||||||
shutil.rmtree('schemas')
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
try:
|
|
||||||
os.mkdir('schemas')
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
for project in projects:
|
|
||||||
response = urllib.request.urlopen(f'https://platform.sprinthub.ru/schemas/get?project={project}').read()
|
|
||||||
data = json.loads(response)
|
|
||||||
os.mkdir(f'schemas/{project}')
|
|
||||||
for key, value in data.items():
|
|
||||||
with open(f'schemas/{project}/{key}', 'w+') as fp:
|
|
||||||
fp.write(value)
|
|
||||||
|
|
||||||
|
|
||||||
for key, value in projects.items():
|
|
||||||
os.system(f'python -m grpc_tools.protoc --proto_path schemas --python_out=. --pyi_out=. --grpc_python_out=. ./schemas/{key}/{value}')
|
|
||||||
|
|
||||||
try:
|
|
||||||
shutil.rmtree('schemas')
|
|
||||||
except:
|
|
||||||
pass
|
|
@ -1,6 +0,0 @@
|
|||||||
from django.contrib import admin
|
|
||||||
|
|
||||||
# Register your models here.
|
|
||||||
from .models import Schema
|
|
||||||
|
|
||||||
admin.site.register(Schema)
|
|
@ -1,6 +0,0 @@
|
|||||||
from django.apps import AppConfig
|
|
||||||
|
|
||||||
|
|
||||||
class SchemasConfig(AppConfig):
|
|
||||||
default_auto_field = 'django.db.models.BigAutoField'
|
|
||||||
name = 'schemas'
|
|
@ -1,28 +0,0 @@
|
|||||||
# Generated by Django 5.1.4 on 2024-12-08 11:56
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
initial = True
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('web', '0007_customuser_telegram_id_customuser_telegram_username'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.CreateModel(
|
|
||||||
name='Schema',
|
|
||||||
fields=[
|
|
||||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
||||||
('name', models.TextField()),
|
|
||||||
('data', models.BinaryField(blank=True, null=True)),
|
|
||||||
('project', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='web.project')),
|
|
||||||
],
|
|
||||||
options={
|
|
||||||
'indexes': [models.Index(fields=['project'], name='schemas_sch_project_18fee8_idx')],
|
|
||||||
},
|
|
||||||
),
|
|
||||||
]
|
|
@ -1,18 +0,0 @@
|
|||||||
# Generated by Django 5.1.4 on 2024-12-08 12:05
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('schemas', '0001_initial'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='schema',
|
|
||||||
name='data',
|
|
||||||
field=models.TextField(blank=True, null=True),
|
|
||||||
),
|
|
||||||
]
|
|
@ -1,18 +0,0 @@
|
|||||||
# Generated by Django 5.1.4 on 2024-12-08 12:15
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('schemas', '0002_alter_schema_data'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='schema',
|
|
||||||
name='data',
|
|
||||||
field=models.TextField(blank=True, default=''),
|
|
||||||
),
|
|
||||||
]
|
|
@ -1,14 +0,0 @@
|
|||||||
from django.db import models
|
|
||||||
|
|
||||||
# Create your models here.
|
|
||||||
|
|
||||||
|
|
||||||
class Schema(models.Model):
|
|
||||||
project = models.ForeignKey('web.Project', on_delete=models.CASCADE)
|
|
||||||
name = models.TextField()
|
|
||||||
data = models.TextField(default='', blank=True)
|
|
||||||
|
|
||||||
class Meta:
|
|
||||||
indexes = [
|
|
||||||
models.Index(fields=['project'])
|
|
||||||
]
|
|
@ -1,3 +0,0 @@
|
|||||||
from django.test import TestCase
|
|
||||||
|
|
||||||
# Create your tests here.
|
|
@ -1,9 +0,0 @@
|
|||||||
from django.contrib import admin
|
|
||||||
from django.urls import path
|
|
||||||
|
|
||||||
from .views import *
|
|
||||||
|
|
||||||
urlpatterns = [
|
|
||||||
path(*SchemasView.as_path()),
|
|
||||||
path('get', get_schemas)
|
|
||||||
]
|
|
@ -1,46 +0,0 @@
|
|||||||
from json import loads
|
|
||||||
|
|
||||||
from django.http import HttpResponse, JsonResponse
|
|
||||||
|
|
||||||
from BaseLib.BaseView import BaseView
|
|
||||||
from BaseLib.configurator import *
|
|
||||||
from Platform import settings
|
|
||||||
from schemas.models import Schema
|
|
||||||
|
|
||||||
|
|
||||||
# Create your views here.
|
|
||||||
|
|
||||||
|
|
||||||
class SchemasView(BaseView):
|
|
||||||
required_login = True
|
|
||||||
endpoint = ''
|
|
||||||
view_file = 'schemas.html'
|
|
||||||
|
|
||||||
def pre_handle(self):
|
|
||||||
self.context['schemas'] = Schema.objects.filter(project=self.request.user.selected_project)
|
|
||||||
|
|
||||||
def post_create_schema(self):
|
|
||||||
Schema.objects.create(project=self.request.user.selected_project, name=self.request.POST['name'])
|
|
||||||
return '/schemas'
|
|
||||||
|
|
||||||
def post_delete(self):
|
|
||||||
Schema.objects.get(id=self.request.POST['schema']).delete()
|
|
||||||
return '/schemas'
|
|
||||||
|
|
||||||
|
|
||||||
def post_save(self):
|
|
||||||
schema = Schema.objects.get(id=self.request.POST['schema'])
|
|
||||||
schema.data = self.request.POST['data']
|
|
||||||
schema.save()
|
|
||||||
return '/schemas'
|
|
||||||
|
|
||||||
|
|
||||||
def get_schemas(request):
|
|
||||||
project = request.GET.get('project')
|
|
||||||
if project is None:
|
|
||||||
return HttpResponse('', status=400)
|
|
||||||
data = {
|
|
||||||
schema.name: schema.data
|
|
||||||
for schema in Schema.objects.filter(project__name=project)
|
|
||||||
}
|
|
||||||
return JsonResponse(data, safe=False)
|
|
@ -24,8 +24,6 @@ class Command(BaseCommand):
|
|||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
continue
|
continue
|
||||||
Snapshot.objects.create(project=project, data=response.json())
|
Snapshot.objects.create(project=project, data=response.json())
|
||||||
if not project.stats_cron:
|
|
||||||
continue
|
|
||||||
cron = croniter.croniter(project.stats_cron, timezone.now())
|
cron = croniter.croniter(project.stats_cron, timezone.now())
|
||||||
next_date = cron.get_next(datetime.datetime)
|
next_date = cron.get_next(datetime.datetime)
|
||||||
project.next_stats_fetch_time = next_date
|
project.next_stats_fetch_time = next_date
|
||||||
|
@ -98,14 +98,6 @@
|
|||||||
<span class="sidebar-text">Статистика</span>
|
<span class="sidebar-text">Статистика</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a href="/schemas" class="nav-link">
|
|
||||||
<span class="sidebar-icon">
|
|
||||||
<i class="fa fa-file-code-o"></i>
|
|
||||||
</span>
|
|
||||||
<span class="sidebar-text">Схемы</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<button class="btn btn-secondary d-flex align-items-center justify-content-center btn-upgrade-pro">
|
<button class="btn btn-secondary d-flex align-items-center justify-content-center btn-upgrade-pro">
|
||||||
{{ user.selected_project.name }}
|
{{ user.selected_project.name }}
|
||||||
|
@ -1,61 +0,0 @@
|
|||||||
{% extends 'layouts/base.html' %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<h1>Схемы <button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#create_config">+</button></h1>
|
|
||||||
<div class="modal fade" id="create_config" tabindex="-1" aria-labelledby="modal-default" style="display: none;" aria-hidden="true">
|
|
||||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
|
||||||
<div class="modal-content">
|
|
||||||
<form method="POST">
|
|
||||||
{% csrf_token %}
|
|
||||||
<div class="modal-header">
|
|
||||||
<h2 class="h6 modal-title">Создать схему</h2>
|
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<input type="text" name="name" placeholder="Имя файла" style="width: 100%;" />
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="submit" name="action" value="create_schema" class="btn btn-secondary">Создать</button>
|
|
||||||
<button type="button" class="btn btn-link text-gray-600 ms-auto" data-bs-dismiss="modal">Закрыть</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<th>Название</th>
|
|
||||||
<th>Действие</th>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{% for schema in schemas %}
|
|
||||||
<tr>
|
|
||||||
<td>{{ schema.name }}</td>
|
|
||||||
<td><button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#edit_{{ schema.id }}">Редактировать</button></td>
|
|
||||||
<div class="modal fade" id="edit_{{ schema.id }}" tabindex="-1" aria-labelledby="modal-default" style="display: none;" aria-hidden="true">
|
|
||||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
|
||||||
<div class="modal-content">
|
|
||||||
<form method="POST">
|
|
||||||
{% csrf_token %}
|
|
||||||
<input type="hidden" name="schema" value="{{ schema.id }}" />
|
|
||||||
<div class="modal-header">
|
|
||||||
<h2 class="h6 modal-title">Редактировать схему {{ config.name }}</h2>
|
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
||||||
</div>
|
|
||||||
<div class="modal-body">
|
|
||||||
<textarea style="width: 100%; height: 800px;" name="data">{{ schema.data }}</textarea>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button type="submit" name="action" value="save" class="btn btn-secondary">Сохранить</button>
|
|
||||||
<button type="submit" name="action" value="delete" class="btn btn-danger" onclick="return confirm('Подтверди удаление. Это действие необратимо.');">Удалить</button>
|
|
||||||
<button type="button" class="btn btn-link text-gray-600 ms-auto" data-bs-dismiss="modal">Закрыть</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{% endblock %}
|
|
@ -1,28 +0,0 @@
|
|||||||
# Generated by Django 5.1.4 on 2024-12-08 12:05
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('web', '0007_customuser_telegram_id_customuser_telegram_username'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='project',
|
|
||||||
name='next_stats_fetch_time',
|
|
||||||
field=models.DateTimeField(blank=True, null=True),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='project',
|
|
||||||
name='stats_cron',
|
|
||||||
field=models.TextField(blank=True, null=True),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='project',
|
|
||||||
name='stats_link',
|
|
||||||
field=models.TextField(blank=True, null=True),
|
|
||||||
),
|
|
||||||
]
|
|
@ -3,10 +3,10 @@ from django.db import models
|
|||||||
|
|
||||||
class Project(models.Model):
|
class Project(models.Model):
|
||||||
name = models.TextField()
|
name = models.TextField()
|
||||||
stats_link = models.TextField(null=True, blank=True)
|
stats_link = models.TextField(null=True)
|
||||||
stats_cron = models.TextField(null=True, blank=True)
|
stats_cron = models.TextField(null=True)
|
||||||
stats_enabled = models.BooleanField(default=False)
|
stats_enabled = models.BooleanField(default=False)
|
||||||
next_stats_fetch_time = models.DateTimeField(null=True, blank=True)
|
next_stats_fetch_time = models.DateTimeField(null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
indexes = [
|
indexes = [
|
||||||
|
@ -15,5 +15,4 @@ urlpatterns = [
|
|||||||
path(*YandexAuthView.as_path()),
|
path(*YandexAuthView.as_path()),
|
||||||
path('is_staff', is_staff),
|
path('is_staff', is_staff),
|
||||||
path('fetch', fetch),
|
path('fetch', fetch),
|
||||||
path('generator', generator),
|
|
||||||
]
|
]
|
||||||
|
@ -9,4 +9,3 @@ from .vk_auth import VKAuthView
|
|||||||
from .yandex_auth import YandexAuthView
|
from .yandex_auth import YandexAuthView
|
||||||
from .is_staff import is_staff
|
from .is_staff import is_staff
|
||||||
from .fetch import fetch
|
from .fetch import fetch
|
||||||
from .generator import generator
|
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
from django.http import HttpResponse
|
|
||||||
|
|
||||||
|
|
||||||
def generator(request):
|
|
||||||
return HttpResponse(open('generator.py', 'rb').read())
|
|
Loading…
Reference in New Issue
Block a user