From 63d585b5d6191e32e9ed903a6a32137e155daafc Mon Sep 17 00:00:00 2001
From: grimsi <9295182+grimsi@users.noreply.github.com>
Date: Fri, 12 Aug 2022 23:36:47 +0200
Subject: [PATCH] Fixed some bugs related to the property files
---
.gitignore | 3 +-
backend/pom.xml | 6 ++++
.../grimsi/gameyfin/GameyfinApplication.java | 2 +-
.../gameyfin/config/SecureProperties.java | 2 +-
.../gameyfin/service/LibraryService.java | 8 ++----
...itional-spring-configuration-metadata.json | 9 ++++++
.../src/main/resources/application-dev.yml | 2 --
.../main/resources/config/database.properties | 13 ---------
.../src/main/resources/config/database.yml | 18 ++++++++++++
.../main/resources/config/gameyfin.properties | 28 -------------------
.../src/main/resources/config/gameyfin.yml | 19 +++++++++++++
.../main/resources/config/secure.properties | 19 -------------
backend/src/main/resources/config/secure.yml | 27 ++++++++++++++++++
docker/docker-compose.example.yml | 4 +++
14 files changed, 90 insertions(+), 70 deletions(-)
create mode 100644 backend/src/main/resources/META-INF/additional-spring-configuration-metadata.json
delete mode 100644 backend/src/main/resources/config/database.properties
create mode 100644 backend/src/main/resources/config/database.yml
delete mode 100644 backend/src/main/resources/config/gameyfin.properties
create mode 100644 backend/src/main/resources/config/gameyfin.yml
delete mode 100644 backend/src/main/resources/config/secure.properties
create mode 100644 backend/src/main/resources/config/secure.yml
diff --git a/.gitignore b/.gitignore
index 5d839f3..bbaa093 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,4 +36,5 @@ build/
### Custom ###
/data/
/backend/src/main/resources/static/
-/docker/docker-compose.yml
\ No newline at end of file
+/docker/docker-compose.yml
+/.gameyfin/
diff --git a/backend/pom.xml b/backend/pom.xml
index 9734656..6906b6d 100644
--- a/backend/pom.xml
+++ b/backend/pom.xml
@@ -16,12 +16,16 @@
18
+
1.6.9
1.7.1
2.11.0
1.21
3.11.4
3.21.3
+
+
+ 3.1.0
@@ -140,6 +144,7 @@
**/*.properties
**/*.yml
**/*.yaml
+ **/*.json
**/*.txt
**/*.js
**/*.css
@@ -166,6 +171,7 @@
maven-resources-plugin
+ ${maven-resources-plugin.version}
copy-resources
diff --git a/backend/src/main/java/de/grimsi/gameyfin/GameyfinApplication.java b/backend/src/main/java/de/grimsi/gameyfin/GameyfinApplication.java
index 4c79e1b..f17d349 100644
--- a/backend/src/main/java/de/grimsi/gameyfin/GameyfinApplication.java
+++ b/backend/src/main/java/de/grimsi/gameyfin/GameyfinApplication.java
@@ -8,7 +8,7 @@ public class GameyfinApplication {
public static void main(String[] args) {
new SpringApplicationBuilder(GameyfinApplication.class)
- .properties("spring.config.name=application,gameyfin,database,secure")
+ .properties( "file.encoding=UTF-8", "spring.config.name=application,gameyfin,database,secure")
.build()
.run(args);
}
diff --git a/backend/src/main/java/de/grimsi/gameyfin/config/SecureProperties.java b/backend/src/main/java/de/grimsi/gameyfin/config/SecureProperties.java
index 6d66527..3140b37 100644
--- a/backend/src/main/java/de/grimsi/gameyfin/config/SecureProperties.java
+++ b/backend/src/main/java/de/grimsi/gameyfin/config/SecureProperties.java
@@ -16,7 +16,7 @@ public class SecureProperties {
@Autowired
public void setConfigurableEnvironment(ConfigurableEnvironment env) {
try {
- Resource resource = new ClassPathResource("/config/secure.properties");
+ Resource resource = new ClassPathResource("/config/secure.yml");
env.getPropertySources().addFirst(new PropertiesPropertySource(Objects.requireNonNull(resource.getFilename()), PropertiesLoaderUtils.loadProperties(resource)));
} catch (Exception ex) {
throw new RuntimeException(ex.getMessage(), ex);
diff --git a/backend/src/main/java/de/grimsi/gameyfin/service/LibraryService.java b/backend/src/main/java/de/grimsi/gameyfin/service/LibraryService.java
index 49876e7..0f1770c 100644
--- a/backend/src/main/java/de/grimsi/gameyfin/service/LibraryService.java
+++ b/backend/src/main/java/de/grimsi/gameyfin/service/LibraryService.java
@@ -17,10 +17,7 @@ import org.springframework.util.StopWatch;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Map;
-import java.util.Optional;
+import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Stream;
@@ -42,7 +39,8 @@ public class LibraryService {
public List getGameFiles() {
List gamefiles = new ArrayList<>();
- libraryFolders.parallelStream().map(Path::of).forEach(folder -> {
+ libraryFolders.parallelStream().map(Path::of).forEach(
+ folder -> {
try (Stream stream = Files.list(folder)) {
// return all sub-folders (non-recursive) and files that have an extension that indicates that they are a downloadable file
List gameFilesFromThisFolder = stream.filter(p -> Files.isDirectory(p) || hasGameArchiveExtension(p)).toList();
diff --git a/backend/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/backend/src/main/resources/META-INF/additional-spring-configuration-metadata.json
new file mode 100644
index 0000000..41bd021
--- /dev/null
+++ b/backend/src/main/resources/META-INF/additional-spring-configuration-metadata.json
@@ -0,0 +1,9 @@
+{
+ "properties": [
+ {
+ "name": "gameyfin.root",
+ "type": "java.lang.String[]",
+ "description": "List of directories Gameyfin should scan for games."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/backend/src/main/resources/application-dev.yml b/backend/src/main/resources/application-dev.yml
index 30efaba..37e7822 100644
--- a/backend/src/main/resources/application-dev.yml
+++ b/backend/src/main/resources/application-dev.yml
@@ -1,8 +1,6 @@
gameyfin:
user: admin
password: password
- cache: ${gameyfin.root}\.gameyfin\cache
- db: ${gameyfin.root}\.gameyfin\db
logging:
level:
diff --git a/backend/src/main/resources/config/database.properties b/backend/src/main/resources/config/database.properties
deleted file mode 100644
index 6123b15..0000000
--- a/backend/src/main/resources/config/database.properties
+++ /dev/null
@@ -1,13 +0,0 @@
-# This file contains properties related to the database configuration
-#
-#
-spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true
-spring.datasource.db-name=gameyfin_db
-spring.datasource.url=jdbc:h2:file:${gameyfin.db}/${spring.datasource.db-name}
-spring.datasource.username=gfadmin
-spring.datasource.password=gameyfin
-spring.datasource.driverClassName=org.h2.Driver
-spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
-spring.jpa.hibernate.ddl-auto=update
-spring.jpa.open-in-view=true
-spring.jpa.properties.hibernate.event.merge.entity_copy_observer=allow
\ No newline at end of file
diff --git a/backend/src/main/resources/config/database.yml b/backend/src/main/resources/config/database.yml
new file mode 100644
index 0000000..7c473a2
--- /dev/null
+++ b/backend/src/main/resources/config/database.yml
@@ -0,0 +1,18 @@
+spring:
+ jpa:
+ open-in-view: 'true'
+ properties:
+ hibernate:
+ enable_lazy_load_no_trans: 'true'
+ event:
+ merge:
+ entity_copy_observer: allow
+ database-platform: org.hibernate.dialect.H2Dialect
+ hibernate:
+ ddl-auto: update
+ datasource:
+ username: gfadmin
+ url: jdbc:h2:file:${gameyfin.db}/${spring.datasource.db-name}
+ driverClassName: org.h2.Driver
+ db-name: gameyfin_db
+ password: gameyfin
\ No newline at end of file
diff --git a/backend/src/main/resources/config/gameyfin.properties b/backend/src/main/resources/config/gameyfin.properties
deleted file mode 100644
index 776836d..0000000
--- a/backend/src/main/resources/config/gameyfin.properties
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file contains properties related to the configuration of Gameyfin
-#
-#
-# Username and password for the web interface
-gameyfin.user=
-gameyfin.password=
-
-# Root folder of your game library
-gameyfin.root=
-# Folders where gameyfin will store cached images and the database
-gameyfin.cache=${gameyfin.root}/.gameyfin/cache
-gameyfin.db=${gameyfin.root}/.gameyfin/db
-
-# File extensions which gameyfin will recognize as game files
-gameyfin.file-extensions=iso, zip, rar, 7z, exe
-
-# List of IGDB platform enums to limit search results. For possible values see: https://api-docs.igdb.com/#platform
-gameyfin.igdb.config.preferred-platforms=6
-
-# Twitch Client ID and Client Secret
-gameyfin.igdb.api.client-id=
-gameyfin.igdb.api.client-secret=
-
-# The IGDB API has a rate limit of 4 req/s
-gameyfin.igdb.api.max-requests-per-second=4
-
-# According to the docs, there is a maximum of 8 concurrent requests, but in my tests the actual limit was 4 and even then it sometimes failed, so I set it to 2 to be sure
-gameyfin.igdb.api.max-concurrent-requests=2
\ No newline at end of file
diff --git a/backend/src/main/resources/config/gameyfin.yml b/backend/src/main/resources/config/gameyfin.yml
new file mode 100644
index 0000000..ec97065
--- /dev/null
+++ b/backend/src/main/resources/config/gameyfin.yml
@@ -0,0 +1,19 @@
+gameyfin:
+ user:
+ password:
+
+ root: //NAS-Simon/Öffentlich/Spiele, C:/gameyfin-library
+
+ db: ./.gameyfin/db
+ cache: ./.gameyfin/cache
+
+ file-extensions: iso, zip, rar, 7z, exe
+
+ igdb:
+ api:
+ client-id:
+ client-secret:
+ max-concurrent-requests: 2
+ max-requests-per-second: 4
+ config:
+ preferred-platforms: 6
\ No newline at end of file
diff --git a/backend/src/main/resources/config/secure.properties b/backend/src/main/resources/config/secure.properties
deleted file mode 100644
index cda7c4e..0000000
--- a/backend/src/main/resources/config/secure.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-# This file contains properties that are *NOT* safe to override by the user
-# In theory a user should not be able to override them since they will be loaded from the classpath at launch, overriding existing user properties with the same key
-#
-#
-# System Info
-application.name=Gameyfin
-application.version=@project.version@
-# API
-server.servlet.context-path=/
-# Spring Actuator
-management.endpoints.enabled-by-default=false
-management.endpoint.health.enabled=true
-# Server
-server.error.include-stacktrace=never
-spring.mvc.async.request-timeout=-1
-# Jackson JSON Mapping
-spring.jackson.default-property-inclusion=non_null
-spring.jackson.mapper.accept-case-insensitive-enums=true
-spring.jackson.deserialization.fail-on-unknown-properties=false
diff --git a/backend/src/main/resources/config/secure.yml b/backend/src/main/resources/config/secure.yml
new file mode 100644
index 0000000..cf80710
--- /dev/null
+++ b/backend/src/main/resources/config/secure.yml
@@ -0,0 +1,27 @@
+application:
+ version: '@project.version@'
+ name: Gameyfin
+
+server:
+ servlet:
+ context-path: /
+ error:
+ include-stacktrace: never
+
+spring:
+ jackson:
+ deserialization:
+ fail-on-unknown-properties: false
+ default-property-inclusion: non_null
+ mapper:
+ accept-case-insensitive-enums: true
+ mvc:
+ async:
+ request-timeout: -1
+
+management:
+ endpoint:
+ health:
+ enabled: true
+ endpoints:
+ enabled-by-default: false
\ No newline at end of file
diff --git a/docker/docker-compose.example.yml b/docker/docker-compose.example.yml
index 265152c..5c2e439 100644
--- a/docker/docker-compose.example.yml
+++ b/docker/docker-compose.example.yml
@@ -8,6 +8,10 @@ services:
- gameyfin.password=
- gameyfin.igdb.api.client-id=
- gameyfin.igdb.api.client-secret=
+ # The following two environment variables only need to be set if you have more than one library folder.
+ # If you have just one you can safely delete them.
+ - gameyfin.cache=/.gameyfin/cache
+ - gameyfin.db=/.gameyfin/db
volumes:
- :/opt/gameyfin-library
ports: