Skip to content

Commit d00a6ec

Browse files
committed
initial commit
1 parent bf768d4 commit d00a6ec

24 files changed

+560
-0
lines changed

.classpath

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
<attribute name="test" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
<attribute name="test" value="true"/>
25+
</attributes>
26+
</classpathentry>
27+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-13">
28+
<attributes>
29+
<attribute name="maven.pomderived" value="true"/>
30+
</attributes>
31+
</classpathentry>
32+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
33+
<attributes>
34+
<attribute name="maven.pomderived" value="true"/>
35+
</attributes>
36+
</classpathentry>
37+
<classpathentry kind="output" path="target/classes"/>
38+
</classpath>

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
/target/

.gitlab-ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
image: maven:3.6.3-jdk-14
2+
3+
variables:
4+
MAVEN_CLI_OPTS: "-s ci_settings.xml --batch-mode"
5+
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
6+
7+
cache:
8+
paths:
9+
- .m2/repository/
10+
- target/
11+
12+
build:
13+
stage: build
14+
script:
15+
- mvn $MAVEN_CLI_OPTS compile
16+
17+
test:
18+
stage: test
19+
script:
20+
- mvn $MAVEN_CLI_OPTS test
21+
22+
deploy:
23+
script:
24+
- mvn $MAVEN_CLI_OPTS deploy
25+
only:
26+
- master

.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>serialization</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/main/resources=UTF-8
4+
encoding//src/test/java=UTF-8
5+
encoding//src/test/resources=UTF-8
6+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=13
3+
org.eclipse.jdt.core.compiler.compliance=13
4+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
5+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
6+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
7+
org.eclipse.jdt.core.compiler.release=enabled
8+
org.eclipse.jdt.core.compiler.source=13

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <https://unlicense.org>

ci_settings.xml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
4+
5+
<servers>
6+
<server>
7+
<id>gitlab-maven</id>
8+
<configuration>
9+
<httpHeaders>
10+
<property>
11+
<name>Job-Token</name>
12+
<value>${env.CI_JOB_TOKEN}</value>
13+
</property>
14+
</httpHeaders>
15+
</configuration>
16+
</server>
17+
</servers>
18+
19+
<profiles>
20+
<profile>
21+
<id>elite</id>
22+
<repositories>
23+
<repository>
24+
<id>gitlab-maven</id>
25+
<name>gitlab-maven</name>
26+
<url>https://gitlab.lan.elite-zettl.at/api/v4/projects/2/packages/maven</url>
27+
</repository>
28+
</repositories>
29+
</profile>
30+
</profiles>
31+
32+
<activeProfiles>
33+
<activeProfile>elite</activeProfile>
34+
</activeProfiles>
35+
36+
</settings>

deploy/docker-compose.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
version: '3'
2+
services:
3+
http-server:
4+
image: gufalcon/http-server:latest
5+
restart: always
6+
ports:
7+
- "1280:8080"
8+
- "12443:8443"
9+
environment:
10+
- HTTP_PORT=8080
11+
- HTTP_HOST=0.0.0.0
12+
- DB_DRIVER=mysql
13+
- DB_SERVER=db-container
14+
- DB_PORT=3306
15+
- DB_NAME=httpserver
16+
- DB_USER=httpserver
17+
- DB_PASSWORD=DP5V7hi7xgknaH39lDTX
18+
labels:
19+
- "traefik.enable=true"
20+
- "traefik.http-server.port=8080"
21+
- "traefik.http-server.backend=http-server"
22+
- "traefik.http-server.frontend.rule=Host:http-server.unterrainer.info"
23+
- "traefik.http-server.frontend.entryPoints=http,https"
24+
25+
db-container:
26+
image: mysql:latest
27+
restart: always
28+
ports:
29+
- 14300:3306
30+
environment:
31+
- MYSQL_ROOT_PASSWORD=Z4e2RzOC7O6XPncQZooa
32+
- MYSQL_DATABASE=httpserver
33+
- MYSQL_USER=httpserver
34+
- MYSQL_PASSWORD=DP5V7hi7xgknaH39lDTX
35+
volumes:
36+
- "/app/data/http-server/mysql-data/db:/var/lib/mysql"
37+
38+
networks:
39+
default:
40+
external:
41+
name: proxy_default

deploy/up.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
. ./.gitlab-env
3+
4+
mkdir -p /app/data/http-server/mysql-data
5+
6+
docker-compose pull
7+
docker-compose up -d --force-recreate --remove-orphans &

pom.xml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+
<parent>
6+
<groupId>info.unterrainer.commons</groupId>
7+
<artifactId>parent-pom</artifactId>
8+
<version>0.0.17</version>
9+
</parent>
10+
11+
<properties>
12+
<mainclass>info.unterrainer.commons.jreutils.JreUtils</mainclass>
13+
</properties>
14+
15+
<modelVersion>4.0.0</modelVersion>
16+
<artifactId>http-server</artifactId>
17+
<version>0.0.1</version>
18+
<name>HttpServer</name>
19+
<packaging>jar</packaging>
20+
21+
<dependencies>
22+
<!-- <dependency>
23+
<groupId>info.unterrainer.commons</groupId>
24+
<artifactId>rdb-utils</artifactId>
25+
<version>0.0.5</version>
26+
</dependency> -->
27+
<dependency>
28+
<groupId>info.unterrainer.commons</groupId>
29+
<artifactId>serialization</artifactId>
30+
<version>0.0.5</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>io.javalin</groupId>
34+
<artifactId>javalin</artifactId>
35+
<version>3.8.0</version>
36+
</dependency>
37+
<!-- <dependency>
38+
<groupId>javax.persistence</groupId>
39+
<artifactId>javax.persistence-api</artifactId>
40+
<version>2.2</version>
41+
</dependency> -->
42+
<dependency>
43+
<groupId>org.eclipse.jetty</groupId>
44+
<artifactId>jetty-server</artifactId>
45+
<version>9.4.25.v20191220</version>
46+
</dependency>
47+
</dependencies>
48+
49+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package info.unterrainer.commons.httpserver;
2+
3+
import java.util.Set;
4+
5+
import io.javalin.core.security.Role;
6+
import io.javalin.http.Handler;
7+
import io.javalin.http.HandlerType;
8+
import lombok.Builder;
9+
import lombok.Data;
10+
import lombok.Singular;
11+
import lombok.experimental.Accessors;
12+
13+
@Data
14+
@Builder
15+
@Accessors(fluent = true)
16+
class HandlerInstance {
17+
private HandlerType handlerType;
18+
private String path;
19+
private Handler handler;
20+
@Singular
21+
private Set<Role> roles;
22+
}

0 commit comments

Comments
 (0)