summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-server/src/main/resources
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-02-16 15:18:21 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2026-02-16 15:18:21 +0100
commit2f16cb0f48eca4453e3e894b3d45a3aa09e6dcc0 (patch)
tree672d98baa2ac071f2c30de06d613254d0d8cd105 /opendc-web/opendc-web-server/src/main/resources
parent86d35fcec83057e346e4982b5a6908f25342a392 (diff)
feat: opendc -> kafka -> postgresql works; added protobuf encodingHEADmaster
Diffstat (limited to 'opendc-web/opendc-web-server/src/main/resources')
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/META-INF/branding/logo.pngbin2825 -> 0 bytes
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/application-dev.properties36
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/application-docker.properties49
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/application-prod.properties36
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/application-test.properties43
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/application.properties49
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/hypersistence-utils.properties1
-rw-r--r--opendc-web/opendc-web-server/src/main/resources/load_data.sql124
8 files changed, 0 insertions, 338 deletions
diff --git a/opendc-web/opendc-web-server/src/main/resources/META-INF/branding/logo.png b/opendc-web/opendc-web-server/src/main/resources/META-INF/branding/logo.png
deleted file mode 100644
index d743038b..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/META-INF/branding/logo.png
+++ /dev/null
Binary files differ
diff --git a/opendc-web/opendc-web-server/src/main/resources/application-dev.properties b/opendc-web/opendc-web-server/src/main/resources/application-dev.properties
deleted file mode 100644
index 5fbc4c04..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/application-dev.properties
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright (c) 2022 AtLarge Research
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Datasource (H2)
-quarkus.datasource.db-kind=h2
-quarkus.datasource.jdbc.url=jdbc:h2:mem:default;DB_CLOSE_DELAY=-1;INIT=CREATE TYPE IF NOT EXISTS "JSONB" AS json;
-
-# Hibernate
-quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect
-quarkus.flyway.clean-at-start=true
-
-# Disable authentication
-opendc.security.enabled=false
-
-# Mount web UI at root and API at "/api"
-quarkus.resteasy.path=/api
-
-# Swagger UI
-quarkus.smallrye-openapi.servers=http://localhost:8080
diff --git a/opendc-web/opendc-web-server/src/main/resources/application-docker.properties b/opendc-web/opendc-web-server/src/main/resources/application-docker.properties
deleted file mode 100644
index eae9ee1e..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/application-docker.properties
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright (c) 2022 AtLarge Research
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Configuration for standalone Docker server distribution without web UI.
-
-# Datasource
-quarkus.datasource.db-kind=postgresql
-quarkus.datasource.username=${OPENDC_DB_USERNAME}
-quarkus.datasource.password=${OPENDC_DB_PASSWORD}
-quarkus.datasource.jdbc.url=${OPENDC_DB_URL}
-
-# Hibernate
-quarkus.hibernate-orm.dialect=org.hibernate.dialect.PostgreSQL95Dialect
-
-# Disable OpenDC web UI
-quarkus.opendc-ui.include=false
-
-# Security
-opendc.security.enabled=true
-quarkus.oidc.auth-server-url=https://${OPENDC_AUTH0_DOMAIN}
-quarkus.oidc.client-id=${OPENDC_AUTH0_AUDIENCE}
-quarkus.oidc.token.audience=${quarkus.oidc.client-id}
-quarkus.oidc.roles.role-claim-path=scope
-
-# Swagger UI
-quarkus.swagger-ui.oauth-client-id=${OPENDC_AUTH0_DOCS_CLIENT_ID:}
-quarkus.swagger-ui.oauth-additional-query-string-params={"audience":"${OPENDC_AUTH0_AUDIENCE:https://api.opendc.org/v2/}"}
-
-quarkus.smallrye-openapi.security-scheme=oidc
-quarkus.smallrye-openapi.security-scheme-name=Auth0
-quarkus.smallrye-openapi.oidc-open-id-connect-url=https://${OPENDC_AUTH0_DOMAIN:opendc.eu.auth0.com}/.well-known/openid-configuration
-quarkus.smallrye-openapi.servers=https://api.opendc.org
diff --git a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties
deleted file mode 100644
index fe997fc0..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright (c) 2022 AtLarge Research
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Datasource (H2)
-quarkus.datasource.db-kind=h2
-quarkus.datasource.jdbc.url=jdbc:h2:file:./data/opendc;DB_CLOSE_DELAY=-1;INIT=CREATE TYPE IF NOT EXISTS "JSONB" AS json;
-
-# Hibernate
-quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect
-
-# Disable authentication
-opendc.security.enabled=false
-quarkus.oidc.enabled=${opendc.security.enabled}
-
-# Mount web UI at root and API at "/api"
-quarkus.resteasy.path=/api
-
-# Swagger UI
-quarkus.smallrye-openapi.servers=http://localhost:8080
diff --git a/opendc-web/opendc-web-server/src/main/resources/application-test.properties b/opendc-web/opendc-web-server/src/main/resources/application-test.properties
deleted file mode 100644
index 4e3063e4..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/application-test.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) 2022 AtLarge Research
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Datasource configuration
-quarkus.datasource.db-kind = h2
-quarkus.datasource.jdbc.url=jdbc:h2:mem:default;DB_CLOSE_DELAY=-1;INIT=CREATE TYPE IF NOT EXISTS "JSONB" AS json;
-
-quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect
-quarkus.hibernate-orm.log.sql=true
-quarkus.flyway.clean-at-start=true
-quarkus.flyway.locations=db/migration,db/testing
-
-# Disable security
-quarkus.oidc.enabled=false
-
-# Disable OpenAPI/Swagger
-quarkus.smallrye-openapi.enable=false
-quarkus.swagger-ui.enable=false
-
-# Disable OpenDC web UI and runner
-quarkus.opendc-ui.include=false
-quarkus.opendc-runner.include=false
-
-# Create new tables and fill them
-quarkus.hibernate-orm.database.generation=drop-and-create
-quarkus.hibernate-orm.sql-load-script=load_data.sql
diff --git a/opendc-web/opendc-web-server/src/main/resources/application.properties b/opendc-web/opendc-web-server/src/main/resources/application.properties
deleted file mode 100644
index 0f47db30..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/application.properties
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright (c) 2022 AtLarge Research
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-
-# Enable CORS
-quarkus.http.cors=true
-quarkus.http.cors.origins=http://localhost:3000,https://opendc.org
-
-# Security
-quarkus.oidc.enabled=${opendc.security.enabled}
-
-# Runner logging
-quarkus.log.category."org.opendc".level=ERROR
-quarkus.log.category."org.opendc.web".level=INFO
-quarkus.log.category."org.apache".level=WARN
-
-# OpenAPI and Swagger
-quarkus.smallrye-openapi.info-title=OpenDC REST API
-%dev.quarkus.smallrye-openapi.info-title=OpenDC REST API (development)
-quarkus.smallrye-openapi.info-version=2.1-rc1
-quarkus.smallrye-openapi.info-description=OpenDC is an open-source datacenter simulator for education, featuring real-time online collaboration, diverse simulation models, and detailed performance feedback statistics.
-quarkus.smallrye-openapi.info-contact-email=opendc@atlarge-research.com
-quarkus.smallrye-openapi.info-contact-name=OpenDC Support
-quarkus.smallrye-openapi.info-contact-url=https://opendc.org
-quarkus.smallrye-openapi.info-license-name=MIT
-quarkus.smallrye-openapi.info-license-url=https://github.com/atlarge-research/opendc/blob/master/LICENSE.txt
-
-quarkus.swagger-ui.path=docs
-quarkus.swagger-ui.always-include=true
-
-# Flyway database migrations
-quarkus.flyway.baseline-on-migrate=true
-quarkus.flyway.migrate-at-start=true
diff --git a/opendc-web/opendc-web-server/src/main/resources/hypersistence-utils.properties b/opendc-web/opendc-web-server/src/main/resources/hypersistence-utils.properties
deleted file mode 100644
index 451ce2d8..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/hypersistence-utils.properties
+++ /dev/null
@@ -1 +0,0 @@
-hypersistence.utils.jackson.object.mapper=org.opendc.web.server.util.QuarkusObjectMapperSupplier
diff --git a/opendc-web/opendc-web-server/src/main/resources/load_data.sql b/opendc-web/opendc-web-server/src/main/resources/load_data.sql
deleted file mode 100644
index 72396cef..00000000
--- a/opendc-web/opendc-web-server/src/main/resources/load_data.sql
+++ /dev/null
@@ -1,124 +0,0 @@
-
--- Insert data
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
- VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project 1', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 1);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 1, 'test_user_1');
-
--- Add test user 2 as a viewer for project 1
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('VIEWER', 1, 'test_user_2');
-
--- Add test user 3 as an editor for project 1
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('EDITOR', 1, 'test_user_3');
-
--- Create a project for test user 2
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project 2', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 2);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 2, 'test_user_2');
-
--- Create three projects for test user 3. User 3 has multiple projects to test getAll
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project 3', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 3);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 3, 'test_user_3');
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project 4', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 4);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 4, 'test_user_3');
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project 5', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 5);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 5, 'test_user_3');
-
--- Project to delete
-
-INSERT INTO PROJECT (created_at, name, portfolios_created, scenarios_created, topologies_created, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Project Delete', 0, 0, 0, '2024-03-01T15:31:41.579969Z', 6);
-
-INSERT INTO PROJECTAUTHORIZATION (role, project_id, user_name)
-VALUES ('OWNER', 6, 'test_user_1');
-
--- --------------------------------------------------------------------------------
--- PortFolios
--- --------------------------------------------------------------------------------
-
--- Add Portfolio to project 1
-INSERT INTO PORTFOLIO (name, number, project_id, targets, id)
-VALUES ('Test PortFolio Base', 1, 1, '{"metrics": [], "repeats":1}' FORMAT JSON, 1);
-
-INSERT INTO PORTFOLIO (name, number, project_id, targets, id)
-VALUES ('Test PortFolio Delete', 2, 1, '{"metrics": [], "repeats":1}' FORMAT JSON, 2);
-
-INSERT INTO PORTFOLIO (name, number, project_id, targets, id)
-VALUES ('Test PortFolio DeleteEditor', 3, 1, '{"metrics": [], "repeats":1}' FORMAT JSON, 3);
-
-UPDATE Project p
-SET p.portfolios_created = 3, p.updated_at = '2024-03-01T15:31:41.579969Z'
-WHERE p.id = 1;
-
--- --------------------------------------------------------------------------------
--- Topologies
--- --------------------------------------------------------------------------------
-
-INSERT INTO TOPOLOGY (created_at, name, number, project_id, rooms, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Topology testUpdate', 1, 1, '[]' FORMAT JSON, '2024-03-01T15:31:41.579969Z', 1);
-
-INSERT INTO TOPOLOGY (created_at, name, number, project_id, rooms, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Topology testDeleteAsEditor', 2, 1, '[]' FORMAT JSON, '2024-03-01T15:31:41.579969Z', 2);
-
-INSERT INTO TOPOLOGY (created_at, name, number, project_id, rooms, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Topology testDelete', 3, 1, '[]' FORMAT JSON, '2024-03-01T15:31:41.579969Z', 3);
-
-INSERT INTO TOPOLOGY (created_at, name, number, project_id, rooms, updated_at, id)
-VALUES ('2024-03-01T15:31:41.579969Z', 'Test Topology testDeleteUsed', 4, 1, '[]' FORMAT JSON, '2024-03-01T15:31:41.579969Z', 4);
-
-UPDATE Project p
-SET p.topologies_created = 4, p.updated_at = '2024-03-01T15:31:41.579969Z'
-WHERE p.id = 1;
-
--- --------------------------------------------------------------------------------
--- Traces
--- --------------------------------------------------------------------------------
-
-INSERT INTO TRACE (id, name, type)
-VALUES ('bitbrains-small', 'Bitbrains Small', 'small');
-
--- --------------------------------------------------------------------------------
--- Scenario
--- --------------------------------------------------------------------------------
-
-INSERT INTO SCENARIO (name, number, phenomena, portfolio_id, project_id, scheduler_name, topology_id, sampling_fraction, trace_id, id)
-VALUES ('Test Scenario testDelete', 1, '{"failures": false, "interference": false}' FORMAT JSON, 1, 1, 'test', 1, 1.0, 'bitbrains-small', 1);
-
-INSERT INTO SCENARIO (name, number, phenomena, portfolio_id, project_id, scheduler_name, topology_id, sampling_fraction, trace_id, id)
-VALUES ('Test Scenario testDeleteUsed', 2, '{"failures": false, "interference": false}' FORMAT JSON, 1, 1, 'test', 4, 1.0, 'bitbrains-small', 2);
-
-
-UPDATE Project p
-SET p.scenarios_created = 2, p.updated_at = '2024-03-01T15:31:41.579969Z'
-WHERE p.id = 1;
-
--- --------------------------------------------------------------------------------
--- Job
--- --------------------------------------------------------------------------------
-
-INSERT INTO JOB (scenario_id, created_by, created_at, repeats, updated_at, state, runtime, results, id)
-VALUES (1, 'test_user_1', '2024-03-01T15:31:41.579969Z', 1, '2024-03-01T15:31:41.579969Z', 'PENDING', 1, '{}' FORMAT JSON, 1);
-
-INSERT INTO JOB (scenario_id, created_by, created_at, repeats, updated_at, state, runtime, results, id)
-VALUES (1, 'test_user_1', '2024-03-01T15:31:41.579969Z', 1, '2024-03-01T15:31:41.579969Z', 'PENDING', 1, '{}' FORMAT JSON, 2);