Compare commits
83 Commits
6e00a1b829
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 42398dad21 | |||
|
|
281c25b05d | ||
|
|
1beb5c2eee | ||
|
|
461f2de8dc | ||
|
|
75a7c409cd | ||
|
|
751c302036 | ||
|
|
f0e1ad39b0 | ||
|
|
1dc84023d0 | ||
|
|
30465c7833 | ||
|
|
d260f00756 | ||
|
|
f0ac4b7e56 | ||
|
|
bd45beadd5 | ||
|
|
f060c9771f | ||
| d563d81584 | |||
|
|
0ab71166aa | ||
|
|
d9c5d242ec | ||
| 380d0a8332 | |||
|
|
cb1e7a2fed | ||
|
|
3586704cce | ||
| 301bd7acbd | |||
|
|
7f3b58c5bc | ||
|
|
f29e8a4dac | ||
| 05e25aa3d1 | |||
|
|
b69130c2b2 | ||
|
|
77aabef4a9 | ||
|
|
4b699de853 | ||
|
|
e3cb7282bc | ||
|
|
e537839e28 | ||
|
|
44d441811c | ||
|
|
da1efa5a74 | ||
| ecae88af78 | |||
| c7a306e8fa | |||
|
|
14cd5f04d5 | ||
|
|
7e533fae49 | ||
|
|
8393f154e5 | ||
|
|
c956869e8a | ||
|
|
4eabb3b766 | ||
|
|
146dedd9b4 | ||
|
|
6076194497 | ||
|
|
9cde1ab78b | ||
|
|
f5facaa811 | ||
|
|
78015298ec | ||
|
|
b4e1c50ea3 | ||
|
|
5da11d2e4d | ||
|
|
e8a50e55ca | ||
|
|
530e544542 | ||
|
|
300dce9835 | ||
|
|
a98def915e | ||
|
|
7aa7970f2e | ||
|
|
e517720b03 | ||
|
|
402913d877 | ||
|
|
2014abe660 | ||
|
|
80834d8652 | ||
| 45de2a576c | |||
|
|
7bc98c03e4 | ||
|
|
bf1caefde4 | ||
|
|
6983186caf | ||
| e1ad5f7205 | |||
|
|
7c93966878 | ||
| 14341b7a63 | |||
|
|
31d20f1bff | ||
|
|
6507afea5f | ||
|
|
387ce6e08e | ||
|
|
f822fc8a8e | ||
|
|
67c746f18b | ||
| 803481ca8e | |||
|
|
1e65cb47da | ||
|
|
ec96e21517 | ||
|
|
46f80df165 | ||
|
|
5c3d78245f | ||
|
|
f5045c3cf0 | ||
|
|
696c50f0fc | ||
|
|
b8bdbf0a8d | ||
|
|
1ea9596006 | ||
|
|
cdbe71eaec | ||
|
|
125a00819d | ||
|
|
b4c31374c0 | ||
|
|
c8b7f5ec2e | ||
| 46a8d5a77a | |||
|
|
0528334eb4 | ||
|
|
e033d716dd | ||
| 96c1d0260b | |||
|
|
e195d5d189 |
36
.gitea/workflows/code-analysis.yml
Normal file → Executable file
36
.gitea/workflows/code-analysis.yml
Normal file → Executable file
@@ -6,13 +6,30 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
|
if: github.event_name == 'push' && github.ref == 'refs/heads/dev'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
||||||
|
with:
|
||||||
|
clean: true
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Ensure clean workspace
|
||||||
|
run: |
|
||||||
|
git reset --hard HEAD
|
||||||
|
git clean -fdx
|
||||||
|
|
||||||
|
- name: Debug dependency files
|
||||||
|
run: |
|
||||||
|
echo "commit: $(git rev-parse HEAD)"
|
||||||
|
echo "branch ref: ${GITHUB_REF:-unknown}"
|
||||||
|
echo "package.json checksum:" && sha256sum package.json
|
||||||
|
echo "package-lock.json checksum:" && sha256sum package-lock.json
|
||||||
|
echo "eslint entries in package.json:" && rg '"eslint"' package.json || true
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
||||||
with:
|
with:
|
||||||
node-version: 22
|
node-version: 22
|
||||||
cache: npm
|
cache: npm
|
||||||
@@ -72,7 +89,11 @@ jobs:
|
|||||||
rm -f gitleaks.tar.gz
|
rm -f gitleaks.tar.gz
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: |
|
||||||
|
if ! npm ci; then
|
||||||
|
echo "WARNING: npm ci fehlgeschlagen (Lockfile-Drift?). Fallback auf npm install."
|
||||||
|
npm install
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
@@ -95,12 +116,11 @@ jobs:
|
|||||||
chmod +x osv-scanner
|
chmod +x osv-scanner
|
||||||
./osv-scanner --version
|
./osv-scanner --version
|
||||||
test -f ./package-lock.json
|
test -f ./package-lock.json
|
||||||
./osv-scanner --lockfile ./package-lock.json
|
./osv-scanner scan -L ./package-lock.json --config ./.osv-scanner.toml
|
||||||
|
|
||||||
deploy-production:
|
deploy-production:
|
||||||
needs: analyze
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
steps:
|
steps:
|
||||||
- name: Prepare SSH
|
- name: Prepare SSH
|
||||||
run: |
|
run: |
|
||||||
@@ -126,7 +146,7 @@ jobs:
|
|||||||
-o BatchMode=yes \
|
-o BatchMode=yes \
|
||||||
-p "${{ vars.PROD_PORT }}" \
|
-p "${{ vars.PROD_PORT }}" \
|
||||||
"${{ vars.PROD_USER }}@${{ vars.PROD_HOST }}" \
|
"${{ vars.PROD_USER }}@${{ vars.PROD_HOST }}" \
|
||||||
"bash -lc 'cd /var/www/harheimertc && git fetch origin main && git checkout -B main origin/main && git reset --hard origin/main && ./deploy-production.sh'"
|
"bash -lc 'cd /var/www/harheimertc && git reset --hard HEAD && git fetch origin main && git checkout -B main origin/main && git reset --hard origin/main && ./deploy-production.sh'"
|
||||||
|
|
||||||
deploy-test:
|
deploy-test:
|
||||||
needs: analyze
|
needs: analyze
|
||||||
@@ -157,4 +177,4 @@ jobs:
|
|||||||
-o BatchMode=yes \
|
-o BatchMode=yes \
|
||||||
-p "${{ vars.PROD_PORT }}" \
|
-p "${{ vars.PROD_PORT }}" \
|
||||||
"${{ vars.PROD_USER }}@${{ vars.PROD_HOST }}" \
|
"${{ vars.PROD_USER }}@${{ vars.PROD_HOST }}" \
|
||||||
"bash -lc 'cd /var/www/harheimertc.test && git fetch origin dev && git checkout -B dev origin/dev && git reset --hard origin/dev && ./deploy-test.sh'"
|
"bash -lc 'cd /var/www/harheimertc.test && git reset --hard HEAD && git fetch origin dev && git checkout -B dev origin/dev && git reset --hard origin/dev && ./deploy-test.sh'"
|
||||||
|
|||||||
0
.gitea/workflows/version-gate.yml
Normal file → Executable file
0
.gitea/workflows/version-gate.yml
Normal file → Executable file
6
.github/workflows/android-ci.yml
vendored
Normal file → Executable file
6
.github/workflows/android-ci.yml
vendored
Normal file → Executable file
@@ -10,14 +10,14 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
- name: Cache Gradle
|
- name: Cache Gradle
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.gradle/caches
|
~/.gradle/caches
|
||||||
|
|||||||
1
.gitignore
vendored
Normal file → Executable file
1
.gitignore
vendored
Normal file → Executable file
@@ -93,6 +93,7 @@ dist
|
|||||||
/android-app/.kotlin/
|
/android-app/.kotlin/
|
||||||
/android-app/**/build/
|
/android-app/**/build/
|
||||||
/android-app/local.properties
|
/android-app/local.properties
|
||||||
|
/android-app/gradle-local.properties
|
||||||
|
|
||||||
# Build output (but keep production data!)
|
# Build output (but keep production data!)
|
||||||
.output
|
.output
|
||||||
|
|||||||
7
.gitleaks.toml
Executable file
7
.gitleaks.toml
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
[[allowlists]]
|
||||||
|
description = "generated/imported non-secret data"
|
||||||
|
paths = [
|
||||||
|
'''server/data/spielplan-import/harheimer_tc_spielplan\.(html|json)$''',
|
||||||
|
'''android-app/app/build/.*''',
|
||||||
|
'''android-app/\.idea/planningMode\.xml$''',
|
||||||
|
]
|
||||||
3
.gitleaksignore
Executable file
3
.gitleaksignore
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
google-services.json:gcp-api-key:18
|
||||||
|
google-services.json:gcp-api-key:37
|
||||||
|
google-services.json:gcp-api-key:56
|
||||||
4
.osv-scanner.toml
Normal file
4
.osv-scanner.toml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[[IgnoredVulns]]
|
||||||
|
id = "GHSA-v3m3-f69x-jf25"
|
||||||
|
ignoreUntil = 2026-12-31
|
||||||
|
reason = "Temporary exception: Quill 2.0.3 is required by the current RichTextEditor implementation, and OSV currently reports no fixed version. Track upstream fix and remove this ignore once a patched release is available."
|
||||||
0
.semgrepignore
Normal file → Executable file
0
.semgrepignore
Normal file → Executable file
0
ANDROID_ARCHITECTURE.md
Normal file → Executable file
0
ANDROID_ARCHITECTURE.md
Normal file → Executable file
241
ANDROID_KOTLIN_PLAN.md
Normal file → Executable file
241
ANDROID_KOTLIN_PLAN.md
Normal file → Executable file
@@ -41,7 +41,7 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
[x] 4. CI-Build: Gradle-Config und GitHub Actions Skeleton
|
[x] 4. CI-Build: Gradle-Config und GitHub Actions Skeleton
|
||||||
[x] 5. Theme: `Color.kt`, `Typography.kt`, `Theme.kt` erstellen und Tailwind-Farben mappen
|
[x] 5. Theme: `Color.kt`, `Typography.kt`, `Theme.kt` erstellen und Tailwind-Farben mappen
|
||||||
[x] 6. Fonts: Inter + Montserrat einbinden (res/font oder GoogleFonts)
|
[x] 6. Fonts: Inter + Montserrat einbinden (res/font oder GoogleFonts)
|
||||||
[ ] 7. Navigation: Compose Navigation-Graph mit Routen für alle Web-Seiten anlegen
|
[x] 7. Navigation: Compose Navigation-Graph mit Routen für alle Web-Seiten anlegen
|
||||||
[x] 7a. Umgebungen: Android-Varianten fuer lokal, Test-Instanz und Produktion mit eigener API-Basis konfigurieren
|
[x] 7a. Umgebungen: Android-Varianten fuer lokal, Test-Instanz und Produktion mit eigener API-Basis konfigurieren
|
||||||
[x] 7b. Adaptive Navigation: Tablet mit persistentem Header/Hauptmenue, Smartphone mit bestehender screenbezogener Navigation
|
[x] 7b. Adaptive Navigation: Tablet mit persistentem Header/Hauptmenue, Smartphone mit bestehender screenbezogener Navigation
|
||||||
[x] 7c. Branding: vorhandenes Web-Logo als optimierte Android-Ressource in der App-Navigation verwenden
|
[x] 7c. Branding: vorhandenes Web-Logo als optimierte Android-Ressource in der App-Navigation verwenden
|
||||||
@@ -69,35 +69,34 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
- [x] `/training/trainer`
|
- [x] `/training/trainer`
|
||||||
- [x] `/training/anfaenger`
|
- [x] `/training/anfaenger`
|
||||||
- [x] `/tt-regeln`: Regelübersicht mit DTTB- und PDF-Aufruf
|
- [x] `/tt-regeln`: Regelübersicht mit DTTB- und PDF-Aufruf
|
||||||
[ ] 10a. Weitere öffentliche bzw. bestehende Web-Routen prüfen und portieren
|
[x] 10a. Weitere öffentliche bzw. bestehende Web-Routen prüfen und portieren
|
||||||
- [ ] `/anlagen`
|
- [x] `/impressum`
|
||||||
- [ ] `/impressum`
|
- [x] Legacy-/Doppelrouten geklärt: `/galerie`, `/geschichte`, `/satzung`, `/ueber-uns`, `/spielplan`, `/verein/tt-regeln`, `/mannschaft/[slug]`, `/mannschaften/herren`, `/mannschaften/damen`, `/mannschaften/jugend`
|
||||||
- [ ] Legacy-/Doppelrouten klären: `/galerie`, `/geschichte`, `/satzung`, `/ueber-uns`, `/spielplan`, `/verein/tt-regeln`, `/mannschaft/[slug]`, `/mannschaften/herren`, `/mannschaften/damen`, `/mannschaften/jugend`
|
[x] 10b. Newsletter-Screens portieren
|
||||||
[ ] 10b. Newsletter-Screens portieren
|
- [x] `/newsletter/subscribe`
|
||||||
- [ ] `/newsletter/subscribe`
|
- [x] `/newsletter/unsubscribe`
|
||||||
- [ ] `/newsletter/unsubscribe`
|
- [x] `/newsletter/confirm`, `/newsletter/confirmed`, `/newsletter/unsubscribed`
|
||||||
- [ ] `/newsletter/confirm`, `/newsletter/confirmed`, `/newsletter/unsubscribed`
|
|
||||||
[x] 10c. Auth-Screens portieren
|
[x] 10c. Auth-Screens portieren
|
||||||
- [x] `/login`: Passwort-Login und Logout in der laufenden Sitzung
|
- [x] `/login`: Passwort-Login und Logout in der laufenden Sitzung
|
||||||
- [x] `/registrieren`
|
- [x] `/registrieren`
|
||||||
- [x] `/passwort-vergessen`
|
- [x] `/passwort-vergessen`
|
||||||
[ ] 10d. Mitgliederbereich portieren
|
[x] 10d. Mitgliederbereich portieren
|
||||||
- [ ] `/mitgliederbereich`: Übersicht
|
- [x] `/mitgliederbereich`: Übersicht
|
||||||
- [ ] `/mitgliederbereich/mitglieder`
|
- [x] `/mitgliederbereich/mitglieder`
|
||||||
- [ ] `/mitgliederbereich/news`
|
- [x] `/mitgliederbereich/news`
|
||||||
- [ ] `/mitgliederbereich/profil`
|
- [x] `/mitgliederbereich/profil`
|
||||||
- [ ] `/mitgliederbereich/api`
|
- [x] `/mitgliederbereich/api`
|
||||||
[ ] 10e. CMS-Screens nach Rollenberechtigung portieren
|
[x] 10e. CMS-Screens nach Rollenberechtigung portieren
|
||||||
- [ ] `/cms`, `/cms/startseite`, `/cms/inhalte`, `/cms/vereinsmeisterschaften`
|
- [x] `/cms`, `/cms/startseite`, `/cms/inhalte`, `/cms/vereinsmeisterschaften`
|
||||||
- [ ] `/cms/sportbetrieb`, `/cms/mitgliederverwaltung`, `/cms/kontaktanfragen`
|
- [x] `/cms/sportbetrieb`, `/cms/mitgliederverwaltung`, `/cms/kontaktanfragen`
|
||||||
- [ ] `/cms/newsletter`, `/cms/einstellungen`, `/cms/benutzer`
|
- [x] `/cms/newsletter`, `/cms/einstellungen`, `/cms/benutzer`
|
||||||
[ ] 11. API-Client: Retrofit/Ktor-Client implementieren, Auth-Interceptor (Token Refresh)
|
[x] 11. API-Client: Retrofit/Ktor-Client implementieren, Auth-Interceptor (Token Refresh)
|
||||||
- [x] Retrofit/OkHttp/Moshi und Hilt-Verdrahtung
|
- [x] Retrofit/OkHttp/Moshi und Hilt-Verdrahtung
|
||||||
- [x] Öffentliche Endpunkte für Startseite, Termine, Spielplan, Galerie und Kontakt
|
- [x] Öffentliche Endpunkte für Startseite, Termine, Spielplan, Galerie und Kontakt
|
||||||
- [x] Mitgliedschafts-PDF-Endpunkte mit Cookie-Jar und `FileProvider`
|
- [x] Mitgliedschafts-PDF-Endpunkte mit Cookie-Jar und `FileProvider`
|
||||||
- [x] Passwort-Login-Endpunkt und Token-Übergabe an den Interceptor
|
- [x] Passwort-Login-Endpunkt und Token-Übergabe an den Interceptor
|
||||||
- [x] Verschlüsselte Token-Persistenz sowie Status/Logout per Bearer-Token
|
- [x] Verschlüsselte Token-Persistenz sowie Status/Logout per Bearer-Token
|
||||||
- [ ] Bearer-Unterstützung aller später portierten geschützten Bereiche
|
- [x] Bearer-Unterstützung aller später portierten geschützten Bereiche (`/api/profile`, `/api/birthdays`, `/api/members`, `/api/news`, CMS-/Newsletter-/Galerie-Endpunkte erledigt); Web bleibt bewusst Cookie-basiert
|
||||||
- [x] `POST /api/auth/refresh` anbinden und Access-Token bei Ablauf automatisch erneuern
|
- [x] `POST /api/auth/refresh` anbinden und Access-Token bei Ablauf automatisch erneuern
|
||||||
- [x] OkHttp-`Authenticator` mit genau einem synchronisierten Refresh-Versuch pro fehlgeschlagenem Request ergänzen
|
- [x] OkHttp-`Authenticator` mit genau einem synchronisierten Refresh-Versuch pro fehlgeschlagenem Request ergänzen
|
||||||
[x] 12. Auth: Login/Register/Logout + sichere Token-Speicherung (EncryptedSharedPreferences)
|
[x] 12. Auth: Login/Register/Logout + sichere Token-Speicherung (EncryptedSharedPreferences)
|
||||||
@@ -109,18 +108,46 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
- [x] Backend: Logout, Kontodeaktivierung und Passwortänderung widerrufen betroffene Refresh-Sitzungen
|
- [x] Backend: Logout, Kontodeaktivierung und Passwortänderung widerrufen betroffene Refresh-Sitzungen
|
||||||
- [x] App: Access- und Refresh-Token verschlüsselt speichern, Sitzung beim App-Start durch Refresh wiederherstellen
|
- [x] App: Access- und Refresh-Token verschlüsselt speichern, Sitzung beim App-Start durch Refresh wiederherstellen
|
||||||
- [ ] Optional nach MVP: pro Installation ein nicht exportierbares Keystore-Schlüsselpaar erzeugen und Refresh-Requests daran binden
|
- [ ] Optional nach MVP: pro Installation ein nicht exportierbares Keystore-Schlüsselpaar erzeugen und Refresh-Requests daran binden
|
||||||
[ ] 13. Passkeys: Integration prüfen (FIDO2 / Passkeys) und Fallback auf Passwort
|
[x] 13. Passkeys: Integration prüfen (FIDO2 / Passkeys) und Fallback auf Passwort
|
||||||
[ ] 14. Image-Upload: Multipart-Upload + Coil für Anzeige + Bildkompression (u. a. Sharp-Äquivalent evtl. serverseitig)
|
- [x] Passkey-Login über Android Credential Manager an bestehende WebAuthn-Endpunkte anbinden
|
||||||
[ ] 15. Rich-Text: Anzeige von HTML (Compose + WebView) und ggf. Editor via WebView-bridge
|
- [x] Passkey-Erstellung und -Entfernung im nativen Profil ergänzen
|
||||||
[ ] 16. Formulare: Validierung (clientseitig) und Fehlerdarstellung
|
- [x] Backend-Passkey-Endpunkte für Android-Bearer-Token und Android-Refresh-Sitzungen erweitern
|
||||||
[ ] 17. Offline & Caching: Room für persistente Daten, Response-Caching, Sync-Strategie
|
- [ ] Für Produktion `/.well-known/assetlinks.json` mit Package `de.harheimertc` und Release-Zertifikat-Fingerprint veröffentlichen
|
||||||
[ ] 18. Lokalisierung: `strings.xml` (DE + EN) und i18n-Check
|
[x] 14. Image-Upload: Multipart-Upload + Coil für Anzeige + Bildkompression (u. a. Sharp-Äquivalent evtl. serverseitig)
|
||||||
[ ] 19. Accessibility: ContentDescription, Focus, Farben/Kontrast prüfen
|
[x] 15. Rich-Text: Anzeige von HTML (Compose + WebView) und ggf. Editor via WebView-bridge
|
||||||
|
- [x] Gemeinsame native HTML/Rich-Text-Komponente für CMS- und News-Inhalte ergänzt
|
||||||
|
- [x] Öffentliche CMS-Seiten, Startseiten-News und interne News rendern HTML-Inhalte nativ
|
||||||
|
- [x] Nativer Rich-Text-Editor für CMS-Inhalte ergänzt; Toolbar schreibt Quill-kompatible HTML-Fragmente und speichert denselben HTML-String wie die Web-UI
|
||||||
|
[x] 16. Formulare: Validierung (clientseitig) und Fehlerdarstellung
|
||||||
|
- [x] Gemeinsame validierte Textfelder mit Inline-Fehlern ergänzt
|
||||||
|
- [x] Kontakt, Login, Passwort-Reset, Registrierung, Newsletter, Profil und Mitgliedschaft zeigen Feldfehler direkt am Eingabefeld
|
||||||
|
[x] 17. Offline & Caching: Room für persistente Daten, Response-Caching, Sync-Strategie
|
||||||
|
- [x] Zentraler OkHttp-Cache für öffentliche GET-Antworten ergänzt; Offline-Fallback nutzt gecachte Antworten bis 7 Tage
|
||||||
|
- [x] Zentraler Coil-ImageLoader mit gemeinsamem OkHttp-Client, Memory-Cache und 75-MB-Diskcache ergänzt
|
||||||
|
- [x] Verschlüsselte persistente Offline-Daten für geschützte Mitglieder-/CMS-Inhalte mit `EncryptedSharedPreferences` implementiert
|
||||||
|
[x] 18. Lokalisierung: `strings.xml` (DE + EN) und i18n-Check
|
||||||
|
- [x] App-Name und neue Galerie-Upload-Texte in deutsche und englische Ressourcen ausgelagert
|
||||||
|
- [x] i18n-Check durchgeführt; ältere Compose-Harttexte bleiben als separate, risikoarme Nachmigration offen
|
||||||
|
[x] 19. Accessibility: ContentDescription, Focus, Farben/Kontrast prüfen
|
||||||
[ ] 20. Tests: Unit-Tests für ViewModels + UI-Tests mit Compose Testing
|
[ ] 20. Tests: Unit-Tests für ViewModels + UI-Tests mit Compose Testing
|
||||||
[ ] 21. Performance: Bildoptimierung, LazyLists, Paging (falls große Daten)
|
- [x] Erste JVM-Unit-Tests für gemeinsame Formularvalidierung ergänzt
|
||||||
|
- [x] ViewModel-Tests für Auth-/CMS-/Galerie-Flows ergänzen
|
||||||
|
- [ ] Compose-UI-Tests für kritische Screens ergänzen
|
||||||
|
- [x] Hilt androidTest dependencies und `kspAndroidTest` konfiguriert
|
||||||
|
- [x] `HiltTestApplication` in `androidTest`-Manifest gesetzt
|
||||||
|
- [x] `LoginScreenTest` zu `@HiltAndroidTest` migriert und `HiltAndroidRule` hinzugefügt
|
||||||
|
- [x] `TestHiltModules.kt` für androidTest hinzugefügt (Test‑Bindings bereitgestellt)
|
||||||
|
[x] 21. Performance: Bildoptimierung, LazyLists, Paging (falls große Daten)
|
||||||
[ ] 22. Analytics: Firebase / Matomo Integration (je nach Datenschutz)
|
[ ] 22. Analytics: Firebase / Matomo Integration (je nach Datenschutz)
|
||||||
[ ] 23. Crash-Reporting: Sentry / Crashlytics integrieren
|
[x] 23. Crash-Reporting: Sentry / Crashlytics integrieren
|
||||||
[ ] 24. Build/Release: App signing, Release-Notes, Play-Store-Metadaten vorbereiten
|
[ ] 24. Build/Release: App signing, Release-Notes, Play-Store-Metadaten vorbereiten
|
||||||
|
- [x] Technische Release-Basis vorbereitet: `ANDROID_VERSION_CODE` und `ANDROID_VERSION_NAME` als Gradle-Properties eingeführt (`android-app/gradle.properties`) und im App-Gradle verdrahtet.
|
||||||
|
- [x] Production-Release-Flavor auf Produktiv-Backend parametrisierbar gemacht (`PRODUCTION_API_BASE_URL`, Default `https://harheimertc.de/`).
|
||||||
|
- [x] Release-Signing per sicheren Gradle-Properties vorbereitet (`RELEASE_STORE_FILE`, `RELEASE_STORE_PASSWORD`, `RELEASE_KEY_ALIAS`, `RELEASE_KEY_PASSWORD`) statt Hardcoding.
|
||||||
|
- [x] `:app:assembleProductionRelease` erfolgreich gebaut (Stand 2026-05-29).
|
||||||
|
- [x] Play-Store-Listing-Basis ergänzt: Datenschutzseite unter `/datenschutz` sowie Skripte für Icon/Feature-Graphic-Export und Screenshot-Anonymisierung inklusive Anleitung (`android-app/PLAYSTORE_ASSETS.md`).
|
||||||
|
- [x] Konto-Lösch-URL für Play Store ergänzt: öffentliche Seite unter `/konto-loeschen` inklusive Prozessbeschreibung.
|
||||||
|
- [ ] Offen: Finales Upload-Keystore + Credentials in CI/Build-Host hinterlegen, Play-Store-Release-Notes und Store-Metadaten pflegen.
|
||||||
[ ] 25. Dokumentation: `README-android.md` mit Setup, Architektur und Release-Anleitung
|
[ ] 25. Dokumentation: `README-android.md` mit Setup, Architektur und Release-Anleitung
|
||||||
|
|
||||||
5) Kurzzeit-MVP (Priorität für erste Version)
|
5) Kurzzeit-MVP (Priorität für erste Version)
|
||||||
@@ -130,15 +157,15 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
- [x] Dauerhaftes Eingeloggtbleiben durch rotierendes Refresh-Token pro Android-Gerätesitzung
|
- [x] Dauerhaftes Eingeloggtbleiben durch rotierendes Refresh-Token pro Android-Gerätesitzung
|
||||||
- [x] B. Home, Termine, Spielplan, Galerie (anzeigen)
|
- [x] B. Home, Termine, Spielplan, Galerie (anzeigen)
|
||||||
- [x] C. Kontaktformular (absenden)
|
- [x] C. Kontaktformular (absenden)
|
||||||
- [ ] D. Bildanzeige + Caching
|
- [x] D. Bildanzeige + Caching
|
||||||
- [x] E. Theme & Fonts
|
- [x] E. Theme & Fonts
|
||||||
|
|
||||||
6) Nächste Aktionen (sofort)
|
6) Nächste Aktionen (sofort)
|
||||||
- Web-Login bei Bedarf auf denselben Refresh-Flow migrieren; bis dahin bleiben Web-Cookie-Sitzungen bewusst kompatibel.
|
- Web-Login bei Bedarf auf denselben Refresh-Flow migrieren; bis dahin bleiben Web-Cookie-Sitzungen bewusst kompatibel.
|
||||||
- Passkey-Anmeldung über Android Credential Manager anbinden.
|
- Release-Zertifikat erzeugen und Digital Asset Links für native Android-Passkeys veröffentlichen.
|
||||||
- Die noch fehlenden öffentlichen Routen aus `10a` und die Newsletter-Screens aus `10b` nativ portieren.
|
- Die noch fehlenden öffentlichen Routen aus `10a` und die Newsletter-Screens aus `10b` nativ portieren.
|
||||||
- Saisonwahl für Mannschaftsübersicht/-details wie in der Web-UI ergänzen.
|
- Saisonwahl für Mannschaftsübersicht/-details wie in der Web-UI ergänzen.
|
||||||
- Mitgliederbereich/CMS-Screens portieren; dabei rollenabhängige `Intern`-Navigation und Bearer-Unterstützung der verwendeten Backend-Endpunkte ergänzen.
|
- Weitere offene Punkte nach Priorität abarbeiten; die API-/Bearer-Basis für die portierten geschützten Android-Screens ist abgeschlossen.
|
||||||
|
|
||||||
7) Umsetzungsprotokoll
|
7) Umsetzungsprotokoll
|
||||||
- 2026-05-27: Webnahe Startseite mit öffentlichen Live-Daten umgesetzt; Hilt/Moshi-App-Verdrahtung ergänzt.
|
- 2026-05-27: Webnahe Startseite mit öffentlichen Live-Daten umgesetzt; Hilt/Moshi-App-Verdrahtung ergänzt.
|
||||||
@@ -159,6 +186,20 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
- 2026-05-27: Die verbleibenden öffentlichen Screens aus Punkt 10 portiert: Verein/CMS-Inhalte, Vorstand, Satzung/PDF, Links, Vereinsmeisterschaften mit Personenbild-Dialog, Spielsysteme und TT-Regeln.
|
- 2026-05-27: Die verbleibenden öffentlichen Screens aus Punkt 10 portiert: Verein/CMS-Inhalte, Vorstand, Satzung/PDF, Links, Vereinsmeisterschaften mit Personenbild-Dialog, Spielsysteme und TT-Regeln.
|
||||||
- 2026-05-27: Architektur für dauerhaftes Android-Login festgelegt: kein eingebetteter App-Key, sondern kurzlebige Access-Tokens und rotierende, widerrufbare Refresh-Tokens pro Gerätesitzung; optionale spätere Gerätebindung per Keystore-Schlüsselpaar.
|
- 2026-05-27: Architektur für dauerhaftes Android-Login festgelegt: kein eingebetteter App-Key, sondern kurzlebige Access-Tokens und rotierende, widerrufbare Refresh-Tokens pro Gerätesitzung; optionale spätere Gerätebindung per Keystore-Schlüsselpaar.
|
||||||
- 2026-05-27: Dauerhaftes Android-Login umgesetzt: Android-Logins erhalten 15-Minuten-Access-Tokens und rotierende Refresh-Tokens; Token-Hashes, Wiederverwendungswiderruf, Logout-/Reset-/Deaktivierungswiderruf sowie verschlüsselte App-Speicherung und automatischer OkHttp-Refresh sind implementiert.
|
- 2026-05-27: Dauerhaftes Android-Login umgesetzt: Android-Logins erhalten 15-Minuten-Access-Tokens und rotierende Refresh-Tokens; Token-Hashes, Wiederverwendungswiderruf, Logout-/Reset-/Deaktivierungswiderruf sowie verschlüsselte App-Speicherung und automatischer OkHttp-Refresh sind implementiert.
|
||||||
|
- 2026-05-27: Native Profilseite des Mitgliederbereichs umgesetzt; `/api/profile` akzeptiert nun Bearer-Tokens, die App kann Profil-/Sichtbarkeitsdaten bearbeiten und Passwortänderungen auslösen.
|
||||||
|
- 2026-05-27: Login leitet in der Android-App nun direkt zur Mitgliederbereich-Übersicht weiter; `/mitgliederbereich` ist nativ mit Kacheln und Geburtstagsliste umgesetzt, `/api/birthdays` akzeptiert Bearer-Tokens.
|
||||||
|
- 2026-05-28: 10d und 10e abgeschlossen: Mitgliederliste, interne News, API-Doku sowie alle CMS-Routen sind nativ angebunden; relevante Mitglieder-/News-/CMS-Endpunkte akzeptieren Bearer-Tokens.
|
||||||
|
- 2026-05-28: 10a und 10b abgeschlossen: Impressum, Newsletter-An-/Abmeldung und Newsletter-Statusseiten sind nativ umgesetzt; Legacy-/Doppelrouten im Android-NavGraph auf native Screens abgebildet. Abgleich `pages/` gegen Android-Routen ergab keine verbleibenden Platzhalter-Webseiten. `/anlagen` wurde anschließend als ungenutzte und inhaltlich falsche Seite in Web und Android entfernt.
|
||||||
|
- 2026-05-28: Android-Passkeys umgesetzt: Login nutzt Android Credential Manager mit den bestehenden WebAuthn-Optionen, das native Profil kann Passkeys erstellen/entfernen, und die Backend-Passkey-Endpunkte akzeptieren Bearer-Tokens sowie erzeugen beim Android-Passkey-Login rotierende Refresh-Sitzungen. Für Produktion fehlt noch die Domain-App-Verknüpfung per Digital Asset Links mit Release-Zertifikat.
|
||||||
|
- 2026-05-28: Punkte 15 und 16 umgesetzt: Gemeinsame `RichText`-Komponente rendert HTML-Inhalte nativ in CMS-/News-Screens; Formularvalidierung wurde mit Inline-Feldfehlern für Kontakt, Auth, Newsletter, Profil und Mitgliedschaft ergänzt.
|
||||||
|
- 2026-05-28: Rich-Text-Editor nativ umgesetzt: `/cms/inhalte` kann Über-uns, Geschichte, TT-Regeln und Satzung mit Android-Toolbar bearbeiten; gespeichert wird weiterhin HTML in `seiten.*` über `PUT /api/config`, kompatibel zur Web-/Quill-Ausgabe.
|
||||||
|
- 2026-05-28: Punkt 14 umgesetzt: Android-Galerie nutzt den strukturierten `/api/galerie/list`-Response, lädt Bilder über Coil aus `/api/media/galerie/:id`, und Admin/Vorstand kann Bilder nativ auswählen, lokal auf JPEG/2000px/85% komprimieren und per Multipart an `/api/galerie/upload` senden.
|
||||||
|
- 2026-05-28: Punkt 18 umgesetzt: `strings.xml` für Deutsch und Englisch ergänzt, App-Label und neue Galerie-Upload-UI auf Ressourcen umgestellt; i18n-Check weist die bestehenden älteren Compose-Harttexte als spätere Nachmigration aus.
|
||||||
|
- 2026-05-28: Punkt 11 abgeschlossen: Android sendet Bearer-Tokens zentral per OkHttp-Interceptor; die portierten geschützten Backend-Endpunkte akzeptieren Cookie- oder Bearer-Authentifizierung. Die Web-UI bleibt absichtlich bei HttpOnly-Cookie-Sessions und muss nicht auf Bearer umgestellt werden.
|
||||||
|
- 2026-05-28: Caching-Teil von Punkt 17 und MVP-D umgesetzt: OkHttp cached öffentliche GET-Antworten und nutzt gecachte Antworten offline, Coil nutzt denselben authentifizierten Client plus Memory-/Diskcache. Geschützte Daten werden bewusst nicht unverschlüsselt im HTTP-Diskcache persistiert.
|
||||||
|
- 2026-05-28: Testbasis für Punkt 20 begonnen: JVM-Unit-Tests für E-Mail- und ISO-Datum-Validierung ergänzt; `:app:testLocalDebugUnitTest` läuft mit `compileSdk 35` grün.
|
||||||
|
- 2026-05-28: Punkte 17, 19, 21 und 23 weiter umgesetzt: geschützte Mitglieder-/CMS-Daten werden verschlüsselt in Keystore-gestützten Preferences gecacht und bei Ladefehlern genutzt; Galerie-Accessibility und Thumbnail-Decoding verbessert; Sentry-Android 8.42.0 über optionalen `SENTRY_DSN`-Gradle-Parameter integriert.
|
||||||
|
- 2026-05-29: Play-Store-Listing-Vorbereitung ergänzt: eigenständige Web-Datenschutzseite (`/datenschutz`) sowie Asset-/Anonymisierungs-Skripte und Anleitung in `android-app/PLAYSTORE_ASSETS.md` hinzugefügt.
|
||||||
|
|
||||||
8) Android-Testumgebungen
|
8) Android-Testumgebungen
|
||||||
- Lokal im Emulator: `./gradlew :app:installLocalDebug` verwendet `http://10.0.2.2:3100/` und die App-ID `de.harheimertc.local`.
|
- Lokal im Emulator: `./gradlew :app:installLocalDebug` verwendet `http://10.0.2.2:3100/` und die App-ID `de.harheimertc.local`.
|
||||||
@@ -167,6 +208,27 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
- Produktion: `./gradlew :app:installProductionDebug` verwendet `https://harheimertc.de/` und die App-ID `de.harheimertc`.
|
- Produktion: `./gradlew :app:installProductionDebug` verwendet `https://harheimertc.de/` und die App-ID `de.harheimertc`.
|
||||||
- Nur APKs erzeugen: `./gradlew :app:assembleLocalDebug :app:assembleInstantTestDebug :app:assembleProductionDebug`.
|
- Nur APKs erzeugen: `./gradlew :app:assembleLocalDebug :app:assembleInstantTestDebug :app:assembleProductionDebug`.
|
||||||
|
|
||||||
|
8a) Aktueller Teststatus & Troubleshooting (Stand: 2026-05-28)
|
||||||
|
|
||||||
|
- **Status:** `:app:assembleAndroidTest` läuft durch; `:app:connectedAndroidTest` ist derzeit instabil und schlägt bei Instrumentation-Läufen fehl.
|
||||||
|
- **Beobachtete Probleme:**
|
||||||
|
- Kompilationsfehler in `LoginScreenTest.kt` wegen `HiltTestActivity` (Unresolved reference). Workaround: `createAndroidComposeRule<ComponentActivity>()` + `setContent{}` verwenden, damit `assembleAndroidTest` durchläuft.
|
||||||
|
- Laufzeit-/Device-Probleme bei `connectedAndroidTest`: `com.android.ddmlib.SyncException: Remote object doesn't exist!` und `DELETE_FAILED_INTERNAL_ERROR` beim Deinstallieren von Test-APKs.
|
||||||
|
- `AndroidTestLogcatPlugin` wirft `FileNotFoundException` für erwartete Log-/Crash-Dateien, weil Gradle/UTP manche Device-Artefakte nicht zuverlässig pulled.
|
||||||
|
- Einzelne Instrumentation-Tests (z. B. `CmsActivateResendTest`, `GalleryScreenTest`) zeigen Assertion-Fehlschläge — diese sollten isoliert reproduziert werden.
|
||||||
|
- **Kurzfristige Empfehlungen (nicht ausführen):**
|
||||||
|
- Emulator neu starten und sicherstellen, dass keine veralteten Test-APKs installiert sind.
|
||||||
|
- Manuell: `adb uninstall` der Test-Pakete, dann frisches `adb install -r` des Test-APKs und gezielter Einzeltest via:
|
||||||
|
|
||||||
|
`adb shell am instrument -w -e class <test-class>#<testMethod> de.harheimertc.test/androidx.test.runner.AndroidJUnitRunner`
|
||||||
|
|
||||||
|
parallel `adb logcat -v time > /tmp/harheimertc_live_logcat.txt` laufen lassen, um vollständige Logs zu speichern.
|
||||||
|
- Falls UTP/ddmlib `SyncException` weiter auftritt: Gradle-Parallelität reduzieren, Test-Plugins (z. B. `AndroidTestLogcatPlugin`) temporär deaktivieren oder Tests in kleinere Gruppen splitten.
|
||||||
|
- **Offene Test‑To‑Dos:**
|
||||||
|
- Reproduzierbaren Einzeltest-Run mit vollständigem `logcat` erfassen (derzeit vom Nutzer pausiert).
|
||||||
|
- Flaky Tests isolieren und Hilt/KSP-Setup prüfen, damit `HiltTestActivity`-Importe nicht mehr fehlschlagen.
|
||||||
|
- Langfristig: Tests aufteilen, flaky tests markieren und CI-Job für androidTests gegen UTP-Transient-Fehler härten.
|
||||||
|
|
||||||
9) Dauerhaftes Android-Login: Architektur und Umsetzung
|
9) Dauerhaftes Android-Login: Architektur und Umsetzung
|
||||||
- Stand der Umsetzung: Android-Logins erhalten ein ca. 15 Minuten gültiges JWT und eine serverseitig prüfbare Refresh-Sitzung; Access-Tokens mit Sitzungs-ID werden bei widerrufener Gerätesitzung abgelehnt. Web-Logins verwenden weiterhin das bisherige Cookie-JWT, bis ein browserseitiger Refresh-Flow ergänzt ist.
|
- Stand der Umsetzung: Android-Logins erhalten ein ca. 15 Minuten gültiges JWT und eine serverseitig prüfbare Refresh-Sitzung; Access-Tokens mit Sitzungs-ID werden bei widerrufener Gerätesitzung abgelehnt. Web-Logins verwenden weiterhin das bisherige Cookie-JWT, bis ein browserseitiger Refresh-Flow ergänzt ist.
|
||||||
- Ziel: Ein Benutzer bleibt auf einem bekannten Gerät angemeldet, ohne dass ein langfristig gültiges Bearer-JWT oder ein extrahierbares App-Secret verwendet wird.
|
- Ziel: Ein Benutzer bleibt auf einem bekannten Gerät angemeldet, ohne dass ein langfristig gültiges Bearer-JWT oder ein extrahierbares App-Secret verwendet wird.
|
||||||
@@ -195,3 +257,116 @@ Kurz: Ziel ist eine native Android-App mit Kotlin + Jetpack Compose, die die Web
|
|||||||
|
|
||||||
---
|
---
|
||||||
Datei: [ANDROID_KOTLIN_PLAN.md](ANDROID_KOTLIN_PLAN.md)
|
Datei: [ANDROID_KOTLIN_PLAN.md](ANDROID_KOTLIN_PLAN.md)
|
||||||
|
|
||||||
|
**CMS-Verbesserungsplan (Analyse → Umsetzung)**
|
||||||
|
|
||||||
|
Ziel: Alle `cms/*`-Screens von rudimentärem Status zu vollständigen, getesteten Admin-Tools weiterentwickeln. Fokus: Datenintegrität, Berechtigungen, bessere UI/UX, Offline-Verhalten und Tests.
|
||||||
|
|
||||||
|
Kurzüberblick (3 Phasen):
|
||||||
|
- Phase A — Analyse (1-2 Tage): Inventar aller CMS-Endpunkte, fehlende CRUD-Workflows identifizieren, Prioritäten setzen (News, Benutzer, Kontaktanfragen, Newsletter, Config). Ergebnis: Aufgabenliste mit Aufwandsschätzung.
|
||||||
|
- Phase B — Implementierung MVP (1-2 Wochen): Kernfunktionen pro Bereich implementieren (News CRUD mit RichText-Vorschau, Benutzerliste + Rollen-Edit, Kontaktanfragen Detail & Antwort-Workflow, Newsletter-Gruppen-Management, Config-Editor inklusive Satzung-PDF-Feld). Unit- / Integrationstests für ViewModels.
|
||||||
|
- Phase C — Harden, UX & Tests (1 Woche): Validierung, Fehlermeldungen, Offline-Caching (verschlüsselt für geschützte Daten), Compose-UI-Tests, Accessibility-, Performance-Feinschliff.
|
||||||
|
|
||||||
|
Detaillierte Aufgaben (priorisiert):
|
||||||
|
- A1: Audit `CmsViewModel`-State vs. Backend-Responses — fehlen Felder/Fehlerfälle? (bereits teilweise umgesetzt)
|
||||||
|
- A2: Prüfen, ob API-Fehler (4xx/5xx) sauber an `FormMessages`/UI gemeldet werden — Standardisiere Fehlermeldungen.
|
||||||
|
- A3: Prüfen, ob `NativeRichTextEditor` HTML speichert, das Web-Editor-kompatibel bleibt (Quill/HTML). Schreibe Roundtrip-Tests.
|
||||||
|
- B1: News-Management
|
||||||
|
- B1.1: News-CRUD: Create/Update/Delete mit Vorschau (RichText-Preview) und Validierung (Titel Pflicht, Inhalt Mindestlänge)
|
||||||
|
- B1.2: Bulk-Aktionen: Sichtbar/Unsichtbar/ExpiresAt setzen
|
||||||
|
- B1.3: Unit-Tests für `NewsViewModel` + `CmsViewModel`-Integrationspfad
|
||||||
|
- B2: Benutzer-Management
|
||||||
|
- B2.1: Rollen-Edit (admin/vorstand/trainer/newsletter) in `CmsBenutzerScreen` (Inline-Action oder Detail-Dialog)
|
||||||
|
- B2.2: Aktiv/Inaktiv Toggle + Resend-Invite (falls API unterstützt)
|
||||||
|
- B2.3: Tests: `CmsViewModel.users()` Verhalten bei Pagination/Leeren Listen
|
||||||
|
- B3: Kontaktanfragen
|
||||||
|
- B3.1: Detailansicht mit Antwort-Option (falls Backend Mail-Sende-Endpunkt vorhanden)
|
||||||
|
- B3.2: Status-Filter (offen/beantwortet) und Bulk-Archiv
|
||||||
|
- B4: Newsletter
|
||||||
|
- B4.1: Entwurf -> Senden Flow mit Preview (falls Backend zulässt)
|
||||||
|
- B4.2: Gruppenverwaltung (CRUD) + Subscribe/Unsubscribe-Preview
|
||||||
|
- B5: Config / Seiten (Inhalte)
|
||||||
|
- B5.1: Sichern/Zurücksetzen von Seiteninhalten mit Undo-Hinweis
|
||||||
|
- B5.2: Satzung: PDF-Upload-Feld und native PDF-Viewer-Integration (falls serverseitig gespeichert)
|
||||||
|
- B5.6: Android-Startseite weiter ausbauen: Nutzer sollen Elemente und Reihenfolge der Startseite selbst zusammenstellen koennen; Detailkonzept und Feinschliff folgen spaeter
|
||||||
|
- B6: Diagnostics / Passwort-Reset-Diagnose
|
||||||
|
- B6.1: Detail-View mit exportierbaren Logs (bei Bedarf)
|
||||||
|
- C1: Offline-/Caching-Strategie
|
||||||
|
- C1.1: Verschlüsseltes lokales Caching für CMS-Daten (EncryptedSharedPreferences/Room)
|
||||||
|
- C1.2: Sync-Strategie: lokale Änderungen buffernd senden, Konflikt-UI
|
||||||
|
- C2: Tests & CI
|
||||||
|
- C2.1: ViewModel-Unit-Tests für alle CMS-Flows
|
||||||
|
- C2.2: Compose-UI-Tests für kritische Pfade (News erstellen, Benutzerrolle ändern, Config speichern)
|
||||||
|
- C2.3: androidTest Hilt-Stubs erweitern (falls nötig)
|
||||||
|
|
||||||
|
Minor UX-Verbesserungen (parallel möglich):
|
||||||
|
- konsistente Buttons/Labels (`Speichern` vs `Inhalt speichern`), Ladezustand-UI, einzeilige Success-/Error-Banner, Inline-Validierungen.
|
||||||
|
|
||||||
|
Deliverables & Milestones:
|
||||||
|
- M1 (nach Analyse): Priorisierte Aufgabenliste + Schätzung (mehrere PRs)
|
||||||
|
- M2 (nach MVP-Implementierung): News + Benutzer + ContactRequests + Config Editor + Tests (smoke)
|
||||||
|
- M3 (Final): Offline, UI-Tests, Accessibility, Performance
|
||||||
|
|
||||||
|
Zeitplanung (empfohlen):
|
||||||
|
- Analyse: 2 Arbeitstage
|
||||||
|
- MVP-Implementierung: 7–10 Arbeitstage
|
||||||
|
- Hardening + Tests: 3–5 Arbeitstage
|
||||||
|
|
||||||
|
Wenn du willst, trage ich die einzelnen Subtickets in unserem lokalen Issue-Tracker (oder als separate TODOs) ein und beginne mit A1/A2.
|
||||||
|
|
||||||
|
**TODO (zum Abhaken) — CMS-Implementierung**
|
||||||
|
|
||||||
|
- [x] A1: Audit `CmsViewModel` vs Backend-Responses (Fehleraggregation implementiert)
|
||||||
|
- [x] A2: Standardisiere API-Fehlerdarstellung in UI (`FormMessages` / globale Errors)
|
||||||
|
- [x] A3: Roundtrip-Tests `NativeRichTextEditor` ↔ Backend-HTML (Kompatibilität / Quill)
|
||||||
|
- [x] B1: News-Management
|
||||||
|
- [x] B1.1: News-CRUD (Create/Update/Delete) mit RichText-Vorschau
|
||||||
|
- [x] B1.2: Bulk-Aktionen (sichtbar/unsichtbar, expiresAt)
|
||||||
|
- [x] B1.3: Unit-Tests für `NewsViewModel`
|
||||||
|
|
||||||
|
- [x] B2: Benutzer-Management
|
||||||
|
- [x] B2.1: Rollen-Edit (Inline oder Detail-Dialog)
|
||||||
|
- [x] B2.2: Aktiv/Inaktiv Toggle, Resend-Invite
|
||||||
|
- [x] B2.3: Tests für Pagination/Leere Listen
|
||||||
|
|
||||||
|
- [x] B3: Kontaktanfragen
|
||||||
|
- [x] B3.1: Detailansicht + Antwort-Option
|
||||||
|
- [x] B3.2: Status-Filter + Archiv
|
||||||
|
|
||||||
|
- [ ] B4: Newsletter
|
||||||
|
- [x] B4.1: Entwurf → Senden Flow mit Preview
|
||||||
|
- [x] B4.2: Gruppenverwaltung (CRUD)
|
||||||
|
|
||||||
|
- [x] B5: Config / Seiten
|
||||||
|
- Web‑Status: Die Web‑UI bietet bereits umfassende CMS‑UIs für `cms/startseite`, `cms/vereinsmeisterschaften`, `cms/sportbetrieb` und `cms/einstellungen` (Drag&Drop, CSV‑Import/Export, Tabbed‑UIs, ImageUpload, native‑like Modals). `cms/startseite` speichert `homepage.sections` via `PUT /api/config`, `vereinsmeisterschaften` arbeitet mit CSV‑Export/Import, `sportbetrieb` kapselt Termine/Mannschaften/Spielpläne in Tabs, `einstellungen` ist ein umfangreicher Config‑Editor.
|
||||||
|
- Android‑Status: Implementiert — die Android‑App enthält native CMS‑Screens (`CmsStartseiteScreen`, `CmsVereinsmeisterschaftenScreen`, `CmsSportbetriebScreen`, `CmsEinstellungenScreen`) mit Save/Load‑Flows via `CmsViewModel`.
|
||||||
|
- Umsetzung (B5.x):
|
||||||
|
- [x] B5.1: `cms/startseite` (Startseiten‑Layout) — Reorderable/Visibility + Save → `PUT /api/config` (via `CmsViewModel`).
|
||||||
|
- [x] B5.2: `cms/vereinsmeisterschaften` — CSV‑Parser/CSV‑Save integration and modal CRUD (native UI present).
|
||||||
|
- [x] B5.3: `cms/sportbetrieb` — Tabbed UI reusing `Termine`, `Mannschaften`, `Spielplan` components.
|
||||||
|
- [x] B5.4: `cms/einstellungen` — Tabbed config editor with Vereinsdaten/Training/Trainer/Mitgliedschaft and save.
|
||||||
|
- [x] B5.5: Roundtrip & Tests — basic ViewModel unit tests and roundtrip checks exist; Compose UI smoke tests remain for hardening.
|
||||||
|
- [x] B5.6: Startseite weiter ausgebaut — zusaetzliche Elemente (`training`, `links`, `vereinsmeisterschaften`) sind konfigurierbar; Android kann Reihenfolge/Sichtbarkeit lokal speichern und Web nutzt Marker (`cookie`, `eingeloggt`) mit marker-spezifischer Persistenz: `eingeloggt` wird als individuelles User-Setting serverseitig gespeichert, `cookie` wird ausschliesslich im Browser-Cookie gehalten. Neu umgesetzt: konfigurierbare Startseiten-Widgets vom Typ `spielplan_team` (Saison + Mannschaft beim Hinzufuegen waehlbar, spaeter jederzeit aenderbar, mehrfach pro Startseite moeglich, persistiert ueber `key` + `config`).
|
||||||
|
|
||||||
|
- [x] B6: Diagnostics / Passwort-Reset-Diagnose (Export/Detail)
|
||||||
|
- Web‑Status: `cms/passwort-reset-diagnose` zeigt vollständige Diagnose‑UI mit Suche, Maskierung, Filter (nur Auffälligkeiten) und listbaren Reset‑Versuchen; Backend: `/api/cms/password-reset-diagnostics` liefert `matchingUsers`, `attempts`, `retentionHours`.
|
||||||
|
- Android‑Status: umgesetzt — native Diagnose‑UI mit Suche (`email`/Name), Filter `Nur Auffälligkeiten`, `matchingUsers`‑Liste mit Schnellfilter, detaillierter Schrittansicht je Versuch (Zeit/Schritt/Status/Grund), Refresh und Share‑Export der maskierten Logs.
|
||||||
|
- Konkrete Android‑ToDos (B6.x):
|
||||||
|
- [x] B6.1: Implementieren Suche + Filter UI, Rendering der `attempts` mit Zeitstempeln, Status‑Badges und Details.
|
||||||
|
- [x] B6.2: Logs exportieren / share (falls API Export unterstützt) und Datenschutz: E‑Mail Maskierung beibehalten.
|
||||||
|
|
||||||
|
- [x] C1: Offline-/Caching-Strategie (verschlüsselt für geschützte CMS-Daten)
|
||||||
|
- Umgesetzt: EncryptedSharedPreferences-basierter Offline-Cache mit Zeitstempel/TTL pro Cache-Key (CMS standard 24h, Reset-Diagnose 6h).
|
||||||
|
- Umgesetzt: Fallback auf verschlüsselte Cache-Daten bei Ladefehlern nur innerhalb der TTL, um veraltete geschützte CMS-Daten zu begrenzen.
|
||||||
|
- Umgesetzt: Gezielte Cache-Invalidierung bei schreibenden CMS-Operationen (Konfiguration, Benutzerverwaltung, Kontaktanfragen, Newsletter, interne News), damit Offline-Daten nach Änderungen konsistent bleiben.
|
||||||
|
- Umgesetzt: Passwort-Reset-Diagnose-Cache wird nur für den Standardfilter (ohne Suchbegriff) verwendet, um falsche Treffer bei gefilterten Diagnosen zu vermeiden.
|
||||||
|
- [x] C2: Tests & CI
|
||||||
|
- [x] C2.1: ViewModel-Unit-Tests für CMS-Flows (`CmsViewModel.load()` / `saveConfig()`)
|
||||||
|
- Status: `:app:testLocalDebugUnitTest` läuft grün; `CmsViewModelTest` wurde auf aktuelle Repository-Signaturen und vollständige `load()`-Abhängigkeiten (inkl. `vereinsmeisterschaften`) aktualisiert.
|
||||||
|
- [x] C2.2: Compose-UI-Tests für kritische Flows
|
||||||
|
- Status: neuer Instrumentation-Test für `CmsPasswordResetDiagnosticsScreen` ergänzt (`diagnosticsScreen_showsFilterAndAttemptDetails`) und gezielt per `connectedLocalDebugAndroidTest` erfolgreich ausgeführt.
|
||||||
|
- [x] C2.3: androidTest Hilt-Stubs erweitern (falls nötig)
|
||||||
|
- Status: androidTest-ApiService-Stubs und Hilt-Testmodul auf neue `passwordResetDiagnostics(email, failedOnly)`-Signatur erweitert; `:app:assembleLocalDebugAndroidTest` läuft grün.
|
||||||
|
|
||||||
|
Markiere die Items, wenn erledigt — ich kann die einzelnen Punkte jetzt in Branches/PRs umsetzen.
|
||||||
|
|
||||||
|
|||||||
0
ANDROID_PORT_TODO.md
Normal file → Executable file
0
ANDROID_PORT_TODO.md
Normal file → Executable file
0
ANDROID_REPO_ENDPOINTS.md
Normal file → Executable file
0
ANDROID_REPO_ENDPOINTS.md
Normal file → Executable file
0
AUTH_README.md
Normal file → Executable file
0
AUTH_README.md
Normal file → Executable file
0
DATENSCHUTZ.md
Normal file → Executable file
0
DATENSCHUTZ.md
Normal file → Executable file
0
DATENSCHUTZ_UEBERSICHT.md
Normal file → Executable file
0
DATENSCHUTZ_UEBERSICHT.md
Normal file → Executable file
0
DEPLOYMENT.md
Normal file → Executable file
0
DEPLOYMENT.md
Normal file → Executable file
92
android-app/PLAYSTORE_ASSETS.md
Executable file
92
android-app/PLAYSTORE_ASSETS.md
Executable file
@@ -0,0 +1,92 @@
|
|||||||
|
# Play Store Assets - Harheimer TC Android
|
||||||
|
|
||||||
|
## 1) Datenschutzerklaerung (Web-URL)
|
||||||
|
|
||||||
|
Empfohlene URL fuer Play Console:
|
||||||
|
- https://harheimertc.de/datenschutz
|
||||||
|
|
||||||
|
Die Seite ist in der Web-App als eigene Route vorhanden.
|
||||||
|
|
||||||
|
## 1b) Konto-Loeschung (Web-URL)
|
||||||
|
|
||||||
|
Empfohlene URL fuer Play Console:
|
||||||
|
- https://harheimertc.de/konto-loeschen
|
||||||
|
|
||||||
|
Die Seite beschreibt den Loeschprozess und Kontaktweg fuer App- und Webkonto.
|
||||||
|
|
||||||
|
## 2) Logo / Grafiken
|
||||||
|
|
||||||
|
### Pflicht
|
||||||
|
- App-Icon (Play): 512 x 512 PNG
|
||||||
|
|
||||||
|
### Optional, aber empfohlen
|
||||||
|
- Feature Graphic: 1024 x 500 PNG
|
||||||
|
|
||||||
|
### Generierung
|
||||||
|
|
||||||
|
Im Repo ist ein Script vorhanden, das aus dem Vereinslogo fertige Dateien erzeugt:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/playstore-assets.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Ausgabe in:
|
||||||
|
- android-app/playstore-assets/generated/playstore-icon-512.png
|
||||||
|
- android-app/playstore-assets/generated/playstore-feature-graphic-1024x500.png
|
||||||
|
|
||||||
|
## 3) Screenshots (anonymisiert)
|
||||||
|
|
||||||
|
### Zielgroessen fuer Store-Upload
|
||||||
|
- Telefon (Portrait): 1080 x 1920
|
||||||
|
- Medium 7" Tablet (Portrait): 1200 x 1920
|
||||||
|
- 10" Tablet (Portrait): 1600 x 2560
|
||||||
|
|
||||||
|
Alle Dateien als PNG oder JPEG.
|
||||||
|
|
||||||
|
### Anonymisierung
|
||||||
|
|
||||||
|
Script fuer schwarze halbtransparente Balken ueber sensible Bereiche:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/anonymize-playstore-screenshot.sh <input.png> <output.png> 'x,y,w,h;x,y,w,h'
|
||||||
|
```
|
||||||
|
|
||||||
|
Beispiel:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/anonymize-playstore-screenshot.sh \
|
||||||
|
android-app/playstore-assets/raw/screen1.png \
|
||||||
|
android-app/playstore-assets/anon/screen1-anon.png \
|
||||||
|
'68,118,520,72;70,706,560,98'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Zielprofile erzeugen (Telefon, 7", 10")
|
||||||
|
|
||||||
|
Aus allen Dateien in `android-app/playstore-assets/anon` werden die drei Profile erzeugt:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/playstore-screenshot-sizes.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Optional mit eigenen Ordnern:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/playstore-screenshot-sizes.sh \
|
||||||
|
--input-dir android-app/playstore-assets/anon \
|
||||||
|
--output-dir android-app/playstore-assets/final
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
- android-app/playstore-assets/final/phone
|
||||||
|
- android-app/playstore-assets/final/tablet-7
|
||||||
|
- android-app/playstore-assets/final/tablet-10
|
||||||
|
|
||||||
|
## 4) Upload in Play Console
|
||||||
|
|
||||||
|
- Datenschutzerklaerung: URL eintragen
|
||||||
|
- Konto-Loeschung: URL eintragen
|
||||||
|
- App-Icon: playstore-icon-512.png
|
||||||
|
- Feature Graphic: playstore-feature-graphic-1024x500.png
|
||||||
|
- Screenshots Telefon: Dateien aus `.../final/phone`
|
||||||
|
- Screenshots 7" Tablet: Dateien aus `.../final/tablet-7`
|
||||||
|
- Screenshots 10" Tablet: Dateien aus `.../final/tablet-10`
|
||||||
196
android-app/app/build.gradle.kts
Normal file → Executable file
196
android-app/app/build.gradle.kts
Normal file → Executable file
@@ -1,3 +1,5 @@
|
|||||||
|
import java.util.Properties
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
id("com.android.application")
|
||||||
id("com.google.devtools.ksp")
|
id("com.google.devtools.ksp")
|
||||||
@@ -5,20 +7,121 @@ plugins {
|
|||||||
id("com.google.dagger.hilt.android")
|
id("com.google.dagger.hilt.android")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (file("google-services.json").exists()) {
|
||||||
|
apply(plugin = "com.google.gms.google-services")
|
||||||
|
}
|
||||||
|
|
||||||
val localApiBaseUrl = providers.gradleProperty("LOCAL_API_BASE_URL")
|
val localApiBaseUrl = providers.gradleProperty("LOCAL_API_BASE_URL")
|
||||||
.orElse("http://10.0.2.2:3100/")
|
.orElse("https://harheimertc.tsschulz.de/")
|
||||||
.get()
|
.get()
|
||||||
|
val productionApiBaseUrl = providers.gradleProperty("PRODUCTION_API_BASE_URL")
|
||||||
|
.orElse("https://harheimertc.de/")
|
||||||
|
.get()
|
||||||
|
val expectedProductionApiBaseUrl = "https://harheimertc.de/"
|
||||||
|
val sentryDsn = providers.gradleProperty("SENTRY_DSN")
|
||||||
|
.orElse("")
|
||||||
|
.get()
|
||||||
|
val androidVersionCode = providers.gradleProperty("ANDROID_VERSION_CODE")
|
||||||
|
.orElse("2")
|
||||||
|
.get()
|
||||||
|
.toInt()
|
||||||
|
val androidVersionName = providers.gradleProperty("ANDROID_VERSION_NAME")
|
||||||
|
.orElse("1.0.0")
|
||||||
|
.get()
|
||||||
|
val releaseMinifyEnabled = providers.gradleProperty("RELEASE_MINIFY_ENABLED")
|
||||||
|
.orElse("true")
|
||||||
|
.get()
|
||||||
|
.toBoolean()
|
||||||
|
|
||||||
|
val localSigningProperties = Properties().apply {
|
||||||
|
val localSigningFile = rootProject.file("gradle-local.properties")
|
||||||
|
if (localSigningFile.exists()) {
|
||||||
|
localSigningFile.inputStream().use { load(it) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun signingProperty(name: String): String? =
|
||||||
|
providers.gradleProperty(name).orNull
|
||||||
|
?: providers.environmentVariable(name).orNull
|
||||||
|
?: localSigningProperties.getProperty(name)
|
||||||
|
|
||||||
|
val releaseStoreFile = signingProperty("RELEASE_STORE_FILE")
|
||||||
|
val releaseStorePassword = signingProperty("RELEASE_STORE_PASSWORD")
|
||||||
|
val releaseKeyAlias = signingProperty("RELEASE_KEY_ALIAS")
|
||||||
|
val releaseKeyPassword = signingProperty("RELEASE_KEY_PASSWORD")
|
||||||
|
val hasReleaseSigning = !releaseStoreFile.isNullOrBlank() &&
|
||||||
|
!releaseStorePassword.isNullOrBlank() &&
|
||||||
|
!releaseKeyAlias.isNullOrBlank() &&
|
||||||
|
!releaseKeyPassword.isNullOrBlank()
|
||||||
|
|
||||||
|
val ensureReleaseSigning = tasks.register("ensureReleaseSigning") {
|
||||||
|
doFirst {
|
||||||
|
if (!hasReleaseSigning) {
|
||||||
|
throw GradleException(
|
||||||
|
"Production release signing is not configured. " +
|
||||||
|
"Set RELEASE_STORE_FILE, RELEASE_STORE_PASSWORD, RELEASE_KEY_ALIAS and RELEASE_KEY_PASSWORD " +
|
||||||
|
"(e.g. via ~/.gradle/gradle.properties, environment variables, or android-app/gradle-local.properties)."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val ensureProductionApiBaseUrl = tasks.register("ensureProductionApiBaseUrl") {
|
||||||
|
doFirst {
|
||||||
|
if (productionApiBaseUrl != expectedProductionApiBaseUrl) {
|
||||||
|
throw GradleException(
|
||||||
|
"Production Play Store builds must use $expectedProductionApiBaseUrl, but PRODUCTION_API_BASE_URL is $productionApiBaseUrl."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "de.harheimertc"
|
namespace = "de.harheimertc"
|
||||||
compileSdk = 34
|
compileSdk = 35
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "de.harheimertc"
|
applicationId = "de.harheimertc"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 34
|
targetSdk = 35
|
||||||
versionCode = 1
|
versionCode = androidVersionCode
|
||||||
versionName = "0.1.0"
|
versionName = androidVersionName
|
||||||
|
}
|
||||||
|
|
||||||
|
lint {
|
||||||
|
disable += setOf(
|
||||||
|
"AutoboxingStateCreation",
|
||||||
|
"MutableCollectionMutableState",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
create("release") {
|
||||||
|
if (hasReleaseSigning) {
|
||||||
|
storeFile = file(releaseStoreFile!!)
|
||||||
|
storePassword = releaseStorePassword
|
||||||
|
keyAlias = releaseKeyAlias
|
||||||
|
keyPassword = releaseKeyPassword
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
getByName("release") {
|
||||||
|
isMinifyEnabled = releaseMinifyEnabled
|
||||||
|
isShrinkResources = false
|
||||||
|
ndk {
|
||||||
|
// Generate a native debug symbols archive for Play Console uploads.
|
||||||
|
debugSymbolLevel = "SYMBOL_TABLE"
|
||||||
|
}
|
||||||
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro",
|
||||||
|
)
|
||||||
|
if (hasReleaseSigning) {
|
||||||
|
signingConfig = signingConfigs.getByName("release")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
flavorDimensions += "environment"
|
flavorDimensions += "environment"
|
||||||
@@ -28,6 +131,7 @@ android {
|
|||||||
applicationIdSuffix = ".local"
|
applicationIdSuffix = ".local"
|
||||||
versionNameSuffix = "-local"
|
versionNameSuffix = "-local"
|
||||||
buildConfigField("String", "API_BASE_URL", "\"$localApiBaseUrl\"")
|
buildConfigField("String", "API_BASE_URL", "\"$localApiBaseUrl\"")
|
||||||
|
buildConfigField("String", "SENTRY_DSN", "\"\"")
|
||||||
buildConfigField("String", "ENVIRONMENT_NAME", "\"LOCAL\"")
|
buildConfigField("String", "ENVIRONMENT_NAME", "\"LOCAL\"")
|
||||||
manifestPlaceholders["usesCleartextTraffic"] = "true"
|
manifestPlaceholders["usesCleartextTraffic"] = "true"
|
||||||
}
|
}
|
||||||
@@ -36,12 +140,14 @@ android {
|
|||||||
applicationIdSuffix = ".test"
|
applicationIdSuffix = ".test"
|
||||||
versionNameSuffix = "-test"
|
versionNameSuffix = "-test"
|
||||||
buildConfigField("String", "API_BASE_URL", "\"https://harheimertc.tsschulz.de/\"")
|
buildConfigField("String", "API_BASE_URL", "\"https://harheimertc.tsschulz.de/\"")
|
||||||
|
buildConfigField("String", "SENTRY_DSN", "\"$sentryDsn\"")
|
||||||
buildConfigField("String", "ENVIRONMENT_NAME", "\"TEST\"")
|
buildConfigField("String", "ENVIRONMENT_NAME", "\"TEST\"")
|
||||||
manifestPlaceholders["usesCleartextTraffic"] = "false"
|
manifestPlaceholders["usesCleartextTraffic"] = "false"
|
||||||
}
|
}
|
||||||
create("production") {
|
create("production") {
|
||||||
dimension = "environment"
|
dimension = "environment"
|
||||||
buildConfigField("String", "API_BASE_URL", "\"https://harheimertc.de/\"")
|
buildConfigField("String", "API_BASE_URL", "\"$productionApiBaseUrl\"")
|
||||||
|
buildConfigField("String", "SENTRY_DSN", "\"$sentryDsn\"")
|
||||||
buildConfigField("String", "ENVIRONMENT_NAME", "\"\"")
|
buildConfigField("String", "ENVIRONMENT_NAME", "\"\"")
|
||||||
manifestPlaceholders["usesCleartextTraffic"] = "false"
|
manifestPlaceholders["usesCleartextTraffic"] = "false"
|
||||||
}
|
}
|
||||||
@@ -57,6 +163,60 @@ android {
|
|||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testOptions {
|
||||||
|
unitTests.all {
|
||||||
|
// allow Byte Buddy experimental features for newer JVMs
|
||||||
|
it.jvmArgs = listOf("-Dnet.bytebuddy.experimental=true")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val packageNativeDebugSymbolsForProductionRelease = tasks.register<Zip>("packageNativeDebugSymbolsForProductionRelease") {
|
||||||
|
group = "distribution"
|
||||||
|
description = "Packages production release native libraries into a Play Console debug symbols zip."
|
||||||
|
dependsOn(":app:mergeProductionReleaseNativeLibs")
|
||||||
|
from(layout.buildDirectory.dir("intermediates/merged_native_libs/productionRelease/mergeProductionReleaseNativeLibs/out/lib"))
|
||||||
|
destinationDirectory.set(layout.buildDirectory.dir("outputs/native-debug-symbols/productionRelease"))
|
||||||
|
archiveFileName.set("native-debug-symbols.zip")
|
||||||
|
}
|
||||||
|
|
||||||
|
val collectPlayStoreArtifacts = tasks.register("collectPlayStoreArtifacts") {
|
||||||
|
group = "distribution"
|
||||||
|
description = "Builds production release artifacts and collects AAB, mapping, and native symbols for Play Console upload."
|
||||||
|
dependsOn(ensureReleaseSigning)
|
||||||
|
dependsOn(ensureProductionApiBaseUrl)
|
||||||
|
dependsOn(":app:bundleProductionRelease")
|
||||||
|
dependsOn(packageNativeDebugSymbolsForProductionRelease)
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
val outputDir = layout.buildDirectory.dir("outputs/playstore/productionRelease").get().asFile
|
||||||
|
outputDir.mkdirs()
|
||||||
|
|
||||||
|
val bundleFile = layout.buildDirectory.file("outputs/bundle/productionRelease/app-production-release.aab").get().asFile
|
||||||
|
if (bundleFile.exists()) {
|
||||||
|
bundleFile.copyTo(outputDir.resolve(bundleFile.name), overwrite = true)
|
||||||
|
}
|
||||||
|
|
||||||
|
val mappingFile = layout.buildDirectory.file("outputs/mapping/productionRelease/mapping.txt").get().asFile
|
||||||
|
if (mappingFile.exists()) {
|
||||||
|
mappingFile.copyTo(outputDir.resolve("mapping.txt"), overwrite = true)
|
||||||
|
}
|
||||||
|
|
||||||
|
val nativeSymbolsZip = layout.buildDirectory.file("outputs/native-debug-symbols/productionRelease/native-debug-symbols.zip").get().asFile
|
||||||
|
if (nativeSymbolsZip.exists()) {
|
||||||
|
nativeSymbolsZip.copyTo(outputDir.resolve("native-debug-symbols.zip"), overwrite = true)
|
||||||
|
}
|
||||||
|
|
||||||
|
println("Play Store artifacts prepared in: ${outputDir.absolutePath}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.matching {
|
||||||
|
it.name in setOf("bundleProductionRelease", "assembleProductionRelease")
|
||||||
|
}.configureEach {
|
||||||
|
dependsOn(ensureReleaseSigning)
|
||||||
|
dependsOn(ensureProductionApiBaseUrl)
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
@@ -94,9 +254,19 @@ dependencies {
|
|||||||
implementation("com.squareup.retrofit2:converter-moshi:2.9.0")
|
implementation("com.squareup.retrofit2:converter-moshi:2.9.0")
|
||||||
implementation("com.squareup.moshi:moshi-kotlin:1.15.1")
|
implementation("com.squareup.moshi:moshi-kotlin:1.15.1")
|
||||||
|
|
||||||
|
// Passkeys / Credential Manager
|
||||||
|
implementation("androidx.credentials:credentials:1.6.0")
|
||||||
|
implementation("androidx.credentials:credentials-play-services-auth:1.6.0")
|
||||||
|
|
||||||
// Coil
|
// Coil
|
||||||
implementation("io.coil-kt:coil-compose:2.4.0")
|
implementation("io.coil-kt:coil-compose:2.4.0")
|
||||||
|
|
||||||
|
// Crash reporting
|
||||||
|
implementation("io.sentry:sentry-android:8.42.0")
|
||||||
|
|
||||||
|
// Push notifications
|
||||||
|
implementation("com.google.firebase:firebase-messaging:25.0.2")
|
||||||
|
|
||||||
// Room
|
// Room
|
||||||
implementation("androidx.room:room-runtime:2.6.1")
|
implementation("androidx.room:room-runtime:2.6.1")
|
||||||
ksp("androidx.room:room-compiler:2.6.1")
|
ksp("androidx.room:room-compiler:2.6.1")
|
||||||
@@ -106,7 +276,21 @@ dependencies {
|
|||||||
implementation("androidx.work:work-runtime-ktx:2.8.1")
|
implementation("androidx.work:work-runtime-ktx:2.8.1")
|
||||||
implementation("androidx.datastore:datastore-preferences:1.0.0")
|
implementation("androidx.datastore:datastore-preferences:1.0.0")
|
||||||
implementation("androidx.security:security-crypto:1.1.0-alpha06")
|
implementation("androidx.security:security-crypto:1.1.0-alpha06")
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.7.3")
|
||||||
|
|
||||||
// Testing (skeleton)
|
// Testing (skeleton)
|
||||||
testImplementation("junit:junit:4.13.2")
|
testImplementation("junit:junit:4.13.2")
|
||||||
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
|
||||||
|
testImplementation("io.mockk:mockk:1.13.7")
|
||||||
|
// Compose UI testing
|
||||||
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.5.0")
|
||||||
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||||
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||||
|
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
|
||||||
|
// Hilt testing
|
||||||
|
androidTestImplementation("com.google.dagger:hilt-android-testing:2.59.2")
|
||||||
|
// Ensure Hilt runtime is available in the test APK so HiltTestApplication can be instantiated
|
||||||
|
androidTestImplementation("com.google.dagger:hilt-android:2.59.2")
|
||||||
|
kspAndroidTest("com.google.dagger:hilt-compiler:2.59.2")
|
||||||
|
debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.0")
|
||||||
}
|
}
|
||||||
|
|||||||
1
android-app/app/google-services.json
Symbolic link
1
android-app/app/google-services.json
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../google-services.json
|
||||||
BIN
android-app/app/instantTest/release/app-instantTest-release.aab
Executable file
BIN
android-app/app/instantTest/release/app-instantTest-release.aab
Executable file
Binary file not shown.
BIN
android-app/app/local/release/app-local-release.aab
Executable file
BIN
android-app/app/local/release/app-local-release.aab
Executable file
Binary file not shown.
BIN
android-app/app/production/release/app-production-release.aab
Executable file
BIN
android-app/app/production/release/app-production-release.aab
Executable file
Binary file not shown.
37
android-app/app/proguard-rules.pro
vendored
Executable file
37
android-app/app/proguard-rules.pro
vendored
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
# Project-specific R8/ProGuard rules for release builds.
|
||||||
|
|
||||||
|
# Keep reflection/generic metadata used by Retrofit + Moshi.
|
||||||
|
-keepattributes Signature,InnerClasses,EnclosingMethod
|
||||||
|
-keepattributes RuntimeVisibleAnnotations,RuntimeVisibleParameterAnnotations,AnnotationDefault
|
||||||
|
-keep class kotlin.Metadata { *; }
|
||||||
|
|
||||||
|
# Keep Retrofit service interfaces and HTTP method annotations.
|
||||||
|
-keep,allowobfuscation interface * {
|
||||||
|
@retrofit2.http.* <methods>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Retrofit + R8 full mode: keep interfaces with HTTP methods and suspend continuation generics.
|
||||||
|
-if interface * { @retrofit2.http.* <methods>; }
|
||||||
|
-keep,allowobfuscation interface <1>
|
||||||
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|
||||||
|
|
||||||
|
# Avoid Retrofit generic signature loss on release builds for our API interface.
|
||||||
|
-keep interface de.harheimertc.data.ApiService { *; }
|
||||||
|
-keepclassmembers interface de.harheimertc.data.ApiService { *; }
|
||||||
|
|
||||||
|
# Keep app DTO/request/response models used via Moshi reflection.
|
||||||
|
-keep class de.harheimertc.data.*Dto { *; }
|
||||||
|
-keep class de.harheimertc.data.*Request { *; }
|
||||||
|
-keep class de.harheimertc.data.*Response { *; }
|
||||||
|
|
||||||
|
# Keep fields annotated with @Json names.
|
||||||
|
-keepclassmembers class * {
|
||||||
|
@com.squareup.moshi.Json <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Keep WorkManager + Room generated classes used reflectively at startup.
|
||||||
|
-keep class * extends androidx.work.ListenableWorker {
|
||||||
|
<init>(android.content.Context, androidx.work.WorkerParameters);
|
||||||
|
}
|
||||||
|
-keep class androidx.work.impl.WorkDatabase_Impl { *; }
|
||||||
|
-keep class * extends androidx.room.RoomDatabase { *; }
|
||||||
7
android-app/app/src/androidTest/AndroidManifest.xml
Executable file
7
android-app/app/src/androidTest/AndroidManifest.xml
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<application android:allowBackup="false">
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// Disabled TestBindingsModule — replaced by TestHiltModules.kt
|
||||||
|
// Kept as an empty placeholder to avoid accidental compilation of the previous
|
||||||
|
// broken test module. Refer to TestHiltModules.kt for test bindings.
|
||||||
|
package de.harheimertc.test
|
||||||
|
|
||||||
|
// Intentionally empty
|
||||||
90
android-app/app/src/androidTest/java/de/harheimertc/test/TestHiltModules.kt
Executable file
90
android-app/app/src/androidTest/java/de/harheimertc/test/TestHiltModules.kt
Executable file
@@ -0,0 +1,90 @@
|
|||||||
|
package de.harheimertc.test
|
||||||
|
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import dagger.Module
|
||||||
|
import dagger.Provides
|
||||||
|
import dagger.hilt.components.SingletonComponent
|
||||||
|
import dagger.hilt.testing.TestInstallIn
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.AuthStatusResponse
|
||||||
|
import de.harheimertc.data.LoginRequest
|
||||||
|
import de.harheimertc.data.LoginResponse
|
||||||
|
import de.harheimertc.data.AuthUserDto
|
||||||
|
import de.harheimertc.repositories.AuthRepository
|
||||||
|
import de.harheimertc.data.SessionRefresher
|
||||||
|
import dagger.hilt.InstallIn
|
||||||
|
import retrofit2.Response
|
||||||
|
import javax.inject.Singleton
|
||||||
|
import java.lang.reflect.InvocationHandler
|
||||||
|
import java.lang.reflect.Method
|
||||||
|
import java.lang.reflect.Proxy
|
||||||
|
import de.harheimertc.repositories.LoginRepository
|
||||||
|
import de.harheimertc.repositories.PasskeyRepository
|
||||||
|
import de.harheimertc.repositories.AuthRepository as RepoAuthRepository
|
||||||
|
|
||||||
|
@Module
|
||||||
|
@TestInstallIn(
|
||||||
|
components = [SingletonComponent::class],
|
||||||
|
replaces = [de.harheimertc.data.NetworkModule::class, de.harheimertc.di.RepositoryModule::class]
|
||||||
|
)
|
||||||
|
object TestHiltModules {
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideMoshi(): Moshi = Moshi.Builder().build()
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideApiService(): ApiService {
|
||||||
|
val handler = InvocationHandler { _, method: Method, args: Array<Any>? ->
|
||||||
|
when (method.name) {
|
||||||
|
"login" -> Response.success(LoginResponse(success = true, accessToken = "test-token", refreshToken = "r", sessionId = "s", user = AuthUserDto(id = "1", email = "test@example.com", name = "Test")))
|
||||||
|
"authStatus" -> Response.success(AuthStatusResponse(isLoggedIn = false))
|
||||||
|
"publicNews" -> Response.success(de.harheimertc.data.NewsPublicResponse(news = listOf()))
|
||||||
|
"memberNews" -> Response.success(de.harheimertc.data.NewsResponse(success = true, news = listOf()))
|
||||||
|
"passwordResetDiagnostics" -> Response.success(de.harheimertc.data.PasswordResetDiagnosticsResponse())
|
||||||
|
else -> throw UnsupportedOperationException("ApiService method not implemented in test double: ${method.name}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Proxy.newProxyInstance(
|
||||||
|
ApiService::class.java.classLoader,
|
||||||
|
arrayOf(ApiService::class.java),
|
||||||
|
handler,
|
||||||
|
) as ApiService
|
||||||
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideAuthRepository(): AuthRepository = object : AuthRepository {
|
||||||
|
private var token: String? = "test-token"
|
||||||
|
private var refresh: String? = "r"
|
||||||
|
override fun getToken(): String? = token
|
||||||
|
override fun getRefreshToken(): String? = refresh
|
||||||
|
override fun getSessionId(): String? = "s"
|
||||||
|
override fun setSession(accessToken: String?, refreshToken: String?, sessionId: String?) {
|
||||||
|
token = accessToken
|
||||||
|
refresh = refreshToken
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun clearSession() { token = null; refresh = null }
|
||||||
|
override fun ensureDeviceKey(): String? = null
|
||||||
|
override fun getDevicePublicKey(): String? = null
|
||||||
|
override fun signWithDeviceKey(data: ByteArray): ByteArray? = null
|
||||||
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideSessionRefresher(auth: AuthRepository, moshi: Moshi): SessionRefresher = SessionRefresher(auth, moshi)
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideLoginRepository(api: ApiService, auth: AuthRepository, sessionRefresher: SessionRefresher): LoginRepository {
|
||||||
|
return LoginRepository(api, auth, sessionRefresher)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun providePasskeyRepository(api: ApiService, auth: AuthRepository): PasskeyRepository {
|
||||||
|
return PasskeyRepository(api, auth)
|
||||||
|
}
|
||||||
|
}
|
||||||
5
android-app/app/src/androidTest/java/de/harheimertc/ui/TestActivity.kt
Executable file
5
android-app/app/src/androidTest/java/de/harheimertc/ui/TestActivity.kt
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
package de.harheimertc.ui
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
|
||||||
|
class TestActivity : ComponentActivity()
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.compose.ui.test.onNodeWithText
|
||||||
|
import androidx.compose.ui.test.performClick
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsActivateResendTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun activateAndResend_buttonsAreClickable() {
|
||||||
|
composeTestRule.setContent {
|
||||||
|
androidx.compose.material3.TextButton(onClick = { /* no-op */ }) { androidx.compose.material3.Text("Deaktivieren") }
|
||||||
|
androidx.compose.material3.TextButton(onClick = { /* no-op */ }) { androidx.compose.material3.Text("Invite erneut") }
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait until nodes appear to avoid race conditions on slower devices
|
||||||
|
fun waitForText(text: String, timeoutMs: Long = 15000L) {
|
||||||
|
try {
|
||||||
|
composeTestRule.waitUntil(timeoutMs) {
|
||||||
|
try {
|
||||||
|
composeTestRule.onAllNodes(hasText(text)).fetchSemanticsNodes().isNotEmpty()
|
||||||
|
} catch (_: AssertionError) {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
// dump semantics tree for debugging before failing
|
||||||
|
try {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsActivateResendTest-SEMTREE")
|
||||||
|
} catch (_: Throwable) { /* best-effort logging */ }
|
||||||
|
throw AssertionError("Timed out waiting for text: '$text'")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// helper: find the nearest parent node that has a click action
|
||||||
|
fun findClickableParent(text: String): SemanticsNodeInteraction {
|
||||||
|
val all = composeTestRule.onAllNodes(hasText(text))
|
||||||
|
if (all.fetchSemanticsNodes().isEmpty()) {
|
||||||
|
try {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsActivateResendTest-SEMTREE-NOT-FOUND-$text")
|
||||||
|
} catch (_: Throwable) { }
|
||||||
|
throw AssertionError("No node found with text '$text'")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Log matches for debugging
|
||||||
|
try {
|
||||||
|
val matches = all.fetchSemanticsNodes()
|
||||||
|
Log.d("CmsActivateResendTest", "Found ${matches.size} node(s) for text '$text'")
|
||||||
|
matches.forEachIndexed { i, n -> Log.d("CmsActivateResendTest", "Match[$i]: ${n}") }
|
||||||
|
} catch (_: Throwable) { /* ignore logging failures */ }
|
||||||
|
|
||||||
|
var node = try {
|
||||||
|
// prefer the single-node API, but fall back to the first match if ambiguous
|
||||||
|
composeTestRule.onNode(hasText(text))
|
||||||
|
} catch (_: AssertionError) {
|
||||||
|
all[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
// climb a few parents to find the clickable wrapper
|
||||||
|
repeat(8) {
|
||||||
|
try {
|
||||||
|
node.assert(hasClickAction())
|
||||||
|
try { Log.d("CmsActivateResendTest", "Clickable node found for '$text': ${node.fetchSemanticsNode()}") } catch (_: Throwable) {}
|
||||||
|
return node
|
||||||
|
} catch (_: AssertionError) {
|
||||||
|
try { Log.d("CmsActivateResendTest", "Node not clickable yet, current node: ${node.fetchSemanticsNode()}") } catch (_: Throwable) {}
|
||||||
|
node = node.onParent()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsActivateResendTest-SEMTREE-NO-CLICK-$text")
|
||||||
|
} catch (_: Throwable) { }
|
||||||
|
throw AssertionError("No clickable parent found for text '$text'")
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForText("Deaktivieren")
|
||||||
|
val deactivateNode = findClickableParent("Deaktivieren")
|
||||||
|
deactivateNode.assertExists()
|
||||||
|
deactivateNode.assertIsDisplayed()
|
||||||
|
deactivateNode.assert(hasClickAction())
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
try {
|
||||||
|
deactivateNode.performClick()
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsActivateResendTest-CLICK-FAIL-DEACTIVATE")
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForText("Invite erneut")
|
||||||
|
val inviteNode = findClickableParent("Invite erneut")
|
||||||
|
inviteNode.assertExists()
|
||||||
|
inviteNode.assertIsDisplayed()
|
||||||
|
inviteNode.assert(hasClickAction())
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
try {
|
||||||
|
inviteNode.performClick()
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsActivateResendTest-CLICK-FAIL-INVITE")
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,392 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.test.core.app.ApplicationProvider
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import androidx.navigation.compose.rememberNavController
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.AuthMessageResponse
|
||||||
|
import de.harheimertc.data.AuthStatusResponse
|
||||||
|
import de.harheimertc.data.BirthdaysResponse
|
||||||
|
import de.harheimertc.data.CmsUserDto
|
||||||
|
import de.harheimertc.data.CmsUsersResponse
|
||||||
|
import de.harheimertc.data.ConfigResponse
|
||||||
|
import de.harheimertc.data.ContactRequest
|
||||||
|
import de.harheimertc.data.ContactRequestDto
|
||||||
|
import de.harheimertc.data.ContactResponse
|
||||||
|
import de.harheimertc.data.LoginRequest
|
||||||
|
import de.harheimertc.data.LoginResponse
|
||||||
|
import de.harheimertc.data.LogoutRequest
|
||||||
|
import de.harheimertc.data.MembersResponse
|
||||||
|
import de.harheimertc.data.MembershipRequest
|
||||||
|
import de.harheimertc.data.MembershipResponse
|
||||||
|
import de.harheimertc.data.NewsletterCreateRequest
|
||||||
|
import de.harheimertc.data.NewsletterCreateResponse
|
||||||
|
import de.harheimertc.data.NewsletterDto
|
||||||
|
import de.harheimertc.data.NewsletterGroupDto
|
||||||
|
import de.harheimertc.data.NewsletterGroupsResponse
|
||||||
|
import de.harheimertc.data.NewsletterListResponse
|
||||||
|
import de.harheimertc.data.NewsletterSendResponse
|
||||||
|
import de.harheimertc.data.NewsletterSubscriptionRequest
|
||||||
|
import de.harheimertc.data.NewsPublicResponse
|
||||||
|
import de.harheimertc.data.NewsResponse
|
||||||
|
import de.harheimertc.data.NewsSaveRequest
|
||||||
|
import de.harheimertc.data.PasskeyAuthenticationOptionsRequest
|
||||||
|
import de.harheimertc.data.PasskeyRegistrationOptionsRequest
|
||||||
|
import de.harheimertc.data.PasskeysResponse
|
||||||
|
import de.harheimertc.data.PasswordResetAttemptDto
|
||||||
|
import de.harheimertc.data.PasswordResetDiagnosticsResponse
|
||||||
|
import de.harheimertc.data.ProfileResponse
|
||||||
|
import de.harheimertc.data.ProfileUpdateRequest
|
||||||
|
import de.harheimertc.data.PublicGalleryImageDto
|
||||||
|
import de.harheimertc.data.GalleryListResponse
|
||||||
|
import de.harheimertc.data.GalleryUploadResponse
|
||||||
|
import de.harheimertc.data.RefreshRequest
|
||||||
|
import de.harheimertc.data.RegistrationRequest
|
||||||
|
import de.harheimertc.data.RemovePasskeyRequest
|
||||||
|
import de.harheimertc.data.ResetPasswordRequest
|
||||||
|
import de.harheimertc.data.SaveCsvRequest
|
||||||
|
import de.harheimertc.data.SaveCsvResponse
|
||||||
|
import de.harheimertc.data.SecureOfflineCache
|
||||||
|
import de.harheimertc.data.SpielplanResponse
|
||||||
|
import de.harheimertc.data.TeamTableResponse
|
||||||
|
import de.harheimertc.data.TermineResponse
|
||||||
|
import de.harheimertc.repositories.CmsRepository
|
||||||
|
import de.harheimertc.repositories.MeisterschaftResult
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import okhttp3.MultipartBody
|
||||||
|
import okhttp3.RequestBody
|
||||||
|
import okhttp3.ResponseBody
|
||||||
|
import okhttp3.ResponseBody.Companion.toResponseBody
|
||||||
|
import org.junit.Assert.assertEquals
|
||||||
|
import org.junit.Assert.assertTrue
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
import retrofit2.Response
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsExistingScreensSmokeTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsDashboard_renders() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsDashboardScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Vereinsmeisterschaften", substring = true).assertExists()
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsStartseite_saveWorks() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsStartseiteScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertTrue(api.updateConfigCalls >= 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsInhalte_saveWorks() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsInhalteScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Inhalte speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertTrue(api.updateConfigCalls >= 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsVereinsmeisterschaften_saveWorks() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsVereinsmeisterschaftenScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertEquals(1, api.saveCsvCalls)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsSportbetrieb_saveWorks() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsSportbetriebScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertTrue(api.updateConfigCalls >= 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsEinstellungen_saveWorks() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsEinstellungenScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertTrue(api.updateConfigCalls >= 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsMitgliederverwaltung_clickFreischalten() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsMitgliederverwaltungScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Freischalten").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertEquals(1, api.updateUserActiveCalls)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsBenutzer_clickRollenSpeichern() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsBenutzerScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Rollen").performClick()
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertEquals(1, api.updateUserRolesCalls)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsContactRequests_replySenden() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsContactRequestsScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Antworten").performClick()
|
||||||
|
composeTestRule.onNode(hasSetTextAction()).performTextInput("Kurze Testantwort")
|
||||||
|
composeTestRule.onNodeWithText("Senden").performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertEquals(1, api.replyContactCalls)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsNewsletter_createAndSave() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsNewsletterScreen(nav, showBackNavigation = false, viewModel = viewModel, canWriteOverride = true)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Newsletter erstellen").performClick()
|
||||||
|
composeTestRule.onNode(hasSetTextAction()).performTextInput("Testnewsletter")
|
||||||
|
composeTestRule.onAllNodes(hasText("Speichern")).onFirst().performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
assertEquals(1, api.createNewsletterCalls)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsPasswordResetDiagnostics_renders() {
|
||||||
|
val api = RecordingApiService()
|
||||||
|
val viewModel = createViewModel(api)
|
||||||
|
renderWithState(viewModel)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsPasswordResetDiagnosticsScreen(nav, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
composeTestRule.onNodeWithText("Passwort-Reset-Diagnose", substring = true).assertExists()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createViewModel(api: RecordingApiService): CmsViewModel {
|
||||||
|
val context = ApplicationProvider.getApplicationContext<Context>()
|
||||||
|
val cache = SecureOfflineCache(context, Moshi.Builder().build())
|
||||||
|
val repository = CmsRepository(api, cache)
|
||||||
|
return CmsViewModel(repository)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun renderWithState(viewModel: CmsViewModel) {
|
||||||
|
val readyState = CmsUiState(
|
||||||
|
loading = false,
|
||||||
|
saving = false,
|
||||||
|
error = null,
|
||||||
|
message = null,
|
||||||
|
config = ConfigResponse(),
|
||||||
|
users = listOf(
|
||||||
|
CmsUserDto(id = "pending-1", name = "Pending User", email = "pending@example.com", active = false, roles = emptyList()),
|
||||||
|
CmsUserDto(id = "active-1", name = "Active User", email = "active@example.com", active = true, roles = listOf("vorstand")),
|
||||||
|
),
|
||||||
|
contactRequests = listOf(
|
||||||
|
ContactRequestDto(id = "request-1", name = "Kontakt Test", email = "kontakt@example.com", message = "Bitte melden", status = "offen"),
|
||||||
|
),
|
||||||
|
newsletters = listOf(
|
||||||
|
NewsletterDto(id = "newsletter-1", title = "Sommerinfo", subject = "Sommerinfo", status = "draft"),
|
||||||
|
),
|
||||||
|
newsletterGroups = listOf(
|
||||||
|
NewsletterGroupDto(id = "group-1", name = "Mitglieder", description = "Alle Mitglieder"),
|
||||||
|
),
|
||||||
|
passwordResetAttempts = listOf(
|
||||||
|
PasswordResetAttemptDto(requestId = "diag-1", emailMasked = "m***@example.com", failed = true),
|
||||||
|
),
|
||||||
|
news = emptyList(),
|
||||||
|
meisterschaften = listOf(
|
||||||
|
MeisterschaftResult(year = "2025", category = "Herren", rank = "1", playerOne = "Erika Muster", playerTwo = "", note = "Titel verteidigt", imageOne = "", imageTwo = ""),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
val field = CmsViewModel::class.java.getDeclaredField("_state")
|
||||||
|
field.isAccessible = true
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
(field.get(viewModel) as MutableStateFlow<CmsUiState>).value = readyState
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class RecordingApiService : ApiService {
|
||||||
|
var updateConfigCalls = 0
|
||||||
|
var saveCsvCalls = 0
|
||||||
|
var updateUserActiveCalls = 0
|
||||||
|
var updateUserRolesCalls = 0
|
||||||
|
var replyContactCalls = 0
|
||||||
|
var createNewsletterCalls = 0
|
||||||
|
|
||||||
|
private val config = ConfigResponse()
|
||||||
|
private val users = listOf(
|
||||||
|
CmsUserDto(id = "pending-1", name = "Pending User", email = "pending@example.com", active = false, roles = emptyList()),
|
||||||
|
CmsUserDto(id = "active-1", name = "Active User", email = "active@example.com", active = true, roles = listOf("vorstand")),
|
||||||
|
)
|
||||||
|
private val contactRequests = listOf(
|
||||||
|
ContactRequestDto(id = "request-1", name = "Kontakt Test", email = "kontakt@example.com", message = "Bitte melden", status = "offen"),
|
||||||
|
)
|
||||||
|
private val newsletters = listOf(
|
||||||
|
NewsletterDto(id = "newsletter-1", title = "Sommerinfo", subject = "Sommerinfo", status = "draft"),
|
||||||
|
)
|
||||||
|
private val groups = listOf(
|
||||||
|
NewsletterGroupDto(id = "group-1", name = "Mitglieder", description = "Alle Mitglieder"),
|
||||||
|
)
|
||||||
|
private val diagnostics = listOf(
|
||||||
|
PasswordResetAttemptDto(requestId = "diag-1", emailMasked = "m***@example.com", failed = true),
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun publicGalleryImages(): Response<List<PublicGalleryImageDto>> = Response.success(emptyList())
|
||||||
|
override suspend fun postContact(req: ContactRequest): Response<ContactResponse> = Response.success(ContactResponse(ok = true))
|
||||||
|
override suspend fun galerieList(page: Int, perPage: Int): Response<GalleryListResponse> = Response.success(GalleryListResponse())
|
||||||
|
override suspend fun uploadGalleryImage(image: MultipartBody.Part, title: RequestBody, description: RequestBody, isPublic: RequestBody): Response<GalleryUploadResponse> = Response.success(GalleryUploadResponse())
|
||||||
|
override suspend fun termine(): Response<TermineResponse> = Response.success(TermineResponse())
|
||||||
|
override suspend fun spielplan(season: String?): Response<SpielplanResponse> = Response.success(SpielplanResponse())
|
||||||
|
override suspend fun spielplanTable(team: String, season: String?): Response<TeamTableResponse> = Response.success(TeamTableResponse())
|
||||||
|
override suspend fun publicNews(): Response<NewsPublicResponse> = Response.success(NewsPublicResponse())
|
||||||
|
override suspend fun memberNews(): Response<NewsResponse> = Response.success(NewsResponse(success = true, news = emptyList()))
|
||||||
|
override suspend fun saveNews(request: NewsSaveRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true, message = "ok"))
|
||||||
|
override suspend fun deleteNews(id: Int): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun mannschaften(season: String?): Response<ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun config(): Response<ConfigResponse> = Response.success(config)
|
||||||
|
override suspend fun updateConfig(request: ConfigResponse): Response<ConfigResponse> {
|
||||||
|
updateConfigCalls++
|
||||||
|
return Response.success(request)
|
||||||
|
}
|
||||||
|
override suspend fun spielsysteme(): Response<ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun vereinsmeisterschaften(): Response<ResponseBody> =
|
||||||
|
Response.success("Jahr,Kategorie,Platz,Spieler1,Spieler2,Bemerkung,imageFilename1,imageFilename2\n\"2025\",\"Herren\",\"1\",\"Erika Muster\",\"\",\"Titel verteidigt\",\"\",\"\"".toResponseBody(null))
|
||||||
|
override suspend fun saveCsv(request: SaveCsvRequest): Response<SaveCsvResponse> {
|
||||||
|
saveCsvCalls++
|
||||||
|
return Response.success(SaveCsvResponse(success = true, message = "CSV gespeichert"))
|
||||||
|
}
|
||||||
|
override suspend fun generateMembershipPdf(request: MembershipRequest): Response<MembershipResponse> = Response.success(MembershipResponse())
|
||||||
|
override suspend fun downloadMembershipPdf(downloadUrl: String): Response<ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun login(request: LoginRequest): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun logout(request: LogoutRequest): Response<Unit> = Response.success(Unit)
|
||||||
|
override suspend fun refresh(request: RefreshRequest): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun authStatus(): Response<AuthStatusResponse> = Response.success(AuthStatusResponse())
|
||||||
|
override suspend fun resetPassword(request: ResetPasswordRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun register(request: RegistrationRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun passkeyAuthenticationOptions(request: PasskeyAuthenticationOptionsRequest): Response<ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun passkeyLogin(request: RequestBody): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun passkeys(): Response<PasskeysResponse> = Response.success(PasskeysResponse())
|
||||||
|
override suspend fun passkeyRegistrationOptions(request: PasskeyRegistrationOptionsRequest): Response<ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun registerPasskey(request: RequestBody): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun removePasskey(request: RemovePasskeyRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun profile(): Response<ProfileResponse> = Response.success(ProfileResponse())
|
||||||
|
override suspend fun updateProfile(request: ProfileUpdateRequest): Response<ProfileResponse> = Response.success(ProfileResponse())
|
||||||
|
override suspend fun birthdays(): Response<BirthdaysResponse> = Response.success(BirthdaysResponse())
|
||||||
|
override suspend fun members(): Response<MembersResponse> = Response.success(MembersResponse())
|
||||||
|
override suspend fun saveMember(request: ApiService.MemberSaveRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun deleteMember(body: Map<String, String>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun bulkImportMembers(request: ApiService.BulkImportRequest): Response<ApiService.BulkImportResponse> = Response.success(ApiService.BulkImportResponse())
|
||||||
|
override suspend fun toggleMannschaftsspieler(body: Map<String, String>): Response<Map<String, Any>> = Response.success(emptyMap())
|
||||||
|
override suspend fun cmsUsers(): Response<CmsUsersResponse> = Response.success(CmsUsersResponse(users = users))
|
||||||
|
override suspend fun updateUserRoles(request: ApiService.UpdateUserRolesRequest): Response<AuthMessageResponse> {
|
||||||
|
updateUserRolesCalls++
|
||||||
|
return Response.success(AuthMessageResponse(success = true, message = "Rollen aktualisiert"))
|
||||||
|
}
|
||||||
|
override suspend fun updateUserActive(request: ApiService.UpdateUserActiveRequest): Response<AuthMessageResponse> {
|
||||||
|
updateUserActiveCalls++
|
||||||
|
return Response.success(AuthMessageResponse(success = true, message = "Status aktualisiert"))
|
||||||
|
}
|
||||||
|
override suspend fun resendInvite(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun contactRequests(): Response<List<ContactRequestDto>> = Response.success(contactRequests)
|
||||||
|
override suspend fun replyToContactRequest(id: String, request: ApiService.ContactReplyRequest): Response<ContactResponse> {
|
||||||
|
replyContactCalls++
|
||||||
|
return Response.success(ContactResponse(ok = true, message = "Antwort versendet"))
|
||||||
|
}
|
||||||
|
override suspend fun toggleContactRequestStatus(id: String): Response<ContactResponse> = Response.success(ContactResponse(ok = true, message = "Status aktualisiert"))
|
||||||
|
override suspend fun newsletters(): Response<NewsletterListResponse> = Response.success(NewsletterListResponse(success = true, newsletters = newsletters))
|
||||||
|
override suspend fun newsletterGroups(): Response<NewsletterGroupsResponse> = Response.success(NewsletterGroupsResponse(success = true, groups = groups))
|
||||||
|
override suspend fun createNewsletterGroup(request: Map<String, Any?>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun updateNewsletterGroup(id: String, request: Map<String, Any?>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun deleteNewsletterGroup(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun createNewsletter(request: NewsletterCreateRequest): Response<NewsletterCreateResponse> {
|
||||||
|
createNewsletterCalls++
|
||||||
|
return Response.success(NewsletterCreateResponse(success = true, message = "Newsletter gespeichert"))
|
||||||
|
}
|
||||||
|
override suspend fun updateNewsletter(id: String, request: Map<String, Any?>): Response<NewsletterCreateResponse> = Response.success(NewsletterCreateResponse(success = true))
|
||||||
|
override suspend fun sendNewsletter(id: String): Response<NewsletterSendResponse> = Response.success(NewsletterSendResponse(success = true))
|
||||||
|
override suspend fun deleteNewsletter(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun publicNewsletterGroups(): Response<NewsletterGroupsResponse> = Response.success(NewsletterGroupsResponse(success = true, groups = groups))
|
||||||
|
override suspend fun subscribeNewsletter(request: NewsletterSubscriptionRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun unsubscribeNewsletter(request: NewsletterSubscriptionRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun confirmNewsletter(token: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun passwordResetDiagnostics(
|
||||||
|
email: String?,
|
||||||
|
failedOnly: Boolean,
|
||||||
|
): Response<PasswordResetDiagnosticsResponse> = Response.success(PasswordResetDiagnosticsResponse(attempts = diagnostics))
|
||||||
|
}
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.navigation.compose.rememberNavController
|
||||||
|
import androidx.test.core.app.ApplicationProvider
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.CmsUsersResponse
|
||||||
|
import de.harheimertc.data.ConfigResponse
|
||||||
|
import de.harheimertc.data.ContactRequestDto
|
||||||
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.NewsResponse
|
||||||
|
import de.harheimertc.data.NewsletterGroupsResponse
|
||||||
|
import de.harheimertc.data.NewsletterListResponse
|
||||||
|
import de.harheimertc.data.PasswordResetAttemptDto
|
||||||
|
import de.harheimertc.data.PasswordResetDiagnosticsResponse
|
||||||
|
import de.harheimertc.data.PasswordResetStepDto
|
||||||
|
import de.harheimertc.data.SecureOfflineCache
|
||||||
|
import de.harheimertc.repositories.CmsRepository
|
||||||
|
import okhttp3.ResponseBody
|
||||||
|
import okhttp3.ResponseBody.Companion.toResponseBody
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
import retrofit2.Response
|
||||||
|
import java.lang.reflect.InvocationHandler
|
||||||
|
import java.lang.reflect.Method
|
||||||
|
import java.lang.reflect.Proxy
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsPasswordResetDiagnosticsScreenTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun diagnosticsScreen_showsFilterAndAttemptDetails() {
|
||||||
|
val api = createDiagnosticsApiService()
|
||||||
|
val context = ApplicationProvider.getApplicationContext<Context>()
|
||||||
|
val cache = SecureOfflineCache(context, Moshi.Builder().build())
|
||||||
|
val repo = CmsRepository(api, cache)
|
||||||
|
val viewModel = CmsViewModel(repo)
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val navController = rememberNavController()
|
||||||
|
CmsPasswordResetDiagnosticsScreen(navController, showBackNavigation = false, viewModel = viewModel)
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.waitUntil(15_000) {
|
||||||
|
try {
|
||||||
|
composeTestRule.onNodeWithText("Nur Auffälligkeiten", useUnmergedTree = true).assertExists()
|
||||||
|
true
|
||||||
|
} catch (_: Throwable) {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.onNodeWithText("Nur Auffälligkeiten", useUnmergedTree = true).assertExists()
|
||||||
|
composeTestRule.onNodeWithText("Prüfen", useUnmergedTree = true).assertExists()
|
||||||
|
composeTestRule.onNodeWithText("Reset-Vorgänge", useUnmergedTree = true).assertExists()
|
||||||
|
composeTestRule.onNodeWithText("Aktualisieren", useUnmergedTree = true).assertExists()
|
||||||
|
|
||||||
|
// Trigger a manual refresh to validate the main interaction path.
|
||||||
|
composeTestRule.onNodeWithText("Prüfen", useUnmergedTree = true).performClick()
|
||||||
|
composeTestRule.waitForIdle()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createDiagnosticsApiService(): ApiService {
|
||||||
|
val attempt = PasswordResetAttemptDto(
|
||||||
|
requestId = "req-1",
|
||||||
|
startedAt = "2026-05-29T10:15:00Z",
|
||||||
|
emailMasked = "m***@example.com",
|
||||||
|
ip = "127.0.0.1",
|
||||||
|
failed = true,
|
||||||
|
steps = listOf(
|
||||||
|
PasswordResetStepDto(
|
||||||
|
ts = "2026-05-29T10:15:01Z",
|
||||||
|
step = "mail_configuration",
|
||||||
|
status = "failed",
|
||||||
|
reason = "smtp_credentials_missing",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
val handler = InvocationHandler { _, method: Method, _ ->
|
||||||
|
when (method.name) {
|
||||||
|
"config" -> Response.success(ConfigResponse())
|
||||||
|
"users" -> Response.success(CmsUsersResponse())
|
||||||
|
"cmsUsers" -> Response.success(CmsUsersResponse())
|
||||||
|
"contactRequests" -> Response.success(listOf<ContactRequestDto>())
|
||||||
|
"newsletters" -> Response.success(NewsletterListResponse(success = true, newsletters = emptyList()))
|
||||||
|
"newsletterGroups" -> Response.success(NewsletterGroupsResponse(success = true, groups = emptyList()))
|
||||||
|
"memberNews" -> Response.success(NewsResponse(success = true, news = listOf(NewsDto(id = 1, title = "N", content = "C"))))
|
||||||
|
"passwordResetDiagnostics" -> Response.success(
|
||||||
|
PasswordResetDiagnosticsResponse(
|
||||||
|
retentionHours = 72,
|
||||||
|
searchedEmail = "",
|
||||||
|
matchingUsers = listOf(
|
||||||
|
de.harheimertc.data.PasswordResetMatchingUserDto(
|
||||||
|
id = "u1",
|
||||||
|
name = "Max Muster",
|
||||||
|
email = "max@example.com",
|
||||||
|
active = true,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
attempts = listOf(attempt),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
"vereinsmeisterschaften" -> Response.success("Jahr,Kategorie,Platz,Spieler1,Spieler2,Bemerkung\n".toResponseBody(null))
|
||||||
|
else -> throw UnsupportedOperationException("Unhandled ApiService method in test: ${method.name}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Proxy.newProxyInstance(
|
||||||
|
ApiService::class.java.classLoader,
|
||||||
|
arrayOf(ApiService::class.java),
|
||||||
|
handler,
|
||||||
|
) as ApiService
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.material3.AlertDialog
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.Checkbox
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TextButton
|
||||||
|
import androidx.compose.runtime.mutableStateListOf
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.junit4.ComposeTestRule
|
||||||
|
import androidx.compose.ui.test.onNodeWithText
|
||||||
|
import androidx.compose.ui.test.performClick
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsRolesDialogTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
class FakeVm {
|
||||||
|
var calledId: String? = null
|
||||||
|
var calledRoles: List<String>? = null
|
||||||
|
fun updateUserRoles(id: String, roles: List<String>) {
|
||||||
|
calledId = id
|
||||||
|
calledRoles = roles
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun rolesDialog_callsUpdateUserRoles() {
|
||||||
|
val fake = FakeVm()
|
||||||
|
val initialRoles = listOf("admin")
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val show = remember { mutableStateOf(false) }
|
||||||
|
val selected = remember { mutableStateListOf<String>().apply { addAll(initialRoles) } }
|
||||||
|
Column {
|
||||||
|
Button(onClick = { show.value = true }) { Text("Rollen") }
|
||||||
|
if (show.value) {
|
||||||
|
AlertDialog(
|
||||||
|
onDismissRequest = { show.value = false },
|
||||||
|
title = { Text("Rollen bearbeiten") },
|
||||||
|
text = {
|
||||||
|
Column(modifier = Modifier.padding(4.dp)) {
|
||||||
|
// simple checkbox row for admin only (representative)
|
||||||
|
Row {
|
||||||
|
Checkbox(checked = selected.contains("admin"), onCheckedChange = { checked ->
|
||||||
|
if (checked) selected.add("admin") else selected.remove("admin")
|
||||||
|
})
|
||||||
|
Text("admin", modifier = Modifier.padding(start = 8.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
confirmButton = {
|
||||||
|
Button(onClick = {
|
||||||
|
fake.updateUserRoles("42", selected.toList())
|
||||||
|
show.value = false
|
||||||
|
}) { Text("Speichern") }
|
||||||
|
},
|
||||||
|
dismissButton = { TextButton(onClick = { show.value = false }) { Text("Abbrechen") } }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open dialog
|
||||||
|
composeTestRule.onNodeWithText("Rollen").performClick()
|
||||||
|
// Save immediately (we keep admin preselected)
|
||||||
|
composeTestRule.onNodeWithText("Speichern").performClick()
|
||||||
|
|
||||||
|
assert(fake.calledId == "42")
|
||||||
|
assert(fake.calledRoles?.contains("admin") == true)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsScreenTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsScreen_placeholder() {
|
||||||
|
composeTestRule.setContent {
|
||||||
|
Text("CMS Placeholder")
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.onNodeWithText("CMS Placeholder").assertExists()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.hasText
|
||||||
|
import androidx.compose.ui.test.onNodeWithText
|
||||||
|
import androidx.compose.ui.test.performClick
|
||||||
|
import androidx.compose.ui.test.junit4.ComposeTestRule
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import androidx.test.core.app.ApplicationProvider
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import kotlinx.coroutines.runBlocking
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.Assert.assertTrue
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
import retrofit2.Response
|
||||||
|
import okhttp3.MultipartBody
|
||||||
|
import okhttp3.RequestBody
|
||||||
|
import de.harheimertc.data.*
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import de.harheimertc.repositories.CmsRepository
|
||||||
|
import androidx.navigation.compose.rememberNavController
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsStartseiteSmokeTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun cmsStartseite_rendersWithDefaultState() {
|
||||||
|
// prepare a minimal fake ApiService that returns empty/neutral responses
|
||||||
|
val fakeApi = object : ApiService {
|
||||||
|
override suspend fun publicGalleryImages(): Response<List<PublicGalleryImageDto>> = Response.success(emptyList())
|
||||||
|
override suspend fun postContact(req: ContactRequest): Response<ContactResponse> = Response.success(ContactResponse(ok = true))
|
||||||
|
override suspend fun galerieList(page: Int, perPage: Int): Response<GalleryListResponse> = Response.success(GalleryListResponse())
|
||||||
|
override suspend fun uploadGalleryImage(image: MultipartBody.Part, title: RequestBody, description: RequestBody, isPublic: RequestBody): Response<GalleryUploadResponse> = Response.success(GalleryUploadResponse())
|
||||||
|
override suspend fun termine(): Response<TermineResponse> = Response.success(TermineResponse())
|
||||||
|
override suspend fun spielplan(season: String?): Response<SpielplanResponse> = Response.success(SpielplanResponse())
|
||||||
|
override suspend fun spielplanTable(team: String, season: String?): Response<TeamTableResponse> = Response.success(TeamTableResponse())
|
||||||
|
override suspend fun publicNews(): Response<NewsPublicResponse> = Response.success(NewsPublicResponse())
|
||||||
|
override suspend fun memberNews(): Response<NewsResponse> = Response.success(NewsResponse(success = true, news = emptyList()))
|
||||||
|
override suspend fun saveNews(request: NewsSaveRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true, message = "ok"))
|
||||||
|
override suspend fun deleteNews(id: Int): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun mannschaften(season: String?): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun config(): Response<ConfigResponse> = Response.success(ConfigResponse())
|
||||||
|
override suspend fun updateConfig(request: ConfigResponse): Response<ConfigResponse> = Response.success(request)
|
||||||
|
override suspend fun spielsysteme(): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun vereinsmeisterschaften(): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun saveCsv(request: SaveCsvRequest): Response<SaveCsvResponse> = Response.success(SaveCsvResponse(success = true))
|
||||||
|
override suspend fun generateMembershipPdf(request: MembershipRequest): Response<MembershipResponse> = Response.success(MembershipResponse())
|
||||||
|
override suspend fun downloadMembershipPdf(downloadUrl: String): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun login(request: LoginRequest): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun logout(request: LogoutRequest): Response<Unit> = Response.success(Unit)
|
||||||
|
override suspend fun refresh(request: RefreshRequest): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun authStatus(): Response<AuthStatusResponse> = Response.success(AuthStatusResponse())
|
||||||
|
override suspend fun resetPassword(request: ResetPasswordRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun register(request: RegistrationRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun passkeyAuthenticationOptions(request: PasskeyAuthenticationOptionsRequest): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun passkeyLogin(request: okhttp3.RequestBody): Response<LoginResponse> = Response.success(LoginResponse())
|
||||||
|
override suspend fun passkeys(): Response<PasskeysResponse> = Response.success(PasskeysResponse())
|
||||||
|
override suspend fun passkeyRegistrationOptions(request: PasskeyRegistrationOptionsRequest): Response<okhttp3.ResponseBody> = Response.success(null)
|
||||||
|
override suspend fun registerPasskey(request: okhttp3.RequestBody): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun removePasskey(request: RemovePasskeyRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun profile(): Response<ProfileResponse> = Response.success(ProfileResponse())
|
||||||
|
override suspend fun updateProfile(request: ProfileUpdateRequest): Response<ProfileResponse> = Response.success(ProfileResponse())
|
||||||
|
override suspend fun birthdays(): Response<BirthdaysResponse> = Response.success(BirthdaysResponse())
|
||||||
|
override suspend fun members(): Response<MembersResponse> = Response.success(MembersResponse())
|
||||||
|
override suspend fun saveMember(request: ApiService.MemberSaveRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun deleteMember(body: Map<String, String>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun bulkImportMembers(request: ApiService.BulkImportRequest): Response<ApiService.BulkImportResponse> = Response.success(ApiService.BulkImportResponse())
|
||||||
|
override suspend fun toggleMannschaftsspieler(body: Map<String, String>): Response<Map<String, Any>> = Response.success(emptyMap())
|
||||||
|
override suspend fun cmsUsers(): Response<CmsUsersResponse> = Response.success(CmsUsersResponse())
|
||||||
|
override suspend fun updateUserRoles(request: ApiService.UpdateUserRolesRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun updateUserActive(request: ApiService.UpdateUserActiveRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun resendInvite(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse())
|
||||||
|
override suspend fun contactRequests(): Response<List<ContactRequestDto>> = Response.success(emptyList())
|
||||||
|
override suspend fun replyToContactRequest(id: String, request: ApiService.ContactReplyRequest): Response<de.harheimertc.data.ContactResponse> = Response.success(de.harheimertc.data.ContactResponse(ok = true))
|
||||||
|
override suspend fun toggleContactRequestStatus(id: String): Response<de.harheimertc.data.ContactResponse> = Response.success(de.harheimertc.data.ContactResponse(ok = true))
|
||||||
|
override suspend fun newsletters(): Response<NewsletterListResponse> = Response.success(NewsletterListResponse(success = true, newsletters = emptyList()))
|
||||||
|
override suspend fun newsletterGroups(): Response<NewsletterGroupsResponse> = Response.success(NewsletterGroupsResponse(success = true, groups = emptyList()))
|
||||||
|
override suspend fun createNewsletterGroup(request: Map<String, Any?>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun updateNewsletterGroup(id: String, request: Map<String, Any?>): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun deleteNewsletterGroup(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun createNewsletter(request: NewsletterCreateRequest): Response<NewsletterCreateResponse> = Response.success(NewsletterCreateResponse(success = true))
|
||||||
|
override suspend fun updateNewsletter(id: String, request: Map<String, Any?>): Response<NewsletterCreateResponse> = Response.success(NewsletterCreateResponse(success = true))
|
||||||
|
override suspend fun sendNewsletter(id: String): Response<NewsletterSendResponse> = Response.success(NewsletterSendResponse(success = true))
|
||||||
|
override suspend fun deleteNewsletter(id: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun publicNewsletterGroups(): Response<NewsletterGroupsResponse> = Response.success(NewsletterGroupsResponse(success = true))
|
||||||
|
override suspend fun subscribeNewsletter(request: NewsletterSubscriptionRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun unsubscribeNewsletter(request: NewsletterSubscriptionRequest): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun confirmNewsletter(token: String): Response<AuthMessageResponse> = Response.success(AuthMessageResponse(success = true))
|
||||||
|
override suspend fun passwordResetDiagnostics(
|
||||||
|
email: String?,
|
||||||
|
failedOnly: Boolean,
|
||||||
|
): Response<PasswordResetDiagnosticsResponse> = Response.success(PasswordResetDiagnosticsResponse())
|
||||||
|
}
|
||||||
|
|
||||||
|
val context = ApplicationProvider.getApplicationContext<android.content.Context>()
|
||||||
|
val moshi = Moshi.Builder().build()
|
||||||
|
val cache = SecureOfflineCache(context, moshi)
|
||||||
|
val repo = CmsRepository(fakeApi, cache)
|
||||||
|
val vm = de.harheimertc.ui.screens.cms.CmsViewModel(repo)
|
||||||
|
|
||||||
|
// set a ready state to avoid waiting for async network loads in Vm.init
|
||||||
|
val readyState = de.harheimertc.ui.screens.cms.CmsUiState(
|
||||||
|
loading = false,
|
||||||
|
saving = false,
|
||||||
|
error = null,
|
||||||
|
message = null,
|
||||||
|
config = ConfigResponse(),
|
||||||
|
users = emptyList(),
|
||||||
|
contactRequests = emptyList(),
|
||||||
|
newsletters = emptyList(),
|
||||||
|
newsletterGroups = emptyList(),
|
||||||
|
passwordResetAttempts = emptyList(),
|
||||||
|
news = emptyList(),
|
||||||
|
)
|
||||||
|
try {
|
||||||
|
val field = de.harheimertc.ui.screens.cms.CmsViewModel::class.java.getDeclaredField("_state")
|
||||||
|
field.isAccessible = true
|
||||||
|
val current = field.get(vm) as? MutableStateFlow<*>
|
||||||
|
if (current is MutableStateFlow<*>) {
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
(current as MutableStateFlow<de.harheimertc.ui.screens.cms.CmsUiState>).value = readyState
|
||||||
|
}
|
||||||
|
} catch (_: Throwable) { /* best-effort, continue */ }
|
||||||
|
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val nav = rememberNavController()
|
||||||
|
CmsStartseiteScreen(nav, showBackNavigation = false, viewModel = vm)
|
||||||
|
}
|
||||||
|
|
||||||
|
// dump semantics tree for debugging
|
||||||
|
try {
|
||||||
|
composeTestRule.onRoot().printToLog("CmsStartseiteSmokeTest-SEMTREE")
|
||||||
|
} catch (_: Throwable) { }
|
||||||
|
|
||||||
|
// wait for the main title and info rows to appear
|
||||||
|
fun waitForText(text: String, timeoutMs: Long = 20000L) {
|
||||||
|
composeTestRule.waitUntil(timeoutMs) {
|
||||||
|
try {
|
||||||
|
composeTestRule.onAllNodes(hasText(text, substring = true)).fetchSemanticsNodes().isNotEmpty()
|
||||||
|
} catch (_: AssertionError) { false }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
waitForText("Startseite")
|
||||||
|
waitForText("Öffentliche")
|
||||||
|
|
||||||
|
// basic assertions (use substring matching)
|
||||||
|
assertTrue(composeTestRule.onAllNodes(hasText("Startseite", substring = true)).fetchSemanticsNodes().isNotEmpty())
|
||||||
|
assertTrue(composeTestRule.onAllNodes(hasText("Öffentliche", substring = true)).fetchSemanticsNodes().isNotEmpty())
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.uiautomator.By
|
||||||
|
import androidx.test.uiautomator.UiDevice
|
||||||
|
import androidx.test.uiautomator.UiObject2
|
||||||
|
import androidx.test.uiautomator.Until
|
||||||
|
import org.junit.Assert.assertNotNull
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class CmsUiAutomatorClickTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun clickThroughExistingCmsPages_andTrySave() {
|
||||||
|
val instrumentation = InstrumentationRegistry.getInstrumentation()
|
||||||
|
val context = instrumentation.targetContext
|
||||||
|
val device = UiDevice.getInstance(instrumentation)
|
||||||
|
val packageName = "de.harheimertc.local"
|
||||||
|
|
||||||
|
val launchIntent = context.packageManager.getLaunchIntentForPackage(packageName)
|
||||||
|
?.apply {
|
||||||
|
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
|
}
|
||||||
|
assertNotNull("Launch-Intent fuer de.harheimertc.local nicht gefunden", launchIntent)
|
||||||
|
context.startActivity(launchIntent)
|
||||||
|
|
||||||
|
device.wait(Until.hasObject(By.pkg(packageName).depth(0)), 15000)
|
||||||
|
|
||||||
|
clickText(device, "Intern")
|
||||||
|
clickText(device, "CMS")
|
||||||
|
|
||||||
|
openCmsCard(device, "Startseite")
|
||||||
|
clickIfPresent(device, "Speichern")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Inhalte")
|
||||||
|
clickIfPresent(device, "Inhalte speichern")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Vereinsmeisterschaften")
|
||||||
|
clickIfPresent(device, "Speichern")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Sportbetrieb")
|
||||||
|
clickIfPresent(device, "Speichern")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Einstellungen")
|
||||||
|
clickIfPresent(device, "Speichern")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Mitgliederverwaltung")
|
||||||
|
clickIfPresent(device, "Freischalten")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Kontaktanfragen")
|
||||||
|
clickIfPresent(device, "Antworten")
|
||||||
|
clickIfPresent(device, "Abbrechen")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
openCmsCard(device, "Newsletter")
|
||||||
|
clickIfPresent(device, "Newsletter erstellen")
|
||||||
|
clickIfPresent(device, "Abbrechen")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
|
||||||
|
if (openCmsCardIfAvailable(device, "Benutzer")) {
|
||||||
|
clickIfPresent(device, "Rollen")
|
||||||
|
clickIfPresent(device, "Abbrechen")
|
||||||
|
backToCmsDashboard(device)
|
||||||
|
}
|
||||||
|
|
||||||
|
openCmsCardIfAvailable(device, "Passwort-Reset-Diagnose")
|
||||||
|
|
||||||
|
// Wenn wir am Ende noch im App-Paket sind, ist der Flow nicht gecrasht.
|
||||||
|
device.wait(Until.hasObject(By.pkg(packageName).depth(0)), 5000)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun openCmsCard(device: UiDevice, label: String) {
|
||||||
|
if (!clickIfPresent(device, label, 2500) && !clickTextWithScroll(device, label)) {
|
||||||
|
clickText(device, label)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun openCmsCardIfAvailable(device: UiDevice, label: String): Boolean {
|
||||||
|
if (clickIfPresent(device, label, 1500)) return true
|
||||||
|
return clickTextWithScroll(device, label)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun backToCmsDashboard(device: UiDevice) {
|
||||||
|
if (!clickIfPresent(device, "CMS", 3000)) {
|
||||||
|
device.pressBack()
|
||||||
|
device.waitForIdle()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clickText(device: UiDevice, text: String, timeoutMs: Long = 10000): UiObject2 {
|
||||||
|
val obj = device.wait(Until.findObject(By.textContains(text)), timeoutMs)
|
||||||
|
requireNotNull(obj) { "Text nicht gefunden: $text" }
|
||||||
|
obj.click()
|
||||||
|
device.waitForIdle()
|
||||||
|
return obj
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clickIfPresent(device: UiDevice, text: String, timeoutMs: Long = 1500): Boolean {
|
||||||
|
val obj = device.wait(Until.findObject(By.textContains(text)), timeoutMs)
|
||||||
|
if (obj != null) {
|
||||||
|
obj.click()
|
||||||
|
device.waitForIdle()
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clickTextWithScroll(device: UiDevice, text: String, maxSwipes: Int = 5): Boolean {
|
||||||
|
if (clickIfPresent(device, text, 1500)) return true
|
||||||
|
repeat(maxSwipes) {
|
||||||
|
device.swipe(
|
||||||
|
device.displayWidth / 2,
|
||||||
|
(device.displayHeight * 0.8).toInt(),
|
||||||
|
device.displayWidth / 2,
|
||||||
|
(device.displayHeight * 0.25).toInt(),
|
||||||
|
24,
|
||||||
|
)
|
||||||
|
device.waitForIdle()
|
||||||
|
if (clickIfPresent(device, text, 1200)) return true
|
||||||
|
}
|
||||||
|
repeat(maxSwipes) {
|
||||||
|
device.swipe(
|
||||||
|
device.displayWidth / 2,
|
||||||
|
(device.displayHeight * 0.25).toInt(),
|
||||||
|
device.displayWidth / 2,
|
||||||
|
(device.displayHeight * 0.8).toInt(),
|
||||||
|
24,
|
||||||
|
)
|
||||||
|
device.waitForIdle()
|
||||||
|
if (clickIfPresent(device, text, 1200)) return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package de.harheimertc.ui.screens.gallery
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class GalleryScreenTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun galleryScreen_rendersPlaceholder() {
|
||||||
|
composeTestRule.setContent {
|
||||||
|
GalleryScreen()
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.onRoot().assertExists()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
package de.harheimertc.ui.screens.home
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.*
|
||||||
|
import androidx.navigation.compose.rememberNavController
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class HomeScreenTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun homeScreen_renders() {
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val navController = rememberNavController()
|
||||||
|
HomeScreen(navController = navController, showNavigationHeader = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.onRoot().assertExists()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
package de.harheimertc.ui.screens.login
|
||||||
|
|
||||||
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.compose.ui.test.junit4.createAndroidComposeRule
|
||||||
|
import androidx.compose.ui.test.onNodeWithText
|
||||||
|
import androidx.navigation.compose.rememberNavController
|
||||||
|
import org.junit.Rule
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
class LoginScreenTest {
|
||||||
|
@get:Rule
|
||||||
|
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun loginScreen_showsFields() {
|
||||||
|
composeTestRule.setContent {
|
||||||
|
val navController = rememberNavController()
|
||||||
|
LoginScreen(navController = navController, showBackNavigation = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
composeTestRule.onNodeWithText("E-Mail-Adresse", useUnmergedTree = true).assertExists()
|
||||||
|
composeTestRule.onNodeWithText("Passwort", useUnmergedTree = true).assertExists()
|
||||||
|
composeTestRule.onNodeWithText("Anmelden", useUnmergedTree = true).assertExists()
|
||||||
|
}
|
||||||
|
}
|
||||||
8
android-app/app/src/debug/AndroidManifest.xml
Executable file
8
android-app/app/src/debug/AndroidManifest.xml
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<application>
|
||||||
|
<!-- Disable Sentry automatic initialization in debug/test builds -->
|
||||||
|
<meta-data android:name="io.sentry.auto-init" android:value="false" />
|
||||||
|
<meta-data android:name="io.sentry.dsn" android:value="" />
|
||||||
|
</application>
|
||||||
|
</manifest>
|
||||||
14
android-app/app/src/main/AndroidManifest.xml
Normal file → Executable file
14
android-app/app/src/main/AndroidManifest.xml
Normal file → Executable file
@@ -2,19 +2,29 @@
|
|||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".HarheimerApplication"
|
android:name=".HarheimerApplication"
|
||||||
android:label="HarheimerTC"
|
android:label="@string/app_name"
|
||||||
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:theme="@style/Theme.HarheimerTC"
|
android:theme="@style/Theme.HarheimerTC"
|
||||||
android:usesCleartextTraffic="${usesCleartextTraffic}">
|
android:usesCleartextTraffic="${usesCleartextTraffic}">
|
||||||
<activity android:name="de.harheimertc.MainActivity"
|
<activity android:name="de.harheimertc.MainActivity"
|
||||||
android:exported="true">
|
android:exported="true"
|
||||||
|
android:launchMode="singleTop">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
<service
|
||||||
|
android:name=".notifications.HarheimerMessagingService"
|
||||||
|
android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.core.content.FileProvider"
|
android:name="androidx.core.content.FileProvider"
|
||||||
android:authorities="${applicationId}.files"
|
android:authorities="${applicationId}.files"
|
||||||
|
|||||||
46
android-app/app/src/main/java/de/harheimertc/HarheimerApplication.kt
Normal file → Executable file
46
android-app/app/src/main/java/de/harheimertc/HarheimerApplication.kt
Normal file → Executable file
@@ -1,7 +1,51 @@
|
|||||||
package de.harheimertc
|
package de.harheimertc
|
||||||
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
|
import coil.ImageLoader
|
||||||
|
import coil.ImageLoaderFactory
|
||||||
|
import coil.disk.DiskCache
|
||||||
|
import coil.memory.MemoryCache
|
||||||
import dagger.hilt.android.HiltAndroidApp
|
import dagger.hilt.android.HiltAndroidApp
|
||||||
|
import de.harheimertc.notifications.HarheimerNotifications
|
||||||
|
import io.sentry.Sentry
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import javax.inject.Inject
|
||||||
|
import android.util.Log
|
||||||
|
|
||||||
@HiltAndroidApp
|
@HiltAndroidApp
|
||||||
class HarheimerApplication : Application()
|
class HarheimerApplication : Application(), ImageLoaderFactory {
|
||||||
|
@Inject
|
||||||
|
lateinit var okHttpClient: OkHttpClient
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
Log.d("HILT", "HarheimerApplication.onCreate called")
|
||||||
|
super.onCreate()
|
||||||
|
HarheimerNotifications.createChannels(this)
|
||||||
|
if (BuildConfig.SENTRY_DSN.isNotBlank()) {
|
||||||
|
Sentry.init { options ->
|
||||||
|
options.dsn = BuildConfig.SENTRY_DSN
|
||||||
|
options.environment = BuildConfig.ENVIRONMENT_NAME.ifBlank { "production" }
|
||||||
|
options.release = "${BuildConfig.APPLICATION_ID}@${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}"
|
||||||
|
options.isEnableAutoSessionTracking = true
|
||||||
|
options.tracesSampleRate = 0.05
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun newImageLoader(): ImageLoader =
|
||||||
|
ImageLoader.Builder(this)
|
||||||
|
.okHttpClient(okHttpClient)
|
||||||
|
.memoryCache {
|
||||||
|
MemoryCache.Builder(this)
|
||||||
|
.maxSizePercent(0.20)
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
.diskCache {
|
||||||
|
DiskCache.Builder()
|
||||||
|
.directory(cacheDir.resolve("image_cache"))
|
||||||
|
.maxSizeBytes(75L * 1024L * 1024L)
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
.crossfade(true)
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
|||||||
69
android-app/app/src/main/java/de/harheimertc/MainActivity.kt
Normal file → Executable file
69
android-app/app/src/main/java/de/harheimertc/MainActivity.kt
Normal file → Executable file
@@ -1,30 +1,91 @@
|
|||||||
package de.harheimertc
|
package de.harheimertc
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.activity.ComponentActivity
|
import androidx.activity.ComponentActivity
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
import androidx.activity.compose.setContent
|
import androidx.activity.compose.setContent
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
import androidx.compose.ui.tooling.preview.Preview
|
import androidx.compose.ui.tooling.preview.Preview
|
||||||
import androidx.navigation.compose.rememberNavController
|
import androidx.navigation.compose.rememberNavController
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
|
||||||
import de.harheimertc.ui.navigation.NavGraph
|
import de.harheimertc.ui.navigation.NavGraph
|
||||||
|
import de.harheimertc.ui.navigation.Destinations
|
||||||
|
import de.harheimertc.notifications.HarheimerNotifications
|
||||||
import de.harheimertc.ui.theme.HarheimerTheme
|
import de.harheimertc.ui.theme.HarheimerTheme
|
||||||
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
|
import de.harheimertc.ui.navigation.NavigationViewModel
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
class MainActivity : ComponentActivity() {
|
class MainActivity : ComponentActivity() {
|
||||||
|
private val notificationRoute = mutableStateOf<String?>(null)
|
||||||
|
|
||||||
|
private val notificationPermissionLauncher = registerForActivityResult(
|
||||||
|
ActivityResultContracts.RequestPermission(),
|
||||||
|
) { granted ->
|
||||||
|
Log.i("NOTIFICATIONS", "POST_NOTIFICATIONS granted=$granted")
|
||||||
|
}
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
requestNotificationPermissionIfNeeded()
|
||||||
|
notificationRoute.value = extractNotificationRoute(intent)
|
||||||
setContent {
|
setContent {
|
||||||
App()
|
App(
|
||||||
|
notificationRoute = notificationRoute.value,
|
||||||
|
onNotificationRouteConsumed = { notificationRoute.value = null },
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onNewIntent(intent: Intent) {
|
||||||
|
super.onNewIntent(intent)
|
||||||
|
setIntent(intent)
|
||||||
|
notificationRoute.value = extractNotificationRoute(intent)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun extractNotificationRoute(intent: Intent?): String? =
|
||||||
|
intent?.getStringExtra(EXTRA_NOTIFICATION_ROUTE)?.takeIf { it.isNotBlank() }
|
||||||
|
|
||||||
|
private fun requestNotificationPermissionIfNeeded() {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU && !HarheimerNotifications.hasNotificationPermission(this)) {
|
||||||
|
notificationPermissionLauncher.launch(Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val EXTRA_NOTIFICATION_TYPE = "de.harheimertc.extra.NOTIFICATION_TYPE"
|
||||||
|
const val EXTRA_NOTIFICATION_ROUTE = "de.harheimertc.extra.NOTIFICATION_ROUTE"
|
||||||
|
const val EXTRA_NEWS_ID = "de.harheimertc.extra.NEWS_ID"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun App() {
|
fun App(
|
||||||
|
notificationRoute: String? = null,
|
||||||
|
onNotificationRouteConsumed: () -> Unit = {},
|
||||||
|
) {
|
||||||
HarheimerTheme {
|
HarheimerTheme {
|
||||||
val navController = rememberNavController()
|
val navController = rememberNavController()
|
||||||
NavGraph(navController = navController)
|
val ctx = LocalContext.current
|
||||||
|
val activity = ctx as? ComponentActivity
|
||||||
|
Log.i("HILT_FACTORY", "defaultViewModelProviderFactory=${activity?.defaultViewModelProviderFactory?.javaClass?.name}")
|
||||||
|
val navigationViewModel: NavigationViewModel = hiltViewModel()
|
||||||
|
LaunchedEffect(notificationRoute) {
|
||||||
|
val route = notificationRoute?.takeIf { it.isNotBlank() } ?: return@LaunchedEffect
|
||||||
|
navController.navigate(route) {
|
||||||
|
launchSingleTop = true
|
||||||
|
popUpTo(Destinations.Home.route)
|
||||||
|
}
|
||||||
|
onNotificationRouteConsumed()
|
||||||
|
}
|
||||||
|
NavGraph(navController = navController, navigationViewModelParam = navigationViewModel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
0
android-app/app/src/main/java/de/harheimertc/data/AccessTokenAuthenticator.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/data/AccessTokenAuthenticator.kt
Normal file → Executable file
548
android-app/app/src/main/java/de/harheimertc/data/ApiService.kt
Normal file → Executable file
548
android-app/app/src/main/java/de/harheimertc/data/ApiService.kt
Normal file → Executable file
@@ -3,16 +3,25 @@ package de.harheimertc.data
|
|||||||
import com.squareup.moshi.Json
|
import com.squareup.moshi.Json
|
||||||
import retrofit2.Response
|
import retrofit2.Response
|
||||||
import retrofit2.http.Body
|
import retrofit2.http.Body
|
||||||
|
import retrofit2.http.DELETE
|
||||||
import retrofit2.http.GET
|
import retrofit2.http.GET
|
||||||
|
import retrofit2.http.Multipart
|
||||||
|
import retrofit2.http.PATCH
|
||||||
import retrofit2.http.POST
|
import retrofit2.http.POST
|
||||||
|
import retrofit2.http.Part
|
||||||
|
import retrofit2.http.Path
|
||||||
|
import retrofit2.http.PUT
|
||||||
import retrofit2.http.Query
|
import retrofit2.http.Query
|
||||||
import retrofit2.http.Url
|
import retrofit2.http.Url
|
||||||
import retrofit2.http.Streaming
|
import retrofit2.http.Streaming
|
||||||
|
import okhttp3.MultipartBody
|
||||||
import okhttp3.ResponseBody
|
import okhttp3.ResponseBody
|
||||||
|
import okhttp3.RequestBody
|
||||||
|
|
||||||
data class ContactRequest(val name: String, val email: String, val message: String)
|
data class ContactRequest(val name: String, val email: String, val message: String)
|
||||||
data class ContactResponse(val ok: Boolean, val id: String? = null)
|
data class ContactResponse(val ok: Boolean, val id: String? = null, val message: String? = null)
|
||||||
data class TermineResponse(val success: Boolean = true, val termine: List<TerminDto> = emptyList())
|
data class TermineResponse(val success: Boolean = true, val termine: List<TerminDto> = emptyList())
|
||||||
|
data class TermineManageResponse(val success: Boolean = true, val termine: List<TerminDto> = emptyList())
|
||||||
data class TerminDto(
|
data class TerminDto(
|
||||||
val datum: String = "",
|
val datum: String = "",
|
||||||
val uhrzeit: String? = null,
|
val uhrzeit: String? = null,
|
||||||
@@ -29,6 +38,12 @@ data class SpielplanResponse(
|
|||||||
val seasons: List<SeasonDto> = emptyList(),
|
val seasons: List<SeasonDto> = emptyList(),
|
||||||
)
|
)
|
||||||
data class SeasonDto(val slug: String = "", val label: String = "")
|
data class SeasonDto(val slug: String = "", val label: String = "")
|
||||||
|
data class MannschaftenSeasonsResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val seasons: List<String> = emptyList(),
|
||||||
|
val currentSeason: String = "",
|
||||||
|
val defaultSeason: String = "",
|
||||||
|
)
|
||||||
data class SpielDto(
|
data class SpielDto(
|
||||||
@param:Json(name = "Termin") val termin: String = "",
|
@param:Json(name = "Termin") val termin: String = "",
|
||||||
@param:Json(name = "HeimMannschaft") val heimMannschaft: String = "",
|
@param:Json(name = "HeimMannschaft") val heimMannschaft: String = "",
|
||||||
@@ -73,15 +88,61 @@ data class LeagueTableRowDto(
|
|||||||
)
|
)
|
||||||
data class NewsPublicResponse(val news: List<NewsDto> = emptyList())
|
data class NewsPublicResponse(val news: List<NewsDto> = emptyList())
|
||||||
data class NewsDto(
|
data class NewsDto(
|
||||||
val id: Int? = null,
|
val id: String? = null,
|
||||||
val title: String = "",
|
val title: String = "",
|
||||||
val content: String = "",
|
val content: String = "",
|
||||||
val created: String? = null,
|
val created: String? = null,
|
||||||
|
val updated: String? = null,
|
||||||
|
val author: String? = null,
|
||||||
|
val isPublic: Boolean = false,
|
||||||
|
val isHidden: Boolean = false,
|
||||||
|
val expiresAt: String? = null,
|
||||||
|
)
|
||||||
|
data class NewsResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val news: List<NewsDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class NewsSaveRequest(
|
||||||
|
val id: String? = null,
|
||||||
|
val title: String,
|
||||||
|
val content: String,
|
||||||
|
val isPublic: Boolean = false,
|
||||||
|
val isHidden: Boolean = false,
|
||||||
|
val expiresAt: String? = null,
|
||||||
)
|
)
|
||||||
data class PublicGalleryImageDto(
|
data class PublicGalleryImageDto(
|
||||||
val filename: String = "",
|
val filename: String = "",
|
||||||
val title: String = "",
|
val title: String = "",
|
||||||
)
|
)
|
||||||
|
data class GalleryImageDto(
|
||||||
|
val id: String = "",
|
||||||
|
val title: String = "",
|
||||||
|
val description: String = "",
|
||||||
|
val isPublic: Boolean = false,
|
||||||
|
val uploadedAt: String? = null,
|
||||||
|
val previewFilename: String? = null,
|
||||||
|
)
|
||||||
|
data class GalleryPaginationDto(
|
||||||
|
val page: Int = 1,
|
||||||
|
val perPage: Int = 10,
|
||||||
|
val total: Int = 0,
|
||||||
|
val totalPages: Int = 0,
|
||||||
|
)
|
||||||
|
data class GalleryListResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val images: List<GalleryImageDto> = emptyList(),
|
||||||
|
val pagination: GalleryPaginationDto = GalleryPaginationDto(),
|
||||||
|
)
|
||||||
|
data class GalleryUploadImageDto(
|
||||||
|
val id: String = "",
|
||||||
|
val title: String = "",
|
||||||
|
val isPublic: Boolean = false,
|
||||||
|
)
|
||||||
|
data class GalleryUploadResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val image: GalleryUploadImageDto? = null,
|
||||||
|
)
|
||||||
data class MembershipRequest(
|
data class MembershipRequest(
|
||||||
val vorname: String,
|
val vorname: String,
|
||||||
val nachname: String,
|
val nachname: String,
|
||||||
@@ -137,6 +198,144 @@ data class AuthStatusResponse(
|
|||||||
)
|
)
|
||||||
data class ResetPasswordRequest(val email: String)
|
data class ResetPasswordRequest(val email: String)
|
||||||
data class AuthMessageResponse(val success: Boolean = false, val message: String? = null)
|
data class AuthMessageResponse(val success: Boolean = false, val message: String? = null)
|
||||||
|
data class SaveCsvRequest(
|
||||||
|
val filename: String,
|
||||||
|
val content: String,
|
||||||
|
)
|
||||||
|
data class SaveCsvResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val writtenTo: List<String> = emptyList(),
|
||||||
|
val jsonWrittenTo: List<String> = emptyList(),
|
||||||
|
)
|
||||||
|
data class PasskeyAuthenticationOptionsRequest(
|
||||||
|
val email: String? = null,
|
||||||
|
val client: String = "android",
|
||||||
|
)
|
||||||
|
data class PasskeyRegistrationOptionsRequest(
|
||||||
|
val preferredAuthenticatorType: String? = null,
|
||||||
|
val client: String = "android",
|
||||||
|
)
|
||||||
|
data class PasskeyDto(
|
||||||
|
val id: String = "",
|
||||||
|
val credentialId: String = "",
|
||||||
|
val createdAt: String? = null,
|
||||||
|
val lastUsedAt: String? = null,
|
||||||
|
val name: String = "",
|
||||||
|
)
|
||||||
|
data class PasskeysResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val passkeys: List<PasskeyDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class RemovePasskeyRequest(val credentialId: String)
|
||||||
|
data class ProfileVisibilityDto(
|
||||||
|
val showEmail: Boolean = true,
|
||||||
|
val showPhone: Boolean = true,
|
||||||
|
val showAddress: Boolean = false,
|
||||||
|
val showBirthday: Boolean = false,
|
||||||
|
)
|
||||||
|
data class ProfileUserDto(
|
||||||
|
val id: String? = null,
|
||||||
|
val name: String = "",
|
||||||
|
val email: String = "",
|
||||||
|
val phone: String = "",
|
||||||
|
val geburtsdatum: String = "",
|
||||||
|
val visibility: ProfileVisibilityDto = ProfileVisibilityDto(),
|
||||||
|
val roles: List<String> = emptyList(),
|
||||||
|
val role: String? = null,
|
||||||
|
)
|
||||||
|
data class ProfileResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val user: ProfileUserDto? = null,
|
||||||
|
)
|
||||||
|
data class ProfileUpdateRequest(
|
||||||
|
val name: String,
|
||||||
|
val email: String,
|
||||||
|
val phone: String? = null,
|
||||||
|
val geburtsdatum: String? = null,
|
||||||
|
val visibility: ProfileVisibilityDto,
|
||||||
|
val currentPassword: String? = null,
|
||||||
|
val newPassword: String? = null,
|
||||||
|
)
|
||||||
|
data class NotificationSettingsDto(
|
||||||
|
val newNews: Boolean = false,
|
||||||
|
val newEvents: Boolean = false,
|
||||||
|
val eventsToday: Boolean = false,
|
||||||
|
val eventsTomorrow: Boolean = false,
|
||||||
|
val ownTeamMatches: Boolean = false,
|
||||||
|
val allTeamMatches: Boolean = false,
|
||||||
|
val birthdays: Boolean = false,
|
||||||
|
val newContactRequest: Boolean = false,
|
||||||
|
val newUserRegistration: Boolean = false,
|
||||||
|
val selectedTeamSlugs: List<String> = emptyList(),
|
||||||
|
val selectedTeamSeason: String? = null,
|
||||||
|
val notificationTime: String = "09:00",
|
||||||
|
)
|
||||||
|
data class NotificationSettingsResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val settings: NotificationSettingsDto = NotificationSettingsDto(),
|
||||||
|
)
|
||||||
|
data class PushTokenRequest(
|
||||||
|
val token: String,
|
||||||
|
val platform: String = "android",
|
||||||
|
val appVersion: String? = null,
|
||||||
|
)
|
||||||
|
data class BirthdayDto(
|
||||||
|
val name: String = "",
|
||||||
|
val dayMonth: String = "",
|
||||||
|
val inDays: Int = 0,
|
||||||
|
)
|
||||||
|
data class BirthdaysResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val birthdays: List<BirthdayDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class QttrSourceDto(
|
||||||
|
val url: String = "",
|
||||||
|
)
|
||||||
|
data class QttrRowDto(
|
||||||
|
val rank: Int? = null,
|
||||||
|
val playerNumber: Int? = null,
|
||||||
|
val gender: String? = null,
|
||||||
|
val playerName: String = "",
|
||||||
|
val clubName: String = "",
|
||||||
|
val currentQttr: Int? = null,
|
||||||
|
val previousQttr: Int? = null,
|
||||||
|
val birthdate: String? = null,
|
||||||
|
)
|
||||||
|
data class QttrValuesResponse(
|
||||||
|
val format: String = "",
|
||||||
|
val importedAt: String = "",
|
||||||
|
val source: QttrSourceDto = QttrSourceDto(),
|
||||||
|
val title: String? = null,
|
||||||
|
val headerCount: Int = 0,
|
||||||
|
val rowCount: Int = 0,
|
||||||
|
val rows: List<QttrRowDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class MemberDto(
|
||||||
|
val id: String? = null,
|
||||||
|
val name: String = "",
|
||||||
|
val firstName: String = "",
|
||||||
|
val lastName: String = "",
|
||||||
|
val email: String? = null,
|
||||||
|
val phone: String? = null,
|
||||||
|
val address: String? = null,
|
||||||
|
val birthday: String? = null,
|
||||||
|
val geburtsdatum: String? = null,
|
||||||
|
val source: String = "",
|
||||||
|
val notes: String = "",
|
||||||
|
val hasLogin: Boolean = false,
|
||||||
|
val editable: Boolean = false,
|
||||||
|
val isMannschaftsspieler: Boolean = false,
|
||||||
|
val hasHallKey: Boolean = false,
|
||||||
|
val showBirthday: Boolean = false,
|
||||||
|
val loginRoles: List<String> = emptyList(),
|
||||||
|
)
|
||||||
|
data class MembersResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val members: List<MemberDto> = emptyList(),
|
||||||
|
)
|
||||||
data class RegistrationVisibility(val showBirthday: Boolean)
|
data class RegistrationVisibility(val showBirthday: Boolean)
|
||||||
data class RegistrationRequest(
|
data class RegistrationRequest(
|
||||||
val name: String,
|
val name: String,
|
||||||
@@ -190,18 +389,66 @@ data class VorstandDto(
|
|||||||
val sportwart: BoardMemberDto = BoardMemberDto(),
|
val sportwart: BoardMemberDto = BoardMemberDto(),
|
||||||
val jugendwart: BoardMemberDto = BoardMemberDto(),
|
val jugendwart: BoardMemberDto = BoardMemberDto(),
|
||||||
)
|
)
|
||||||
|
data class VereinDto(
|
||||||
|
val name: String = "",
|
||||||
|
val strasse: String = "",
|
||||||
|
val plz: String = "",
|
||||||
|
val ort: String = "",
|
||||||
|
val useVorsitzenderAddress: Boolean = false,
|
||||||
|
)
|
||||||
|
data class WebsiteResponsibleDto(
|
||||||
|
val vorname: String = "",
|
||||||
|
val nachname: String = "",
|
||||||
|
val email: String = "",
|
||||||
|
)
|
||||||
|
data class WebsiteDto(
|
||||||
|
val verantwortlicher: WebsiteResponsibleDto = WebsiteResponsibleDto(),
|
||||||
|
)
|
||||||
data class SatzungDto(
|
data class SatzungDto(
|
||||||
val pdfUrl: String = "",
|
val pdfUrl: String = "",
|
||||||
val content: String = "",
|
val content: String = "",
|
||||||
)
|
)
|
||||||
|
data class MembershipTierDto(
|
||||||
|
val id: String = "",
|
||||||
|
val typ: String = "",
|
||||||
|
val beschreibung: String? = null,
|
||||||
|
val preis: Int = 0,
|
||||||
|
val features: List<String> = emptyList(),
|
||||||
|
)
|
||||||
data class LinkItemDto(
|
data class LinkItemDto(
|
||||||
val label: String = "",
|
val label: String = "",
|
||||||
val href: String = "",
|
val href: String = "",
|
||||||
val description: String = "",
|
val description: String = "",
|
||||||
|
val id: String = "",
|
||||||
)
|
)
|
||||||
data class LinkSectionDto(
|
data class LinkSectionDto(
|
||||||
val title: String = "",
|
val title: String = "",
|
||||||
val items: List<LinkItemDto> = emptyList(),
|
val items: List<LinkItemDto> = emptyList(),
|
||||||
|
val id: String = "",
|
||||||
|
)
|
||||||
|
data class HomepageSectionDto(
|
||||||
|
val id: String = "",
|
||||||
|
val enabled: Boolean = true,
|
||||||
|
val key: String? = null,
|
||||||
|
val marker: String? = null,
|
||||||
|
val config: HomepageSectionConfigDto? = null,
|
||||||
|
)
|
||||||
|
data class HomepageSectionConfigDto(
|
||||||
|
val season: String? = null,
|
||||||
|
val teamName: String? = null,
|
||||||
|
val teamAgeGroup: String? = null,
|
||||||
|
)
|
||||||
|
data class HomepageDto(
|
||||||
|
val sections: List<HomepageSectionDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class HeroImageVariantDto(
|
||||||
|
val key: String = "",
|
||||||
|
val mobileWebp: String = "",
|
||||||
|
val desktopWebp: String = "",
|
||||||
|
val fallback: String = "",
|
||||||
|
)
|
||||||
|
data class HeroImagesResponse(
|
||||||
|
val variants: List<HeroImageVariantDto> = emptyList(),
|
||||||
)
|
)
|
||||||
data class SeitenDto(
|
data class SeitenDto(
|
||||||
val ueberUns: String = "",
|
val ueberUns: String = "",
|
||||||
@@ -214,8 +461,110 @@ data class SeitenDto(
|
|||||||
data class ConfigResponse(
|
data class ConfigResponse(
|
||||||
val training: TrainingDto = TrainingDto(),
|
val training: TrainingDto = TrainingDto(),
|
||||||
val trainer: List<TrainerDto> = emptyList(),
|
val trainer: List<TrainerDto> = emptyList(),
|
||||||
|
val mitgliedschaft: List<MembershipTierDto> = emptyList(),
|
||||||
|
val verein: VereinDto = VereinDto(),
|
||||||
val vorstand: VorstandDto = VorstandDto(),
|
val vorstand: VorstandDto = VorstandDto(),
|
||||||
|
val website: WebsiteDto = WebsiteDto(),
|
||||||
val seiten: SeitenDto = SeitenDto(),
|
val seiten: SeitenDto = SeitenDto(),
|
||||||
|
val homepage: HomepageDto = HomepageDto(),
|
||||||
|
)
|
||||||
|
data class CmsUserDto(
|
||||||
|
val id: String = "",
|
||||||
|
val email: String? = null,
|
||||||
|
val name: String = "",
|
||||||
|
val roles: List<String> = emptyList(),
|
||||||
|
val role: String? = null,
|
||||||
|
val phone: String = "",
|
||||||
|
val active: Boolean = true,
|
||||||
|
val created: String? = null,
|
||||||
|
val lastLogin: String? = null,
|
||||||
|
)
|
||||||
|
data class CmsUsersResponse(val users: List<CmsUserDto> = emptyList())
|
||||||
|
data class ContactRequestDto(
|
||||||
|
val id: String = "",
|
||||||
|
val name: String = "",
|
||||||
|
val email: String = "",
|
||||||
|
val phone: String? = null,
|
||||||
|
val message: String = "",
|
||||||
|
val status: String = "",
|
||||||
|
val createdAt: String? = null,
|
||||||
|
val repliedAt: String? = null,
|
||||||
|
)
|
||||||
|
data class NewsletterDto(
|
||||||
|
val id: String = "",
|
||||||
|
val subject: String = "",
|
||||||
|
val title: String = "",
|
||||||
|
val createdAt: String? = null,
|
||||||
|
val sentAt: String? = null,
|
||||||
|
val status: String? = null,
|
||||||
|
)
|
||||||
|
data class NewsletterListResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val newsletters: List<NewsletterDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class NewsletterCreateRequest(
|
||||||
|
val title: String,
|
||||||
|
val content: String,
|
||||||
|
val type: String,
|
||||||
|
val targetGroup: String? = null,
|
||||||
|
val sendToExternal: Boolean? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
data class NewsletterCreateResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val newsletter: NewsletterDto? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
data class NewsletterSendResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val message: String? = null,
|
||||||
|
val stats: Map<String, Any>? = null,
|
||||||
|
)
|
||||||
|
data class NewsletterGroupDto(
|
||||||
|
val id: String = "",
|
||||||
|
val name: String = "",
|
||||||
|
val description: String = "",
|
||||||
|
val subscribers: List<String> = emptyList(),
|
||||||
|
val createdAt: String? = null,
|
||||||
|
)
|
||||||
|
data class NewsletterGroupsResponse(
|
||||||
|
val success: Boolean = false,
|
||||||
|
val groups: List<NewsletterGroupDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class NewsletterSubscriptionRequest(
|
||||||
|
val groupId: String,
|
||||||
|
val email: String,
|
||||||
|
val name: String? = null,
|
||||||
|
)
|
||||||
|
data class PasswordResetStepDto(
|
||||||
|
val ts: String? = null,
|
||||||
|
val step: String = "",
|
||||||
|
val status: String = "",
|
||||||
|
val reason: String? = null,
|
||||||
|
val errorCode: String? = null,
|
||||||
|
val errorMessage: String? = null,
|
||||||
|
)
|
||||||
|
data class PasswordResetAttemptDto(
|
||||||
|
val requestId: String = "",
|
||||||
|
val startedAt: String? = null,
|
||||||
|
val emailMasked: String? = null,
|
||||||
|
val ip: String? = null,
|
||||||
|
val failed: Boolean = false,
|
||||||
|
val steps: List<PasswordResetStepDto> = emptyList(),
|
||||||
|
)
|
||||||
|
data class PasswordResetMatchingUserDto(
|
||||||
|
val id: String = "",
|
||||||
|
val name: String = "",
|
||||||
|
val email: String = "",
|
||||||
|
val active: Boolean = true,
|
||||||
|
val lastLogin: String? = null,
|
||||||
|
)
|
||||||
|
data class PasswordResetDiagnosticsResponse(
|
||||||
|
val retentionHours: Int = 0,
|
||||||
|
val searchedEmail: String? = null,
|
||||||
|
val matchingUsers: List<PasswordResetMatchingUserDto> = emptyList(),
|
||||||
|
val attempts: List<PasswordResetAttemptDto> = emptyList(),
|
||||||
)
|
)
|
||||||
|
|
||||||
interface ApiService {
|
interface ApiService {
|
||||||
@@ -223,7 +572,19 @@ interface ApiService {
|
|||||||
suspend fun postContact(@Body req: ContactRequest): Response<ContactResponse>
|
suspend fun postContact(@Body req: ContactRequest): Response<ContactResponse>
|
||||||
|
|
||||||
@GET("/api/galerie/list")
|
@GET("/api/galerie/list")
|
||||||
suspend fun galerieList(): Response<List<String>>
|
suspend fun galerieList(
|
||||||
|
@Query("page") page: Int = 1,
|
||||||
|
@Query("perPage") perPage: Int = 60,
|
||||||
|
): Response<GalleryListResponse>
|
||||||
|
|
||||||
|
@Multipart
|
||||||
|
@POST("/api/galerie/upload")
|
||||||
|
suspend fun uploadGalleryImage(
|
||||||
|
@Part image: MultipartBody.Part,
|
||||||
|
@Part("title") title: RequestBody,
|
||||||
|
@Part("description") description: RequestBody,
|
||||||
|
@Part("isPublic") isPublic: RequestBody,
|
||||||
|
): Response<GalleryUploadResponse>
|
||||||
|
|
||||||
@GET("/api/galerie")
|
@GET("/api/galerie")
|
||||||
suspend fun publicGalleryImages(): Response<List<PublicGalleryImageDto>>
|
suspend fun publicGalleryImages(): Response<List<PublicGalleryImageDto>>
|
||||||
@@ -231,6 +592,21 @@ interface ApiService {
|
|||||||
@GET("/api/termine")
|
@GET("/api/termine")
|
||||||
suspend fun termine(): Response<TermineResponse>
|
suspend fun termine(): Response<TermineResponse>
|
||||||
|
|
||||||
|
@GET("/api/termine-manage")
|
||||||
|
suspend fun termineManage(): Response<TermineManageResponse>
|
||||||
|
|
||||||
|
@POST("/api/termine-manage")
|
||||||
|
suspend fun saveTermin(@Body request: TerminDto): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@DELETE("/api/termine-manage")
|
||||||
|
suspend fun deleteTermin(
|
||||||
|
@Query("datum") datum: String,
|
||||||
|
@Query("uhrzeit") uhrzeit: String = "",
|
||||||
|
@Query("titel") titel: String,
|
||||||
|
@Query("beschreibung") beschreibung: String = "",
|
||||||
|
@Query("kategorie") kategorie: String = "Sonstiges",
|
||||||
|
): Response<AuthMessageResponse>
|
||||||
|
|
||||||
@GET("/api/spielplan")
|
@GET("/api/spielplan")
|
||||||
suspend fun spielplan(@Query("season") season: String? = null): Response<SpielplanResponse>
|
suspend fun spielplan(@Query("season") season: String? = null): Response<SpielplanResponse>
|
||||||
|
|
||||||
@@ -243,18 +619,42 @@ interface ApiService {
|
|||||||
@GET("/api/news-public")
|
@GET("/api/news-public")
|
||||||
suspend fun publicNews(): Response<NewsPublicResponse>
|
suspend fun publicNews(): Response<NewsPublicResponse>
|
||||||
|
|
||||||
|
@GET("/api/news")
|
||||||
|
suspend fun memberNews(): Response<NewsResponse>
|
||||||
|
|
||||||
|
@POST("/api/news")
|
||||||
|
suspend fun saveNews(@Body request: NewsSaveRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@DELETE("/api/news")
|
||||||
|
suspend fun deleteNews(@Query("id") id: String): Response<AuthMessageResponse>
|
||||||
|
|
||||||
@GET("/api/mannschaften")
|
@GET("/api/mannschaften")
|
||||||
suspend fun mannschaften(@Query("season") season: String? = null): Response<ResponseBody>
|
suspend fun mannschaften(@Query("season") season: String? = null): Response<ResponseBody>
|
||||||
|
|
||||||
|
@GET("/api/mannschaften/seasons")
|
||||||
|
suspend fun mannschaftenSeasons(): Response<MannschaftenSeasonsResponse>
|
||||||
|
|
||||||
@GET("/api/config")
|
@GET("/api/config")
|
||||||
suspend fun config(): Response<ConfigResponse>
|
suspend fun config(): Response<ConfigResponse>
|
||||||
|
|
||||||
|
@GET("/api/hero-images")
|
||||||
|
suspend fun heroImages(): Response<HeroImagesResponse>
|
||||||
|
|
||||||
|
@PUT("/api/config")
|
||||||
|
suspend fun updateConfig(@Body request: ConfigResponse): Response<ConfigResponse>
|
||||||
|
|
||||||
@GET("/data/spielsysteme.csv")
|
@GET("/data/spielsysteme.csv")
|
||||||
suspend fun spielsysteme(): Response<ResponseBody>
|
suspend fun spielsysteme(): Response<ResponseBody>
|
||||||
|
|
||||||
@GET("/api/vereinsmeisterschaften")
|
@GET("/api/vereinsmeisterschaften")
|
||||||
suspend fun vereinsmeisterschaften(): Response<ResponseBody>
|
suspend fun vereinsmeisterschaften(): Response<ResponseBody>
|
||||||
|
|
||||||
|
@POST("/api/cms/save-csv")
|
||||||
|
suspend fun saveCsv(@Body request: SaveCsvRequest): Response<SaveCsvResponse>
|
||||||
|
|
||||||
|
@POST("/api/cms/import-spielplan")
|
||||||
|
suspend fun importSpielplan(): Response<AuthMessageResponse>
|
||||||
|
|
||||||
@POST("/api/membership/generate-pdf")
|
@POST("/api/membership/generate-pdf")
|
||||||
suspend fun generateMembershipPdf(@Body request: MembershipRequest): Response<MembershipResponse>
|
suspend fun generateMembershipPdf(@Body request: MembershipRequest): Response<MembershipResponse>
|
||||||
|
|
||||||
@@ -279,4 +679,146 @@ interface ApiService {
|
|||||||
|
|
||||||
@POST("/api/auth/register")
|
@POST("/api/auth/register")
|
||||||
suspend fun register(@Body request: RegistrationRequest): Response<AuthMessageResponse>
|
suspend fun register(@Body request: RegistrationRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/auth/passkeys/authentication-options")
|
||||||
|
suspend fun passkeyAuthenticationOptions(@Body request: PasskeyAuthenticationOptionsRequest): Response<ResponseBody>
|
||||||
|
|
||||||
|
@POST("/api/auth/passkeys/login")
|
||||||
|
suspend fun passkeyLogin(@Body request: RequestBody): Response<LoginResponse>
|
||||||
|
|
||||||
|
@GET("/api/auth/passkeys/list")
|
||||||
|
suspend fun passkeys(): Response<PasskeysResponse>
|
||||||
|
|
||||||
|
@POST("/api/auth/passkeys/registration-options")
|
||||||
|
suspend fun passkeyRegistrationOptions(@Body request: PasskeyRegistrationOptionsRequest): Response<ResponseBody>
|
||||||
|
|
||||||
|
@POST("/api/auth/passkeys/register")
|
||||||
|
suspend fun registerPasskey(@Body request: RequestBody): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/auth/passkeys/remove")
|
||||||
|
suspend fun removePasskey(@Body request: RemovePasskeyRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/profile")
|
||||||
|
suspend fun profile(): Response<ProfileResponse>
|
||||||
|
|
||||||
|
@retrofit2.http.PUT("/api/profile")
|
||||||
|
suspend fun updateProfile(@Body request: ProfileUpdateRequest): Response<ProfileResponse>
|
||||||
|
|
||||||
|
@GET("/api/profile/notifications")
|
||||||
|
suspend fun notificationSettings(): Response<NotificationSettingsResponse>
|
||||||
|
|
||||||
|
@retrofit2.http.PUT("/api/profile/notifications")
|
||||||
|
suspend fun updateNotificationSettings(@Body request: NotificationSettingsDto): Response<NotificationSettingsResponse>
|
||||||
|
|
||||||
|
@POST("/api/profile/push-token")
|
||||||
|
suspend fun registerPushToken(@Body request: PushTokenRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/birthdays")
|
||||||
|
suspend fun birthdays(): Response<BirthdaysResponse>
|
||||||
|
|
||||||
|
@GET("/api/mitgliederbereich/qttr")
|
||||||
|
suspend fun qttrValues(): Response<QttrValuesResponse>
|
||||||
|
|
||||||
|
@GET("/api/members")
|
||||||
|
suspend fun members(): Response<MembersResponse>
|
||||||
|
|
||||||
|
data class MemberSaveRequest(
|
||||||
|
val id: String? = null,
|
||||||
|
val firstName: String,
|
||||||
|
val lastName: String,
|
||||||
|
val geburtsdatum: String,
|
||||||
|
val email: String? = null,
|
||||||
|
val phone: String? = null,
|
||||||
|
val address: String? = null,
|
||||||
|
val notes: String? = null,
|
||||||
|
val isMannschaftsspieler: Boolean = false,
|
||||||
|
val hasHallKey: Boolean = false,
|
||||||
|
val showBirthday: Boolean = false,
|
||||||
|
)
|
||||||
|
|
||||||
|
data class BulkImportRequest(val members: List<Map<String, String>>)
|
||||||
|
data class BulkImportResponse(val success: Boolean = false, val summary: Map<String, Int>? = null)
|
||||||
|
|
||||||
|
@POST("/api/members")
|
||||||
|
suspend fun saveMember(@Body request: MemberSaveRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@DELETE("/api/members")
|
||||||
|
suspend fun deleteMember(@Body body: Map<String, String>): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/members/bulk")
|
||||||
|
suspend fun bulkImportMembers(@Body request: BulkImportRequest): Response<BulkImportResponse>
|
||||||
|
|
||||||
|
@POST("/api/members/toggle-mannschaftsspieler")
|
||||||
|
suspend fun toggleMannschaftsspieler(@Body body: Map<String, String>): Response<Map<String, Any>>
|
||||||
|
|
||||||
|
@GET("/api/cms/users/list")
|
||||||
|
suspend fun cmsUsers(): Response<CmsUsersResponse>
|
||||||
|
|
||||||
|
data class UpdateUserRolesRequest(val id: String, val roles: List<String>)
|
||||||
|
data class UpdateUserActiveRequest(val id: String, val active: Boolean)
|
||||||
|
|
||||||
|
@PUT("/api/cms/users/update-roles")
|
||||||
|
suspend fun updateUserRoles(@Body request: UpdateUserRolesRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@PUT("/api/cms/users/update-active")
|
||||||
|
suspend fun updateUserActive(@Body request: UpdateUserActiveRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/cms/users/resend-invite")
|
||||||
|
suspend fun resendInvite(@Query("id") id: String): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/cms/contact-requests")
|
||||||
|
suspend fun contactRequests(): Response<List<ContactRequestDto>>
|
||||||
|
|
||||||
|
data class ContactReplyRequest(val message: String)
|
||||||
|
|
||||||
|
@POST("/api/cms/contact-requests/{id}/reply")
|
||||||
|
suspend fun replyToContactRequest(@Path("id") id: String, @Body request: ContactReplyRequest): Response<de.harheimertc.data.ContactResponse>
|
||||||
|
|
||||||
|
@PATCH("/api/cms/contact-requests/{id}/toggle-status")
|
||||||
|
suspend fun toggleContactRequestStatus(@Path("id") id: String): Response<de.harheimertc.data.ContactResponse>
|
||||||
|
|
||||||
|
@GET("/api/newsletter/list")
|
||||||
|
suspend fun newsletters(): Response<NewsletterListResponse>
|
||||||
|
|
||||||
|
@GET("/api/newsletter/groups/list")
|
||||||
|
suspend fun newsletterGroups(): Response<NewsletterGroupsResponse>
|
||||||
|
|
||||||
|
@POST("/api/newsletter/groups/create")
|
||||||
|
suspend fun createNewsletterGroup(@Body request: Map<String, @JvmSuppressWildcards Any?>): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@PUT("/api/newsletter/groups/{id}")
|
||||||
|
suspend fun updateNewsletterGroup(@Path("id") id: String, @Body request: Map<String, @JvmSuppressWildcards Any?>): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@DELETE("/api/newsletter/groups/{id}")
|
||||||
|
suspend fun deleteNewsletterGroup(@Path("id") id: String): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/newsletter/create")
|
||||||
|
suspend fun createNewsletter(@Body request: NewsletterCreateRequest): Response<NewsletterCreateResponse>
|
||||||
|
|
||||||
|
@PUT("/api/newsletter/{id}")
|
||||||
|
suspend fun updateNewsletter(@Path("id") id: String, @Body request: Map<String, @JvmSuppressWildcards Any?>): Response<NewsletterCreateResponse>
|
||||||
|
|
||||||
|
@POST("/api/newsletter/{id}/send")
|
||||||
|
suspend fun sendNewsletter(@Path("id") id: String): Response<NewsletterSendResponse>
|
||||||
|
|
||||||
|
@DELETE("/api/newsletter/{id}")
|
||||||
|
suspend fun deleteNewsletter(@Path("id") id: String): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/newsletter/groups/public-list")
|
||||||
|
suspend fun publicNewsletterGroups(): Response<NewsletterGroupsResponse>
|
||||||
|
|
||||||
|
@POST("/api/newsletter/subscribe")
|
||||||
|
suspend fun subscribeNewsletter(@Body request: NewsletterSubscriptionRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@POST("/api/newsletter/unsubscribe-by-email")
|
||||||
|
suspend fun unsubscribeNewsletter(@Body request: NewsletterSubscriptionRequest): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/newsletter/confirm")
|
||||||
|
suspend fun confirmNewsletter(@Query("token") token: String): Response<AuthMessageResponse>
|
||||||
|
|
||||||
|
@GET("/api/cms/password-reset-diagnostics")
|
||||||
|
suspend fun passwordResetDiagnostics(
|
||||||
|
@Query("email") email: String? = null,
|
||||||
|
@Query("failedOnly") failedOnly: Boolean = true,
|
||||||
|
): Response<PasswordResetDiagnosticsResponse>
|
||||||
}
|
}
|
||||||
|
|||||||
0
android-app/app/src/main/java/de/harheimertc/data/AuthInterceptor.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/data/AuthInterceptor.kt
Normal file → Executable file
49
android-app/app/src/main/java/de/harheimertc/data/ConnectivityMonitor.kt
Executable file
49
android-app/app/src/main/java/de/harheimertc/data/ConnectivityMonitor.kt
Executable file
@@ -0,0 +1,49 @@
|
|||||||
|
package de.harheimertc.data
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.net.ConnectivityManager
|
||||||
|
import android.net.NetworkCapabilities
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.SupervisorJob
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
|
import kotlinx.coroutines.flow.asStateFlow
|
||||||
|
import kotlinx.coroutines.currentCoroutineContext
|
||||||
|
import kotlinx.coroutines.isActive
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class ConnectivityMonitor @Inject constructor(
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
) {
|
||||||
|
private val scope = CoroutineScope(SupervisorJob() + Dispatchers.Default)
|
||||||
|
private val _online = MutableStateFlow(hasInternetAccess())
|
||||||
|
val online: StateFlow<Boolean> = _online.asStateFlow()
|
||||||
|
|
||||||
|
init {
|
||||||
|
scope.launch { poll() }
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun poll() {
|
||||||
|
while (currentCoroutineContext().isActive) {
|
||||||
|
val current = hasInternetAccess()
|
||||||
|
if (_online.value != current) {
|
||||||
|
_online.value = current
|
||||||
|
}
|
||||||
|
delay(10_000L)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun hasInternetAccess(): Boolean {
|
||||||
|
val manager = context.getSystemService(Context.CONNECTIVITY_SERVICE) as? ConnectivityManager
|
||||||
|
?: return false
|
||||||
|
val network = manager.activeNetwork ?: return false
|
||||||
|
val capabilities = manager.getNetworkCapabilities(network) ?: return false
|
||||||
|
return capabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
|
||||||
|
}
|
||||||
|
}
|
||||||
7
android-app/app/src/main/java/de/harheimertc/data/MediaTypes.kt
Executable file
7
android-app/app/src/main/java/de/harheimertc/data/MediaTypes.kt
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
package de.harheimertc.data
|
||||||
|
|
||||||
|
import okhttp3.MediaType.Companion.toMediaType
|
||||||
|
|
||||||
|
object MediaTypes {
|
||||||
|
val json = "application/json; charset=utf-8".toMediaType()
|
||||||
|
}
|
||||||
55
android-app/app/src/main/java/de/harheimertc/data/NetworkModule.kt
Normal file → Executable file
55
android-app/app/src/main/java/de/harheimertc/data/NetworkModule.kt
Normal file → Executable file
@@ -1,12 +1,18 @@
|
|||||||
package de.harheimertc.data
|
package de.harheimertc.data
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.net.ConnectivityManager
|
||||||
|
import android.net.NetworkCapabilities
|
||||||
import de.harheimertc.BuildConfig
|
import de.harheimertc.BuildConfig
|
||||||
import com.squareup.moshi.Moshi
|
import com.squareup.moshi.Moshi
|
||||||
import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory
|
import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory
|
||||||
import dagger.Module
|
import dagger.Module
|
||||||
import dagger.Provides
|
import dagger.Provides
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
import dagger.hilt.InstallIn
|
import dagger.hilt.InstallIn
|
||||||
import dagger.hilt.components.SingletonComponent
|
import dagger.hilt.components.SingletonComponent
|
||||||
|
import okhttp3.Cache
|
||||||
|
import okhttp3.CacheControl
|
||||||
import okhttp3.OkHttpClient
|
import okhttp3.OkHttpClient
|
||||||
import okhttp3.JavaNetCookieJar
|
import okhttp3.JavaNetCookieJar
|
||||||
import okhttp3.logging.HttpLoggingInterceptor
|
import okhttp3.logging.HttpLoggingInterceptor
|
||||||
@@ -15,6 +21,7 @@ import retrofit2.converter.moshi.MoshiConverterFactory
|
|||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
import java.net.CookieManager
|
import java.net.CookieManager
|
||||||
import java.net.CookiePolicy
|
import java.net.CookiePolicy
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
@Module
|
@Module
|
||||||
@InstallIn(SingletonComponent::class)
|
@InstallIn(SingletonComponent::class)
|
||||||
@@ -27,15 +34,48 @@ object NetworkModule {
|
|||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
fun provideOkHttpClient(authInterceptor: AuthInterceptor, accessTokenAuthenticator: AccessTokenAuthenticator): OkHttpClient {
|
fun provideHttpCache(@ApplicationContext context: Context): Cache =
|
||||||
|
Cache(context.cacheDir.resolve("http_cache"), 25L * 1024L * 1024L)
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
fun provideOkHttpClient(
|
||||||
|
@ApplicationContext context: Context,
|
||||||
|
authInterceptor: AuthInterceptor,
|
||||||
|
accessTokenAuthenticator: AccessTokenAuthenticator,
|
||||||
|
cache: Cache,
|
||||||
|
): OkHttpClient {
|
||||||
val logging = HttpLoggingInterceptor()
|
val logging = HttpLoggingInterceptor()
|
||||||
logging.level = HttpLoggingInterceptor.Level.BASIC
|
logging.level = if (BuildConfig.DEBUG) HttpLoggingInterceptor.Level.BODY else HttpLoggingInterceptor.Level.BASIC
|
||||||
val cookies = CookieManager().apply {
|
val cookies = CookieManager().apply {
|
||||||
setCookiePolicy(CookiePolicy.ACCEPT_ALL)
|
setCookiePolicy(CookiePolicy.ACCEPT_ALL)
|
||||||
}
|
}
|
||||||
return OkHttpClient.Builder()
|
return OkHttpClient.Builder()
|
||||||
|
.cache(cache)
|
||||||
.cookieJar(JavaNetCookieJar(cookies))
|
.cookieJar(JavaNetCookieJar(cookies))
|
||||||
.addInterceptor(authInterceptor)
|
.addInterceptor(authInterceptor)
|
||||||
|
.addInterceptor { chain ->
|
||||||
|
val request = chain.request()
|
||||||
|
if (request.method == "GET" && !hasNetwork(context)) {
|
||||||
|
val offlineRequest = request.newBuilder()
|
||||||
|
.cacheControl(CacheControl.Builder().onlyIfCached().maxStale(7, TimeUnit.DAYS).build())
|
||||||
|
.build()
|
||||||
|
chain.proceed(offlineRequest)
|
||||||
|
} else {
|
||||||
|
chain.proceed(request)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.addNetworkInterceptor { chain ->
|
||||||
|
val response = chain.proceed(chain.request())
|
||||||
|
val request = response.request
|
||||||
|
if (request.method == "GET" && request.header("Authorization").isNullOrBlank()) {
|
||||||
|
response.newBuilder()
|
||||||
|
.header("Cache-Control", "public, max-age=300")
|
||||||
|
.build()
|
||||||
|
} else {
|
||||||
|
response
|
||||||
|
}
|
||||||
|
}
|
||||||
.authenticator(accessTokenAuthenticator)
|
.authenticator(accessTokenAuthenticator)
|
||||||
.addInterceptor(logging)
|
.addInterceptor(logging)
|
||||||
.build()
|
.build()
|
||||||
@@ -44,8 +84,10 @@ object NetworkModule {
|
|||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
fun provideRetrofit(moshi: Moshi, client: OkHttpClient): Retrofit {
|
fun provideRetrofit(moshi: Moshi, client: OkHttpClient): Retrofit {
|
||||||
|
val runtimeBase = BuildConfig.API_BASE_URL
|
||||||
|
android.util.Log.i("NetworkModule", "Retrofit baseUrl runtime=$runtimeBase")
|
||||||
return Retrofit.Builder()
|
return Retrofit.Builder()
|
||||||
.baseUrl(BuildConfig.API_BASE_URL)
|
.baseUrl(runtimeBase)
|
||||||
.client(client)
|
.client(client)
|
||||||
.addConverterFactory(MoshiConverterFactory.create(moshi))
|
.addConverterFactory(MoshiConverterFactory.create(moshi))
|
||||||
.build()
|
.build()
|
||||||
@@ -54,4 +96,11 @@ object NetworkModule {
|
|||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
fun provideApiService(retrofit: Retrofit): ApiService = retrofit.create(ApiService::class.java)
|
fun provideApiService(retrofit: Retrofit): ApiService = retrofit.create(ApiService::class.java)
|
||||||
|
|
||||||
|
private fun hasNetwork(context: Context): Boolean {
|
||||||
|
val manager = context.getSystemService(Context.CONNECTIVITY_SERVICE) as? ConnectivityManager ?: return false
|
||||||
|
val network = manager.activeNetwork ?: return false
|
||||||
|
val capabilities = manager.getNetworkCapabilities(network) ?: return false
|
||||||
|
return capabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
172
android-app/app/src/main/java/de/harheimertc/data/SecureOfflineCache.kt
Executable file
172
android-app/app/src/main/java/de/harheimertc/data/SecureOfflineCache.kt
Executable file
@@ -0,0 +1,172 @@
|
|||||||
|
package de.harheimertc.data
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.security.crypto.EncryptedSharedPreferences
|
||||||
|
import androidx.security.crypto.MasterKey
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import com.squareup.moshi.Types
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import java.security.GeneralSecurityException
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class SecureOfflineCache @Inject constructor(
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
private val moshi: Moshi,
|
||||||
|
) {
|
||||||
|
private val tag = "SecureOfflineCache"
|
||||||
|
private companion object {
|
||||||
|
const val KEY_BIRTHDAYS = "birthdays"
|
||||||
|
const val KEY_QTTR_VALUES = "qttr_values"
|
||||||
|
const val KEY_MEMBERS = "members"
|
||||||
|
const val KEY_MEMBER_NEWS = "member_news"
|
||||||
|
const val KEY_CMS_CONFIG = "cms_config"
|
||||||
|
const val KEY_CMS_USERS = "cms_users"
|
||||||
|
const val KEY_CONTACT_REQUESTS = "contact_requests"
|
||||||
|
const val KEY_NEWSLETTERS = "newsletters"
|
||||||
|
const val KEY_NEWSLETTER_GROUPS = "newsletter_groups"
|
||||||
|
const val KEY_PASSWORD_RESET_DIAGNOSTICS = "password_reset_diagnostics"
|
||||||
|
const val TIMESTAMP_SUFFIX = "_ts"
|
||||||
|
}
|
||||||
|
|
||||||
|
private val preferences by lazy {
|
||||||
|
buildEncryptedPreferences()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildEncryptedPreferences() = try {
|
||||||
|
val masterKey = MasterKey.Builder(context)
|
||||||
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
|
.build()
|
||||||
|
EncryptedSharedPreferences.create(
|
||||||
|
context,
|
||||||
|
"harheimertc_offline_cache",
|
||||||
|
masterKey,
|
||||||
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
|
)
|
||||||
|
} catch (error: GeneralSecurityException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
} catch (error: RuntimeException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun recoverEncryptedPreferences(error: Throwable) = try {
|
||||||
|
Log.w(tag, "EncryptedSharedPreferences defekt, Offline-Cache wird neu angelegt", error)
|
||||||
|
context.deleteSharedPreferences("harheimertc_offline_cache")
|
||||||
|
val masterKey = MasterKey.Builder(context)
|
||||||
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
|
.build()
|
||||||
|
EncryptedSharedPreferences.create(
|
||||||
|
context,
|
||||||
|
"harheimertc_offline_cache",
|
||||||
|
masterKey,
|
||||||
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
|
)
|
||||||
|
} catch (retryError: Throwable) {
|
||||||
|
Log.e(tag, "Offline-Cache konnte nicht wiederhergestellt werden", retryError)
|
||||||
|
throw retryError
|
||||||
|
}
|
||||||
|
|
||||||
|
fun putBirthdays(response: BirthdaysResponse) = put(KEY_BIRTHDAYS, response, BirthdaysResponse::class.java)
|
||||||
|
fun getBirthdays(maxAgeMillis: Long? = null): BirthdaysResponse? = get(KEY_BIRTHDAYS, BirthdaysResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putQttrValues(response: QttrValuesResponse) = put(KEY_QTTR_VALUES, response, QttrValuesResponse::class.java)
|
||||||
|
fun getQttrValues(maxAgeMillis: Long? = null): QttrValuesResponse? = get(KEY_QTTR_VALUES, QttrValuesResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putMembers(response: MembersResponse) = put(KEY_MEMBERS, response, MembersResponse::class.java)
|
||||||
|
fun getMembers(maxAgeMillis: Long? = null): MembersResponse? = get(KEY_MEMBERS, MembersResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putNews(response: NewsResponse) = put(KEY_MEMBER_NEWS, response, NewsResponse::class.java)
|
||||||
|
fun getNews(maxAgeMillis: Long? = null): NewsResponse? = get(KEY_MEMBER_NEWS, NewsResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putConfig(response: ConfigResponse) = put(KEY_CMS_CONFIG, response, ConfigResponse::class.java)
|
||||||
|
fun getConfig(maxAgeMillis: Long? = null): ConfigResponse? = get(KEY_CMS_CONFIG, ConfigResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putCmsUsers(response: CmsUsersResponse) = put(KEY_CMS_USERS, response, CmsUsersResponse::class.java)
|
||||||
|
fun getCmsUsers(maxAgeMillis: Long? = null): CmsUsersResponse? = get(KEY_CMS_USERS, CmsUsersResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putContactRequests(response: List<ContactRequestDto>) {
|
||||||
|
val type = Types.newParameterizedType(List::class.java, ContactRequestDto::class.java)
|
||||||
|
val json = moshi.adapter<List<ContactRequestDto>>(type).toJson(response)
|
||||||
|
preferences.edit()
|
||||||
|
.putString(KEY_CONTACT_REQUESTS, json)
|
||||||
|
.putLong(timestampKey(KEY_CONTACT_REQUESTS), System.currentTimeMillis())
|
||||||
|
.apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getContactRequests(maxAgeMillis: Long? = null): List<ContactRequestDto>? {
|
||||||
|
if (isExpired(KEY_CONTACT_REQUESTS, maxAgeMillis)) return null
|
||||||
|
val json = preferences.getString(KEY_CONTACT_REQUESTS, null) ?: return null
|
||||||
|
val type = Types.newParameterizedType(List::class.java, ContactRequestDto::class.java)
|
||||||
|
return runCatching { moshi.adapter<List<ContactRequestDto>>(type).fromJson(json) }.getOrNull()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun putNewsletters(response: NewsletterListResponse) = put(KEY_NEWSLETTERS, response, NewsletterListResponse::class.java)
|
||||||
|
fun getNewsletters(maxAgeMillis: Long? = null): NewsletterListResponse? =
|
||||||
|
get(KEY_NEWSLETTERS, NewsletterListResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putNewsletterGroups(response: NewsletterGroupsResponse) = put(KEY_NEWSLETTER_GROUPS, response, NewsletterGroupsResponse::class.java)
|
||||||
|
fun getNewsletterGroups(maxAgeMillis: Long? = null): NewsletterGroupsResponse? =
|
||||||
|
get(KEY_NEWSLETTER_GROUPS, NewsletterGroupsResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun putPasswordResetDiagnostics(response: PasswordResetDiagnosticsResponse) =
|
||||||
|
put(KEY_PASSWORD_RESET_DIAGNOSTICS, response, PasswordResetDiagnosticsResponse::class.java)
|
||||||
|
fun getPasswordResetDiagnostics(maxAgeMillis: Long? = null): PasswordResetDiagnosticsResponse? =
|
||||||
|
get(KEY_PASSWORD_RESET_DIAGNOSTICS, PasswordResetDiagnosticsResponse::class.java, maxAgeMillis)
|
||||||
|
|
||||||
|
fun clearCmsProtectedCaches() {
|
||||||
|
clear(
|
||||||
|
KEY_CMS_CONFIG,
|
||||||
|
KEY_CMS_USERS,
|
||||||
|
KEY_CONTACT_REQUESTS,
|
||||||
|
KEY_NEWSLETTERS,
|
||||||
|
KEY_NEWSLETTER_GROUPS,
|
||||||
|
KEY_PASSWORD_RESET_DIAGNOSTICS,
|
||||||
|
KEY_MEMBER_NEWS,
|
||||||
|
KEY_QTTR_VALUES,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun clearCmsUsersCache() = clear(KEY_CMS_USERS)
|
||||||
|
fun clearContactRequestsCache() = clear(KEY_CONTACT_REQUESTS)
|
||||||
|
fun clearNewslettersCache() = clear(KEY_NEWSLETTERS)
|
||||||
|
fun clearNewsletterGroupsCache() = clear(KEY_NEWSLETTER_GROUPS)
|
||||||
|
fun clearPasswordResetDiagnosticsCache() = clear(KEY_PASSWORD_RESET_DIAGNOSTICS)
|
||||||
|
fun clearCmsConfigCache() = clear(KEY_CMS_CONFIG)
|
||||||
|
fun clearCmsNewsCache() = clear(KEY_MEMBER_NEWS)
|
||||||
|
|
||||||
|
private fun <T> put(key: String, value: T, type: Class<T>) {
|
||||||
|
val json = moshi.adapter(type).toJson(value)
|
||||||
|
preferences.edit()
|
||||||
|
.putString(key, json)
|
||||||
|
.putLong(timestampKey(key), System.currentTimeMillis())
|
||||||
|
.apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun <T> get(key: String, type: Class<T>, maxAgeMillis: Long? = null): T? {
|
||||||
|
if (isExpired(key, maxAgeMillis)) return null
|
||||||
|
val json = preferences.getString(key, null) ?: return null
|
||||||
|
return runCatching { moshi.adapter(type).fromJson(json) }.getOrNull()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun clear(vararg keys: String) {
|
||||||
|
val editor = preferences.edit()
|
||||||
|
keys.forEach { key ->
|
||||||
|
editor.remove(key)
|
||||||
|
editor.remove(timestampKey(key))
|
||||||
|
}
|
||||||
|
editor.apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isExpired(key: String, maxAgeMillis: Long?): Boolean {
|
||||||
|
if (maxAgeMillis == null) return false
|
||||||
|
val savedAt = preferences.getLong(timestampKey(key), 0L)
|
||||||
|
if (savedAt <= 0L) return true
|
||||||
|
return (System.currentTimeMillis() - savedAt) > maxAgeMillis
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun timestampKey(key: String): String = key + TIMESTAMP_SUFFIX
|
||||||
|
}
|
||||||
0
android-app/app/src/main/java/de/harheimertc/data/SessionRefresher.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/data/SessionRefresher.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/di/RepositoryModule.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/di/RepositoryModule.kt
Normal file → Executable file
@@ -0,0 +1,43 @@
|
|||||||
|
package de.harheimertc.notifications
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.google.firebase.messaging.FirebaseMessagingService
|
||||||
|
import com.google.firebase.messaging.RemoteMessage
|
||||||
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import de.harheimertc.repositories.PushTokenRepository
|
||||||
|
import kotlinx.coroutines.CoroutineScope
|
||||||
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
import kotlinx.coroutines.SupervisorJob
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
@AndroidEntryPoint
|
||||||
|
class HarheimerMessagingService : FirebaseMessagingService() {
|
||||||
|
@Inject
|
||||||
|
lateinit var pushTokenRepository: PushTokenRepository
|
||||||
|
|
||||||
|
private val serviceScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)
|
||||||
|
|
||||||
|
override fun onNewToken(token: String) {
|
||||||
|
super.onNewToken(token)
|
||||||
|
serviceScope.launch {
|
||||||
|
pushTokenRepository.registerToken(token)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onMessageReceived(message: RemoteMessage) {
|
||||||
|
super.onMessageReceived(message)
|
||||||
|
val title = message.notification?.title
|
||||||
|
?: message.data["title"]
|
||||||
|
?: "Harheimer TC"
|
||||||
|
val body = message.notification?.body
|
||||||
|
?: message.data["body"]
|
||||||
|
?: message.data["message"]
|
||||||
|
?: return
|
||||||
|
val notificationId = message.data["notificationId"]?.toIntOrNull()
|
||||||
|
?: message.messageId?.hashCode()
|
||||||
|
?: System.currentTimeMillis().toInt()
|
||||||
|
val shown = HarheimerNotifications.showBasicNotification(this, notificationId, title, body, message.data)
|
||||||
|
Log.d("HarheimerMessaging", "Push message received type=${message.data["type"]}, shown=$shown")
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
package de.harheimertc.notifications
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.app.NotificationChannel
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Build
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import androidx.core.app.NotificationManagerCompat
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import de.harheimertc.MainActivity
|
||||||
|
import de.harheimertc.R
|
||||||
|
import de.harheimertc.ui.navigation.Destinations
|
||||||
|
|
||||||
|
object HarheimerNotifications {
|
||||||
|
const val DEFAULT_CHANNEL_ID = "harheimer_tc_updates"
|
||||||
|
|
||||||
|
fun createChannels(context: Context) {
|
||||||
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return
|
||||||
|
val channel = NotificationChannel(
|
||||||
|
DEFAULT_CHANNEL_ID,
|
||||||
|
"Harheimer TC",
|
||||||
|
NotificationManager.IMPORTANCE_DEFAULT,
|
||||||
|
).apply {
|
||||||
|
description = "Benachrichtigungen des Harheimer TC"
|
||||||
|
}
|
||||||
|
context.getSystemService(NotificationManager::class.java).createNotificationChannel(channel)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun hasNotificationPermission(context: Context): Boolean =
|
||||||
|
Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU ||
|
||||||
|
ContextCompat.checkSelfPermission(context, Manifest.permission.POST_NOTIFICATIONS) == PackageManager.PERMISSION_GRANTED
|
||||||
|
|
||||||
|
fun showBasicNotification(
|
||||||
|
context: Context,
|
||||||
|
notificationId: Int,
|
||||||
|
title: String,
|
||||||
|
message: String,
|
||||||
|
data: Map<String, String> = emptyMap(),
|
||||||
|
): Boolean {
|
||||||
|
if (!hasNotificationPermission(context)) return false
|
||||||
|
val notification = NotificationCompat.Builder(context, DEFAULT_CHANNEL_ID)
|
||||||
|
.setSmallIcon(R.mipmap.ic_launcher)
|
||||||
|
.setContentTitle(title)
|
||||||
|
.setContentText(message)
|
||||||
|
.setStyle(NotificationCompat.BigTextStyle().bigText(message))
|
||||||
|
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
|
||||||
|
.setContentIntent(createContentIntent(context, notificationId, data))
|
||||||
|
.setAutoCancel(true)
|
||||||
|
.build()
|
||||||
|
return try {
|
||||||
|
NotificationManagerCompat.from(context).notify(notificationId, notification)
|
||||||
|
true
|
||||||
|
} catch (_: SecurityException) {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createContentIntent(context: Context, notificationId: Int, payload: Map<String, String>): PendingIntent {
|
||||||
|
val route = destinationRoute(payload)
|
||||||
|
val intent = Intent(context, MainActivity::class.java).apply {
|
||||||
|
flags = Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_SINGLE_TOP
|
||||||
|
putExtra(MainActivity.EXTRA_NOTIFICATION_TYPE, payload["type"])
|
||||||
|
putExtra(MainActivity.EXTRA_NOTIFICATION_ROUTE, route)
|
||||||
|
payload["newsId"]?.let { putExtra(MainActivity.EXTRA_NEWS_ID, it) }
|
||||||
|
}
|
||||||
|
return PendingIntent.getActivity(
|
||||||
|
context,
|
||||||
|
notificationId,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun destinationRoute(data: Map<String, String>): String = when (data["type"]) {
|
||||||
|
"news", "news_expiring" -> Destinations.MemberNews.route
|
||||||
|
"event", "events_today", "events_tomorrow" -> Destinations.Termine.route
|
||||||
|
"team_matches" -> Destinations.Spielplan.route
|
||||||
|
"birthdays" -> Destinations.MemberArea.route
|
||||||
|
"contact_request" -> Destinations.CmsContactRequests.route
|
||||||
|
"user_registration" -> Destinations.CmsBenutzer.route
|
||||||
|
else -> Destinations.Home.route
|
||||||
|
}
|
||||||
|
}
|
||||||
4
android-app/app/src/main/java/de/harheimertc/repositories/AuthRepository.kt
Normal file → Executable file
4
android-app/app/src/main/java/de/harheimertc/repositories/AuthRepository.kt
Normal file → Executable file
@@ -6,4 +6,8 @@ interface AuthRepository {
|
|||||||
fun getSessionId(): String?
|
fun getSessionId(): String?
|
||||||
fun setSession(accessToken: String?, refreshToken: String?, sessionId: String?)
|
fun setSession(accessToken: String?, refreshToken: String?, sessionId: String?)
|
||||||
fun clearSession()
|
fun clearSession()
|
||||||
|
// Device binding via Android Keystore (optional enhancement)
|
||||||
|
fun ensureDeviceKey(): String?
|
||||||
|
fun getDevicePublicKey(): String?
|
||||||
|
fun signWithDeviceKey(data: ByteArray): ByteArray?
|
||||||
}
|
}
|
||||||
|
|||||||
54
android-app/app/src/main/java/de/harheimertc/repositories/AuthRepositoryImpl.kt
Normal file → Executable file
54
android-app/app/src/main/java/de/harheimertc/repositories/AuthRepositoryImpl.kt
Normal file → Executable file
@@ -1,18 +1,29 @@
|
|||||||
package de.harheimertc.repositories
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
|
import android.util.Log
|
||||||
import androidx.security.crypto.EncryptedSharedPreferences
|
import androidx.security.crypto.EncryptedSharedPreferences
|
||||||
import androidx.security.crypto.MasterKey
|
import androidx.security.crypto.MasterKey
|
||||||
import dagger.hilt.android.qualifiers.ApplicationContext
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import de.harheimertc.security.DeviceKeyManager
|
||||||
|
import java.security.GeneralSecurityException
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
|
|
||||||
@Singleton
|
@Singleton
|
||||||
class AuthRepositoryImpl @Inject constructor(@param:ApplicationContext private val context: Context) : AuthRepository {
|
class AuthRepositoryImpl @Inject constructor(
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
private val deviceKeyManager: DeviceKeyManager,
|
||||||
|
) : AuthRepository {
|
||||||
|
private val tag = "AuthRepository"
|
||||||
private val tokenKey = "auth_token"
|
private val tokenKey = "auth_token"
|
||||||
private val refreshTokenKey = "auth_refresh_token"
|
private val refreshTokenKey = "auth_refresh_token"
|
||||||
private val sessionIdKey = "auth_session_id"
|
private val sessionIdKey = "auth_session_id"
|
||||||
private val preferences by lazy {
|
private val preferences by lazy {
|
||||||
|
buildEncryptedPreferences()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildEncryptedPreferences() = try {
|
||||||
val masterKey = MasterKey.Builder(context)
|
val masterKey = MasterKey.Builder(context)
|
||||||
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
.build()
|
.build()
|
||||||
@@ -23,6 +34,28 @@ class AuthRepositoryImpl @Inject constructor(@param:ApplicationContext private v
|
|||||||
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
)
|
)
|
||||||
|
} catch (error: GeneralSecurityException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
} catch (error: RuntimeException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun recoverEncryptedPreferences(error: Throwable) = try {
|
||||||
|
Log.w(tag, "EncryptedSharedPreferences defekt, Session wird neu angelegt", error)
|
||||||
|
context.deleteSharedPreferences("harheimertc_auth")
|
||||||
|
val masterKey = MasterKey.Builder(context)
|
||||||
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
|
.build()
|
||||||
|
EncryptedSharedPreferences.create(
|
||||||
|
context,
|
||||||
|
"harheimertc_auth",
|
||||||
|
masterKey,
|
||||||
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
|
)
|
||||||
|
} catch (retryError: Throwable) {
|
||||||
|
Log.e(tag, "EncryptedSharedPreferences konnte nicht wiederhergestellt werden", retryError)
|
||||||
|
throw retryError
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getToken(): String? = preferences.getString(tokenKey, null)
|
override fun getToken(): String? = preferences.getString(tokenKey, null)
|
||||||
@@ -46,4 +79,23 @@ class AuthRepositoryImpl @Inject constructor(@param:ApplicationContext private v
|
|||||||
.remove(sessionIdKey)
|
.remove(sessionIdKey)
|
||||||
.apply()
|
.apply()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Keystore / device binding helpers
|
||||||
|
override fun ensureDeviceKey(): String? = try {
|
||||||
|
deviceKeyManager.ensureKeyPair()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getDevicePublicKey(): String? = try {
|
||||||
|
deviceKeyManager.getPublicKeyBase64()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun signWithDeviceKey(data: ByteArray): ByteArray? = try {
|
||||||
|
deviceKeyManager.sign(data)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
463
android-app/app/src/main/java/de/harheimertc/repositories/CmsRepository.kt
Executable file
463
android-app/app/src/main/java/de/harheimertc/repositories/CmsRepository.kt
Executable file
@@ -0,0 +1,463 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.CmsUsersResponse
|
||||||
|
import de.harheimertc.data.ConfigResponse
|
||||||
|
import de.harheimertc.data.ContactRequestDto
|
||||||
|
import de.harheimertc.data.NewsletterGroupsResponse
|
||||||
|
import de.harheimertc.data.NewsletterListResponse
|
||||||
|
import de.harheimertc.data.PasswordResetDiagnosticsResponse
|
||||||
|
import de.harheimertc.data.SaveCsvRequest
|
||||||
|
import de.harheimertc.data.SaveCsvResponse
|
||||||
|
import de.harheimertc.data.SecureOfflineCache
|
||||||
|
import de.harheimertc.data.SpielplanResponse
|
||||||
|
import de.harheimertc.data.TerminDto
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
class CmsRepository @Inject constructor(
|
||||||
|
private val api: ApiService,
|
||||||
|
private val cache: SecureOfflineCache,
|
||||||
|
) {
|
||||||
|
private companion object {
|
||||||
|
const val CMS_CACHE_MAX_AGE_MS = 24L * 60L * 60L * 1000L
|
||||||
|
const val PASSWORD_RESET_DIAGNOSTICS_MAX_AGE_MS = 6L * 60L * 60L * 1000L
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun config(): Result<ConfigResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.config()
|
||||||
|
if (!response.isSuccessful) error("Konfiguration konnte nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putConfig,
|
||||||
|
cached = { cache.getConfig(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "Konfiguration konnte nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun saveConfig(config: ConfigResponse): Result<ConfigResponse> = runCatching {
|
||||||
|
val response = api.updateConfig(config)
|
||||||
|
if (!response.isSuccessful) error("Konfiguration konnte nicht gespeichert werden.")
|
||||||
|
val saved = response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
cache.putConfig(saved)
|
||||||
|
saved
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun vereinsmeisterschaften(): Result<List<MeisterschaftResult>> = runCatching {
|
||||||
|
val response = api.vereinsmeisterschaften()
|
||||||
|
if (!response.isSuccessful) error("Vereinsmeisterschaften konnten nicht geladen werden.")
|
||||||
|
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
||||||
|
if (values.size < 6) return@mapNotNull null
|
||||||
|
MeisterschaftResult(
|
||||||
|
year = values[0],
|
||||||
|
category = values[1],
|
||||||
|
rank = values[2],
|
||||||
|
playerOne = values[3],
|
||||||
|
playerTwo = values[4],
|
||||||
|
note = values[5],
|
||||||
|
imageOne = values.getOrElse(6) { "" },
|
||||||
|
imageTwo = values.getOrElse(7) { "" },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveVereinsmeisterschaften(results: List<MeisterschaftResult>): Result<SaveCsvResponse> = runCatching {
|
||||||
|
val csvHeader = "Jahr,Kategorie,Platz,Spieler1,Spieler2,Bemerkung,imageFilename1,imageFilename2"
|
||||||
|
val csvRows = results.map { result ->
|
||||||
|
listOf(
|
||||||
|
result.year,
|
||||||
|
result.category,
|
||||||
|
result.rank,
|
||||||
|
result.playerOne,
|
||||||
|
result.playerTwo,
|
||||||
|
result.note,
|
||||||
|
result.imageOne,
|
||||||
|
result.imageTwo,
|
||||||
|
).joinToString(",") { value -> "\"${value.replace("\"", "\"\"")}\"" }
|
||||||
|
}
|
||||||
|
val response = api.saveCsv(
|
||||||
|
SaveCsvRequest(
|
||||||
|
filename = "vereinsmeisterschaften.csv",
|
||||||
|
content = listOf(csvHeader).plus(csvRows).joinToString("\n"),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Vereinsmeisterschaften konnten nicht gespeichert werden.")
|
||||||
|
response.body() ?: SaveCsvResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun managedTermine(): Result<List<TerminDto>> = runCatching {
|
||||||
|
val response = api.termineManage()
|
||||||
|
if (!response.isSuccessful) error("Termine konnten nicht geladen werden.")
|
||||||
|
response.body()?.termine.orEmpty()
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveTermin(request: TerminDto): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.saveTermin(request)
|
||||||
|
if (!response.isSuccessful) error("Termin konnte nicht gespeichert werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteTermin(request: TerminDto): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.deleteTermin(
|
||||||
|
datum = request.datum,
|
||||||
|
uhrzeit = request.uhrzeit.orEmpty(),
|
||||||
|
titel = request.titel,
|
||||||
|
beschreibung = request.beschreibung.orEmpty(),
|
||||||
|
kategorie = request.kategorie ?: "Sonstiges",
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Termin konnte nicht gelöscht werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun mannschaften(season: String? = null): Result<List<CmsMannschaftRow>> = runCatching {
|
||||||
|
val response = api.mannschaften(season)
|
||||||
|
if (!response.isSuccessful) error("Mannschaften konnten nicht geladen werden.")
|
||||||
|
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
||||||
|
if (values.size < 10 || values[0].isBlank()) return@mapNotNull null
|
||||||
|
CmsMannschaftRow(
|
||||||
|
mannschaft = values[0],
|
||||||
|
liga = values[1],
|
||||||
|
staffelleiter = values[2],
|
||||||
|
telefon = values[3],
|
||||||
|
heimspieltag = values[4],
|
||||||
|
spielsystem = values[5],
|
||||||
|
mannschaftsfuehrer = values[6],
|
||||||
|
spieler = values[7],
|
||||||
|
informationenLink = values[8],
|
||||||
|
letzteAktualisierung = values[9],
|
||||||
|
spielplanMannschaftId = values.getOrElse(10) { "" },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun mannschaftenSeasons(): Result<de.harheimertc.data.MannschaftenSeasonsResponse> = runCatching {
|
||||||
|
val response = api.mannschaftenSeasons()
|
||||||
|
if (!response.isSuccessful) error("Saisons konnten nicht geladen werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.MannschaftenSeasonsResponse()
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveMannschaften(season: String?, rows: List<CmsMannschaftRow>): Result<SaveCsvResponse> = runCatching {
|
||||||
|
val response = api.saveCsv(
|
||||||
|
SaveCsvRequest(
|
||||||
|
filename = season?.takeIf { it.isNotBlank() }?.let { "mannschaften_$it.csv" } ?: "mannschaften.csv",
|
||||||
|
content = rows.toMannschaftenCsv(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Mannschaften konnten nicht gespeichert werden.")
|
||||||
|
response.body() ?: SaveCsvResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun importSpielplan(): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.importSpielplan()
|
||||||
|
if (!response.isSuccessful) error("Spielplan konnte nicht importiert werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun spielplan(season: String? = null): Result<SpielplanResponse> = runCatching {
|
||||||
|
val response = api.spielplan(season)
|
||||||
|
if (!response.isSuccessful) error("Spielplan konnte nicht geladen werden.")
|
||||||
|
val body = response.body() ?: error("Leere Antwort")
|
||||||
|
if (!body.success) error(body.message ?: "Spielplan konnte nicht geladen werden.")
|
||||||
|
body
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveSpielplan(headers: List<String>, rows: List<List<String>>): Result<SaveCsvResponse> = runCatching {
|
||||||
|
val response = api.saveCsv(
|
||||||
|
SaveCsvRequest(
|
||||||
|
filename = "spielplan.csv",
|
||||||
|
content = listOf(headers).plus(rows).joinToString("\n") { row -> row.toCsvRow(";") },
|
||||||
|
),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Spielplan konnte nicht gespeichert werden.")
|
||||||
|
response.body() ?: SaveCsvResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun users(): Result<CmsUsersResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.cmsUsers()
|
||||||
|
if (!response.isSuccessful) error("Benutzer konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putCmsUsers,
|
||||||
|
cached = { cache.getCmsUsers(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "Benutzer konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun updateUserRoles(id: String, roles: List<String>): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val req = de.harheimertc.data.ApiService.UpdateUserRolesRequest(id, roles)
|
||||||
|
val response = api.updateUserRoles(req)
|
||||||
|
if (!response.isSuccessful) error("Benutzerrollen konnten nicht aktualisiert werden.")
|
||||||
|
cache.clearCmsUsersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun updateUserActive(id: String, active: Boolean): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val req = de.harheimertc.data.ApiService.UpdateUserActiveRequest(id, active)
|
||||||
|
val response = api.updateUserActive(req)
|
||||||
|
if (!response.isSuccessful) error("Benutzerstatus konnte nicht aktualisiert werden.")
|
||||||
|
cache.clearCmsUsersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun resendInvite(id: String): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.resendInvite(id)
|
||||||
|
if (!response.isSuccessful) error("Einladung konnte nicht erneut gesendet werden.")
|
||||||
|
cache.clearCmsUsersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun contactRequests(): Result<List<ContactRequestDto>> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.contactRequests()
|
||||||
|
if (!response.isSuccessful) error("Kontaktanfragen konnten nicht geladen werden.")
|
||||||
|
response.body() ?: emptyList()
|
||||||
|
},
|
||||||
|
save = cache::putContactRequests,
|
||||||
|
cached = { cache.getContactRequests(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "Kontaktanfragen konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun replyToContactRequest(id: String, message: String): Result<de.harheimertc.data.ContactResponse> = runCatching {
|
||||||
|
val req = ApiService.ContactReplyRequest(message)
|
||||||
|
val response = api.replyToContactRequest(id, req)
|
||||||
|
if (!response.isSuccessful) error("Antwort konnte nicht gesendet werden.")
|
||||||
|
cache.clearContactRequestsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.ContactResponse(ok = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun toggleContactRequestStatus(id: String): Result<de.harheimertc.data.ContactResponse> = runCatching {
|
||||||
|
val response = api.toggleContactRequestStatus(id)
|
||||||
|
if (!response.isSuccessful) error("Status konnte nicht geändert werden.")
|
||||||
|
cache.clearContactRequestsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.ContactResponse(ok = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun newsletters(): Result<NewsletterListResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.newsletters()
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putNewsletters,
|
||||||
|
cached = { cache.getNewsletters(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "Newsletter konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun newsletterGroups(): Result<NewsletterGroupsResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.newsletterGroups()
|
||||||
|
if (!response.isSuccessful) error("Newsletter-Gruppen konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putNewsletterGroups,
|
||||||
|
cached = { cache.getNewsletterGroups(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "Newsletter-Gruppen konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun passwordResetDiagnostics(
|
||||||
|
email: String? = null,
|
||||||
|
failedOnly: Boolean = true,
|
||||||
|
): Result<PasswordResetDiagnosticsResponse> {
|
||||||
|
val normalizedEmail = email?.trim().orEmpty()
|
||||||
|
val canUseSharedCache = normalizedEmail.isBlank() && failedOnly
|
||||||
|
return fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.passwordResetDiagnostics(
|
||||||
|
email = normalizedEmail.takeIf { it.isNotBlank() },
|
||||||
|
failedOnly = failedOnly,
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Passwort-Reset-Diagnose konnte nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = { response ->
|
||||||
|
if (canUseSharedCache) cache.putPasswordResetDiagnostics(response)
|
||||||
|
},
|
||||||
|
cached = {
|
||||||
|
if (canUseSharedCache) {
|
||||||
|
cache.getPasswordResetDiagnostics(PASSWORD_RESET_DIAGNOSTICS_MAX_AGE_MS)
|
||||||
|
} else {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fallbackMessage = "Passwort-Reset-Diagnose konnte nicht geladen werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun news(): Result<de.harheimertc.data.NewsResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.memberNews()
|
||||||
|
if (!response.isSuccessful) error("News konnten nicht geladen werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.NewsResponse()
|
||||||
|
},
|
||||||
|
save = cache::putNews,
|
||||||
|
cached = { cache.getNews(CMS_CACHE_MAX_AGE_MS) },
|
||||||
|
fallbackMessage = "News konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun saveNews(request: de.harheimertc.data.NewsSaveRequest): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.saveNews(request)
|
||||||
|
if (!response.isSuccessful) error("News konnten nicht gespeichert werden.")
|
||||||
|
cache.clearCmsNewsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun createNewsletter(request: de.harheimertc.data.NewsletterCreateRequest): Result<de.harheimertc.data.NewsletterCreateResponse> = runCatching {
|
||||||
|
val response = api.createNewsletter(request)
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnte nicht erstellt werden.")
|
||||||
|
cache.clearNewslettersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.NewsletterCreateResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun updateNewsletter(id: String, patch: Map<String, Any?>): Result<de.harheimertc.data.NewsletterCreateResponse> = runCatching {
|
||||||
|
val response = api.updateNewsletter(id, patch)
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnte nicht aktualisiert werden.")
|
||||||
|
cache.clearNewslettersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.NewsletterCreateResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun sendNewsletter(id: String): Result<de.harheimertc.data.NewsletterSendResponse> = runCatching {
|
||||||
|
val response = api.sendNewsletter(id)
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnte nicht versendet werden.")
|
||||||
|
cache.clearNewslettersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.NewsletterSendResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteNewsletter(id: String): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.deleteNewsletter(id)
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnte nicht gelöscht werden.")
|
||||||
|
cache.clearNewslettersCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun createNewsletterGroup(payload: Map<String, @JvmSuppressWildcards Any?>): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
// use generic POST via Retrofit? build request through create endpoint
|
||||||
|
val response = api.createNewsletterGroup(payload)
|
||||||
|
if (!response.isSuccessful) error("Gruppe konnte nicht erstellt werden.")
|
||||||
|
cache.clearNewsletterGroupsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun updateNewsletterGroup(id: String, patch: Map<String, Any?>): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.updateNewsletterGroup(id, patch)
|
||||||
|
if (!response.isSuccessful) error("Gruppe konnte nicht aktualisiert werden.")
|
||||||
|
cache.clearNewsletterGroupsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteNewsletterGroup(id: String): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.deleteNewsletterGroup(id)
|
||||||
|
if (!response.isSuccessful) error("Gruppe konnte nicht gelöscht werden.")
|
||||||
|
cache.clearNewsletterGroupsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteNews(id: String): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.deleteNews(id)
|
||||||
|
if (!response.isSuccessful) error("News konnten nicht gelöscht werden.")
|
||||||
|
cache.clearCmsNewsCache()
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun <T> fetchEncryptedFallback(
|
||||||
|
load: suspend () -> T,
|
||||||
|
save: (T) -> Unit,
|
||||||
|
cached: () -> T?,
|
||||||
|
fallbackMessage: String,
|
||||||
|
): Result<T> = runCatching {
|
||||||
|
runCatching { load() }
|
||||||
|
.onSuccess(save)
|
||||||
|
.getOrElse { original ->
|
||||||
|
cached() ?: throw IllegalStateException(fallbackMessage, original)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data class CmsMannschaftRow(
|
||||||
|
val mannschaft: String = "",
|
||||||
|
val liga: String = "",
|
||||||
|
val staffelleiter: String = "",
|
||||||
|
val telefon: String = "",
|
||||||
|
val heimspieltag: String = "",
|
||||||
|
val spielsystem: String = "",
|
||||||
|
val mannschaftsfuehrer: String = "",
|
||||||
|
val spieler: String = "",
|
||||||
|
val informationenLink: String = "",
|
||||||
|
val letzteAktualisierung: String = "",
|
||||||
|
val spielplanMannschaftId: String = "",
|
||||||
|
)
|
||||||
|
|
||||||
|
private fun List<CmsMannschaftRow>.toMannschaftenCsv(): String {
|
||||||
|
val header = listOf(
|
||||||
|
"Mannschaft",
|
||||||
|
"Liga",
|
||||||
|
"Staffelleiter",
|
||||||
|
"Telefon",
|
||||||
|
"Heimspieltag",
|
||||||
|
"Spielsystem",
|
||||||
|
"Mannschaftsführer",
|
||||||
|
"Spieler",
|
||||||
|
"Weitere Informationen Link",
|
||||||
|
"Letzte Aktualisierung",
|
||||||
|
"Spielplan Mannschaft ID",
|
||||||
|
).toCsvRow()
|
||||||
|
val rows = map { row ->
|
||||||
|
listOf(
|
||||||
|
row.mannschaft,
|
||||||
|
row.liga,
|
||||||
|
row.staffelleiter,
|
||||||
|
row.telefon,
|
||||||
|
row.heimspieltag,
|
||||||
|
row.spielsystem,
|
||||||
|
row.mannschaftsfuehrer,
|
||||||
|
row.spieler,
|
||||||
|
row.informationenLink,
|
||||||
|
row.letzteAktualisierung,
|
||||||
|
row.spielplanMannschaftId,
|
||||||
|
).toCsvRow()
|
||||||
|
}
|
||||||
|
return listOf(header).plus(rows).joinToString("\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun List<String>.toCsvRow(delimiter: String = ","): String =
|
||||||
|
joinToString(delimiter) { value -> value.csvEscape(delimiter) }
|
||||||
|
|
||||||
|
private fun String.csvEscape(delimiter: String): String {
|
||||||
|
val needsQuotes = contains(delimiter) || contains('"') || contains('\n') || contains('\r')
|
||||||
|
val escaped = replace("\"", "\"\"")
|
||||||
|
return if (needsQuotes) "\"$escaped\"" else escaped
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun parseCsv(csv: String): List<List<String>> =
|
||||||
|
csv.lineSequence().filter(String::isNotBlank).map(::parseCsvLine).toList()
|
||||||
|
|
||||||
|
private fun parseCsvLine(line: String): List<String> {
|
||||||
|
val values = mutableListOf<String>()
|
||||||
|
val value = StringBuilder()
|
||||||
|
var quoted = false
|
||||||
|
var index = 0
|
||||||
|
while (index < line.length) {
|
||||||
|
when (val char = line[index]) {
|
||||||
|
'"' -> {
|
||||||
|
if (quoted && index + 1 < line.length && line[index + 1] == '"') {
|
||||||
|
value.append('"')
|
||||||
|
index++
|
||||||
|
} else {
|
||||||
|
quoted = !quoted
|
||||||
|
}
|
||||||
|
}
|
||||||
|
',' -> if (quoted) value.append(char) else {
|
||||||
|
values += value.toString().trim()
|
||||||
|
value.clear()
|
||||||
|
}
|
||||||
|
else -> value.append(char)
|
||||||
|
}
|
||||||
|
index++
|
||||||
|
}
|
||||||
|
values += value.toString().trim()
|
||||||
|
return values
|
||||||
|
}
|
||||||
0
android-app/app/src/main/java/de/harheimertc/repositories/ContactRepository.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/repositories/ContactRepository.kt
Normal file → Executable file
129
android-app/app/src/main/java/de/harheimertc/repositories/GalleryRepository.kt
Normal file → Executable file
129
android-app/app/src/main/java/de/harheimertc/repositories/GalleryRepository.kt
Normal file → Executable file
@@ -1,27 +1,124 @@
|
|||||||
package de.harheimertc.repositories
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import android.graphics.BitmapFactory
|
||||||
|
import android.net.Uri
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import de.harheimertc.BuildConfig
|
||||||
import de.harheimertc.data.ApiService
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.GalleryImageDto
|
||||||
|
import de.harheimertc.data.GalleryPaginationDto
|
||||||
|
import okhttp3.MediaType.Companion.toMediaType
|
||||||
|
import okhttp3.MultipartBody
|
||||||
|
import okhttp3.RequestBody.Companion.asRequestBody
|
||||||
|
import okhttp3.RequestBody.Companion.toRequestBody
|
||||||
|
import java.io.File
|
||||||
|
import java.io.FileOutputStream
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
|
|
||||||
@Singleton
|
@Singleton
|
||||||
class GalleryRepository @Inject constructor(private val api: ApiService) {
|
class GalleryRepository @Inject constructor(
|
||||||
|
private val api: ApiService,
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
) {
|
||||||
suspend fun hasPublicImages(): Result<Boolean> = runCatching {
|
suspend fun hasPublicImages(): Result<Boolean> = runCatching {
|
||||||
val response = api.publicGalleryImages()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
val response = api.galerieList(page = 1, perPage = 1)
|
||||||
response.body().orEmpty().isNotEmpty()
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
}
|
response.body()?.images.orEmpty().isNotEmpty()
|
||||||
|
|
||||||
suspend fun fetchImages(): Result<List<String>> {
|
|
||||||
return try {
|
|
||||||
val resp = api.galerieList()
|
|
||||||
if (resp.isSuccessful) {
|
|
||||||
Result.success(resp.body() ?: emptyList())
|
|
||||||
} else {
|
|
||||||
Result.failure(Exception("HTTP ${resp.code()}"))
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
Result.failure(e)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
suspend fun fetchImages(page: Int = 1, perPage: Int = 60): Result<GalleryPage> {
|
||||||
|
return runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val resp = api.galerieList(page = page, perPage = perPage)
|
||||||
|
if (resp.isSuccessful) {
|
||||||
|
val body = resp.body()
|
||||||
|
GalleryPage(
|
||||||
|
images = body?.images.orEmpty().map { it.toGalleryImage() },
|
||||||
|
pagination = body?.pagination ?: GalleryPaginationDto(),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
error("HTTP ${resp.code()}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun uploadImage(uri: Uri, title: String, description: String, isPublic: Boolean): Result<Unit> = runCatching {
|
||||||
|
val titleValue = title.trim()
|
||||||
|
require(titleValue.isNotBlank()) { "Bitte einen Titel eintragen." }
|
||||||
|
|
||||||
|
val uploadFile = prepareCompressedUploadFile(uri)
|
||||||
|
val mediaType = "image/jpeg".toMediaType()
|
||||||
|
val imageBody = uploadFile.asRequestBody(mediaType)
|
||||||
|
val imagePart = MultipartBody.Part.createFormData("image", uploadFile.name, imageBody)
|
||||||
|
val textType = "text/plain".toMediaType()
|
||||||
|
|
||||||
|
val response = api.uploadGalleryImage(
|
||||||
|
image = imagePart,
|
||||||
|
title = titleValue.toRequestBody(textType),
|
||||||
|
description = description.trim().toRequestBody(textType),
|
||||||
|
isPublic = isPublic.toString().toRequestBody(textType),
|
||||||
|
)
|
||||||
|
uploadFile.delete()
|
||||||
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
|
val body = response.body()
|
||||||
|
if (body?.success == false) error(body.message ?: "Fehler beim Hochladen des Bildes")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun GalleryImageDto.toGalleryImage(): GalleryImage {
|
||||||
|
val base = BuildConfig.API_BASE_URL.trimEnd('/')
|
||||||
|
return GalleryImage(
|
||||||
|
id = id,
|
||||||
|
title = title,
|
||||||
|
description = description,
|
||||||
|
isPublic = isPublic,
|
||||||
|
uploadedAt = uploadedAt,
|
||||||
|
previewUrl = "$base/api/media/galerie/$id?preview=true",
|
||||||
|
imageUrl = "$base/api/media/galerie/$id",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun prepareCompressedUploadFile(uri: Uri): File {
|
||||||
|
val inputBytes = context.contentResolver.openInputStream(uri)?.use { it.readBytes() }
|
||||||
|
?: error("Bilddatei konnte nicht gelesen werden.")
|
||||||
|
val original = BitmapFactory.decodeByteArray(inputBytes, 0, inputBytes.size)
|
||||||
|
?: error("Bilddatei konnte nicht verarbeitet werden.")
|
||||||
|
val scaled = original.scaleInside(maxSize = 2000)
|
||||||
|
val file = File(context.cacheDir, "gallery_upload_${System.currentTimeMillis()}.jpg")
|
||||||
|
FileOutputStream(file).use { out ->
|
||||||
|
scaled.compress(Bitmap.CompressFormat.JPEG, 85, out)
|
||||||
|
}
|
||||||
|
if (scaled !== original) scaled.recycle()
|
||||||
|
original.recycle()
|
||||||
|
return file
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Bitmap.scaleInside(maxSize: Int): Bitmap {
|
||||||
|
val largestSide = maxOf(width, height)
|
||||||
|
if (largestSide <= maxSize) return this
|
||||||
|
val scale = maxSize.toFloat() / largestSide.toFloat()
|
||||||
|
val nextWidth = (width * scale).toInt().coerceAtLeast(1)
|
||||||
|
val nextHeight = (height * scale).toInt().coerceAtLeast(1)
|
||||||
|
return Bitmap.createScaledBitmap(this, nextWidth, nextHeight, true)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data class GalleryImage(
|
||||||
|
val id: String,
|
||||||
|
val title: String,
|
||||||
|
val description: String,
|
||||||
|
val isPublic: Boolean,
|
||||||
|
val uploadedAt: String?,
|
||||||
|
val previewUrl: String,
|
||||||
|
val imageUrl: String,
|
||||||
|
)
|
||||||
|
|
||||||
|
data class GalleryPage(
|
||||||
|
val images: List<GalleryImage>,
|
||||||
|
val pagination: GalleryPaginationDto,
|
||||||
|
)
|
||||||
|
|||||||
@@ -0,0 +1,80 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.security.crypto.EncryptedSharedPreferences
|
||||||
|
import androidx.security.crypto.MasterKey
|
||||||
|
import com.squareup.moshi.Moshi
|
||||||
|
import com.squareup.moshi.Types
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import de.harheimertc.data.HomepageSectionDto
|
||||||
|
import java.security.GeneralSecurityException
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class HomeLayoutPreferences @Inject constructor(
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
private val moshi: Moshi,
|
||||||
|
) {
|
||||||
|
private val tag = "HomeLayoutPreferences"
|
||||||
|
private val sectionListType = Types.newParameterizedType(List::class.java, HomepageSectionDto::class.java)
|
||||||
|
private val sectionListAdapter = moshi.adapter<List<HomepageSectionDto>>(sectionListType)
|
||||||
|
|
||||||
|
private val preferences by lazy {
|
||||||
|
buildEncryptedPreferences()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildEncryptedPreferences() = try {
|
||||||
|
val masterKey = MasterKey.Builder(context)
|
||||||
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
|
.build()
|
||||||
|
EncryptedSharedPreferences.create(
|
||||||
|
context,
|
||||||
|
"harheimertc_home_layout",
|
||||||
|
masterKey,
|
||||||
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
|
)
|
||||||
|
} catch (error: GeneralSecurityException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
} catch (error: RuntimeException) {
|
||||||
|
recoverEncryptedPreferences(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun recoverEncryptedPreferences(error: Throwable) = try {
|
||||||
|
Log.w(tag, "EncryptedSharedPreferences defekt, Home-Layout wird neu angelegt", error)
|
||||||
|
context.deleteSharedPreferences("harheimertc_home_layout")
|
||||||
|
val masterKey = MasterKey.Builder(context)
|
||||||
|
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
|
||||||
|
.build()
|
||||||
|
EncryptedSharedPreferences.create(
|
||||||
|
context,
|
||||||
|
"harheimertc_home_layout",
|
||||||
|
masterKey,
|
||||||
|
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
|
||||||
|
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
|
||||||
|
)
|
||||||
|
} catch (retryError: Throwable) {
|
||||||
|
Log.e(tag, "Home-Layout-Preferences konnten nicht wiederhergestellt werden", retryError)
|
||||||
|
throw retryError
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getSections(): List<HomepageSectionDto>? {
|
||||||
|
val json = preferences.getString(HOME_SECTIONS_KEY, null) ?: return null
|
||||||
|
return runCatching { sectionListAdapter.fromJson(json) }.getOrNull()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun setSections(sections: List<HomepageSectionDto>) {
|
||||||
|
val json = sectionListAdapter.toJson(sections)
|
||||||
|
preferences.edit().putString(HOME_SECTIONS_KEY, json).apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun clearSections() {
|
||||||
|
preferences.edit().remove(HOME_SECTIONS_KEY).apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
private companion object {
|
||||||
|
const val HOME_SECTIONS_KEY = "home_sections"
|
||||||
|
}
|
||||||
|
}
|
||||||
244
android-app/app/src/main/java/de/harheimertc/repositories/HomeRepository.kt
Normal file → Executable file
244
android-app/app/src/main/java/de/harheimertc/repositories/HomeRepository.kt
Normal file → Executable file
@@ -1,24 +1,260 @@
|
|||||||
package de.harheimertc.repositories
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.BuildConfig
|
||||||
import de.harheimertc.data.ApiService
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.HomepageSectionDto
|
||||||
|
import de.harheimertc.data.HeroImageVariantDto
|
||||||
import de.harheimertc.data.NewsDto
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.SeasonDto
|
||||||
import de.harheimertc.data.SpielDto
|
import de.harheimertc.data.SpielDto
|
||||||
|
import de.harheimertc.data.SpielplanResponse
|
||||||
import de.harheimertc.data.TerminDto
|
import de.harheimertc.data.TerminDto
|
||||||
|
import io.sentry.Sentry
|
||||||
|
import kotlin.random.Random
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
|
|
||||||
data class HomeData(
|
data class HomeData(
|
||||||
val termine: List<TerminDto>,
|
val termine: List<TerminDto>,
|
||||||
val spiele: List<SpielDto>,
|
val spiele: List<SpielDto>,
|
||||||
|
val spielplanSeasons: List<SeasonDto>,
|
||||||
|
val selectedSpielplanSeason: String?,
|
||||||
val news: List<NewsDto>,
|
val news: List<NewsDto>,
|
||||||
|
val homepageSections: List<HomepageSectionDto>,
|
||||||
|
val heroImageUrl: String? = null,
|
||||||
|
val diagnostics: List<String> = emptyList(),
|
||||||
)
|
)
|
||||||
|
|
||||||
@Singleton
|
@Singleton
|
||||||
class HomeRepository @Inject constructor(private val api: ApiService) {
|
class HomeRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchHomeData(): Result<HomeData> = runCatching {
|
suspend fun fetchHomeData(): Result<HomeData> = runCatching {
|
||||||
val termine = api.termine().body()?.termine.orEmpty()
|
val diagnostics = mutableListOf<String>()
|
||||||
val spiele = api.spielplan().body()?.data.orEmpty()
|
|
||||||
val news = api.publicNews().body()?.news.orEmpty()
|
val termine = runCatching {
|
||||||
HomeData(termine, spiele, news)
|
retryOnNetworkFailure {
|
||||||
|
val response = api.termine()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val errorBody = response.errorBody()?.string().orEmpty()
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/termine",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = response.code(),
|
||||||
|
responseBody = errorBody,
|
||||||
|
throwable = null,
|
||||||
|
)
|
||||||
|
error("Termine konnten nicht geladen werden (HTTP ${response.code()}).")
|
||||||
|
}
|
||||||
|
response.body()?.termine.orEmpty()
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
captureLoadIssue("fetchHomeData.termine", error)
|
||||||
|
if (diagnostics.none { it.contains("GET /api/termine") }) {
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/termine",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = null,
|
||||||
|
responseBody = null,
|
||||||
|
throwable = error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.getOrDefault(emptyList())
|
||||||
|
|
||||||
|
val spielplanResponse = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.spielplan()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val errorBody = response.errorBody()?.string().orEmpty()
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/spielplan",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = response.code(),
|
||||||
|
responseBody = errorBody,
|
||||||
|
throwable = null,
|
||||||
|
)
|
||||||
|
error("Spielplan konnte nicht geladen werden (HTTP ${response.code()}).")
|
||||||
|
}
|
||||||
|
response.body()
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
captureLoadIssue("fetchHomeData.spielplan", error)
|
||||||
|
if (diagnostics.none { it.contains("GET /api/spielplan") }) {
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/spielplan",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = null,
|
||||||
|
responseBody = null,
|
||||||
|
throwable = error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.getOrNull()
|
||||||
|
val spiele = spielplanResponse?.data.orEmpty()
|
||||||
|
|
||||||
|
val news = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.publicNews()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val errorBody = response.errorBody()?.string().orEmpty()
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/news-public",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = response.code(),
|
||||||
|
responseBody = errorBody,
|
||||||
|
throwable = null,
|
||||||
|
)
|
||||||
|
error("News konnten nicht geladen werden (HTTP ${response.code()}).")
|
||||||
|
}
|
||||||
|
response.body()?.news.orEmpty()
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
captureLoadIssue("fetchHomeData.news", error)
|
||||||
|
if (diagnostics.none { it.contains("GET /api/news-public") }) {
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/news-public",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = null,
|
||||||
|
responseBody = null,
|
||||||
|
throwable = error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.getOrDefault(emptyList())
|
||||||
|
|
||||||
|
val homepageSections = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.config()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val errorBody = response.errorBody()?.string().orEmpty()
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/config",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = response.code(),
|
||||||
|
responseBody = errorBody,
|
||||||
|
throwable = null,
|
||||||
|
)
|
||||||
|
error("Konfiguration konnte nicht geladen werden (HTTP ${response.code()}).")
|
||||||
|
}
|
||||||
|
response.body()?.homepage?.sections.orEmpty()
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
captureLoadIssue("fetchHomeData.config", error)
|
||||||
|
if (diagnostics.none { it.contains("GET /api/config") }) {
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/config",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = null,
|
||||||
|
responseBody = null,
|
||||||
|
throwable = error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.getOrDefault(emptyList())
|
||||||
|
|
||||||
|
val heroImageUrl = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.heroImages()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val errorBody = response.errorBody()?.string().orEmpty()
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/hero-images",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = response.code(),
|
||||||
|
responseBody = errorBody,
|
||||||
|
throwable = null,
|
||||||
|
)
|
||||||
|
error("Hero-Bilder konnten nicht geladen werden (HTTP ${response.code()}).")
|
||||||
|
}
|
||||||
|
val variants = response.body()?.variants.orEmpty()
|
||||||
|
pickRandomHeroImage(variants)
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
captureLoadIssue("fetchHomeData.heroImages", error)
|
||||||
|
if (diagnostics.none { it.contains("GET /api/hero-images") }) {
|
||||||
|
diagnostics += buildDiagnostic(
|
||||||
|
endpoint = "GET /api/hero-images",
|
||||||
|
requestPayload = "none",
|
||||||
|
httpCode = null,
|
||||||
|
responseBody = null,
|
||||||
|
throwable = error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.getOrNull()
|
||||||
|
|
||||||
|
HomeData(
|
||||||
|
termine = termine,
|
||||||
|
spiele = spiele,
|
||||||
|
spielplanSeasons = spielplanResponse?.seasons.orEmpty(),
|
||||||
|
selectedSpielplanSeason = spielplanResponse?.season,
|
||||||
|
news = news,
|
||||||
|
homepageSections = homepageSections,
|
||||||
|
heroImageUrl = heroImageUrl,
|
||||||
|
diagnostics = diagnostics,
|
||||||
|
)
|
||||||
|
}.onFailure { error ->
|
||||||
|
Sentry.withScope { scope ->
|
||||||
|
scope.setTag("repository", "HomeRepository")
|
||||||
|
scope.setTag("operation", "fetchHomeData")
|
||||||
|
scope.setExtra("apiBaseUrl", BuildConfig.API_BASE_URL)
|
||||||
|
Sentry.captureException(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun fetchSpielplanForSeason(season: String): Result<SpielplanResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.spielplan(season)
|
||||||
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
Sentry.withScope { scope ->
|
||||||
|
scope.setTag("repository", "HomeRepository")
|
||||||
|
scope.setTag("operation", "fetchSpielplanForSeason")
|
||||||
|
scope.setExtra("season", season)
|
||||||
|
scope.setExtra("apiBaseUrl", BuildConfig.API_BASE_URL)
|
||||||
|
Sentry.captureException(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun captureLoadIssue(operation: String, error: Throwable) {
|
||||||
|
Sentry.withScope { scope ->
|
||||||
|
scope.setTag("repository", "HomeRepository")
|
||||||
|
scope.setTag("operation", operation)
|
||||||
|
scope.setExtra("apiBaseUrl", BuildConfig.API_BASE_URL)
|
||||||
|
Sentry.captureException(error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildDiagnostic(
|
||||||
|
endpoint: String,
|
||||||
|
requestPayload: String,
|
||||||
|
httpCode: Int?,
|
||||||
|
responseBody: String?,
|
||||||
|
throwable: Throwable?,
|
||||||
|
): String {
|
||||||
|
val responsePreview = responseBody?.trim()?.take(500).orEmpty().ifBlank { "none" }
|
||||||
|
val throwableInfo = throwable?.let { "${it::class.simpleName}: ${it.message}" }.orEmpty().ifBlank { "none" }
|
||||||
|
return buildString {
|
||||||
|
append("Endpoint: ").append(endpoint).append('\n')
|
||||||
|
append("URL: ").append(BuildConfig.API_BASE_URL).append(endpoint.substringAfter(' ')).append('\n')
|
||||||
|
append("Request: ").append(requestPayload).append('\n')
|
||||||
|
append("HTTP: ").append(httpCode?.toString() ?: "none").append('\n')
|
||||||
|
append("Response: ").append(responsePreview).append('\n')
|
||||||
|
append("Throwable: ").append(throwableInfo)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun pickRandomHeroImage(variants: List<HeroImageVariantDto>): String? {
|
||||||
|
if (variants.isEmpty()) return null
|
||||||
|
val valid = variants.filter { it.fallback.isNotBlank() }
|
||||||
|
if (valid.isEmpty()) return null
|
||||||
|
val selected = valid[Random.nextInt(valid.size)]
|
||||||
|
return toAbsoluteUrl(selected.fallback)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun toAbsoluteUrl(pathOrUrl: String): String {
|
||||||
|
if (pathOrUrl.startsWith("http://") || pathOrUrl.startsWith("https://")) {
|
||||||
|
return pathOrUrl
|
||||||
|
}
|
||||||
|
|
||||||
|
val base = BuildConfig.API_BASE_URL.trimEnd('/')
|
||||||
|
val path = if (pathOrUrl.startsWith('/')) pathOrUrl else "/$pathOrUrl"
|
||||||
|
return "$base$path"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
78
android-app/app/src/main/java/de/harheimertc/repositories/LoginRepository.kt
Normal file → Executable file
78
android-app/app/src/main/java/de/harheimertc/repositories/LoginRepository.kt
Normal file → Executable file
@@ -1,5 +1,6 @@
|
|||||||
package de.harheimertc.repositories
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.BuildConfig
|
||||||
import de.harheimertc.data.ApiService
|
import de.harheimertc.data.ApiService
|
||||||
import de.harheimertc.data.LoginRequest
|
import de.harheimertc.data.LoginRequest
|
||||||
import de.harheimertc.data.LoginResponse
|
import de.harheimertc.data.LoginResponse
|
||||||
@@ -9,6 +10,7 @@ import de.harheimertc.data.LogoutRequest
|
|||||||
import de.harheimertc.data.RegistrationRequest
|
import de.harheimertc.data.RegistrationRequest
|
||||||
import de.harheimertc.data.ResetPasswordRequest
|
import de.harheimertc.data.ResetPasswordRequest
|
||||||
import de.harheimertc.data.SessionRefresher
|
import de.harheimertc.data.SessionRefresher
|
||||||
|
import io.sentry.Sentry
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
|
|
||||||
@@ -19,13 +21,41 @@ class LoginRepository @Inject constructor(
|
|||||||
private val sessionRefresher: SessionRefresher,
|
private val sessionRefresher: SessionRefresher,
|
||||||
) {
|
) {
|
||||||
suspend fun login(email: String, password: String): Result<LoginResponse> = runCatching {
|
suspend fun login(email: String, password: String): Result<LoginResponse> = runCatching {
|
||||||
val response = api.login(LoginRequest(email.trim(), password))
|
val endpoint = "api/auth/login"
|
||||||
if (!response.isSuccessful) error("Anmeldung fehlgeschlagen. Bitte prüfen Sie Ihre Zugangsdaten.")
|
val requestPreview = "{email=\"${maskEmail(email)}\", client=\"android\", deviceName=\"Harheimer TC Android-App\"}"
|
||||||
|
val response = retryOnNetworkFailure { api.login(LoginRequest(email.trim(), password)) }
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
val body = response.errorBody()?.string().orEmpty()
|
||||||
|
val serverMessage = extractServerMessage(body)
|
||||||
|
val fallback = when (response.code()) {
|
||||||
|
401 -> "Ungueltige Anmeldedaten"
|
||||||
|
403 -> "Konto nicht freigeschaltet"
|
||||||
|
429 -> "Zu viele Anmeldeversuche. Bitte spaeter erneut versuchen."
|
||||||
|
else -> "Anmeldung fehlgeschlagen"
|
||||||
|
}
|
||||||
|
val diagnostic = buildString {
|
||||||
|
append("\n\nDiagnose:\n")
|
||||||
|
append("URL: ").append(BuildConfig.API_BASE_URL).append(endpoint).append('\n')
|
||||||
|
append("Request: ").append(requestPreview).append('\n')
|
||||||
|
append("HTTP: ").append(response.code()).append('\n')
|
||||||
|
append("Response: ").append(body.take(500).ifBlank { "none" }).append('\n')
|
||||||
|
append("Server message: ").append(serverMessage ?: "none")
|
||||||
|
}
|
||||||
|
error("$fallback (HTTP ${response.code()})${serverMessage?.let { ": $it" } ?: ""}$diagnostic")
|
||||||
|
}
|
||||||
val body = response.body() ?: error("Leere Antwort")
|
val body = response.body() ?: error("Leere Antwort")
|
||||||
val token = (body.accessToken ?: body.token)?.takeIf(String::isNotBlank)
|
val token = (body.accessToken ?: body.token)?.takeIf(String::isNotBlank)
|
||||||
?: error("Der Server hat kein Zugriffstoken geliefert.")
|
?: error("Der Server hat kein Zugriffstoken geliefert.")
|
||||||
authRepository.setSession(token, body.refreshToken, body.sessionId)
|
authRepository.setSession(token, body.refreshToken, body.sessionId)
|
||||||
body
|
body
|
||||||
|
}.onFailure { error ->
|
||||||
|
Sentry.withScope { scope ->
|
||||||
|
scope.setTag("repository", "LoginRepository")
|
||||||
|
scope.setTag("operation", "login")
|
||||||
|
scope.setExtra("emailDomain", email.substringAfter('@', "unknown"))
|
||||||
|
scope.setExtra("apiBaseUrl", BuildConfig.API_BASE_URL)
|
||||||
|
Sentry.captureException(error)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun logout(): Result<Unit> = runCatching {
|
suspend fun logout(): Result<Unit> = runCatching {
|
||||||
@@ -41,27 +71,55 @@ class LoginRepository @Inject constructor(
|
|||||||
return@runCatching AuthStatusResponse()
|
return@runCatching AuthStatusResponse()
|
||||||
}
|
}
|
||||||
|
|
||||||
var response = api.authStatus()
|
var response = retryOnNetworkFailure { api.authStatus() }
|
||||||
if (!response.isSuccessful) error("Status konnte nicht geprüft werden.")
|
if (!response.isSuccessful) error("Status konnte nicht geprüft werden.")
|
||||||
var status = response.body() ?: AuthStatusResponse()
|
var status = response.body() ?: AuthStatusResponse()
|
||||||
if (!status.isLoggedIn && authRepository.getRefreshToken() != null && sessionRefresher.refreshAccessToken()) {
|
if (!status.isLoggedIn && authRepository.getRefreshToken() != null && sessionRefresher.refreshAccessToken()) {
|
||||||
response = api.authStatus()
|
response = retryOnNetworkFailure { api.authStatus() }
|
||||||
if (!response.isSuccessful) error("Status konnte nicht geprüft werden.")
|
if (!response.isSuccessful) error("Status konnte nicht geprüft werden.")
|
||||||
status = response.body() ?: AuthStatusResponse()
|
status = response.body() ?: AuthStatusResponse()
|
||||||
}
|
}
|
||||||
if (!status.isLoggedIn && authRepository.getRefreshToken() == null) authRepository.clearSession()
|
if (!status.isLoggedIn && authRepository.getRefreshToken() == null) authRepository.clearSession()
|
||||||
status
|
status
|
||||||
|
}.onFailure { error ->
|
||||||
|
Sentry.withScope { scope ->
|
||||||
|
scope.setTag("repository", "LoginRepository")
|
||||||
|
scope.setTag("operation", "status")
|
||||||
|
scope.setExtra("hasAccessToken", (!authRepository.getToken().isNullOrBlank()).toString())
|
||||||
|
scope.setExtra("hasRefreshToken", (authRepository.getRefreshToken() != null).toString())
|
||||||
|
scope.setExtra("apiBaseUrl", BuildConfig.API_BASE_URL)
|
||||||
|
Sentry.captureException(error)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun resetPassword(email: String): Result<AuthMessageResponse> = runCatching {
|
suspend fun resetPassword(email: String): Result<AuthMessageResponse> = runCatching {
|
||||||
val response = api.resetPassword(ResetPasswordRequest(email.trim()))
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Anfrage konnte nicht gesendet werden.")
|
val response = api.resetPassword(ResetPasswordRequest(email.trim()))
|
||||||
response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("Anfrage konnte nicht gesendet werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun register(request: RegistrationRequest): Result<AuthMessageResponse> = runCatching {
|
suspend fun register(request: RegistrationRequest): Result<AuthMessageResponse> = runCatching {
|
||||||
val response = api.register(request)
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Registrierung fehlgeschlagen.")
|
val response = api.register(request)
|
||||||
response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("Registrierung fehlgeschlagen.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun extractServerMessage(raw: String): String? {
|
||||||
|
if (raw.isBlank()) return null
|
||||||
|
val msgRegex = Regex("\"message\"\\s*:\\s*\"([^\"]+)\"")
|
||||||
|
return msgRegex.find(raw)?.groupValues?.getOrNull(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun maskEmail(rawEmail: String): String {
|
||||||
|
val email = rawEmail.trim()
|
||||||
|
if (!email.contains('@')) return "hidden"
|
||||||
|
val local = email.substringBefore('@')
|
||||||
|
val domain = email.substringAfter('@')
|
||||||
|
val localMasked = if (local.length <= 2) "**" else local.take(2) + "***"
|
||||||
|
return "$localMasked@$domain"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
android-app/app/src/main/java/de/harheimertc/repositories/MannschaftenRepository.kt
Normal file → Executable file
18
android-app/app/src/main/java/de/harheimertc/repositories/MannschaftenRepository.kt
Normal file → Executable file
@@ -1,6 +1,8 @@
|
|||||||
package de.harheimertc.repositories
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
import de.harheimertc.data.ApiService
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.MannschaftenSeasonsResponse
|
||||||
|
import de.harheimertc.data.SeasonDto
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
@@ -24,9 +26,19 @@ data class Mannschaft(
|
|||||||
@Singleton
|
@Singleton
|
||||||
class MannschaftenRepository @Inject constructor(private val api: ApiService) {
|
class MannschaftenRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchMannschaften(season: String? = null): Result<List<Mannschaft>> = runCatching {
|
suspend fun fetchMannschaften(season: String? = null): Result<List<Mannschaft>> = runCatching {
|
||||||
val response = api.mannschaften(season)
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Mannschaften konnten nicht geladen werden.")
|
val response = api.mannschaften(season)
|
||||||
parseCsv(response.body()?.string().orEmpty())
|
if (!response.isSuccessful) error("Mannschaften konnten nicht geladen werden.")
|
||||||
|
parseCsv(response.body()?.string().orEmpty())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun fetchSeasons(): Result<MannschaftenSeasonsResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.mannschaftenSeasons()
|
||||||
|
if (!response.isSuccessful) error("Saisons konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Saisons konnten nicht geladen werden.")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun parseCsv(csv: String): List<Mannschaft> = csv.lineSequence()
|
private fun parseCsv(csv: String): List<Mannschaft> = csv.lineSequence()
|
||||||
|
|||||||
@@ -0,0 +1,121 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.BirthdaysResponse
|
||||||
|
import de.harheimertc.data.MembersResponse
|
||||||
|
import de.harheimertc.data.NewsResponse
|
||||||
|
import de.harheimertc.data.NewsSaveRequest
|
||||||
|
import de.harheimertc.data.QttrValuesResponse
|
||||||
|
import de.harheimertc.data.SecureOfflineCache
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
class MemberAreaRepository @Inject constructor(
|
||||||
|
private val api: ApiService,
|
||||||
|
private val cache: SecureOfflineCache,
|
||||||
|
) {
|
||||||
|
suspend fun birthdays(): Result<BirthdaysResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.birthdays()
|
||||||
|
if (!response.isSuccessful) error("Geburtstage konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putBirthdays,
|
||||||
|
cached = cache::getBirthdays,
|
||||||
|
fallbackMessage = "Geburtstage konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun qttrValues(): Result<QttrValuesResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.qttrValues()
|
||||||
|
if (!response.isSuccessful) error("QTTR-Werte konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putQttrValues,
|
||||||
|
cached = { cache.getQttrValues(24L * 60L * 60L * 1000L) },
|
||||||
|
fallbackMessage = "QTTR-Werte konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun members(): Result<MembersResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.members()
|
||||||
|
if (!response.isSuccessful) error("Mitglieder konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
},
|
||||||
|
save = cache::putMembers,
|
||||||
|
cached = cache::getMembers,
|
||||||
|
fallbackMessage = "Mitglieder konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun news(): Result<NewsResponse> =
|
||||||
|
fetchEncryptedFallback(
|
||||||
|
load = {
|
||||||
|
val response = api.memberNews()
|
||||||
|
if (!response.isSuccessful) {
|
||||||
|
try {
|
||||||
|
val body = response.errorBody()?.string()
|
||||||
|
android.util.Log.w("MemberAreaRepository", "memberNews failed: code=${response.code()} body=${body?.take(500)}")
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
error("News konnten nicht geladen werden.")
|
||||||
|
}
|
||||||
|
response.body() ?: run {
|
||||||
|
android.util.Log.w("MemberAreaRepository", "memberNews: successful but empty body (null)")
|
||||||
|
NewsResponse(success = false, news = emptyList())
|
||||||
|
}
|
||||||
|
},
|
||||||
|
save = cache::putNews,
|
||||||
|
cached = cache::getNews,
|
||||||
|
fallbackMessage = "News konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun saveNews(request: NewsSaveRequest): Result<Unit> = runCatching {
|
||||||
|
val response = api.saveNews(request)
|
||||||
|
if (!response.isSuccessful) error("News konnten nicht gespeichert werden.")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveMember(request: de.harheimertc.data.ApiService.MemberSaveRequest): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.saveMember(request)
|
||||||
|
if (!response.isSuccessful) error("Mitglied konnte nicht gespeichert werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteMember(id: String): Result<de.harheimertc.data.AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.deleteMember(mapOf("id" to id))
|
||||||
|
if (!response.isSuccessful) error("Mitglied konnte nicht gelöscht werden.")
|
||||||
|
response.body() ?: de.harheimertc.data.AuthMessageResponse(success = false, message = "Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun bulkImport(members: List<Map<String, String>>): Result<de.harheimertc.data.ApiService.BulkImportResponse> = runCatching {
|
||||||
|
val response = api.bulkImportMembers(de.harheimertc.data.ApiService.BulkImportRequest(members))
|
||||||
|
if (!response.isSuccessful) error("Bulk-Import fehlgeschlagen")
|
||||||
|
response.body() ?: de.harheimertc.data.ApiService.BulkImportResponse(success = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun toggleMannschaftsspieler(memberId: String): Result<Map<String, Any>> = runCatching {
|
||||||
|
val response = api.toggleMannschaftsspieler(mapOf("memberId" to memberId))
|
||||||
|
if (!response.isSuccessful) error("Status konnte nicht umgeschaltet werden.")
|
||||||
|
response.body() ?: emptyMap()
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun deleteNews(id: String): Result<Unit> = runCatching {
|
||||||
|
val response = api.deleteNews(id)
|
||||||
|
if (!response.isSuccessful) error("News konnten nicht gelöscht werden.")
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun <T> fetchEncryptedFallback(
|
||||||
|
load: suspend () -> T,
|
||||||
|
save: (T) -> Unit,
|
||||||
|
cached: () -> T?,
|
||||||
|
fallbackMessage: String,
|
||||||
|
): Result<T> = runCatching {
|
||||||
|
runCatching { load() }
|
||||||
|
.onSuccess(save)
|
||||||
|
.getOrElse { original ->
|
||||||
|
cached() ?: throw IllegalStateException(fallbackMessage, original)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
0
android-app/app/src/main/java/de/harheimertc/repositories/MembershipRepository.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/repositories/MembershipRepository.kt
Normal file → Executable file
33
android-app/app/src/main/java/de/harheimertc/repositories/NetworkRetry.kt
Executable file
33
android-app/app/src/main/java/de/harheimertc/repositories/NetworkRetry.kt
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import java.net.ConnectException
|
||||||
|
import java.net.NoRouteToHostException
|
||||||
|
import java.net.SocketTimeoutException
|
||||||
|
import java.net.UnknownHostException
|
||||||
|
import javax.net.ssl.SSLException
|
||||||
|
import kotlinx.coroutines.CancellationException
|
||||||
|
import kotlinx.coroutines.delay
|
||||||
|
|
||||||
|
internal suspend fun <T> retryOnNetworkFailure(
|
||||||
|
retryDelayMillis: Long = 10_000L,
|
||||||
|
block: suspend () -> T,
|
||||||
|
): T {
|
||||||
|
while (true) {
|
||||||
|
try {
|
||||||
|
return block()
|
||||||
|
} catch (error: Throwable) {
|
||||||
|
if (error is CancellationException) throw error
|
||||||
|
if (!error.isRetryableNetworkError()) throw error
|
||||||
|
delay(retryDelayMillis)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Throwable.isRetryableNetworkError(): Boolean = when (this) {
|
||||||
|
is UnknownHostException,
|
||||||
|
is ConnectException,
|
||||||
|
is NoRouteToHostException,
|
||||||
|
is SocketTimeoutException,
|
||||||
|
is SSLException -> true
|
||||||
|
else -> false
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.AuthMessageResponse
|
||||||
|
import de.harheimertc.data.NewsletterGroupsResponse
|
||||||
|
import de.harheimertc.data.NewsletterSubscriptionRequest
|
||||||
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
class NewsletterRepository @Inject constructor(private val api: ApiService) {
|
||||||
|
suspend fun groups(): Result<NewsletterGroupsResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.publicNewsletterGroups()
|
||||||
|
if (!response.isSuccessful) error("Newsletter konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort vom Server.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun subscribe(groupId: String, email: String, name: String?): Result<AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.subscribeNewsletter(NewsletterSubscriptionRequest(groupId, email.trim(), name?.trim().orEmpty()))
|
||||||
|
if (!response.isSuccessful) error("Newsletter-Anmeldung fehlgeschlagen.")
|
||||||
|
response.body() ?: AuthMessageResponse(success = true, message = "Eine Bestätigungsmail wurde versendet.")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun unsubscribe(groupId: String, email: String): Result<AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.unsubscribeNewsletter(NewsletterSubscriptionRequest(groupId, email.trim()))
|
||||||
|
if (!response.isSuccessful) error("Newsletter-Abmeldung fehlgeschlagen.")
|
||||||
|
response.body() ?: AuthMessageResponse(success = true, message = "Sie wurden abgemeldet.")
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun confirm(token: String): Result<AuthMessageResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.confirmNewsletter(token)
|
||||||
|
if (!response.isSuccessful) error("Newsletter-Bestätigung fehlgeschlagen.")
|
||||||
|
response.body() ?: AuthMessageResponse(success = true, message = "Newsletter-Anmeldung bestätigt.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.NotificationSettingsDto
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
private const val DEFAULT_NOTIFICATION_TIME = "09:00"
|
||||||
|
|
||||||
|
data class NotificationPreferences(
|
||||||
|
val newNews: Boolean = false,
|
||||||
|
val newEvents: Boolean = false,
|
||||||
|
val eventsToday: Boolean = false,
|
||||||
|
val eventsTomorrow: Boolean = false,
|
||||||
|
val ownTeamMatches: Boolean = false,
|
||||||
|
val allTeamMatches: Boolean = false,
|
||||||
|
val birthdays: Boolean = false,
|
||||||
|
val newContactRequest: Boolean = false,
|
||||||
|
val newUserRegistration: Boolean = false,
|
||||||
|
val selectedTeamSlugs: Set<String> = emptySet(),
|
||||||
|
val selectedTeamSeason: String? = null,
|
||||||
|
val notificationTime: String = DEFAULT_NOTIFICATION_TIME,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class NotificationPreferencesRepository @Inject constructor(
|
||||||
|
@param:ApplicationContext private val context: Context,
|
||||||
|
private val api: ApiService,
|
||||||
|
) {
|
||||||
|
private val preferences by lazy {
|
||||||
|
context.getSharedPreferences("harheimertc_notification_preferences", Context.MODE_PRIVATE)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun loadLocal(): NotificationPreferences = NotificationPreferences(
|
||||||
|
newNews = preferences.getBoolean(KEY_NEW_NEWS, false),
|
||||||
|
newEvents = preferences.getBoolean(KEY_NEW_EVENTS, false),
|
||||||
|
eventsToday = preferences.getBoolean(KEY_EVENTS_TODAY, false),
|
||||||
|
eventsTomorrow = preferences.getBoolean(KEY_EVENTS_TOMORROW, false),
|
||||||
|
ownTeamMatches = preferences.getBoolean(KEY_OWN_TEAM_MATCHES, false),
|
||||||
|
allTeamMatches = preferences.getBoolean(KEY_ALL_TEAM_MATCHES, false),
|
||||||
|
birthdays = preferences.getBoolean(KEY_BIRTHDAYS, false),
|
||||||
|
newContactRequest = preferences.getBoolean(KEY_NEW_CONTACT_REQUEST, false),
|
||||||
|
newUserRegistration = preferences.getBoolean(KEY_NEW_USER_REGISTRATION, false),
|
||||||
|
selectedTeamSlugs = preferences.getStringSet(KEY_SELECTED_TEAM_SLUGS, emptySet()).orEmpty(),
|
||||||
|
selectedTeamSeason = preferences.getString(KEY_SELECTED_TEAM_SEASON, null)?.takeIf { it.isNotBlank() },
|
||||||
|
notificationTime = preferences.getString(KEY_NOTIFICATION_TIME, DEFAULT_NOTIFICATION_TIME) ?: DEFAULT_NOTIFICATION_TIME,
|
||||||
|
)
|
||||||
|
|
||||||
|
suspend fun loadRemote(): Result<NotificationPreferences> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.notificationSettings()
|
||||||
|
if (!response.isSuccessful) error("Benachrichtigungseinstellungen konnten nicht geladen werden.")
|
||||||
|
val settings = response.body()?.settings?.toPreferences() ?: error("Leere Antwort")
|
||||||
|
saveLocal(settings)
|
||||||
|
settings
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLocal(settings: NotificationPreferences) {
|
||||||
|
preferences.edit()
|
||||||
|
.putBoolean(KEY_NEW_NEWS, settings.newNews)
|
||||||
|
.putBoolean(KEY_NEW_EVENTS, settings.newEvents)
|
||||||
|
.putBoolean(KEY_EVENTS_TODAY, settings.eventsToday)
|
||||||
|
.putBoolean(KEY_EVENTS_TOMORROW, settings.eventsTomorrow)
|
||||||
|
.putBoolean(KEY_OWN_TEAM_MATCHES, settings.ownTeamMatches)
|
||||||
|
.putBoolean(KEY_ALL_TEAM_MATCHES, settings.allTeamMatches)
|
||||||
|
.putBoolean(KEY_BIRTHDAYS, settings.birthdays)
|
||||||
|
.putBoolean(KEY_NEW_CONTACT_REQUEST, settings.newContactRequest)
|
||||||
|
.putBoolean(KEY_NEW_USER_REGISTRATION, settings.newUserRegistration)
|
||||||
|
.putStringSet(KEY_SELECTED_TEAM_SLUGS, settings.selectedTeamSlugs)
|
||||||
|
.putString(KEY_SELECTED_TEAM_SEASON, settings.selectedTeamSeason)
|
||||||
|
.putString(KEY_NOTIFICATION_TIME, settings.notificationTime)
|
||||||
|
.apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun saveRemote(settings: NotificationPreferences): Result<NotificationPreferences> {
|
||||||
|
saveLocal(settings)
|
||||||
|
return runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.updateNotificationSettings(settings.toDto())
|
||||||
|
if (!response.isSuccessful) error("Benachrichtigungseinstellungen konnten nicht gespeichert werden.")
|
||||||
|
val saved = response.body()?.settings?.toPreferences() ?: error("Leere Antwort")
|
||||||
|
saveLocal(saved)
|
||||||
|
saved
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private companion object {
|
||||||
|
const val KEY_NEW_NEWS = "new_news"
|
||||||
|
const val KEY_NEW_EVENTS = "new_events"
|
||||||
|
const val KEY_EVENTS_TODAY = "events_today"
|
||||||
|
const val KEY_EVENTS_TOMORROW = "events_tomorrow"
|
||||||
|
const val KEY_OWN_TEAM_MATCHES = "own_team_matches"
|
||||||
|
const val KEY_ALL_TEAM_MATCHES = "all_team_matches"
|
||||||
|
const val KEY_BIRTHDAYS = "birthdays"
|
||||||
|
const val KEY_NEW_CONTACT_REQUEST = "new_contact_request"
|
||||||
|
const val KEY_NEW_USER_REGISTRATION = "new_user_registration"
|
||||||
|
const val KEY_SELECTED_TEAM_SLUGS = "selected_team_slugs"
|
||||||
|
const val KEY_SELECTED_TEAM_SEASON = "selected_team_season"
|
||||||
|
const val KEY_NOTIFICATION_TIME = "notification_time"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun NotificationSettingsDto.toPreferences(): NotificationPreferences = NotificationPreferences(
|
||||||
|
newNews = newNews,
|
||||||
|
newEvents = newEvents,
|
||||||
|
eventsToday = eventsToday,
|
||||||
|
eventsTomorrow = eventsTomorrow,
|
||||||
|
ownTeamMatches = ownTeamMatches,
|
||||||
|
allTeamMatches = allTeamMatches,
|
||||||
|
birthdays = birthdays,
|
||||||
|
newContactRequest = newContactRequest,
|
||||||
|
newUserRegistration = newUserRegistration,
|
||||||
|
selectedTeamSlugs = selectedTeamSlugs.toSet(),
|
||||||
|
selectedTeamSeason = selectedTeamSeason,
|
||||||
|
notificationTime = notificationTime,
|
||||||
|
)
|
||||||
|
|
||||||
|
private fun NotificationPreferences.toDto(): NotificationSettingsDto = NotificationSettingsDto(
|
||||||
|
newNews = newNews,
|
||||||
|
newEvents = newEvents,
|
||||||
|
eventsToday = eventsToday,
|
||||||
|
eventsTomorrow = eventsTomorrow,
|
||||||
|
ownTeamMatches = ownTeamMatches,
|
||||||
|
allTeamMatches = allTeamMatches,
|
||||||
|
birthdays = birthdays,
|
||||||
|
newContactRequest = newContactRequest,
|
||||||
|
newUserRegistration = newUserRegistration,
|
||||||
|
selectedTeamSlugs = selectedTeamSlugs.toList(),
|
||||||
|
selectedTeamSeason = selectedTeamSeason,
|
||||||
|
notificationTime = notificationTime,
|
||||||
|
)
|
||||||
120
android-app/app/src/main/java/de/harheimertc/repositories/PasskeyRepository.kt
Executable file
120
android-app/app/src/main/java/de/harheimertc/repositories/PasskeyRepository.kt
Executable file
@@ -0,0 +1,120 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.credentials.CreatePublicKeyCredentialRequest
|
||||||
|
import androidx.credentials.CreatePublicKeyCredentialResponse
|
||||||
|
import androidx.credentials.CredentialManager
|
||||||
|
import androidx.credentials.GetCredentialRequest
|
||||||
|
import androidx.credentials.GetPublicKeyCredentialOption
|
||||||
|
import androidx.credentials.PublicKeyCredential
|
||||||
|
import androidx.credentials.exceptions.CreateCredentialCancellationException
|
||||||
|
import androidx.credentials.exceptions.GetCredentialCancellationException
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.AuthMessageResponse
|
||||||
|
import de.harheimertc.data.LoginResponse
|
||||||
|
import de.harheimertc.data.MediaTypes
|
||||||
|
import de.harheimertc.data.PasskeyAuthenticationOptionsRequest
|
||||||
|
import de.harheimertc.data.PasskeyRegistrationOptionsRequest
|
||||||
|
import de.harheimertc.data.PasskeysResponse
|
||||||
|
import de.harheimertc.data.RemovePasskeyRequest
|
||||||
|
import okhttp3.RequestBody.Companion.toRequestBody
|
||||||
|
import org.json.JSONObject
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class PasskeyRepository @Inject constructor(
|
||||||
|
private val api: ApiService,
|
||||||
|
private val authRepository: AuthRepository,
|
||||||
|
) {
|
||||||
|
suspend fun login(context: Context, email: String?): Result<LoginResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val optionsResponse = api.passkeyAuthenticationOptions(
|
||||||
|
PasskeyAuthenticationOptionsRequest(email = email?.trim()?.takeIf(String::isNotBlank)),
|
||||||
|
)
|
||||||
|
if (!optionsResponse.isSuccessful) error("Passkey-Anmeldung konnte nicht gestartet werden.")
|
||||||
|
val optionsJson = optionsResponse.body()?.string()?.extractJsonObject("options")
|
||||||
|
?: error("Der Server hat keine Passkey-Optionen geliefert.")
|
||||||
|
|
||||||
|
val credentialManager = CredentialManager.create(context)
|
||||||
|
val credentialResponse = credentialManager.getCredential(
|
||||||
|
context = context,
|
||||||
|
request = GetCredentialRequest(
|
||||||
|
credentialOptions = listOf(GetPublicKeyCredentialOption(optionsJson)),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
val credential = credentialResponse.credential as? PublicKeyCredential
|
||||||
|
?: error("Der ausgewählte Zugang ist kein Passkey.")
|
||||||
|
|
||||||
|
val response = api.passkeyLogin(
|
||||||
|
JSONObject()
|
||||||
|
.put("credential", JSONObject(credential.authenticationResponseJson))
|
||||||
|
.put("client", "android")
|
||||||
|
.put("deviceName", "Harheimer TC Android-App")
|
||||||
|
.toString()
|
||||||
|
.toRequestBody(MediaTypes.json),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Passkey-Anmeldung fehlgeschlagen.")
|
||||||
|
val body = response.body() ?: error("Leere Antwort")
|
||||||
|
val token = (body.accessToken ?: body.token)?.takeIf(String::isNotBlank)
|
||||||
|
?: error("Der Server hat kein Zugriffstoken geliefert.")
|
||||||
|
authRepository.setSession(token, body.refreshToken, body.sessionId)
|
||||||
|
body
|
||||||
|
}
|
||||||
|
}.recoverCredentialCancellation("Passkey-Anmeldung abgebrochen.")
|
||||||
|
|
||||||
|
suspend fun list(): Result<PasskeysResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.passkeys()
|
||||||
|
if (!response.isSuccessful) error("Passkeys konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun add(context: Context, name: String = "Android-App"): Result<AuthMessageResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val optionsResponse = api.passkeyRegistrationOptions(PasskeyRegistrationOptionsRequest())
|
||||||
|
if (!optionsResponse.isSuccessful) error("Passkey-Erstellung konnte nicht gestartet werden.")
|
||||||
|
val optionsJson = optionsResponse.body()?.string()?.extractJsonObject("options")
|
||||||
|
?: error("Der Server hat keine Passkey-Optionen geliefert.")
|
||||||
|
|
||||||
|
val credentialManager = CredentialManager.create(context)
|
||||||
|
val credentialResponse = credentialManager.createCredential(
|
||||||
|
context = context,
|
||||||
|
request = CreatePublicKeyCredentialRequest(optionsJson),
|
||||||
|
) as? CreatePublicKeyCredentialResponse
|
||||||
|
?: error("Der erstellte Zugang ist kein Passkey.")
|
||||||
|
|
||||||
|
val response = api.registerPasskey(
|
||||||
|
JSONObject()
|
||||||
|
.put("credential", JSONObject(credentialResponse.registrationResponseJson))
|
||||||
|
.put("name", name)
|
||||||
|
.put("client", "android")
|
||||||
|
.toString()
|
||||||
|
.toRequestBody(MediaTypes.json),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Passkey konnte nicht hinzugefügt werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}.recoverCredentialCancellation("Passkey-Erstellung abgebrochen.")
|
||||||
|
|
||||||
|
suspend fun remove(credentialId: String): Result<AuthMessageResponse> = runCatching {
|
||||||
|
val response = api.removePasskey(RemovePasskeyRequest(credentialId))
|
||||||
|
if (!response.isSuccessful) error("Passkey konnte nicht entfernt werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun String.extractJsonObject(key: String): String? {
|
||||||
|
val root = JSONObject(this)
|
||||||
|
return root.optJSONObject(key)?.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun <T> Result<T>.recoverCredentialCancellation(message: String): Result<T> =
|
||||||
|
recoverCatching { error ->
|
||||||
|
when (error) {
|
||||||
|
is GetCredentialCancellationException,
|
||||||
|
is CreateCredentialCancellationException -> throw IllegalStateException(message)
|
||||||
|
else -> throw error
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.ProfileResponse
|
||||||
|
import de.harheimertc.data.ProfileUpdateRequest
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class ProfileRepository @Inject constructor(private val api: ApiService) {
|
||||||
|
suspend fun load(): Result<ProfileResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.profile()
|
||||||
|
if (!response.isSuccessful) error("Profil konnte nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun save(request: ProfileUpdateRequest): Result<ProfileResponse> = runCatching {
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.updateProfile(request)
|
||||||
|
if (!response.isSuccessful) error("Profil konnte nicht gespeichert werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
66
android-app/app/src/main/java/de/harheimertc/repositories/PublicPagesRepository.kt
Normal file → Executable file
66
android-app/app/src/main/java/de/harheimertc/repositories/PublicPagesRepository.kt
Normal file → Executable file
@@ -31,43 +31,49 @@ data class MeisterschaftResult(
|
|||||||
@Singleton
|
@Singleton
|
||||||
class PublicPagesRepository @Inject constructor(private val api: ApiService) {
|
class PublicPagesRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchConfig(): Result<ConfigResponse> = runCatching {
|
suspend fun fetchConfig(): Result<ConfigResponse> = runCatching {
|
||||||
val response = api.config()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Inhalte konnten nicht geladen werden.")
|
val response = api.config()
|
||||||
response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("Inhalte konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun fetchSpielsysteme(): Result<List<Spielsystem>> = runCatching {
|
suspend fun fetchSpielsysteme(): Result<List<Spielsystem>> = runCatching {
|
||||||
val response = api.spielsysteme()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Spielsysteme konnten nicht geladen werden.")
|
val response = api.spielsysteme()
|
||||||
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
if (!response.isSuccessful) error("Spielsysteme konnten nicht geladen werden.")
|
||||||
if (values.size < 8) return@mapNotNull null
|
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
||||||
Spielsystem(
|
if (values.size < 8) return@mapNotNull null
|
||||||
name = values[0],
|
Spielsystem(
|
||||||
description = values[1],
|
name = values[0],
|
||||||
teamSize = values[2],
|
description = values[1],
|
||||||
category = values[3],
|
teamSize = values[2],
|
||||||
sequence = values[5],
|
category = values[3],
|
||||||
gameCount = values[6],
|
sequence = values[5],
|
||||||
features = values[7],
|
gameCount = values[6],
|
||||||
)
|
features = values[7],
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun fetchVereinsmeisterschaften(): Result<List<MeisterschaftResult>> = runCatching {
|
suspend fun fetchVereinsmeisterschaften(): Result<List<MeisterschaftResult>> = runCatching {
|
||||||
val response = api.vereinsmeisterschaften()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Vereinsmeisterschaften konnten nicht geladen werden.")
|
val response = api.vereinsmeisterschaften()
|
||||||
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
if (!response.isSuccessful) error("Vereinsmeisterschaften konnten nicht geladen werden.")
|
||||||
if (values.size < 6) return@mapNotNull null
|
parseCsv(response.body()?.string().orEmpty()).drop(1).mapNotNull { values ->
|
||||||
MeisterschaftResult(
|
if (values.size < 6) return@mapNotNull null
|
||||||
year = values[0],
|
MeisterschaftResult(
|
||||||
category = values[1],
|
year = values[0],
|
||||||
rank = values[2],
|
category = values[1],
|
||||||
playerOne = values[3],
|
rank = values[2],
|
||||||
playerTwo = values[4],
|
playerOne = values[3],
|
||||||
note = values[5],
|
playerTwo = values[4],
|
||||||
imageOne = values.getOrElse(6) { "" },
|
note = values[5],
|
||||||
imageTwo = values.getOrElse(7) { "" },
|
imageOne = values.getOrElse(6) { "" },
|
||||||
)
|
imageTwo = values.getOrElse(7) { "" },
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
package de.harheimertc.repositories
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.google.firebase.messaging.FirebaseMessaging
|
||||||
|
import de.harheimertc.BuildConfig
|
||||||
|
import de.harheimertc.data.ApiService
|
||||||
|
import de.harheimertc.data.PushTokenRequest
|
||||||
|
import kotlinx.coroutines.tasks.await
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class PushTokenRepository @Inject constructor(
|
||||||
|
private val api: ApiService,
|
||||||
|
) {
|
||||||
|
suspend fun registerCurrentDevice(): Result<Unit> = runCatching {
|
||||||
|
val token = FirebaseMessaging.getInstance().token.await()
|
||||||
|
registerToken(token).getOrThrow()
|
||||||
|
}
|
||||||
|
|
||||||
|
suspend fun registerToken(token: String): Result<Unit> = runCatching {
|
||||||
|
if (token.isBlank()) return@runCatching
|
||||||
|
retryOnNetworkFailure {
|
||||||
|
val response = api.registerPushToken(
|
||||||
|
PushTokenRequest(
|
||||||
|
token = token,
|
||||||
|
appVersion = "${BuildConfig.VERSION_NAME}+${BuildConfig.VERSION_CODE}",
|
||||||
|
),
|
||||||
|
)
|
||||||
|
if (!response.isSuccessful) error("Push-Token konnte nicht registriert werden.")
|
||||||
|
}
|
||||||
|
}.onFailure { error ->
|
||||||
|
Log.w("PushTokenRepository", "Push-Token Registrierung fehlgeschlagen", error)
|
||||||
|
}
|
||||||
|
}
|
||||||
24
android-app/app/src/main/java/de/harheimertc/repositories/SpielplanRepository.kt
Normal file → Executable file
24
android-app/app/src/main/java/de/harheimertc/repositories/SpielplanRepository.kt
Normal file → Executable file
@@ -9,18 +9,22 @@ import javax.inject.Singleton
|
|||||||
@Singleton
|
@Singleton
|
||||||
class SpielplanRepository @Inject constructor(private val api: ApiService) {
|
class SpielplanRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchSpielplan(season: String? = null): Result<SpielplanResponse> = runCatching {
|
suspend fun fetchSpielplan(season: String? = null): Result<SpielplanResponse> = runCatching {
|
||||||
val response = api.spielplan(season)
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
val response = api.spielplan(season)
|
||||||
val body = response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
if (!body.success) error(body.message ?: "Spielplan konnte nicht geladen werden.")
|
val body = response.body() ?: error("Leere Antwort")
|
||||||
body
|
if (!body.success) error(body.message ?: "Spielplan konnte nicht geladen werden.")
|
||||||
|
body
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun fetchTeamTable(team: String, season: String? = null): Result<TeamTableResponse> = runCatching {
|
suspend fun fetchTeamTable(team: String, season: String? = null): Result<TeamTableResponse> = runCatching {
|
||||||
val response = api.spielplanTable(team, season)
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
val response = api.spielplanTable(team, season)
|
||||||
val body = response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
if (!body.success) error(body.message ?: "Tabelle konnte nicht geladen werden.")
|
val body = response.body() ?: error("Leere Antwort")
|
||||||
body
|
if (!body.success) error(body.message ?: "Tabelle konnte nicht geladen werden.")
|
||||||
|
body
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
8
android-app/app/src/main/java/de/harheimertc/repositories/TermineRepository.kt
Normal file → Executable file
8
android-app/app/src/main/java/de/harheimertc/repositories/TermineRepository.kt
Normal file → Executable file
@@ -8,8 +8,10 @@ import javax.inject.Singleton
|
|||||||
@Singleton
|
@Singleton
|
||||||
class TermineRepository @Inject constructor(private val api: ApiService) {
|
class TermineRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchTermine(): Result<List<TerminDto>> = runCatching {
|
suspend fun fetchTermine(): Result<List<TerminDto>> = runCatching {
|
||||||
val response = api.termine()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
val response = api.termine()
|
||||||
response.body()?.termine.orEmpty()
|
if (!response.isSuccessful) error("HTTP ${response.code()}")
|
||||||
|
response.body()?.termine.orEmpty()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
8
android-app/app/src/main/java/de/harheimertc/repositories/TrainingRepository.kt
Normal file → Executable file
8
android-app/app/src/main/java/de/harheimertc/repositories/TrainingRepository.kt
Normal file → Executable file
@@ -8,8 +8,10 @@ import javax.inject.Singleton
|
|||||||
@Singleton
|
@Singleton
|
||||||
class TrainingRepository @Inject constructor(private val api: ApiService) {
|
class TrainingRepository @Inject constructor(private val api: ApiService) {
|
||||||
suspend fun fetchConfig(): Result<ConfigResponse> = runCatching {
|
suspend fun fetchConfig(): Result<ConfigResponse> = runCatching {
|
||||||
val response = api.config()
|
retryOnNetworkFailure {
|
||||||
if (!response.isSuccessful) error("Trainingsinformationen konnten nicht geladen werden.")
|
val response = api.config()
|
||||||
response.body() ?: error("Leere Antwort")
|
if (!response.isSuccessful) error("Trainingsinformationen konnten nicht geladen werden.")
|
||||||
|
response.body() ?: error("Leere Antwort")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
74
android-app/app/src/main/java/de/harheimertc/security/DeviceKeyManager.kt
Executable file
74
android-app/app/src/main/java/de/harheimertc/security/DeviceKeyManager.kt
Executable file
@@ -0,0 +1,74 @@
|
|||||||
|
package de.harheimertc.security
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.os.Build
|
||||||
|
import android.security.keystore.KeyGenParameterSpec
|
||||||
|
import android.security.keystore.KeyProperties
|
||||||
|
import android.util.Base64
|
||||||
|
import java.security.KeyPairGenerator
|
||||||
|
import java.security.KeyStore
|
||||||
|
import java.security.Signature
|
||||||
|
import java.security.spec.ECGenParameterSpec
|
||||||
|
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||||
|
import javax.inject.Inject
|
||||||
|
import javax.inject.Singleton
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
class DeviceKeyManager @Inject constructor(@param:ApplicationContext private val context: Context) {
|
||||||
|
private val alias = "harheimertc_device_key"
|
||||||
|
private val keyStore: KeyStore by lazy {
|
||||||
|
KeyStore.getInstance("AndroidKeyStore").apply { load(null) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun ensureKeyPair(): String? {
|
||||||
|
try {
|
||||||
|
if (!keyStore.containsAlias(alias)) {
|
||||||
|
val kpg = KeyPairGenerator.getInstance(KeyProperties.KEY_ALGORITHM_EC, "AndroidKeyStore")
|
||||||
|
val specBuilder = KeyGenParameterSpec.Builder(
|
||||||
|
alias,
|
||||||
|
KeyProperties.PURPOSE_SIGN or KeyProperties.PURPOSE_VERIFY
|
||||||
|
)
|
||||||
|
.setDigests(KeyProperties.DIGEST_SHA256)
|
||||||
|
.setAlgorithmParameterSpec(ECGenParameterSpec("secp256r1"))
|
||||||
|
.setUserAuthenticationRequired(false)
|
||||||
|
|
||||||
|
// For older APIs, KeyGenParameterSpec.Builder methods exist from API 23+
|
||||||
|
kpg.initialize(specBuilder.build())
|
||||||
|
kpg.generateKeyPair()
|
||||||
|
}
|
||||||
|
val pub = keyStore.getCertificate(alias).publicKey.encoded
|
||||||
|
return Base64.encodeToString(pub, Base64.NO_WRAP)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getPublicKeyBase64(): String? {
|
||||||
|
return try {
|
||||||
|
if (!keyStore.containsAlias(alias)) return null
|
||||||
|
val pub = keyStore.getCertificate(alias).publicKey.encoded
|
||||||
|
Base64.encodeToString(pub, Base64.NO_WRAP)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun sign(data: ByteArray): ByteArray? {
|
||||||
|
return try {
|
||||||
|
val privateKey = keyStore.getKey(alias, null) as? java.security.PrivateKey ?: return null
|
||||||
|
val sig = Signature.getInstance("SHA256withECDSA")
|
||||||
|
sig.initSign(privateKey)
|
||||||
|
sig.update(data)
|
||||||
|
sig.sign()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteKey() {
|
||||||
|
try {
|
||||||
|
if (keyStore.containsAlias(alias)) keyStore.deleteEntry(alias)
|
||||||
|
} catch (_: Exception) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
287
android-app/app/src/main/java/de/harheimertc/ui/components/AppNavigationHeader.kt
Normal file → Executable file
287
android-app/app/src/main/java/de/harheimertc/ui/components/AppNavigationHeader.kt
Normal file → Executable file
@@ -1,12 +1,14 @@
|
|||||||
package de.harheimertc.ui.components
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
import androidx.compose.foundation.Image
|
import androidx.compose.foundation.Image
|
||||||
|
import androidx.compose.foundation.ScrollState
|
||||||
import androidx.compose.foundation.background
|
import androidx.compose.foundation.background
|
||||||
import androidx.compose.foundation.clickable
|
import androidx.compose.foundation.clickable
|
||||||
import androidx.compose.foundation.horizontalScroll
|
import androidx.compose.foundation.horizontalScroll
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.RowScope
|
||||||
import androidx.compose.foundation.layout.Spacer
|
import androidx.compose.foundation.layout.Spacer
|
||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
@@ -25,6 +27,7 @@ import androidx.compose.ui.graphics.Brush
|
|||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.text.style.TextAlign
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
|
import androidx.compose.ui.unit.Dp
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import de.harheimertc.BuildConfig
|
import de.harheimertc.BuildConfig
|
||||||
import de.harheimertc.R
|
import de.harheimertc.R
|
||||||
@@ -40,14 +43,17 @@ private enum class MenuSection {
|
|||||||
TRAINING,
|
TRAINING,
|
||||||
NEWSLETTER,
|
NEWSLETTER,
|
||||||
INTERN,
|
INTERN,
|
||||||
|
CMS,
|
||||||
}
|
}
|
||||||
|
|
||||||
private data class MenuTarget(val label: String, val route: String)
|
private data class MenuTarget(val label: String, val route: String)
|
||||||
|
private const val LOGOUT_ROUTE = "__logout__"
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun AppNavigationHeader(
|
fun AppNavigationHeader(
|
||||||
selectedRoute: String?,
|
selectedRoute: String?,
|
||||||
onNavigate: (String) -> Unit,
|
onNavigate: (String) -> Unit,
|
||||||
|
onLogout: () -> Unit = {},
|
||||||
webTabletNavigation: Boolean = false,
|
webTabletNavigation: Boolean = false,
|
||||||
navigationState: NavigationUiState = NavigationUiState(),
|
navigationState: NavigationUiState = NavigationUiState(),
|
||||||
) {
|
) {
|
||||||
@@ -59,22 +65,90 @@ fun AppNavigationHeader(
|
|||||||
verticalArrangement = Arrangement.spacedBy(8.dp),
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
) {
|
) {
|
||||||
if (webTabletNavigation) {
|
if (webTabletNavigation) {
|
||||||
WebTabletNavigation(selectedRoute, onNavigate, navigationState)
|
WebTabletNavigation(selectedRoute, onNavigate, onLogout, navigationState)
|
||||||
} else {
|
} else {
|
||||||
CompactNavigation(selectedRoute, onNavigate)
|
CompactNavigation(selectedRoute, onNavigate, onLogout, navigationState)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun CompactNavigation(selectedRoute: String?, onNavigate: (String) -> Unit) {
|
private fun CompactNavigation(
|
||||||
BrandRow(onLogin = { onNavigate(Destinations.Login.route) })
|
selectedRoute: String?,
|
||||||
Row(horizontalArrangement = Arrangement.spacedBy(4.dp)) {
|
onNavigate: (String) -> Unit,
|
||||||
CompactLink("Start", Destinations.Home.route, selectedRoute, onNavigate, Modifier.weight(1f))
|
onLogout: () -> Unit,
|
||||||
CompactLink("Termine", Destinations.Termine.route, selectedRoute, onNavigate, Modifier.weight(1f))
|
navigationState: NavigationUiState = NavigationUiState(),
|
||||||
CompactLink("Spielplan", Destinations.Spielplan.route, selectedRoute, onNavigate, Modifier.weight(1f))
|
) {
|
||||||
CompactLink("Galerie", Destinations.Gallery.route, selectedRoute, onNavigate, Modifier.weight(1f))
|
val routeSection = menuSection(selectedRoute)
|
||||||
CompactLink("Kontakt", Destinations.Contact.route, selectedRoute, onNavigate, Modifier.weight(1f))
|
val sectionOverride = androidx.compose.runtime.remember { androidx.compose.runtime.mutableStateOf<MenuSection?>(null) }
|
||||||
|
val section = routeSection ?: sectionOverride.value
|
||||||
|
val subItems = submenu(section, navigationState)
|
||||||
|
|
||||||
|
val mainScroll = rememberScrollState()
|
||||||
|
val subScroll = rememberScrollState()
|
||||||
|
|
||||||
|
BrandRow(
|
||||||
|
loggedIn = navigationState.loggedIn,
|
||||||
|
onLogin = { onNavigate(Destinations.Login.route) },
|
||||||
|
onLogout = onLogout,
|
||||||
|
)
|
||||||
|
|
||||||
|
ScrollableMenuRow(scrollState = mainScroll) {
|
||||||
|
CompactLink("Start", Destinations.Home.route, selectedRoute, onNavigate) { sectionOverride.value = null }
|
||||||
|
CompactSectionLink("Verein", MenuSection.VEREIN, section) { sectionOverride.value = MenuSection.VEREIN }
|
||||||
|
CompactSectionLink("Mannschaften", MenuSection.MANNSCHAFTEN, section) { sectionOverride.value = MenuSection.MANNSCHAFTEN }
|
||||||
|
CompactSectionLink("Training", MenuSection.TRAINING, section) { sectionOverride.value = MenuSection.TRAINING }
|
||||||
|
CompactLink("Termine", Destinations.Termine.route, selectedRoute, onNavigate) { sectionOverride.value = null }
|
||||||
|
CompactLink("Spielplan", Destinations.Spielplan.route, selectedRoute, onNavigate) { sectionOverride.value = MenuSection.MANNSCHAFTEN }
|
||||||
|
CompactSectionLink("Newsletter", MenuSection.NEWSLETTER, section) { sectionOverride.value = MenuSection.NEWSLETTER }
|
||||||
|
if (navigationState.showGallery) {
|
||||||
|
CompactLink("Galerie", Destinations.Gallery.route, selectedRoute, onNavigate) { sectionOverride.value = MenuSection.VEREIN }
|
||||||
|
}
|
||||||
|
if (navigationState.loggedIn) {
|
||||||
|
CompactSectionLink("Intern", MenuSection.INTERN, section) { sectionOverride.value = MenuSection.INTERN }
|
||||||
|
if (navigationState.canAccessCms) {
|
||||||
|
CompactSectionLink("CMS", MenuSection.CMS, section) { sectionOverride.value = MenuSection.CMS }
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
CompactLink("Login", Destinations.Login.route, selectedRoute, onNavigate) { sectionOverride.value = null }
|
||||||
|
}
|
||||||
|
CompactLink("Kontakt", Destinations.Contact.route, selectedRoute, onNavigate) { sectionOverride.value = null }
|
||||||
|
}
|
||||||
|
|
||||||
|
ScrollableMenuRow(scrollState = subScroll, topPadding = 3.dp) {
|
||||||
|
subItems.forEach { item ->
|
||||||
|
SubLink(item.label, item.route == selectedRoute) {
|
||||||
|
if (item.route == LOGOUT_ROUTE) {
|
||||||
|
onLogout()
|
||||||
|
} else {
|
||||||
|
onNavigate(item.route)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun CompactSectionLink(
|
||||||
|
label: String,
|
||||||
|
section: MenuSection,
|
||||||
|
activeSection: MenuSection?,
|
||||||
|
modifier: Modifier = Modifier,
|
||||||
|
onSelect: () -> Unit,
|
||||||
|
) {
|
||||||
|
Surface(
|
||||||
|
color = if (activeSection == section) Primary600 else Color.Transparent,
|
||||||
|
shape = RoundedCornerShape(8.dp),
|
||||||
|
modifier = modifier.clickable { onSelect() },
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
label,
|
||||||
|
color = if (activeSection == section) Color.White else Color(0xFFD4D4D8),
|
||||||
|
textAlign = TextAlign.Center,
|
||||||
|
style = MaterialTheme.typography.labelMedium,
|
||||||
|
modifier = Modifier.padding(vertical = 9.dp, horizontal = 2.dp),
|
||||||
|
maxLines = 1,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,9 +156,13 @@ private fun CompactNavigation(selectedRoute: String?, onNavigate: (String) -> Un
|
|||||||
private fun WebTabletNavigation(
|
private fun WebTabletNavigation(
|
||||||
selectedRoute: String?,
|
selectedRoute: String?,
|
||||||
onNavigate: (String) -> Unit,
|
onNavigate: (String) -> Unit,
|
||||||
|
onLogout: () -> Unit,
|
||||||
navigationState: NavigationUiState,
|
navigationState: NavigationUiState,
|
||||||
) {
|
) {
|
||||||
val section = menuSection(selectedRoute)
|
val sectionOverride = androidx.compose.runtime.remember { androidx.compose.runtime.mutableStateOf<MenuSection?>(null) }
|
||||||
|
val section = sectionOverride.value ?: menuSection(selectedRoute)
|
||||||
|
val subScroll = rememberScrollState()
|
||||||
|
|
||||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
Brand()
|
Brand()
|
||||||
Spacer(Modifier.width(16.dp))
|
Spacer(Modifier.width(16.dp))
|
||||||
@@ -93,43 +171,91 @@ private fun WebTabletNavigation(
|
|||||||
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
) {
|
) {
|
||||||
MainLink("Start", selectedRoute == Destinations.Home.route, onClick = { onNavigate(Destinations.Home.route) })
|
MainLink("Start", selectedRoute == Destinations.Home.route, onClick = {
|
||||||
MainLink("Verein", section == MenuSection.VEREIN, onClick = { onNavigate(Destinations.VereinAbout.route) })
|
sectionOverride.value = null
|
||||||
MainLink("Mannschaften", section == MenuSection.MANNSCHAFTEN, onClick = { onNavigate(Destinations.Mannschaften.route) })
|
onNavigate(Destinations.Home.route)
|
||||||
MainLink("Training", section == MenuSection.TRAINING, onClick = { onNavigate(Destinations.Training.route) })
|
})
|
||||||
MainLink("Mitgliedschaft", selectedRoute == Destinations.Membership.route, onClick = { onNavigate(Destinations.Membership.route) })
|
MainLink("Verein", section == MenuSection.VEREIN, onClick = {
|
||||||
MainLink("Termine", selectedRoute == Destinations.Termine.route, onClick = { onNavigate(Destinations.Termine.route) })
|
sectionOverride.value = MenuSection.VEREIN
|
||||||
|
onNavigate(Destinations.VereinAbout.route)
|
||||||
|
})
|
||||||
|
MainLink("Mannschaften", section == MenuSection.MANNSCHAFTEN, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.MANNSCHAFTEN
|
||||||
|
onNavigate(Destinations.Mannschaften.route)
|
||||||
|
})
|
||||||
|
MainLink("Training", section == MenuSection.TRAINING, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.TRAINING
|
||||||
|
onNavigate(Destinations.Training.route)
|
||||||
|
})
|
||||||
|
MainLink("Termine", selectedRoute == Destinations.Termine.route, onClick = {
|
||||||
|
sectionOverride.value = null
|
||||||
|
onNavigate(Destinations.Termine.route)
|
||||||
|
})
|
||||||
if (navigationState.showGallery) {
|
if (navigationState.showGallery) {
|
||||||
MainLink("Galerie", selectedRoute == Destinations.Gallery.route, onClick = { onNavigate(Destinations.Gallery.route) })
|
MainLink("Galerie", selectedRoute == Destinations.Gallery.route, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.VEREIN
|
||||||
|
onNavigate(Destinations.Gallery.route)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
MainLink("Newsletter", section == MenuSection.NEWSLETTER, onClick = { onNavigate(Destinations.NewsletterSubscribe.route) })
|
MainLink("Newsletter", section == MenuSection.NEWSLETTER, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.NEWSLETTER
|
||||||
|
onNavigate(Destinations.NewsletterSubscribe.route)
|
||||||
|
})
|
||||||
if (navigationState.loggedIn) {
|
if (navigationState.loggedIn) {
|
||||||
MainLink("Intern", section == MenuSection.INTERN, onClick = { onNavigate(Destinations.MemberArea.route) })
|
MainLink("Intern", section == MenuSection.INTERN, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.INTERN
|
||||||
|
})
|
||||||
|
if (navigationState.canAccessCms) {
|
||||||
|
MainLink("CMS", section == MenuSection.CMS, onClick = {
|
||||||
|
sectionOverride.value = MenuSection.CMS
|
||||||
|
onNavigate(Destinations.Cms.route)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
MainLink("Kontakt", selectedRoute == Destinations.Contact.route, primary = true, onClick = { onNavigate(Destinations.Contact.route) })
|
MainLink("Kontakt", selectedRoute == Destinations.Contact.route, primary = true, onClick = {
|
||||||
TextButton(onClick = { onNavigate(Destinations.Login.route) }) { Text("Login", color = Color.White) }
|
sectionOverride.value = null
|
||||||
|
onNavigate(Destinations.Contact.route)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
Spacer(Modifier.width(12.dp))
|
||||||
|
if (navigationState.loggedIn) {
|
||||||
|
TextButton(onClick = onLogout) { Text("Logout", color = Color.White) }
|
||||||
|
} else {
|
||||||
|
TextButton(onClick = {
|
||||||
|
sectionOverride.value = null
|
||||||
|
onNavigate(Destinations.Login.route)
|
||||||
|
}) { Text("Login", color = Color.White) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val subItems = submenu(section, navigationState)
|
val subItems = submenu(section, navigationState)
|
||||||
Row(
|
ScrollableMenuRow(scrollState = subScroll, topPadding = 3.dp) {
|
||||||
modifier = Modifier
|
|
||||||
.fillMaxWidth()
|
|
||||||
.horizontalScroll(rememberScrollState())
|
|
||||||
.padding(top = 3.dp),
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
|
||||||
) {
|
|
||||||
subItems.forEach { item ->
|
subItems.forEach { item ->
|
||||||
SubLink(item.label, item.route == selectedRoute) { onNavigate(item.route) }
|
SubLink(item.label, item.route == selectedRoute) {
|
||||||
|
if (item.route == LOGOUT_ROUTE) {
|
||||||
|
onLogout()
|
||||||
|
} else {
|
||||||
|
onNavigate(item.route)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun BrandRow(onLogin: () -> Unit) {
|
private fun BrandRow(
|
||||||
|
loggedIn: Boolean,
|
||||||
|
onLogin: () -> Unit,
|
||||||
|
onLogout: () -> Unit,
|
||||||
|
) {
|
||||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
Brand()
|
Brand()
|
||||||
Spacer(Modifier.weight(1f))
|
Spacer(Modifier.weight(1f))
|
||||||
TextButton(onClick = onLogin) { Text("Login", color = Color.White) }
|
if (loggedIn) {
|
||||||
|
TextButton(onClick = onLogout) { Text("Logout", color = Color.White) }
|
||||||
|
} else {
|
||||||
|
TextButton(onClick = onLogin) { Text("Login", color = Color.White) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -172,8 +298,8 @@ private fun MainLink(
|
|||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
label,
|
label,
|
||||||
color = Color.White.copy(alpha = if (selected || primary) 1f else 0.82f),
|
color = Color.White.copy(alpha = if (selected || primary) 1f else 0.94f),
|
||||||
style = MaterialTheme.typography.labelSmall,
|
style = MaterialTheme.typography.labelMedium,
|
||||||
modifier = Modifier.padding(horizontal = 10.dp, vertical = 9.dp),
|
modifier = Modifier.padding(horizontal = 10.dp, vertical = 9.dp),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
)
|
)
|
||||||
@@ -187,23 +313,62 @@ private fun CompactLink(
|
|||||||
selectedRoute: String?,
|
selectedRoute: String?,
|
||||||
onNavigate: (String) -> Unit,
|
onNavigate: (String) -> Unit,
|
||||||
modifier: Modifier = Modifier,
|
modifier: Modifier = Modifier,
|
||||||
|
beforeNavigate: () -> Unit = {},
|
||||||
) {
|
) {
|
||||||
Surface(
|
Surface(
|
||||||
color = if (route == selectedRoute) Primary600 else Color.Transparent,
|
color = if (route == selectedRoute) Primary600 else Color.Transparent,
|
||||||
shape = RoundedCornerShape(8.dp),
|
shape = RoundedCornerShape(8.dp),
|
||||||
modifier = modifier.clickable { onNavigate(route) },
|
modifier = modifier.clickable {
|
||||||
|
beforeNavigate()
|
||||||
|
onNavigate(route)
|
||||||
|
},
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
label,
|
label,
|
||||||
color = if (route == selectedRoute) Color.White else Color(0xFFD4D4D8),
|
color = if (route == selectedRoute) Color.White else Color(0xFFD4D4D8),
|
||||||
textAlign = TextAlign.Center,
|
textAlign = TextAlign.Center,
|
||||||
style = MaterialTheme.typography.labelSmall,
|
style = MaterialTheme.typography.labelMedium,
|
||||||
modifier = Modifier.padding(vertical = 9.dp, horizontal = 2.dp),
|
modifier = Modifier.padding(vertical = 9.dp, horizontal = 2.dp),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun ScrollableMenuRow(
|
||||||
|
scrollState: ScrollState,
|
||||||
|
topPadding: Dp = 0.dp,
|
||||||
|
content: @Composable RowScope.() -> Unit,
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(top = topPadding),
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
if (scrollState.canScrollBackward) "◀" else "",
|
||||||
|
color = Color(0xFFD4D4D8),
|
||||||
|
style = MaterialTheme.typography.labelSmall,
|
||||||
|
modifier = Modifier.width(14.dp),
|
||||||
|
)
|
||||||
|
Row(
|
||||||
|
modifier = Modifier
|
||||||
|
.weight(1f)
|
||||||
|
.horizontalScroll(scrollState),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(4.dp),
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
content = content,
|
||||||
|
)
|
||||||
|
Text(
|
||||||
|
if (scrollState.canScrollForward) "▶" else "",
|
||||||
|
color = Color(0xFFD4D4D8),
|
||||||
|
style = MaterialTheme.typography.labelSmall,
|
||||||
|
modifier = Modifier.width(14.dp),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun SubLink(label: String, selected: Boolean, onClick: () -> Unit) {
|
private fun SubLink(label: String, selected: Boolean, onClick: () -> Unit) {
|
||||||
Surface(
|
Surface(
|
||||||
@@ -214,7 +379,7 @@ private fun SubLink(label: String, selected: Boolean, onClick: () -> Unit) {
|
|||||||
Text(
|
Text(
|
||||||
label,
|
label,
|
||||||
color = if (selected) Color.White else Color(0xFFD4D4D8),
|
color = if (selected) Color.White else Color(0xFFD4D4D8),
|
||||||
style = MaterialTheme.typography.labelSmall,
|
style = MaterialTheme.typography.labelMedium,
|
||||||
modifier = Modifier.padding(horizontal = 9.dp, vertical = 4.dp),
|
modifier = Modifier.padding(horizontal = 9.dp, vertical = 4.dp),
|
||||||
maxLines = 1,
|
maxLines = 1,
|
||||||
)
|
)
|
||||||
@@ -228,6 +393,7 @@ private fun menuSection(route: String?): MenuSection? = when (route) {
|
|||||||
Destinations.Satzung.route,
|
Destinations.Satzung.route,
|
||||||
Destinations.Vereinsmeisterschaften.route,
|
Destinations.Vereinsmeisterschaften.route,
|
||||||
Destinations.Links.route,
|
Destinations.Links.route,
|
||||||
|
Destinations.Impressum.route,
|
||||||
Destinations.Gallery.route -> MenuSection.VEREIN
|
Destinations.Gallery.route -> MenuSection.VEREIN
|
||||||
|
|
||||||
Destinations.Mannschaften.route,
|
Destinations.Mannschaften.route,
|
||||||
@@ -240,15 +406,32 @@ private fun menuSection(route: String?): MenuSection? = when (route) {
|
|||||||
Destinations.Regeln.route -> MenuSection.TRAINING
|
Destinations.Regeln.route -> MenuSection.TRAINING
|
||||||
|
|
||||||
Destinations.NewsletterSubscribe.route,
|
Destinations.NewsletterSubscribe.route,
|
||||||
Destinations.NewsletterUnsubscribe.route -> MenuSection.NEWSLETTER
|
Destinations.NewsletterUnsubscribe.route,
|
||||||
|
Destinations.NewsletterConfirm.route,
|
||||||
|
Destinations.NewsletterConfirmed.route,
|
||||||
|
Destinations.NewsletterUnsubscribed.route -> MenuSection.NEWSLETTER
|
||||||
|
|
||||||
Destinations.MemberArea.route,
|
Destinations.MemberArea.route,
|
||||||
Destinations.Members.route,
|
Destinations.Members.route,
|
||||||
|
Destinations.Qttr.route,
|
||||||
Destinations.MemberNews.route,
|
Destinations.MemberNews.route,
|
||||||
Destinations.Profile.route,
|
Destinations.Profile.route,
|
||||||
Destinations.MemberApi.route,
|
Destinations.NotificationSettings.route,
|
||||||
|
Destinations.MemberApi.route -> MenuSection.INTERN
|
||||||
|
|
||||||
|
Destinations.CmsStartseite.route,
|
||||||
|
Destinations.CmsInhalte.route,
|
||||||
|
Destinations.CmsVereinsmeisterschaften.route,
|
||||||
|
Destinations.CmsNews.route,
|
||||||
|
Destinations.CmsSportbetrieb.route,
|
||||||
|
Destinations.CmsMitgliederverwaltung.route,
|
||||||
Destinations.CmsNewsletter.route,
|
Destinations.CmsNewsletter.route,
|
||||||
Destinations.CmsContactRequests.route,
|
Destinations.CmsContactRequests.route,
|
||||||
Destinations.Cms.route -> MenuSection.INTERN
|
Destinations.CmsEinstellungen.route,
|
||||||
|
Destinations.CmsBenutzer.route,
|
||||||
|
Destinations.CmsPasswordResetDiagnostics.route,
|
||||||
|
Destinations.Cms.route -> MenuSection.CMS
|
||||||
|
|
||||||
else -> null
|
else -> null
|
||||||
}.let { section ->
|
}.let { section ->
|
||||||
if (section == null && route?.startsWith("mannschaften/") == true) MenuSection.MANNSCHAFTEN else section
|
if (section == null && route?.startsWith("mannschaften/") == true) MenuSection.MANNSCHAFTEN else section
|
||||||
@@ -263,32 +446,54 @@ private fun submenu(section: MenuSection?, state: NavigationUiState): List<MenuT
|
|||||||
MenuTarget("Vereinsmeisterschaften", Destinations.Vereinsmeisterschaften.route),
|
MenuTarget("Vereinsmeisterschaften", Destinations.Vereinsmeisterschaften.route),
|
||||||
MenuTarget("Galerie", Destinations.Gallery.route),
|
MenuTarget("Galerie", Destinations.Gallery.route),
|
||||||
MenuTarget("Links", Destinations.Links.route),
|
MenuTarget("Links", Destinations.Links.route),
|
||||||
|
MenuTarget("Impressum", Destinations.Impressum.route),
|
||||||
)
|
)
|
||||||
|
|
||||||
MenuSection.MANNSCHAFTEN -> listOf(
|
MenuSection.MANNSCHAFTEN -> listOf(
|
||||||
MenuTarget("Übersicht", Destinations.Mannschaften.route),
|
MenuTarget("Übersicht", Destinations.Mannschaften.route),
|
||||||
) + state.teams.map { MenuTarget(it.mannschaft, Destinations.MannschaftDetail.create(it.slug)) } + listOf(
|
) + state.teams.map { MenuTarget(it.mannschaft, Destinations.MannschaftDetail.create(it.slug)) } + listOf(
|
||||||
MenuTarget("Spielpläne", Destinations.Spielplan.route),
|
MenuTarget("Spielpläne", Destinations.Spielplan.route),
|
||||||
MenuTarget("Spielsysteme", Destinations.Spielsysteme.route),
|
MenuTarget("Spielsysteme", Destinations.Spielsysteme.route),
|
||||||
)
|
)
|
||||||
|
|
||||||
MenuSection.TRAINING -> listOf(
|
MenuSection.TRAINING -> listOf(
|
||||||
MenuTarget("Trainingszeiten", Destinations.Training.route),
|
MenuTarget("Trainingszeiten", Destinations.Training.route),
|
||||||
MenuTarget("Trainer", Destinations.Trainer.route),
|
MenuTarget("Trainer", Destinations.Trainer.route),
|
||||||
MenuTarget("Anfänger", Destinations.Anfaenger.route),
|
MenuTarget("Anfänger", Destinations.Anfaenger.route),
|
||||||
MenuTarget("TT-Regeln", Destinations.Regeln.route),
|
MenuTarget("TT-Regeln", Destinations.Regeln.route),
|
||||||
)
|
)
|
||||||
|
|
||||||
MenuSection.NEWSLETTER -> listOf(
|
MenuSection.NEWSLETTER -> listOf(
|
||||||
MenuTarget("Abonnieren", Destinations.NewsletterSubscribe.route),
|
MenuTarget("Abonnieren", Destinations.NewsletterSubscribe.route),
|
||||||
MenuTarget("Abmelden", Destinations.NewsletterUnsubscribe.route),
|
MenuTarget("Abmelden", Destinations.NewsletterUnsubscribe.route),
|
||||||
|
MenuTarget("Bestätigt", Destinations.NewsletterConfirmed.route),
|
||||||
)
|
)
|
||||||
|
|
||||||
MenuSection.INTERN -> buildList {
|
MenuSection.INTERN -> buildList {
|
||||||
add(MenuTarget("Übersicht", Destinations.MemberArea.route))
|
add(MenuTarget("Übersicht", Destinations.MemberArea.route))
|
||||||
add(MenuTarget("Mitgliederliste", Destinations.Members.route))
|
add(MenuTarget("Mitgliederliste", Destinations.Members.route))
|
||||||
|
add(MenuTarget("QTTR", Destinations.Qttr.route))
|
||||||
add(MenuTarget("News", Destinations.MemberNews.route))
|
add(MenuTarget("News", Destinations.MemberNews.route))
|
||||||
add(MenuTarget("Mein Profil", Destinations.Profile.route))
|
add(MenuTarget("Mein Profil", Destinations.Profile.route))
|
||||||
|
add(MenuTarget("Benachrichtigungen", Destinations.NotificationSettings.route))
|
||||||
add(MenuTarget("API-Dokumentation", Destinations.MemberApi.route))
|
add(MenuTarget("API-Dokumentation", Destinations.MemberApi.route))
|
||||||
|
}
|
||||||
|
|
||||||
|
MenuSection.CMS -> buildList {
|
||||||
|
if (state.canAccessFullCms) {
|
||||||
|
add(MenuTarget("Übersicht", Destinations.Cms.route))
|
||||||
|
add(MenuTarget("Startseite", Destinations.CmsStartseite.route))
|
||||||
|
add(MenuTarget("Inhalte", Destinations.CmsInhalte.route))
|
||||||
|
add(MenuTarget("Vereinsmeisterschaften", Destinations.CmsVereinsmeisterschaften.route))
|
||||||
|
add(MenuTarget("News", Destinations.CmsNews.route))
|
||||||
|
add(MenuTarget("Sportbetrieb", Destinations.CmsSportbetrieb.route))
|
||||||
|
add(MenuTarget("Mitgliederverwaltung", Destinations.CmsMitgliederverwaltung.route))
|
||||||
|
add(MenuTarget("Einstellungen", Destinations.CmsEinstellungen.route))
|
||||||
|
add(MenuTarget("Benutzerverwaltung", Destinations.CmsBenutzer.route))
|
||||||
|
}
|
||||||
if (state.canAccessNewsletter) add(MenuTarget("Newsletter", Destinations.CmsNewsletter.route))
|
if (state.canAccessNewsletter) add(MenuTarget("Newsletter", Destinations.CmsNewsletter.route))
|
||||||
if (state.canAccessContactRequests) add(MenuTarget("Kontaktanfragen", Destinations.CmsContactRequests.route))
|
if (state.canAccessContactRequests) add(MenuTarget("Kontaktanfragen", Destinations.CmsContactRequests.route))
|
||||||
if (state.isAdmin) add(MenuTarget("CMS", Destinations.Cms.route))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
null -> emptyList()
|
null -> emptyList()
|
||||||
}
|
}
|
||||||
|
|||||||
56
android-app/app/src/main/java/de/harheimertc/ui/components/FormComponents.kt
Executable file
56
android-app/app/src/main/java/de/harheimertc/ui/components/FormComponents.kt
Executable file
@@ -0,0 +1,56 @@
|
|||||||
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.text.KeyboardOptions
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.text.input.VisualTransformation
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun ValidatedTextField(
|
||||||
|
value: String,
|
||||||
|
onValueChange: (String) -> Unit,
|
||||||
|
label: String,
|
||||||
|
modifier: Modifier = Modifier.fillMaxWidth(),
|
||||||
|
error: String? = null,
|
||||||
|
keyboardOptions: KeyboardOptions = KeyboardOptions.Default,
|
||||||
|
visualTransformation: VisualTransformation = VisualTransformation.None,
|
||||||
|
singleLine: Boolean = true,
|
||||||
|
minLines: Int = 1,
|
||||||
|
) {
|
||||||
|
OutlinedTextField(
|
||||||
|
value = value,
|
||||||
|
onValueChange = onValueChange,
|
||||||
|
label = { Text(label) },
|
||||||
|
isError = error != null,
|
||||||
|
supportingText = error?.let { { Text(it) } },
|
||||||
|
keyboardOptions = keyboardOptions,
|
||||||
|
visualTransformation = visualTransformation,
|
||||||
|
singleLine = singleLine,
|
||||||
|
minLines = minLines,
|
||||||
|
modifier = modifier,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun FormMessages(error: String?, message: String?) {
|
||||||
|
error?.let { Text(it, color = MaterialTheme.colorScheme.error) }
|
||||||
|
message?.let { Text(it, color = Color(0xFF166534)) }
|
||||||
|
}
|
||||||
|
|
||||||
|
internal fun isValidEmail(value: String): Boolean {
|
||||||
|
val trimmed = value.trim()
|
||||||
|
return trimmed.length in 5..254 &&
|
||||||
|
trimmed.count { it == '@' } == 1 &&
|
||||||
|
trimmed.substringBefore('@').isNotBlank() &&
|
||||||
|
trimmed.substringAfter('@').contains('.') &&
|
||||||
|
!trimmed.any(Char::isWhitespace)
|
||||||
|
}
|
||||||
|
|
||||||
|
internal fun isValidIsoDate(value: String): Boolean =
|
||||||
|
value.trim().matches(Regex("\\d{4}-\\d{2}-\\d{2}"))
|
||||||
|
|
||||||
0
android-app/app/src/main/java/de/harheimertc/ui/components/HeroComponent.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/ui/components/HeroComponent.kt
Normal file → Executable file
40
android-app/app/src/main/java/de/harheimertc/ui/components/ImageGrid.kt
Normal file → Executable file
40
android-app/app/src/main/java/de/harheimertc/ui/components/ImageGrid.kt
Normal file → Executable file
@@ -17,7 +17,6 @@ import androidx.compose.runtime.remember
|
|||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import coil.compose.AsyncImage
|
import coil.compose.AsyncImage
|
||||||
import androidx.compose.material3.AlertDialog
|
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.material3.Button
|
import androidx.compose.material3.Button
|
||||||
import androidx.compose.material3.ButtonDefaults
|
import androidx.compose.material3.ButtonDefaults
|
||||||
@@ -25,21 +24,35 @@ import androidx.compose.ui.Alignment
|
|||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.layout.Box
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
import androidx.compose.ui.layout.ContentScale
|
import androidx.compose.ui.layout.ContentScale
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.semantics.contentDescription
|
||||||
|
import androidx.compose.ui.semantics.semantics
|
||||||
import androidx.compose.ui.window.Dialog
|
import androidx.compose.ui.window.Dialog
|
||||||
|
import coil.request.ImageRequest
|
||||||
|
import de.harheimertc.R
|
||||||
|
import de.harheimertc.repositories.GalleryImage
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class, ExperimentalMaterial3Api::class)
|
@OptIn(ExperimentalFoundationApi::class, ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun ImageGrid(images: List<String>, modifier: Modifier = Modifier) {
|
fun ImageGrid(images: List<GalleryImage>, modifier: Modifier = Modifier) {
|
||||||
val selected = remember { mutableStateOf<String?>(null) }
|
val selected = remember { mutableStateOf<GalleryImage?>(null) }
|
||||||
|
val context = LocalContext.current
|
||||||
|
|
||||||
LazyVerticalGrid(columns = GridCells.Fixed(3), modifier = modifier.padding(8.dp)) {
|
LazyVerticalGrid(columns = GridCells.Fixed(3), modifier = modifier.padding(8.dp)) {
|
||||||
items(images) { img ->
|
items(images) { img ->
|
||||||
|
val description = stringResource(R.string.gallery_image_description, img.title.ifBlank { img.id })
|
||||||
Card(modifier = Modifier.padding(4.dp), elevation = CardDefaults.cardElevation(4.dp)) {
|
Card(modifier = Modifier.padding(4.dp), elevation = CardDefaults.cardElevation(4.dp)) {
|
||||||
AsyncImage(
|
AsyncImage(
|
||||||
model = img,
|
model = ImageRequest.Builder(context)
|
||||||
contentDescription = "Gallery image",
|
.data(img.previewUrl)
|
||||||
|
.size(300, 300)
|
||||||
|
.crossfade(true)
|
||||||
|
.build(),
|
||||||
|
contentDescription = description,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.aspectRatio(1f)
|
.aspectRatio(1f)
|
||||||
|
.semantics { contentDescription = description }
|
||||||
.clickable { selected.value = img },
|
.clickable { selected.value = img },
|
||||||
contentScale = ContentScale.Crop
|
contentScale = ContentScale.Crop
|
||||||
)
|
)
|
||||||
@@ -51,9 +64,20 @@ fun ImageGrid(images: List<String>, modifier: Modifier = Modifier) {
|
|||||||
Dialog(onDismissRequest = { selected.value = null }) {
|
Dialog(onDismissRequest = { selected.value = null }) {
|
||||||
Surface(modifier = Modifier.fillMaxSize()) {
|
Surface(modifier = Modifier.fillMaxSize()) {
|
||||||
Box(contentAlignment = Alignment.Center) {
|
Box(contentAlignment = Alignment.Center) {
|
||||||
AsyncImage(model = selected.value, contentDescription = "Full image", modifier = Modifier.fillMaxSize(), contentScale = ContentScale.Fit)
|
AsyncImage(
|
||||||
Button(onClick = { selected.value = null }, modifier = Modifier.align(Alignment.TopEnd), colors = ButtonDefaults.buttonColors()) {
|
model = selected.value?.imageUrl,
|
||||||
Text("Schließen")
|
contentDescription = selected.value?.title ?: stringResource(R.string.gallery_title),
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
contentScale = ContentScale.Fit,
|
||||||
|
)
|
||||||
|
Button(
|
||||||
|
onClick = { selected.value = null },
|
||||||
|
modifier = Modifier
|
||||||
|
.align(Alignment.TopEnd)
|
||||||
|
.semantics { contentDescription = context.getString(R.string.gallery_close_image) },
|
||||||
|
colors = ButtonDefaults.buttonColors(),
|
||||||
|
) {
|
||||||
|
Text(stringResource(R.string.gallery_upload_hide))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
24
android-app/app/src/main/java/de/harheimertc/ui/components/LoadingState.kt
Executable file
24
android-app/app/src/main/java/de/harheimertc/ui/components/LoadingState.kt
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.material3.CircularProgressIndicator
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import de.harheimertc.ui.theme.Accent500
|
||||||
|
import de.harheimertc.ui.theme.Primary600
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
internal fun LoadingState(message: String = "Daten werden geladen...") {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth().padding(28.dp),
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
|
) {
|
||||||
|
CircularProgressIndicator(color = Primary600)
|
||||||
|
Text(message, color = Accent500, modifier = Modifier.padding(top = 12.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,205 @@
|
|||||||
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
|
import androidx.compose.foundation.horizontalScroll
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.rememberScrollState
|
||||||
|
import androidx.compose.material3.AlertDialog
|
||||||
|
import androidx.compose.material3.AssistChip
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
|
import androidx.compose.material3.Surface
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TextButton
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.text.TextRange
|
||||||
|
import androidx.compose.ui.text.input.TextFieldValue
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun NativeRichTextEditor(
|
||||||
|
value: String,
|
||||||
|
onValueChange: (String) -> Unit,
|
||||||
|
label: String,
|
||||||
|
modifier: Modifier = Modifier,
|
||||||
|
) {
|
||||||
|
var fieldValue by remember(value) { mutableStateOf(TextFieldValue(value, TextRange(value.length))) }
|
||||||
|
var linkDialog by remember { mutableStateOf(false) }
|
||||||
|
var imageDialog by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
|
fun commit(next: TextFieldValue) {
|
||||||
|
fieldValue = next
|
||||||
|
onValueChange(normalizeEmptyHtml(next.text))
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(modifier, verticalArrangement = Arrangement.spacedBy(10.dp)) {
|
||||||
|
Text(label, style = MaterialTheme.typography.titleLarge)
|
||||||
|
ToolbarRow(
|
||||||
|
onAction = { action ->
|
||||||
|
when (action) {
|
||||||
|
RichTextAction.Link -> linkDialog = true
|
||||||
|
RichTextAction.Image -> imageDialog = true
|
||||||
|
RichTextAction.Clean -> commit(fieldValue.copy(text = stripHtml(fieldValue.text), selection = TextRange(stripHtml(fieldValue.text).length)))
|
||||||
|
else -> commit(applyAction(fieldValue, action))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
OutlinedTextField(
|
||||||
|
value = fieldValue,
|
||||||
|
onValueChange = { commit(it) },
|
||||||
|
label = { Text("HTML-Inhalt") },
|
||||||
|
minLines = 12,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
)
|
||||||
|
Surface(color = Color(0xFFF4F4F5), modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Column(Modifier.fillMaxWidth().padding(12.dp), verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
Text("Vorschau", style = MaterialTheme.typography.labelLarge)
|
||||||
|
if (fieldValue.text.isBlank()) Text("Noch kein Inhalt.", color = Color(0xFF71717A)) else RichText(fieldValue.text)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (linkDialog) {
|
||||||
|
UrlDialog(
|
||||||
|
title = "Link einfügen",
|
||||||
|
placeholder = "https://...",
|
||||||
|
onDismiss = { linkDialog = false },
|
||||||
|
onConfirm = { url ->
|
||||||
|
commit(applyLink(fieldValue, url))
|
||||||
|
linkDialog = false
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (imageDialog) {
|
||||||
|
UrlDialog(
|
||||||
|
title = "Bild einfügen",
|
||||||
|
placeholder = "https://.../bild.jpg",
|
||||||
|
onDismiss = { imageDialog = false },
|
||||||
|
onConfirm = { url ->
|
||||||
|
commit(insertHtml(fieldValue, """<p><img src="${escapeHtml(url)}"></p>"""))
|
||||||
|
imageDialog = false
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun ToolbarRow(onAction: (RichTextAction) -> Unit) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.fillMaxWidth().horizontalScroll(rememberScrollState()),
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
) {
|
||||||
|
RichTextAction.entries.forEach { action ->
|
||||||
|
AssistChip(onClick = { onAction(action) }, label = { Text(action.label) })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun UrlDialog(title: String, placeholder: String, onDismiss: () -> Unit, onConfirm: (String) -> Unit) {
|
||||||
|
var value by remember { mutableStateOf("") }
|
||||||
|
AlertDialog(
|
||||||
|
onDismissRequest = onDismiss,
|
||||||
|
title = { Text(title) },
|
||||||
|
text = {
|
||||||
|
OutlinedTextField(value = value, onValueChange = { value = it }, label = { Text(placeholder) }, singleLine = true)
|
||||||
|
},
|
||||||
|
confirmButton = {
|
||||||
|
Button(onClick = { onConfirm(value.trim()) }, enabled = value.isNotBlank()) { Text("Einfügen") }
|
||||||
|
},
|
||||||
|
dismissButton = {
|
||||||
|
TextButton(onClick = onDismiss) { Text("Abbrechen") }
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private enum class RichTextAction(val label: String) {
|
||||||
|
H1("H1"),
|
||||||
|
H2("H2"),
|
||||||
|
H3("H3"),
|
||||||
|
Bold("B"),
|
||||||
|
Italic("I"),
|
||||||
|
Underline("U"),
|
||||||
|
Strike("S"),
|
||||||
|
Color("Farbe"),
|
||||||
|
Background("Marker"),
|
||||||
|
OrderedList("1."),
|
||||||
|
BulletList("•"),
|
||||||
|
AlignCenter("Zentriert"),
|
||||||
|
Link("Link"),
|
||||||
|
Image("Bild"),
|
||||||
|
Blockquote("Zitat"),
|
||||||
|
CodeBlock("Code"),
|
||||||
|
Clean("Clean"),
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun applyAction(value: TextFieldValue, action: RichTextAction): TextFieldValue = when (action) {
|
||||||
|
RichTextAction.H1 -> wrapBlock(value, "h1")
|
||||||
|
RichTextAction.H2 -> wrapBlock(value, "h2")
|
||||||
|
RichTextAction.H3 -> wrapBlock(value, "h3")
|
||||||
|
RichTextAction.Bold -> wrapInline(value, "strong")
|
||||||
|
RichTextAction.Italic -> wrapInline(value, "em")
|
||||||
|
RichTextAction.Underline -> wrapInline(value, "u")
|
||||||
|
RichTextAction.Strike -> wrapInline(value, "s")
|
||||||
|
RichTextAction.Color -> wrapInline(value, "span", " style=\"color: #dc2626;\"")
|
||||||
|
RichTextAction.Background -> wrapInline(value, "span", " style=\"background-color: #fef3c7;\"")
|
||||||
|
RichTextAction.OrderedList -> wrapLines(value, "ol")
|
||||||
|
RichTextAction.BulletList -> wrapLines(value, "ul")
|
||||||
|
RichTextAction.AlignCenter -> wrapSelection(value, """<p class="ql-align-center">""", "</p>")
|
||||||
|
RichTextAction.Blockquote -> wrapBlock(value, "blockquote")
|
||||||
|
RichTextAction.CodeBlock -> wrapSelection(value, """<pre class="ql-syntax" spellcheck="false">""", "</pre>")
|
||||||
|
RichTextAction.Link,
|
||||||
|
RichTextAction.Image,
|
||||||
|
RichTextAction.Clean -> value
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun applyLink(value: TextFieldValue, url: String): TextFieldValue {
|
||||||
|
val safeUrl = escapeHtml(url)
|
||||||
|
val label = selectedText(value).ifBlank { safeUrl }
|
||||||
|
return replaceSelection(value, """<a href="$safeUrl">$label</a>""")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun wrapInline(value: TextFieldValue, tag: String, attrs: String = ""): TextFieldValue =
|
||||||
|
wrapSelection(value, "<$tag$attrs>", "</$tag>")
|
||||||
|
|
||||||
|
private fun wrapBlock(value: TextFieldValue, tag: String): TextFieldValue =
|
||||||
|
wrapSelection(value, "<$tag>", "</$tag>")
|
||||||
|
|
||||||
|
private fun wrapLines(value: TextFieldValue, listTag: String): TextFieldValue {
|
||||||
|
val lines = selectedText(value).ifBlank { "Listeneintrag" }
|
||||||
|
.lines()
|
||||||
|
.filter { it.isNotBlank() }
|
||||||
|
.joinToString("") { "<li>${escapeHtml(it)}</li>" }
|
||||||
|
return replaceSelection(value, "<$listTag>$lines</$listTag>")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun wrapSelection(value: TextFieldValue, prefix: String, suffix: String): TextFieldValue =
|
||||||
|
replaceSelection(value, prefix + selectedText(value).ifBlank { "Text" } + suffix)
|
||||||
|
|
||||||
|
private fun insertHtml(value: TextFieldValue, html: String): TextFieldValue = replaceSelection(value, html)
|
||||||
|
|
||||||
|
private fun replaceSelection(value: TextFieldValue, replacement: String): TextFieldValue {
|
||||||
|
val start = value.selection.min.coerceIn(0, value.text.length)
|
||||||
|
val end = value.selection.max.coerceIn(0, value.text.length)
|
||||||
|
val next = value.text.replaceRange(start, end, replacement)
|
||||||
|
val cursor = start + replacement.length
|
||||||
|
return TextFieldValue(next, TextRange(cursor))
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun selectedText(value: TextFieldValue): String {
|
||||||
|
val start = value.selection.min.coerceIn(0, value.text.length)
|
||||||
|
val end = value.selection.max.coerceIn(0, value.text.length)
|
||||||
|
return value.text.substring(start, end)
|
||||||
|
}
|
||||||
|
|
||||||
|
// HTML helper functions moved to RichTextUtils.kt for reuse and testing
|
||||||
0
android-app/app/src/main/java/de/harheimertc/ui/components/PendingPage.kt
Normal file → Executable file
0
android-app/app/src/main/java/de/harheimertc/ui/components/PendingPage.kt
Normal file → Executable file
31
android-app/app/src/main/java/de/harheimertc/ui/components/RichText.kt
Executable file
31
android-app/app/src/main/java/de/harheimertc/ui/components/RichText.kt
Executable file
@@ -0,0 +1,31 @@
|
|||||||
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
|
import android.text.method.LinkMovementMethod
|
||||||
|
import android.widget.TextView
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.viewinterop.AndroidView
|
||||||
|
import androidx.core.text.HtmlCompat
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun RichText(
|
||||||
|
html: String,
|
||||||
|
modifier: Modifier = Modifier.fillMaxWidth(),
|
||||||
|
) {
|
||||||
|
AndroidView(
|
||||||
|
modifier = modifier,
|
||||||
|
factory = { context ->
|
||||||
|
TextView(context).apply {
|
||||||
|
textSize = 17f
|
||||||
|
setTextColor(android.graphics.Color.rgb(63, 63, 70))
|
||||||
|
movementMethod = LinkMovementMethod.getInstance()
|
||||||
|
setLineSpacing(0f, 1.2f)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
update = { textView ->
|
||||||
|
textView.text = HtmlCompat.fromHtml(html, HtmlCompat.FROM_HTML_MODE_COMPACT)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
15
android-app/app/src/main/java/de/harheimertc/ui/components/RichTextUtils.kt
Executable file
15
android-app/app/src/main/java/de/harheimertc/ui/components/RichTextUtils.kt
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
package de.harheimertc.ui.components
|
||||||
|
|
||||||
|
fun normalizeEmptyHtml(value: String): String =
|
||||||
|
if (stripHtml(value).isBlank() && !value.contains("<img", ignoreCase = true)) "" else value
|
||||||
|
|
||||||
|
fun stripHtml(value: String): String = value
|
||||||
|
.replace(Regex("<[^>]+>"), "")
|
||||||
|
.replace(" ", " ")
|
||||||
|
.trim()
|
||||||
|
|
||||||
|
fun escapeHtml(value: String): String = value
|
||||||
|
.replace("&", "&")
|
||||||
|
.replace("<", "<")
|
||||||
|
.replace(">", ">")
|
||||||
|
.replace("\"", """)
|
||||||
26
android-app/app/src/main/java/de/harheimertc/ui/navigation/Destinations.kt
Normal file → Executable file
26
android-app/app/src/main/java/de/harheimertc/ui/navigation/Destinations.kt
Normal file → Executable file
@@ -8,9 +8,17 @@ sealed class Destinations(val route: String) {
|
|||||||
object Satzung : Destinations("verein/satzung")
|
object Satzung : Destinations("verein/satzung")
|
||||||
object Vereinsmeisterschaften : Destinations("verein/vereinsmeisterschaften")
|
object Vereinsmeisterschaften : Destinations("verein/vereinsmeisterschaften")
|
||||||
object Links : Destinations("verein/links")
|
object Links : Destinations("verein/links")
|
||||||
|
object Impressum : Destinations("impressum")
|
||||||
object Mannschaften : Destinations("mannschaften")
|
object Mannschaften : Destinations("mannschaften")
|
||||||
object MannschaftDetail : Destinations("mannschaften/{slug}") {
|
object MannschaftDetail : Destinations("mannschaften/{slug}?season={season}") {
|
||||||
fun create(slug: String): String = "mannschaften/$slug"
|
fun create(slug: String, season: String? = null): String {
|
||||||
|
val encodedSlug = android.net.Uri.encode(slug)
|
||||||
|
val selectedSeason = season?.takeIf { it.isNotBlank() } ?: return "mannschaften/$encodedSlug"
|
||||||
|
return "mannschaften/$encodedSlug?season=${android.net.Uri.encode(selectedSeason)}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
object MannschaftLegacyDetail : Destinations("mannschaft/{slug}") {
|
||||||
|
fun create(slug: String): String = "mannschaft/$slug"
|
||||||
}
|
}
|
||||||
object Termine : Destinations("termine")
|
object Termine : Destinations("termine")
|
||||||
object Spielplan : Destinations("spielplan")
|
object Spielplan : Destinations("spielplan")
|
||||||
@@ -22,6 +30,9 @@ sealed class Destinations(val route: String) {
|
|||||||
object Gallery : Destinations("gallery")
|
object Gallery : Destinations("gallery")
|
||||||
object NewsletterSubscribe : Destinations("newsletter/subscribe")
|
object NewsletterSubscribe : Destinations("newsletter/subscribe")
|
||||||
object NewsletterUnsubscribe : Destinations("newsletter/unsubscribe")
|
object NewsletterUnsubscribe : Destinations("newsletter/unsubscribe")
|
||||||
|
object NewsletterConfirm : Destinations("newsletter/confirm")
|
||||||
|
object NewsletterConfirmed : Destinations("newsletter/confirmed")
|
||||||
|
object NewsletterUnsubscribed : Destinations("newsletter/unsubscribed")
|
||||||
object Contact : Destinations("contact")
|
object Contact : Destinations("contact")
|
||||||
object Membership : Destinations("membership")
|
object Membership : Destinations("membership")
|
||||||
object Login : Destinations("login")
|
object Login : Destinations("login")
|
||||||
@@ -29,10 +40,21 @@ sealed class Destinations(val route: String) {
|
|||||||
object Register : Destinations("register")
|
object Register : Destinations("register")
|
||||||
object MemberArea : Destinations("intern")
|
object MemberArea : Destinations("intern")
|
||||||
object Members : Destinations("intern/mitglieder")
|
object Members : Destinations("intern/mitglieder")
|
||||||
|
object Qttr : Destinations("intern/qttr")
|
||||||
object MemberNews : Destinations("intern/news")
|
object MemberNews : Destinations("intern/news")
|
||||||
object Profile : Destinations("intern/profil")
|
object Profile : Destinations("intern/profil")
|
||||||
|
object NotificationSettings : Destinations("intern/benachrichtigungen")
|
||||||
object MemberApi : Destinations("intern/api")
|
object MemberApi : Destinations("intern/api")
|
||||||
|
object CmsStartseite : Destinations("cms/startseite")
|
||||||
|
object CmsInhalte : Destinations("cms/inhalte")
|
||||||
|
object CmsVereinsmeisterschaften : Destinations("cms/vereinsmeisterschaften")
|
||||||
|
object CmsNews : Destinations("cms/news")
|
||||||
|
object CmsSportbetrieb : Destinations("cms/sportbetrieb")
|
||||||
|
object CmsMitgliederverwaltung : Destinations("cms/mitgliederverwaltung")
|
||||||
object CmsNewsletter : Destinations("cms/newsletter")
|
object CmsNewsletter : Destinations("cms/newsletter")
|
||||||
object CmsContactRequests : Destinations("cms/kontaktanfragen")
|
object CmsContactRequests : Destinations("cms/kontaktanfragen")
|
||||||
|
object CmsEinstellungen : Destinations("cms/einstellungen")
|
||||||
|
object CmsBenutzer : Destinations("cms/benutzer")
|
||||||
|
object CmsPasswordResetDiagnostics : Destinations("cms/passwort-reset-diagnose")
|
||||||
object Cms : Destinations("cms")
|
object Cms : Destinations("cms")
|
||||||
}
|
}
|
||||||
|
|||||||
283
android-app/app/src/main/java/de/harheimertc/ui/navigation/NavGraph.kt
Normal file → Executable file
283
android-app/app/src/main/java/de/harheimertc/ui/navigation/NavGraph.kt
Normal file → Executable file
@@ -2,31 +2,43 @@ package de.harheimertc.ui.navigation
|
|||||||
|
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.LaunchedEffect
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.material3.MaterialTheme
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.Surface
|
||||||
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.foundation.layout.BoxWithConstraints
|
import androidx.compose.foundation.layout.BoxWithConstraints
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.navigation.NavHostController
|
import androidx.navigation.NavHostController
|
||||||
import androidx.navigation.compose.currentBackStackEntryAsState
|
import androidx.navigation.compose.currentBackStackEntryAsState
|
||||||
import androidx.navigation.compose.NavHost
|
import androidx.navigation.compose.NavHost
|
||||||
import androidx.navigation.compose.composable
|
import androidx.navigation.compose.composable
|
||||||
|
import androidx.navigation.navArgument
|
||||||
import androidx.hilt.navigation.compose.hiltViewModel
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
import androidx.compose.runtime.collectAsState
|
import androidx.compose.runtime.collectAsState
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import de.harheimertc.ui.components.AppNavigationHeader
|
import de.harheimertc.ui.components.AppNavigationHeader
|
||||||
import de.harheimertc.ui.components.PendingPage
|
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun NavGraph(
|
fun NavGraph(
|
||||||
navController: NavHostController,
|
navController: NavHostController,
|
||||||
startDestination: String = Destinations.Home.route,
|
startDestination: String = Destinations.Home.route,
|
||||||
navigationViewModel: NavigationViewModel = hiltViewModel(),
|
navigationViewModelParam: NavigationViewModel? = null,
|
||||||
) {
|
) {
|
||||||
|
val navigationViewModel: NavigationViewModel = navigationViewModelParam ?: hiltViewModel()
|
||||||
val backStackEntry = navController.currentBackStackEntryAsState().value
|
val backStackEntry = navController.currentBackStackEntryAsState().value
|
||||||
val route = backStackEntry?.destination?.route
|
val route = backStackEntry?.destination?.route
|
||||||
val currentRoute = if (route == Destinations.MannschaftDetail.route) {
|
val currentRoute = if (route == Destinations.MannschaftDetail.route) {
|
||||||
backStackEntry.arguments?.getString("slug")?.let(Destinations.MannschaftDetail::create)
|
backStackEntry.arguments?.getString("slug")?.let { slug ->
|
||||||
|
Destinations.MannschaftDetail.create(slug, backStackEntry.arguments?.getString("season"))
|
||||||
|
}
|
||||||
} else route
|
} else route
|
||||||
val navigationState by navigationViewModel.state.collectAsState()
|
val navigationState by navigationViewModel.state.collectAsState()
|
||||||
LaunchedEffect(currentRoute) {
|
LaunchedEffect(currentRoute) {
|
||||||
@@ -35,10 +47,27 @@ fun NavGraph(
|
|||||||
BoxWithConstraints(modifier = Modifier.fillMaxSize()) {
|
BoxWithConstraints(modifier = Modifier.fillMaxSize()) {
|
||||||
val persistentNavigation = maxWidth >= 600.dp
|
val persistentNavigation = maxWidth >= 600.dp
|
||||||
Column(modifier = Modifier.fillMaxSize()) {
|
Column(modifier = Modifier.fillMaxSize()) {
|
||||||
|
navigationState.connectionNote?.let { message ->
|
||||||
|
Surface(color = Color(0xFFFFF4E5), modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Text(
|
||||||
|
text = message,
|
||||||
|
color = Color(0xFF7C2D12),
|
||||||
|
style = MaterialTheme.typography.labelMedium,
|
||||||
|
modifier = Modifier.padding(horizontal = 16.dp, vertical = 10.dp),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
if (persistentNavigation) {
|
if (persistentNavigation) {
|
||||||
AppNavigationHeader(
|
AppNavigationHeader(
|
||||||
selectedRoute = currentRoute,
|
selectedRoute = currentRoute,
|
||||||
onNavigate = navController::navigateTopLevel,
|
onNavigate = navController::navigateTopLevel,
|
||||||
|
onLogout = {
|
||||||
|
navigationViewModel.logout {
|
||||||
|
navController.navigate(Destinations.Home.route) {
|
||||||
|
launchSingleTop = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
webTabletNavigation = true,
|
webTabletNavigation = true,
|
||||||
navigationState = navigationState,
|
navigationState = navigationState,
|
||||||
)
|
)
|
||||||
@@ -52,6 +81,8 @@ fun NavGraph(
|
|||||||
de.harheimertc.ui.screens.home.HomeScreen(
|
de.harheimertc.ui.screens.home.HomeScreen(
|
||||||
navController = navController,
|
navController = navController,
|
||||||
showNavigationHeader = !persistentNavigation,
|
showNavigationHeader = !persistentNavigation,
|
||||||
|
navigationViewModel = navigationViewModel,
|
||||||
|
viewModel = hiltViewModel(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.VereinAbout.route) {
|
composable(Destinations.VereinAbout.route) {
|
||||||
@@ -90,15 +121,42 @@ fun NavGraph(
|
|||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
composable(Destinations.Impressum.route) {
|
||||||
|
de.harheimertc.ui.screens.publicpages.ImpressumScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
composable(Destinations.Mannschaften.route) {
|
composable(Destinations.Mannschaften.route) {
|
||||||
de.harheimertc.ui.screens.mannschaften.MannschaftenScreen(
|
de.harheimertc.ui.screens.mannschaften.MannschaftenScreen(
|
||||||
navController = navController,
|
navController = navController,
|
||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.MannschaftDetail.route) { entry ->
|
composable("mannschaften/herren") {
|
||||||
|
de.harheimertc.ui.screens.mannschaften.MannschaftenScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable("mannschaften/damen") {
|
||||||
|
de.harheimertc.ui.screens.mannschaften.MannschaftenScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable("mannschaften/jugend") {
|
||||||
|
de.harheimertc.ui.screens.mannschaften.MannschaftenScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable(
|
||||||
|
route = Destinations.MannschaftDetail.route,
|
||||||
|
arguments = listOf(navArgument("season") { nullable = true; defaultValue = null }),
|
||||||
|
) { entry ->
|
||||||
de.harheimertc.ui.screens.mannschaften.MannschaftDetailScreen(
|
de.harheimertc.ui.screens.mannschaften.MannschaftDetailScreen(
|
||||||
slug = entry.arguments?.getString("slug").orEmpty(),
|
slug = entry.arguments?.getString("slug").orEmpty(),
|
||||||
|
season = entry.arguments?.getString("season"),
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.MannschaftLegacyDetail.route) { entry ->
|
||||||
|
de.harheimertc.ui.screens.mannschaften.MannschaftDetailScreen(
|
||||||
|
slug = entry.arguments?.getString("slug").orEmpty(),
|
||||||
|
season = null,
|
||||||
navController = navController,
|
navController = navController,
|
||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
@@ -121,6 +179,9 @@ fun NavGraph(
|
|||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
composable("spielsysteme") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.SpielsystemeScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
composable(Destinations.Training.route) {
|
composable(Destinations.Training.route) {
|
||||||
de.harheimertc.ui.screens.training.TrainingScreen(
|
de.harheimertc.ui.screens.training.TrainingScreen(
|
||||||
navController = navController,
|
navController = navController,
|
||||||
@@ -145,14 +206,48 @@ fun NavGraph(
|
|||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
composable("tt-regeln") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.RegelnScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable("verein/tt-regeln") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.RegelnScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
composable(Destinations.Gallery.route) {
|
composable(Destinations.Gallery.route) {
|
||||||
de.harheimertc.ui.screens.gallery.GalleryScreen()
|
de.harheimertc.ui.screens.gallery.GalleryScreen()
|
||||||
}
|
}
|
||||||
|
composable("galerie") {
|
||||||
|
de.harheimertc.ui.screens.gallery.GalleryScreen()
|
||||||
|
}
|
||||||
composable(Destinations.NewsletterSubscribe.route) {
|
composable(Destinations.NewsletterSubscribe.route) {
|
||||||
PendingPage(navController, "Newsletter abonnieren", "/newsletter/subscribe", !persistentNavigation)
|
de.harheimertc.ui.screens.newsletter.NewsletterSubscribeScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.NewsletterUnsubscribe.route) {
|
composable(Destinations.NewsletterUnsubscribe.route) {
|
||||||
PendingPage(navController, "Newsletter abmelden", "/newsletter/unsubscribe", !persistentNavigation)
|
de.harheimertc.ui.screens.newsletter.NewsletterUnsubscribeScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.NewsletterConfirm.route) {
|
||||||
|
de.harheimertc.ui.screens.newsletter.NewsletterConfirmScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
token = null,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.NewsletterConfirmed.route) {
|
||||||
|
de.harheimertc.ui.screens.newsletter.NewsletterConfirmedScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.NewsletterUnsubscribed.route) {
|
||||||
|
de.harheimertc.ui.screens.newsletter.NewsletterUnsubscribedScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.Contact.route) {
|
composable(Destinations.Contact.route) {
|
||||||
de.harheimertc.ui.screens.contact.ContactScreen()
|
de.harheimertc.ui.screens.contact.ContactScreen()
|
||||||
@@ -181,35 +276,195 @@ fun NavGraph(
|
|||||||
showBackNavigation = !persistentNavigation,
|
showBackNavigation = !persistentNavigation,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
composable("ueber-uns") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.AboutScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable("geschichte") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.GeschichteScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
composable("satzung") {
|
||||||
|
de.harheimertc.ui.screens.publicpages.SatzungScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
composable(Destinations.MemberArea.route) {
|
composable(Destinations.MemberArea.route) {
|
||||||
PendingPage(navController, "Intern", "/mitgliederbereich", !persistentNavigation)
|
de.harheimertc.ui.screens.memberarea.MemberAreaScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
navigationState = navigationState,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.Members.route) {
|
composable(Destinations.Members.route) {
|
||||||
PendingPage(navController, "Mitgliederliste", "/mitgliederbereich/mitglieder", !persistentNavigation)
|
de.harheimertc.ui.screens.memberarea.MembersScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.Qttr.route) {
|
||||||
|
de.harheimertc.ui.screens.memberarea.QttrScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.MemberNews.route) {
|
composable(Destinations.MemberNews.route) {
|
||||||
PendingPage(navController, "News", "/mitgliederbereich/news", !persistentNavigation)
|
de.harheimertc.ui.screens.memberarea.MemberNewsScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.Profile.route) {
|
composable(Destinations.Profile.route) {
|
||||||
PendingPage(navController, "Mein Profil", "/mitgliederbereich/profil", !persistentNavigation)
|
de.harheimertc.ui.screens.profile.ProfileScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.NotificationSettings.route) {
|
||||||
|
de.harheimertc.ui.screens.notifications.NotificationSettingsScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
navigationState = navigationState,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
composable(Destinations.MemberApi.route) {
|
composable(Destinations.MemberApi.route) {
|
||||||
PendingPage(navController, "API-Dokumentation", "/mitgliederbereich/api", !persistentNavigation)
|
de.harheimertc.ui.screens.memberarea.MemberApiScreen(
|
||||||
|
navController = navController,
|
||||||
|
showBackNavigation = !persistentNavigation,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsStartseite.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsStartseiteScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsInhalte.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsInhalteScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsVereinsmeisterschaften.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsVereinsmeisterschaftenScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsNews.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsNewsScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsSportbetrieb.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsSportbetriebScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsMitgliederverwaltung.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsMitgliederverwaltungScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
composable(Destinations.CmsNewsletter.route) {
|
composable(Destinations.CmsNewsletter.route) {
|
||||||
PendingPage(navController, "Newsletter", "/cms/newsletter", !persistentNavigation)
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessNewsletter,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsNewsletterScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
composable(Destinations.CmsContactRequests.route) {
|
composable(Destinations.CmsContactRequests.route) {
|
||||||
PendingPage(navController, "Kontaktanfragen", "/cms/kontaktanfragen", !persistentNavigation)
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessContactRequests,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsContactRequestsScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsEinstellungen.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsEinstellungenScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsBenutzer.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsBenutzerScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
composable(Destinations.CmsPasswordResetDiagnostics.route) {
|
||||||
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessFullCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsPasswordResetDiagnosticsScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
composable(Destinations.Cms.route) {
|
composable(Destinations.Cms.route) {
|
||||||
PendingPage(navController, "CMS", "/cms", !persistentNavigation)
|
RequireCmsAccess(
|
||||||
|
allowed = navigationState.canAccessCms,
|
||||||
|
navController = navController,
|
||||||
|
) {
|
||||||
|
de.harheimertc.ui.screens.cms.CmsDashboardScreen(navController, !persistentNavigation)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun RequireCmsAccess(
|
||||||
|
allowed: Boolean,
|
||||||
|
navController: NavHostController,
|
||||||
|
content: @Composable () -> Unit,
|
||||||
|
) {
|
||||||
|
if (allowed) {
|
||||||
|
content()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxSize()
|
||||||
|
.padding(24.dp),
|
||||||
|
verticalArrangement = Arrangement.Center,
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = "Kein Zugriff auf diesen Bereich.",
|
||||||
|
style = MaterialTheme.typography.headlineSmall,
|
||||||
|
color = Color(0xFF7F1D1D),
|
||||||
|
)
|
||||||
|
Text(
|
||||||
|
text = "Bitte mit einem berechtigten Konto anmelden.",
|
||||||
|
style = MaterialTheme.typography.bodyMedium,
|
||||||
|
color = Color(0xFF7C2D12),
|
||||||
|
modifier = Modifier.padding(top = 8.dp, bottom = 16.dp),
|
||||||
|
)
|
||||||
|
Button(onClick = { navController.navigateTopLevel(Destinations.Login.route) }) {
|
||||||
|
Text("Zum Login")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun NavHostController.navigateTopLevel(route: String) {
|
private fun NavHostController.navigateTopLevel(route: String) {
|
||||||
val isTeamDetail = route.startsWith("mannschaften/") &&
|
val isTeamDetail = route.startsWith("mannschaften/") &&
|
||||||
route != Destinations.Spielsysteme.route
|
route != Destinations.Spielsysteme.route
|
||||||
|
|||||||
58
android-app/app/src/main/java/de/harheimertc/ui/navigation/NavigationViewModel.kt
Normal file → Executable file
58
android-app/app/src/main/java/de/harheimertc/ui/navigation/NavigationViewModel.kt
Normal file → Executable file
@@ -3,10 +3,13 @@ package de.harheimertc.ui.navigation
|
|||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
|
import de.harheimertc.data.ConnectivityMonitor
|
||||||
|
import de.harheimertc.repositories.AuthRepository
|
||||||
import de.harheimertc.repositories.GalleryRepository
|
import de.harheimertc.repositories.GalleryRepository
|
||||||
import de.harheimertc.repositories.LoginRepository
|
import de.harheimertc.repositories.LoginRepository
|
||||||
import de.harheimertc.repositories.Mannschaft
|
import de.harheimertc.repositories.Mannschaft
|
||||||
import de.harheimertc.repositories.MannschaftenRepository
|
import de.harheimertc.repositories.MannschaftenRepository
|
||||||
|
import de.harheimertc.repositories.PushTokenRepository
|
||||||
import kotlinx.coroutines.async
|
import kotlinx.coroutines.async
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
@@ -18,10 +21,13 @@ data class NavigationUiState(
|
|||||||
val hasGalleryImages: Boolean = false,
|
val hasGalleryImages: Boolean = false,
|
||||||
val loggedIn: Boolean = false,
|
val loggedIn: Boolean = false,
|
||||||
val roles: Set<String> = emptySet(),
|
val roles: Set<String> = emptySet(),
|
||||||
|
val connectionNote: String? = null,
|
||||||
) {
|
) {
|
||||||
val isAdmin: Boolean get() = "admin" in roles
|
val isAdmin: Boolean get() = "admin" in roles
|
||||||
|
val canAccessFullCms: Boolean get() = roles.any { it in setOf("admin", "vorstand") }
|
||||||
val canAccessNewsletter: Boolean get() = roles.any { it in setOf("admin", "vorstand", "newsletter") }
|
val canAccessNewsletter: Boolean get() = roles.any { it in setOf("admin", "vorstand", "newsletter") }
|
||||||
val canAccessContactRequests: Boolean get() = roles.any { it in setOf("admin", "vorstand", "trainer") }
|
val canAccessContactRequests: Boolean get() = roles.any { it in setOf("admin", "vorstand", "trainer") }
|
||||||
|
val canAccessCms: Boolean get() = canAccessFullCms || canAccessNewsletter || canAccessContactRequests
|
||||||
val showGallery: Boolean get() = hasGalleryImages || canAccessNewsletter
|
val showGallery: Boolean get() = hasGalleryImages || canAccessNewsletter
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,12 +36,24 @@ class NavigationViewModel @Inject constructor(
|
|||||||
private val mannschaftenRepository: MannschaftenRepository,
|
private val mannschaftenRepository: MannschaftenRepository,
|
||||||
private val galleryRepository: GalleryRepository,
|
private val galleryRepository: GalleryRepository,
|
||||||
private val loginRepository: LoginRepository,
|
private val loginRepository: LoginRepository,
|
||||||
|
private val authRepository: AuthRepository,
|
||||||
|
private val connectivityMonitor: ConnectivityMonitor,
|
||||||
|
private val pushTokenRepository: PushTokenRepository,
|
||||||
) : ViewModel() {
|
) : ViewModel() {
|
||||||
private val _state = MutableStateFlow(NavigationUiState())
|
private val _state = MutableStateFlow(NavigationUiState())
|
||||||
val state: StateFlow<NavigationUiState> = _state
|
val state: StateFlow<NavigationUiState> = _state
|
||||||
|
|
||||||
init {
|
init {
|
||||||
loadNavigationData()
|
loadNavigationData()
|
||||||
|
viewModelScope.launch {
|
||||||
|
var wasOnline: Boolean? = null
|
||||||
|
connectivityMonitor.online.collect { online ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
connectionNote = if (online) null else "Keine Verbindung. Die App versucht alle 10 Sekunden erneut zu laden.",
|
||||||
|
)
|
||||||
|
wasOnline = online
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun loadNavigationData() {
|
fun loadNavigationData() {
|
||||||
@@ -44,22 +62,54 @@ class NavigationViewModel @Inject constructor(
|
|||||||
val gallery = async { galleryRepository.hasPublicImages().getOrDefault(false) }
|
val gallery = async { galleryRepository.hasPublicImages().getOrDefault(false) }
|
||||||
val auth = async { loginRepository.status().getOrDefault(de.harheimertc.data.AuthStatusResponse()) }
|
val auth = async { loginRepository.status().getOrDefault(de.harheimertc.data.AuthStatusResponse()) }
|
||||||
val status = auth.await()
|
val status = auth.await()
|
||||||
|
val hasStoredSession = !authRepository.getToken().isNullOrBlank()
|
||||||
|
val loggedIn = hasStoredSession || status.isLoggedIn
|
||||||
_state.value = NavigationUiState(
|
_state.value = NavigationUiState(
|
||||||
teams = teams.await(),
|
teams = teams.await(),
|
||||||
hasGalleryImages = gallery.await(),
|
hasGalleryImages = gallery.await(),
|
||||||
loggedIn = status.isLoggedIn,
|
loggedIn = loggedIn,
|
||||||
roles = (status.roles + status.user?.roles.orEmpty()).toSet(),
|
roles = status.navigationRoles(),
|
||||||
|
connectionNote = null,
|
||||||
)
|
)
|
||||||
|
if (loggedIn) registerPushToken()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun refreshSession() {
|
fun refreshSession() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
val status = loginRepository.status().getOrDefault(de.harheimertc.data.AuthStatusResponse())
|
val status = loginRepository.status().getOrDefault(de.harheimertc.data.AuthStatusResponse())
|
||||||
|
val hasStoredSession = !authRepository.getToken().isNullOrBlank()
|
||||||
|
val loggedIn = hasStoredSession || status.isLoggedIn
|
||||||
_state.value = _state.value.copy(
|
_state.value = _state.value.copy(
|
||||||
loggedIn = status.isLoggedIn,
|
loggedIn = loggedIn,
|
||||||
roles = (status.roles + status.user?.roles.orEmpty()).toSet(),
|
roles = status.navigationRoles(),
|
||||||
|
connectionNote = _state.value.connectionNote,
|
||||||
)
|
)
|
||||||
|
if (loggedIn) registerPushToken()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun registerPushToken() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
pushTokenRepository.registerCurrentDevice()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun logout(onComplete: () -> Unit = {}) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
loginRepository.logout()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
loggedIn = false,
|
||||||
|
roles = emptySet(),
|
||||||
|
connectionNote = _state.value.connectionNote,
|
||||||
|
)
|
||||||
|
onComplete()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun de.harheimertc.data.AuthStatusResponse.navigationRoles(): Set<String> = buildSet {
|
||||||
|
addAll(roles)
|
||||||
|
role?.takeIf { it.isNotBlank() }?.let(::add)
|
||||||
|
addAll(user?.roles.orEmpty())
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
// Placeholder: functionality moved to CmsScreens.kt (CmsUserListPage / UserCard)
|
||||||
320
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsNewsScreens.kt
Executable file
320
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsNewsScreens.kt
Executable file
@@ -0,0 +1,320 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
|
import androidx.compose.foundation.clickable
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.size
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.lazy.items
|
||||||
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
|
import androidx.compose.material3.AlertDialog
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
|
import androidx.compose.material3.Checkbox
|
||||||
|
import androidx.compose.material3.Text
|
||||||
|
import androidx.compose.material3.TextButton
|
||||||
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.collectAsState
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.rememberCoroutineScope
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
|
import androidx.navigation.NavController
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.NewsSaveRequest
|
||||||
|
import de.harheimertc.ui.components.FormMessages
|
||||||
|
import de.harheimertc.ui.components.LoadingState
|
||||||
|
import de.harheimertc.ui.components.NativeRichTextEditor
|
||||||
|
import de.harheimertc.ui.navigation.Destinations
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import java.time.Instant
|
||||||
|
import java.time.LocalDateTime
|
||||||
|
import java.time.ZoneId
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun CmsNewsScreen(navController: NavController, showBackNavigation: Boolean, viewModel: CmsViewModel = hiltViewModel()) {
|
||||||
|
val state by viewModel.state.collectAsState()
|
||||||
|
val scope = rememberCoroutineScope()
|
||||||
|
var selection by remember { mutableStateOf(setOf<String>()) }
|
||||||
|
val loginVm: de.harheimertc.ui.screens.login.LoginViewModel = hiltViewModel()
|
||||||
|
val loginState by loginVm.state.collectAsState()
|
||||||
|
val canWrite = loginState.roles.any { it == "admin" || it == "vorstand" }
|
||||||
|
val context = LocalContext.current
|
||||||
|
var showSuccessDialog by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
|
androidx.compose.runtime.LaunchedEffect(state.message) {
|
||||||
|
if (!state.message.isNullOrBlank()) showSuccessDialog = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Local dialog state for create/edit + delete confirmation (hoisted)
|
||||||
|
var dialogOpen by remember { mutableStateOf(false) }
|
||||||
|
var deletingIds by remember { mutableStateOf<List<String>?>(null) }
|
||||||
|
var editing by remember { mutableStateOf<NewsDto?>(null) }
|
||||||
|
var title by remember { mutableStateOf("") }
|
||||||
|
var content by remember { mutableStateOf("") }
|
||||||
|
var isPublic by remember { mutableStateOf(false) }
|
||||||
|
var isHidden by remember { mutableStateOf(false) }
|
||||||
|
var expiresAt by remember { mutableStateOf("") } // format: yyyy-MM-dd'T'HH:mm
|
||||||
|
|
||||||
|
val dtFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm")
|
||||||
|
val displayFormatter = DateTimeFormatter.ofPattern("d. MMMM yyyy, HH:mm", Locale.GERMANY)
|
||||||
|
|
||||||
|
fun convertUTCToLocal(utc: String?): String {
|
||||||
|
if (utc.isNullOrBlank()) return ""
|
||||||
|
return try {
|
||||||
|
val instant = Instant.parse(utc)
|
||||||
|
LocalDateTime.ofInstant(instant, ZoneId.systemDefault()).format(dtFormatter)
|
||||||
|
} catch (e: Exception) { "" }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun convertLocalToUTC(local: String?): String? {
|
||||||
|
if (local.isNullOrBlank()) return null
|
||||||
|
return try {
|
||||||
|
val ldt = LocalDateTime.parse(local, dtFormatter)
|
||||||
|
ldt.atZone(ZoneId.systemDefault()).toInstant().toString()
|
||||||
|
} catch (e: Exception) { null }
|
||||||
|
}
|
||||||
|
|
||||||
|
// open create
|
||||||
|
fun openAdd() {
|
||||||
|
editing = null
|
||||||
|
title = ""
|
||||||
|
content = ""
|
||||||
|
isPublic = false
|
||||||
|
isHidden = false
|
||||||
|
expiresAt = ""
|
||||||
|
dialogOpen = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// open edit
|
||||||
|
fun openEdit(item: NewsDto) {
|
||||||
|
editing = item
|
||||||
|
title = item.title
|
||||||
|
content = item.content
|
||||||
|
isPublic = item.isPublic
|
||||||
|
isHidden = item.isHidden
|
||||||
|
expiresAt = convertUTCToLocal(item.expiresAt)
|
||||||
|
dialogOpen = true
|
||||||
|
}
|
||||||
|
|
||||||
|
CmsPage(navController, showBackNavigation, "News", "Interne und öffentliche News") {
|
||||||
|
if (state.loading) item { LoadingState("News werden geladen...") }
|
||||||
|
|
||||||
|
item {
|
||||||
|
Button(onClick = { viewModel.load(); /* ensure latest */ }, modifier = Modifier.fillMaxWidth()) { Text("Neu laden") }
|
||||||
|
}
|
||||||
|
|
||||||
|
item {
|
||||||
|
if (canWrite) Button(onClick = { openAdd() }, modifier = Modifier.fillMaxWidth()) { Text("News erstellen") }
|
||||||
|
}
|
||||||
|
|
||||||
|
item {
|
||||||
|
FormMessages(state.error, state.message)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!state.loading && state.news.isEmpty()) item { Text("Noch keine News vorhanden.", modifier = Modifier.padding(12.dp)) }
|
||||||
|
|
||||||
|
// selection state for bulk actions (moved to outer scope)
|
||||||
|
|
||||||
|
items(state.news) { news ->
|
||||||
|
val selected = news.id?.let { selection.contains(it) } ?: false
|
||||||
|
NewsListItem(
|
||||||
|
news = news,
|
||||||
|
canWrite = canWrite,
|
||||||
|
selected = selected,
|
||||||
|
onSelect = { id, sel ->
|
||||||
|
id?.let {
|
||||||
|
selection = if (sel) selection + it else selection - it
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onEdit = { openEdit(news) },
|
||||||
|
onDelete = { news.id?.let { id -> deletingIds = listOf(id) } },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// bulk action bar
|
||||||
|
if (canWrite && selection.isNotEmpty()) {
|
||||||
|
item {
|
||||||
|
Row(modifier = Modifier.fillMaxWidth().padding(8.dp), horizontalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
Button(onClick = { viewModel.bulkSetPublic(selection.toList(), true) }) { Text("Als öffentlich markieren") }
|
||||||
|
Button(onClick = { viewModel.bulkSetPublic(selection.toList(), false) }) { Text("Als nicht-öffentlich markieren") }
|
||||||
|
Button(onClick = { viewModel.bulkSetHidden(selection.toList(), true) }) { Text("Ausblenden") }
|
||||||
|
Button(onClick = { viewModel.bulkSetHidden(selection.toList(), false) }) { Text("Einblenden") }
|
||||||
|
Button(onClick = { /* confirm then delete */ deletingIds = selection.toList() }) { Text("Löschen") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// (moved earlier)
|
||||||
|
|
||||||
|
// delete confirmation dialog
|
||||||
|
if (deletingIds != null) {
|
||||||
|
AlertDialog(
|
||||||
|
onDismissRequest = { deletingIds = null },
|
||||||
|
title = { Text("News löschen") },
|
||||||
|
text = { Text("Möchten Sie die ausgewählten News wirklich löschen?") },
|
||||||
|
confirmButton = { Button(onClick = {
|
||||||
|
deletingIds?.let { viewModel.bulkDelete(it) }
|
||||||
|
deletingIds = null
|
||||||
|
selection = emptySet()
|
||||||
|
}) { Text("Löschen") } },
|
||||||
|
dismissButton = { TextButton(onClick = { deletingIds = null }) { Text("Abbrechen") } },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// dialog for create/edit
|
||||||
|
if (dialogOpen) {
|
||||||
|
AlertDialog(
|
||||||
|
onDismissRequest = { dialogOpen = false },
|
||||||
|
title = { Text(if (editing == null) "News erstellen" else "News bearbeiten") },
|
||||||
|
text = {
|
||||||
|
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
OutlinedTextField(value = title, onValueChange = { title = it }, label = { Text("Titel *") }, modifier = Modifier.fillMaxWidth())
|
||||||
|
NativeRichTextEditor(content, { content = it }, "Inhalt *")
|
||||||
|
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically) {
|
||||||
|
Checkbox(checked = isPublic, onCheckedChange = { isPublic = it })
|
||||||
|
Text("Öffentliche News (auf Startseite anzeigen)", modifier = Modifier.padding(start = 8.dp))
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isPublic) {
|
||||||
|
// read-only datetime field that opens native pickers
|
||||||
|
OutlinedTextField(
|
||||||
|
value = expiresAt,
|
||||||
|
onValueChange = { /* no-op: controlled by pickers */ },
|
||||||
|
label = { Text("Ablaufdatum (optional)") },
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.clickable {
|
||||||
|
// open date then time picker
|
||||||
|
val now = java.util.Calendar.getInstance()
|
||||||
|
val year = now.get(java.util.Calendar.YEAR)
|
||||||
|
val month = now.get(java.util.Calendar.MONTH)
|
||||||
|
val day = now.get(java.util.Calendar.DAY_OF_MONTH)
|
||||||
|
android.app.DatePickerDialog(context, { _, y, m, d ->
|
||||||
|
val hour = now.get(java.util.Calendar.HOUR_OF_DAY)
|
||||||
|
val minute = now.get(java.util.Calendar.MINUTE)
|
||||||
|
android.app.TimePickerDialog(context, { _, h, min ->
|
||||||
|
val ldt = LocalDateTime.of(y, m + 1, d, h, min)
|
||||||
|
expiresAt = ldt.format(dtFormatter)
|
||||||
|
}, hour, minute, true).show()
|
||||||
|
}, year, month, day).show()
|
||||||
|
},
|
||||||
|
readOnly = true,
|
||||||
|
)
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically) {
|
||||||
|
Checkbox(checked = isHidden, onCheckedChange = { isHidden = it })
|
||||||
|
Text("News ausblenden", modifier = Modifier.padding(start = 8.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val err = state.error
|
||||||
|
if (err != null) {
|
||||||
|
Text(err, color = Color(0xFF842029))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
confirmButton = {
|
||||||
|
Button(onClick = {
|
||||||
|
val req = NewsSaveRequest(
|
||||||
|
id = editing?.id,
|
||||||
|
title = title,
|
||||||
|
content = content,
|
||||||
|
isPublic = isPublic,
|
||||||
|
isHidden = isHidden,
|
||||||
|
expiresAt = convertLocalToUTC(expiresAt),
|
||||||
|
)
|
||||||
|
viewModel.saveNews(req)
|
||||||
|
dialogOpen = false
|
||||||
|
}, enabled = !state.saving) { Text(if (state.saving) "Speichert..." else "Speichern") }
|
||||||
|
},
|
||||||
|
dismissButton = {
|
||||||
|
TextButton(onClick = { dialogOpen = false }) { Text("Abbrechen") }
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showSuccessDialog && !state.message.isNullOrBlank()) {
|
||||||
|
AlertDialog(
|
||||||
|
onDismissRequest = { showSuccessDialog = false },
|
||||||
|
title = { Text("Erfolg") },
|
||||||
|
text = { Text(state.message ?: "") },
|
||||||
|
confirmButton = { Button(onClick = { showSuccessDialog = false }) { Text("OK") } },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun NewsListItem(
|
||||||
|
news: NewsDto,
|
||||||
|
canWrite: Boolean,
|
||||||
|
selected: Boolean = false,
|
||||||
|
onSelect: (String?, Boolean) -> Unit = { _, _ -> },
|
||||||
|
onEdit: (NewsDto) -> Unit,
|
||||||
|
onDelete: (String) -> Unit,
|
||||||
|
) {
|
||||||
|
androidx.compose.material3.Surface(modifier = Modifier.fillMaxWidth().padding(8.dp)) {
|
||||||
|
Row(modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceBetween) {
|
||||||
|
Column(modifier = Modifier.weight(1f)) {
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically) {
|
||||||
|
Checkbox(
|
||||||
|
checked = selected,
|
||||||
|
onCheckedChange = { onSelect(news.id, it) },
|
||||||
|
enabled = canWrite,
|
||||||
|
)
|
||||||
|
Text(news.title.ifBlank { "(Ohne Titel)" }, modifier = Modifier.padding(start = 8.dp))
|
||||||
|
if (news.isPublic) {
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically, modifier = Modifier.padding(start = 8.dp)) {
|
||||||
|
Box(modifier = Modifier.size(10.dp).clip(CircleShape).background(Color(0xFF0EA5A6)))
|
||||||
|
Text("Öffentlich", modifier = Modifier.padding(start = 6.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (news.isHidden) {
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically, modifier = Modifier.padding(start = 8.dp)) {
|
||||||
|
Box(modifier = Modifier.size(10.dp).clip(CircleShape).background(Color.Gray))
|
||||||
|
Text("Ausgeblendet", modifier = Modifier.padding(start = 6.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val expired = news.expiresAt?.let {
|
||||||
|
try { Instant.parse(it).isBefore(Instant.now()) || Instant.parse(it).equals(Instant.now()) } catch (e: Exception) { false }
|
||||||
|
} ?: false
|
||||||
|
if (expired) {
|
||||||
|
Row(verticalAlignment = androidx.compose.ui.Alignment.CenterVertically, modifier = Modifier.padding(start = 8.dp)) {
|
||||||
|
Box(modifier = Modifier.size(10.dp).clip(CircleShape).background(Color(0xFFB91C1C)))
|
||||||
|
Text("Abgelaufen", modifier = Modifier.padding(start = 6.dp))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Row(modifier = Modifier.padding(top = 4.dp)) {
|
||||||
|
Text(news.author ?: "-", modifier = Modifier.padding(end = 12.dp))
|
||||||
|
Text(news.created ?: "-")
|
||||||
|
}
|
||||||
|
if (news.updated != null && news.updated != news.created) {
|
||||||
|
Text("Aktualisiert: ${news.updated}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (canWrite) {
|
||||||
|
Row {
|
||||||
|
TextButton(onClick = { onEdit(news) }) { Text("Bearbeiten") }
|
||||||
|
TextButton(onClick = { news.id?.let { onDelete(it) } }) { Text("Löschen") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1867
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsScreens.kt
Executable file
1867
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsScreens.kt
Executable file
File diff suppressed because it is too large
Load Diff
670
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsViewModels.kt
Executable file
670
android-app/app/src/main/java/de/harheimertc/ui/screens/cms/CmsViewModels.kt
Executable file
@@ -0,0 +1,670 @@
|
|||||||
|
package de.harheimertc.ui.screens.cms
|
||||||
|
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import androidx.lifecycle.viewModelScope
|
||||||
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
|
import de.harheimertc.data.ConnectivityMonitor
|
||||||
|
import de.harheimertc.data.CmsUserDto
|
||||||
|
import de.harheimertc.data.ConfigResponse
|
||||||
|
import de.harheimertc.data.ContactRequestDto
|
||||||
|
import de.harheimertc.data.NewsletterDto
|
||||||
|
import de.harheimertc.data.NewsletterGroupDto
|
||||||
|
import de.harheimertc.data.PasswordResetMatchingUserDto
|
||||||
|
import de.harheimertc.data.PasswordResetAttemptDto
|
||||||
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.NewsSaveRequest
|
||||||
|
import de.harheimertc.data.SeasonDto
|
||||||
|
import de.harheimertc.data.SpielDto
|
||||||
|
import de.harheimertc.data.TerminDto
|
||||||
|
import de.harheimertc.repositories.CmsMannschaftRow
|
||||||
|
import de.harheimertc.repositories.CmsRepository
|
||||||
|
import de.harheimertc.repositories.MeisterschaftResult
|
||||||
|
import kotlinx.coroutines.async
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
|
import kotlinx.coroutines.launch
|
||||||
|
import javax.inject.Inject
|
||||||
|
import de.harheimertc.ui.util.ErrorMapper
|
||||||
|
|
||||||
|
data class CmsUiState(
|
||||||
|
val loading: Boolean = true,
|
||||||
|
val saving: Boolean = false,
|
||||||
|
val error: String? = null,
|
||||||
|
val message: String? = null,
|
||||||
|
val config: ConfigResponse? = null,
|
||||||
|
val users: List<CmsUserDto> = emptyList(),
|
||||||
|
val contactRequests: List<ContactRequestDto> = emptyList(),
|
||||||
|
val newsletters: List<NewsletterDto> = emptyList(),
|
||||||
|
val newsletterGroups: List<NewsletterGroupDto> = emptyList(),
|
||||||
|
val passwordResetAttempts: List<PasswordResetAttemptDto> = emptyList(),
|
||||||
|
val passwordResetMatchingUsers: List<PasswordResetMatchingUserDto> = emptyList(),
|
||||||
|
val passwordResetRetentionHours: Int = 72,
|
||||||
|
val passwordResetSearchTerm: String = "",
|
||||||
|
val passwordResetFailedOnly: Boolean = true,
|
||||||
|
val news: List<NewsDto> = emptyList(),
|
||||||
|
val meisterschaften: List<MeisterschaftResult> = emptyList(),
|
||||||
|
val sportLoading: Boolean = false,
|
||||||
|
val sportSaving: Boolean = false,
|
||||||
|
val sportTermine: List<TerminDto> = emptyList(),
|
||||||
|
val sportMannschaften: List<CmsMannschaftRow> = emptyList(),
|
||||||
|
val sportMannschaftenSeasons: List<String> = emptyList(),
|
||||||
|
val sportMannschaftenSeason: String = "",
|
||||||
|
val sportSpielplanHeaders: List<String> = emptyList(),
|
||||||
|
val sportSpielplanRows: List<List<String>> = emptyList(),
|
||||||
|
val sportSpielplanSeason: String = "",
|
||||||
|
val sportSpielplanSeasons: List<SeasonDto> = emptyList(),
|
||||||
|
)
|
||||||
|
|
||||||
|
@HiltViewModel
|
||||||
|
class CmsViewModel @Inject constructor(
|
||||||
|
private val repository: CmsRepository,
|
||||||
|
private val connectivityMonitor: ConnectivityMonitor,
|
||||||
|
) : ViewModel() {
|
||||||
|
private val _state = MutableStateFlow(CmsUiState())
|
||||||
|
val state: StateFlow<CmsUiState> = _state
|
||||||
|
|
||||||
|
init {
|
||||||
|
load()
|
||||||
|
viewModelScope.launch {
|
||||||
|
var wasOnline: Boolean? = null
|
||||||
|
connectivityMonitor.online.collect { online ->
|
||||||
|
if (online && wasOnline == false) {
|
||||||
|
load()
|
||||||
|
}
|
||||||
|
wasOnline = online
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun load() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(loading = true, error = null)
|
||||||
|
|
||||||
|
val configRes = async { repository.config() }
|
||||||
|
val usersRes = async { repository.users() }
|
||||||
|
val requestsRes = async { repository.contactRequests() }
|
||||||
|
val newslettersRes = async { repository.newsletters() }
|
||||||
|
val groupsRes = async { repository.newsletterGroups() }
|
||||||
|
val newsRes = async { repository.news() }
|
||||||
|
val diagnosticsRes = async {
|
||||||
|
repository.passwordResetDiagnostics(
|
||||||
|
email = _state.value.passwordResetSearchTerm.takeIf { it.isNotBlank() },
|
||||||
|
failedOnly = _state.value.passwordResetFailedOnly,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
val meisterschaftenRes = async { repository.vereinsmeisterschaften() }
|
||||||
|
|
||||||
|
val configResult = configRes.await()
|
||||||
|
val usersResult = usersRes.await()
|
||||||
|
val requestsResult = requestsRes.await()
|
||||||
|
val newslettersResult = newslettersRes.await()
|
||||||
|
val groupsResult = groupsRes.await()
|
||||||
|
val newsResult = newsRes.await()
|
||||||
|
val diagnosticsResult = diagnosticsRes.await()
|
||||||
|
val meisterschaftenResult = meisterschaftenRes.await()
|
||||||
|
|
||||||
|
val errors = listOfNotNull(
|
||||||
|
ErrorMapper.mapError(configResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(usersResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(requestsResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(newslettersResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(groupsResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(newsResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(diagnosticsResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(meisterschaftenResult.exceptionOrNull()),
|
||||||
|
)
|
||||||
|
|
||||||
|
// Sort users so that pending (inactive) users come first,
|
||||||
|
// followed by active users sorted by display name (case-insensitive).
|
||||||
|
val fetchedUsers = usersResult.getOrNull()?.users.orEmpty()
|
||||||
|
val pendingUsers = fetchedUsers.filter { it.active == false }
|
||||||
|
val activeUsers = fetchedUsers.filter { it.active == true }
|
||||||
|
.sortedBy { it.name.lowercase() }
|
||||||
|
val orderedUsers = pendingUsers + activeUsers
|
||||||
|
|
||||||
|
_state.value = CmsUiState(
|
||||||
|
loading = false,
|
||||||
|
error = if (errors.isNotEmpty()) errors.joinToString("; ") else null,
|
||||||
|
config = configResult.getOrNull(),
|
||||||
|
users = orderedUsers,
|
||||||
|
contactRequests = requestsResult.getOrNull().orEmpty(),
|
||||||
|
newsletters = newslettersResult.getOrNull()?.newsletters.orEmpty(),
|
||||||
|
newsletterGroups = groupsResult.getOrNull()?.groups.orEmpty(),
|
||||||
|
news = newsResult.getOrNull()?.news.orEmpty(),
|
||||||
|
passwordResetAttempts = diagnosticsResult.getOrNull()?.attempts.orEmpty(),
|
||||||
|
passwordResetMatchingUsers = diagnosticsResult.getOrNull()?.matchingUsers.orEmpty(),
|
||||||
|
passwordResetRetentionHours = diagnosticsResult.getOrNull()?.retentionHours ?: 72,
|
||||||
|
passwordResetSearchTerm = diagnosticsResult.getOrNull()?.searchedEmail.orEmpty(),
|
||||||
|
passwordResetFailedOnly = _state.value.passwordResetFailedOnly,
|
||||||
|
meisterschaften = meisterschaftenResult.getOrNull().orEmpty(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun loadPasswordResetDiagnostics(email: String, failedOnly: Boolean) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
loading = true,
|
||||||
|
error = null,
|
||||||
|
passwordResetSearchTerm = email.trim(),
|
||||||
|
passwordResetFailedOnly = failedOnly,
|
||||||
|
)
|
||||||
|
repository.passwordResetDiagnostics(
|
||||||
|
email = email.trim().takeIf { it.isNotBlank() },
|
||||||
|
failedOnly = failedOnly,
|
||||||
|
)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
loading = false,
|
||||||
|
passwordResetRetentionHours = response.retentionHours,
|
||||||
|
passwordResetMatchingUsers = response.matchingUsers,
|
||||||
|
passwordResetAttempts = response.attempts,
|
||||||
|
passwordResetSearchTerm = response.searchedEmail.orEmpty(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
loading = false,
|
||||||
|
passwordResetMatchingUsers = emptyList(),
|
||||||
|
passwordResetAttempts = emptyList(),
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Passwort-Reset-Diagnose konnte nicht geladen werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveVereinsmeisterschaften(results: List<MeisterschaftResult>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.saveVereinsmeisterschaften(results)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
meisterschaften = results,
|
||||||
|
message = response.message ?: "Vereinsmeisterschaften gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Vereinsmeisterschaften konnten nicht gespeichert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun loadSportbetrieb() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportLoading = true, error = null, message = null)
|
||||||
|
|
||||||
|
val termineRes = async { repository.managedTermine() }
|
||||||
|
val seasonsRes = async { repository.mannschaftenSeasons() }
|
||||||
|
val spielplanRes = async { repository.spielplan() }
|
||||||
|
|
||||||
|
val termineResult = termineRes.await()
|
||||||
|
val seasonsResult = seasonsRes.await()
|
||||||
|
val seasonInfo = seasonsResult.getOrNull()
|
||||||
|
val selectedSeason = _state.value.sportMannschaftenSeason.takeIf { it.isNotBlank() }
|
||||||
|
?: seasonInfo?.defaultSeason?.takeIf { it.isNotBlank() }
|
||||||
|
?: seasonInfo?.currentSeason?.takeIf { it.isNotBlank() }
|
||||||
|
?: seasonInfo?.seasons?.firstOrNull().orEmpty()
|
||||||
|
val mannschaftenResult = repository.mannschaften(selectedSeason.takeIf { it.isNotBlank() })
|
||||||
|
val spielplanResult = spielplanRes.await()
|
||||||
|
val errors = listOfNotNull(
|
||||||
|
ErrorMapper.mapError(termineResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(seasonsResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(mannschaftenResult.exceptionOrNull()),
|
||||||
|
ErrorMapper.mapError(spielplanResult.exceptionOrNull()),
|
||||||
|
)
|
||||||
|
val spielplan = spielplanResult.getOrNull()
|
||||||
|
val headers = spielplan?.headers.orEmpty()
|
||||||
|
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportLoading = false,
|
||||||
|
sportTermine = termineResult.getOrNull().orEmpty(),
|
||||||
|
sportMannschaften = mannschaftenResult.getOrNull().orEmpty(),
|
||||||
|
sportMannschaftenSeasons = seasonInfo?.seasons.orEmpty(),
|
||||||
|
sportMannschaftenSeason = selectedSeason,
|
||||||
|
sportSpielplanHeaders = headers,
|
||||||
|
sportSpielplanRows = spielplan?.data.orEmpty().map { row -> headers.map { header -> row.valueForHeader(header) } },
|
||||||
|
sportSpielplanSeason = spielplan?.season.orEmpty(),
|
||||||
|
sportSpielplanSeasons = spielplan?.seasons.orEmpty(),
|
||||||
|
error = errors.takeIf { it.isNotEmpty() }?.joinToString("; "),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun loadSportMannschaftenSeason(season: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportLoading = true, error = null, message = null, sportMannschaftenSeason = season)
|
||||||
|
repository.mannschaften(season)
|
||||||
|
.onSuccess { rows ->
|
||||||
|
_state.value = _state.value.copy(sportLoading = false, sportMannschaften = rows)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportLoading = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Mannschaften konnten nicht geladen werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveSportTermin(original: TerminDto?, termin: TerminDto) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportSaving = true, error = null, message = null)
|
||||||
|
if (original != null) {
|
||||||
|
repository.deleteTermin(original)
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Alter Termin konnte nicht ersetzt werden.",
|
||||||
|
)
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val saveResult = repository.saveTermin(termin)
|
||||||
|
saveResult
|
||||||
|
.onSuccess { response ->
|
||||||
|
val termine = repository.managedTermine().getOrDefault(_state.value.sportTermine)
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
sportTermine = termine,
|
||||||
|
message = response.message ?: "Termin gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Termin konnte nicht gespeichert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteSportTermin(termin: TerminDto) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportSaving = true, error = null, message = null)
|
||||||
|
repository.deleteTermin(termin)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
sportTermine = _state.value.sportTermine.filterNot { it == termin },
|
||||||
|
message = response.message ?: "Termin gelöscht.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Termin konnte nicht gelöscht werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveSportMannschaften(season: String, rows: List<CmsMannschaftRow>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportSaving = true, error = null, message = null)
|
||||||
|
repository.saveMannschaften(season.takeIf { it.isNotBlank() }, rows)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
sportMannschaften = rows,
|
||||||
|
message = response.message ?: "Mannschaften gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Mannschaften konnten nicht gespeichert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun importSportSpielplan() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportSaving = true, error = null, message = null)
|
||||||
|
repository.importSpielplan()
|
||||||
|
.onSuccess { response ->
|
||||||
|
if (!response.success) {
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = response.message ?: "Spielplan konnte nicht importiert werden.",
|
||||||
|
)
|
||||||
|
return@onSuccess
|
||||||
|
}
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
message = response.message ?: "Spielplan aktualisiert.",
|
||||||
|
)
|
||||||
|
loadSportbetrieb()
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Spielplan konnte nicht importiert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveSportSpielplan(headers: List<String>, rows: List<List<String>>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(sportSaving = true, error = null, message = null)
|
||||||
|
repository.saveSpielplan(headers, rows)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
sportSpielplanHeaders = headers,
|
||||||
|
sportSpielplanRows = rows,
|
||||||
|
message = response.message ?: "Spielplan gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
sportSaving = false,
|
||||||
|
error = ErrorMapper.mapError(err) ?: "Spielplan konnte nicht gespeichert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveConfig(config: ConfigResponse) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.saveConfig(config)
|
||||||
|
.onSuccess { saved ->
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
config = saved,
|
||||||
|
message = "Inhalt gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure {
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
error = ErrorMapper.mapError(it) ?: "Inhalt konnte nicht gespeichert werden.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveNews(request: NewsSaveRequest) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.saveNews(request)
|
||||||
|
.onSuccess { msg ->
|
||||||
|
// refresh news list directly to preserve message
|
||||||
|
val newsRes = repository.news()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
news = newsRes.getOrNull()?.news.orEmpty(),
|
||||||
|
message = msg.message ?: "Nachricht gespeichert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "News konnten nicht gespeichert werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun bulkSetPublic(ids: List<String>, makePublic: Boolean) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
ids.forEach { id ->
|
||||||
|
val existing = _state.value.news.find { it.id == id }
|
||||||
|
if (existing != null) {
|
||||||
|
val req = NewsSaveRequest(
|
||||||
|
id = existing.id,
|
||||||
|
title = existing.title,
|
||||||
|
content = existing.content,
|
||||||
|
isPublic = makePublic,
|
||||||
|
isHidden = existing.isHidden,
|
||||||
|
expiresAt = existing.expiresAt,
|
||||||
|
)
|
||||||
|
repository.saveNews(req)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val newsRes = repository.news()
|
||||||
|
_state.value = _state.value.copy(saving = false, news = newsRes.getOrNull()?.news.orEmpty(), message = "Bulk-Update abgeschlossen.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun bulkSetHidden(ids: List<String>, makeHidden: Boolean) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
ids.forEach { id ->
|
||||||
|
val existing = _state.value.news.find { it.id == id }
|
||||||
|
if (existing != null) {
|
||||||
|
val req = NewsSaveRequest(
|
||||||
|
id = existing.id,
|
||||||
|
title = existing.title,
|
||||||
|
content = existing.content,
|
||||||
|
isPublic = existing.isPublic,
|
||||||
|
isHidden = makeHidden,
|
||||||
|
expiresAt = existing.expiresAt,
|
||||||
|
)
|
||||||
|
repository.saveNews(req)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val newsRes = repository.news()
|
||||||
|
_state.value = _state.value.copy(saving = false, news = newsRes.getOrNull()?.news.orEmpty(), message = "Bulk-Update abgeschlossen.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun bulkDelete(ids: List<String>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
ids.forEach { id ->
|
||||||
|
repository.deleteNews(id)
|
||||||
|
}
|
||||||
|
val newsRes = repository.news()
|
||||||
|
_state.value = _state.value.copy(saving = false, news = newsRes.getOrNull()?.news.orEmpty(), message = "Bulk-Löschung abgeschlossen.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteNews(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.deleteNews(id)
|
||||||
|
.onSuccess { msg ->
|
||||||
|
val newsRes = repository.news()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
news = newsRes.getOrNull()?.news.orEmpty(),
|
||||||
|
message = msg.message ?: "Nachricht gelöscht.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "News konnten nicht gelöscht werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Newsletter (B4)
|
||||||
|
fun saveNewsletter(request: de.harheimertc.data.NewsletterCreateRequest) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.createNewsletter(request)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val newslettersRes = repository.newsletters()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
newsletters = newslettersRes.getOrNull()?.newsletters.orEmpty(),
|
||||||
|
message = res.message ?: "Newsletter gespeichert",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Newsletter konnte nicht gespeichert werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateNewsletter(id: String, patch: Map<String, Any?>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.updateNewsletter(id, patch)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val newslettersRes = repository.newsletters()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletters = newslettersRes.getOrNull()?.newsletters.orEmpty(), message = res.message ?: "Newsletter aktualisiert")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Newsletter konnte nicht aktualisiert werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun sendNewsletter(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.sendNewsletter(id)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val newslettersRes = repository.newsletters()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletters = newslettersRes.getOrNull()?.newsletters.orEmpty(), message = res.message ?: "Newsletter versendet")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Newsletter konnte nicht versendet werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteNewsletter(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.deleteNewsletter(id)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val newslettersRes = repository.newsletters()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletters = newslettersRes.getOrNull()?.newsletters.orEmpty(), message = res.message ?: "Newsletter gelöscht")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Newsletter konnte nicht gelöscht werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Newsletter Groups (B4)
|
||||||
|
fun createNewsletterGroup(payload: Map<String, Any?>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.createNewsletterGroup(payload)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val groupsRes = repository.newsletterGroups()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletterGroups = groupsRes.getOrNull()?.groups.orEmpty(), message = res.message ?: "Gruppe erstellt")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Gruppe konnte nicht erstellt werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateNewsletterGroup(id: String, patch: Map<String, Any?>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.updateNewsletterGroup(id, patch)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val groupsRes = repository.newsletterGroups()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletterGroups = groupsRes.getOrNull()?.groups.orEmpty(), message = res.message ?: "Gruppe aktualisiert")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Gruppe konnte nicht aktualisiert werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun deleteNewsletterGroup(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.deleteNewsletterGroup(id)
|
||||||
|
.onSuccess { res ->
|
||||||
|
val groupsRes = repository.newsletterGroups()
|
||||||
|
_state.value = _state.value.copy(saving = false, newsletterGroups = groupsRes.getOrNull()?.groups.orEmpty(), message = res.message ?: "Gruppe gelöscht")
|
||||||
|
}
|
||||||
|
.onFailure { err -> _state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Gruppe konnte nicht gelöscht werden.") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- User management actions (B2)
|
||||||
|
fun updateUserRoles(id: String, roles: List<String>) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.updateUserRoles(id, roles)
|
||||||
|
.onSuccess { msg ->
|
||||||
|
val usersRes = repository.users()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
users = usersRes.getOrNull()?.users.orEmpty(),
|
||||||
|
message = msg.message ?: "Rollen aktualisiert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Rollen konnten nicht aktualisiert werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun setUserActive(id: String, active: Boolean) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.updateUserActive(id, active)
|
||||||
|
.onSuccess { msg ->
|
||||||
|
val usersRes = repository.users()
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
saving = false,
|
||||||
|
users = usersRes.getOrNull()?.users.orEmpty(),
|
||||||
|
message = msg.message ?: if (active) "Benutzer aktiviert." else "Benutzer deaktiviert.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Benutzerstatus konnte nicht geändert werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun resendInvite(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.resendInvite(id)
|
||||||
|
.onSuccess { msg ->
|
||||||
|
_state.value = _state.value.copy(saving = false, message = msg.message ?: "Einladung erneut gesendet.")
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Einladung konnte nicht gesendet werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Contact requests (B3)
|
||||||
|
fun replyToContactRequest(id: String, message: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.replyToContactRequest(id, message)
|
||||||
|
.onSuccess {
|
||||||
|
val reqs = repository.contactRequests()
|
||||||
|
_state.value = _state.value.copy(saving = false, contactRequests = reqs.getOrNull().orEmpty(), message = it.message ?: "Antwort gesendet.")
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Antwort konnte nicht gesendet werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun toggleContactRequestStatus(id: String) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(saving = true, error = null, message = null)
|
||||||
|
repository.toggleContactRequestStatus(id)
|
||||||
|
.onSuccess {
|
||||||
|
val reqs = repository.contactRequests()
|
||||||
|
_state.value = _state.value.copy(saving = false, contactRequests = reqs.getOrNull().orEmpty(), message = it.message ?: "Status aktualisiert.")
|
||||||
|
}
|
||||||
|
.onFailure { err ->
|
||||||
|
_state.value = _state.value.copy(saving = false, error = ErrorMapper.mapError(err) ?: "Status konnte nicht geändert werden.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun SpielDto.valueForHeader(header: String): String = when (header) {
|
||||||
|
"Termin" -> termin
|
||||||
|
"HeimMannschaft" -> heimMannschaft
|
||||||
|
"GastMannschaft" -> gastMannschaft
|
||||||
|
"HeimMannschaftAltersklasse" -> heimAltersklasse
|
||||||
|
"GastMannschaftAltersklasse" -> gastAltersklasse
|
||||||
|
"Altersklasse" -> altersklasse
|
||||||
|
"Liga" -> liga
|
||||||
|
"Staffel" -> staffel
|
||||||
|
"Runde" -> runde.orEmpty()
|
||||||
|
"SpieleHeim" -> spieleHeim
|
||||||
|
"SpieleGast" -> spieleGast
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
16
android-app/app/src/main/java/de/harheimertc/ui/screens/contact/ContactScreen.kt
Normal file → Executable file
16
android-app/app/src/main/java/de/harheimertc/ui/screens/contact/ContactScreen.kt
Normal file → Executable file
@@ -4,7 +4,6 @@ import androidx.compose.foundation.layout.Column
|
|||||||
import androidx.compose.foundation.layout.fillMaxWidth
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.padding
|
import androidx.compose.foundation.layout.padding
|
||||||
import androidx.compose.material3.Button
|
import androidx.compose.material3.Button
|
||||||
import androidx.compose.material3.OutlinedTextField
|
|
||||||
import androidx.compose.material3.Surface
|
import androidx.compose.material3.Surface
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
@@ -13,6 +12,7 @@ import androidx.compose.runtime.getValue
|
|||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.hilt.navigation.compose.hiltViewModel
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
|
import de.harheimertc.ui.components.ValidatedTextField
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ContactScreen(viewModel: ContactViewModel = hiltViewModel()) {
|
fun ContactScreen(viewModel: ContactViewModel = hiltViewModel()) {
|
||||||
@@ -21,12 +21,20 @@ fun ContactScreen(viewModel: ContactViewModel = hiltViewModel()) {
|
|||||||
val message by viewModel.message.collectAsState()
|
val message by viewModel.message.collectAsState()
|
||||||
val sending by viewModel.sending.collectAsState()
|
val sending by viewModel.sending.collectAsState()
|
||||||
val result by viewModel.result.collectAsState()
|
val result by viewModel.result.collectAsState()
|
||||||
|
val fieldErrors by viewModel.fieldErrors.collectAsState()
|
||||||
|
|
||||||
Surface(modifier = Modifier.padding(16.dp)) {
|
Surface(modifier = Modifier.padding(16.dp)) {
|
||||||
Column {
|
Column {
|
||||||
OutlinedTextField(value = name, onValueChange = { viewModel.onName(it) }, label = { Text("Name") }, modifier = Modifier.fillMaxWidth())
|
ValidatedTextField(name, viewModel::onName, "Name", error = fieldErrors["name"])
|
||||||
OutlinedTextField(value = email, onValueChange = { viewModel.onEmail(it) }, label = { Text("E-Mail") }, modifier = Modifier.fillMaxWidth())
|
ValidatedTextField(email, viewModel::onEmail, "E-Mail", error = fieldErrors["email"])
|
||||||
OutlinedTextField(value = message, onValueChange = { viewModel.onMessage(it) }, label = { Text("Nachricht") }, modifier = Modifier.fillMaxWidth())
|
ValidatedTextField(
|
||||||
|
value = message,
|
||||||
|
onValueChange = viewModel::onMessage,
|
||||||
|
label = "Nachricht",
|
||||||
|
error = fieldErrors["message"],
|
||||||
|
singleLine = false,
|
||||||
|
minLines = 4,
|
||||||
|
)
|
||||||
Button(onClick = { viewModel.send() }, enabled = !sending, modifier = Modifier.padding(top = 8.dp)) {
|
Button(onClick = { viewModel.send() }, enabled = !sending, modifier = Modifier.padding(top = 8.dp)) {
|
||||||
Text(if (sending) "Sende…" else "Absenden")
|
Text(if (sending) "Sende…" else "Absenden")
|
||||||
}
|
}
|
||||||
|
|||||||
41
android-app/app/src/main/java/de/harheimertc/ui/screens/contact/ContactViewModel.kt
Normal file → Executable file
41
android-app/app/src/main/java/de/harheimertc/ui/screens/contact/ContactViewModel.kt
Normal file → Executable file
@@ -5,6 +5,7 @@ import androidx.lifecycle.viewModelScope
|
|||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import de.harheimertc.data.ContactRequest
|
import de.harheimertc.data.ContactRequest
|
||||||
import de.harheimertc.repositories.ContactRepository
|
import de.harheimertc.repositories.ContactRepository
|
||||||
|
import de.harheimertc.ui.components.isValidEmail
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
@@ -27,16 +28,38 @@ class ContactViewModel @Inject constructor(private val repo: ContactRepository)
|
|||||||
private val _result = MutableStateFlow<String?>(null)
|
private val _result = MutableStateFlow<String?>(null)
|
||||||
val result: StateFlow<String?> = _result
|
val result: StateFlow<String?> = _result
|
||||||
|
|
||||||
fun onName(v: String) { _name.value = v }
|
private val _fieldErrors = MutableStateFlow<Map<String, String>>(emptyMap())
|
||||||
fun onEmail(v: String) { _email.value = v }
|
val fieldErrors: StateFlow<Map<String, String>> = _fieldErrors
|
||||||
fun onMessage(v: String) { _message.value = v }
|
|
||||||
|
fun onName(v: String) {
|
||||||
|
_name.value = v
|
||||||
|
clearFieldError("name")
|
||||||
|
}
|
||||||
|
|
||||||
|
fun onEmail(v: String) {
|
||||||
|
_email.value = v
|
||||||
|
clearFieldError("email")
|
||||||
|
}
|
||||||
|
|
||||||
|
fun onMessage(v: String) {
|
||||||
|
_message.value = v
|
||||||
|
clearFieldError("message")
|
||||||
|
}
|
||||||
|
|
||||||
fun send() {
|
fun send() {
|
||||||
val n = _name.value.trim()
|
val n = _name.value.trim()
|
||||||
val e = _email.value.trim()
|
val e = _email.value.trim()
|
||||||
val m = _message.value.trim()
|
val m = _message.value.trim()
|
||||||
if (n.isEmpty() || e.isEmpty() || m.isEmpty()) {
|
val errors = buildMap {
|
||||||
_result.value = "Bitte alle Felder ausfüllen"
|
if (n.isEmpty()) put("name", "Bitte geben Sie Ihren Namen ein.")
|
||||||
|
if (e.isEmpty()) put("email", "Bitte geben Sie Ihre E-Mail-Adresse ein.")
|
||||||
|
else if (!isValidEmail(e)) put("email", "Bitte geben Sie eine gültige E-Mail-Adresse ein.")
|
||||||
|
if (m.isEmpty()) put("message", "Bitte geben Sie eine Nachricht ein.")
|
||||||
|
else if (m.length < 10) put("message", "Die Nachricht sollte mindestens 10 Zeichen haben.")
|
||||||
|
}
|
||||||
|
if (errors.isNotEmpty()) {
|
||||||
|
_fieldErrors.value = errors
|
||||||
|
_result.value = "Bitte prüfen Sie die markierten Felder."
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
@@ -45,6 +68,7 @@ class ContactViewModel @Inject constructor(private val repo: ContactRepository)
|
|||||||
val resp = repo.sendContact(ContactRequest(n, e, m))
|
val resp = repo.sendContact(ContactRequest(n, e, m))
|
||||||
if (resp.isSuccessful) {
|
if (resp.isSuccessful) {
|
||||||
_result.value = "Nachricht gesendet"
|
_result.value = "Nachricht gesendet"
|
||||||
|
_fieldErrors.value = emptyMap()
|
||||||
_name.value = ""
|
_name.value = ""
|
||||||
_email.value = ""
|
_email.value = ""
|
||||||
_message.value = ""
|
_message.value = ""
|
||||||
@@ -58,4 +82,11 @@ class ContactViewModel @Inject constructor(private val repo: ContactRepository)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun clearFieldError(field: String) {
|
||||||
|
if (_fieldErrors.value.containsKey(field)) {
|
||||||
|
_fieldErrors.value = _fieldErrors.value - field
|
||||||
|
}
|
||||||
|
_result.value = null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
133
android-app/app/src/main/java/de/harheimertc/ui/screens/gallery/GalleryScreen.kt
Normal file → Executable file
133
android-app/app/src/main/java/de/harheimertc/ui/screens/gallery/GalleryScreen.kt
Normal file → Executable file
@@ -1,15 +1,41 @@
|
|||||||
package de.harheimertc.ui.screens.gallery
|
package de.harheimertc.ui.screens.gallery
|
||||||
|
|
||||||
|
import androidx.activity.compose.rememberLauncherForActivityResult
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
|
import androidx.compose.foundation.layout.Column
|
||||||
|
import androidx.compose.foundation.layout.Row
|
||||||
|
import androidx.compose.foundation.layout.Spacer
|
||||||
import androidx.compose.foundation.layout.Box
|
import androidx.compose.foundation.layout.Box
|
||||||
|
import androidx.compose.foundation.layout.fillMaxWidth
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
import androidx.compose.foundation.layout.fillMaxSize
|
||||||
import androidx.compose.material3.CircularProgressIndicator
|
import androidx.compose.foundation.layout.height
|
||||||
|
import androidx.compose.foundation.layout.padding
|
||||||
|
import androidx.compose.foundation.rememberScrollState
|
||||||
|
import androidx.compose.foundation.verticalScroll
|
||||||
|
import androidx.compose.material3.Button
|
||||||
|
import androidx.compose.material3.Checkbox
|
||||||
|
import androidx.compose.material3.ElevatedCard
|
||||||
|
import androidx.compose.material3.OutlinedButton
|
||||||
|
import androidx.compose.material3.OutlinedTextField
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.collectAsState
|
import androidx.compose.runtime.collectAsState
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
|
import androidx.compose.ui.semantics.contentDescription
|
||||||
|
import androidx.compose.ui.semantics.heading
|
||||||
|
import androidx.compose.ui.semantics.semantics
|
||||||
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.hilt.navigation.compose.hiltViewModel
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
|
import de.harheimertc.R
|
||||||
|
import de.harheimertc.ui.components.FormMessages
|
||||||
|
import de.harheimertc.ui.components.LoadingState
|
||||||
import de.harheimertc.ui.components.ImageGrid
|
import de.harheimertc.ui.components.ImageGrid
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
@@ -17,17 +43,104 @@ fun GalleryScreen(viewModel: GalleryViewModel = hiltViewModel()) {
|
|||||||
val images by viewModel.images.collectAsState()
|
val images by viewModel.images.collectAsState()
|
||||||
val loading by viewModel.loading.collectAsState()
|
val loading by viewModel.loading.collectAsState()
|
||||||
val error by viewModel.error.collectAsState()
|
val error by viewModel.error.collectAsState()
|
||||||
|
val uploading by viewModel.uploading.collectAsState()
|
||||||
|
val message by viewModel.message.collectAsState()
|
||||||
|
val canUpload by viewModel.canUpload.collectAsState()
|
||||||
|
var selectedUri by remember { mutableStateOf<android.net.Uri?>(null) }
|
||||||
|
var title by remember { mutableStateOf("") }
|
||||||
|
var description by remember { mutableStateOf("") }
|
||||||
|
var isPublic by remember { mutableStateOf(false) }
|
||||||
|
var showUpload by remember { mutableStateOf(false) }
|
||||||
|
val context = LocalContext.current
|
||||||
|
val picker = rememberLauncherForActivityResult(ActivityResultContracts.GetContent()) { uri ->
|
||||||
|
selectedUri = uri
|
||||||
|
}
|
||||||
|
|
||||||
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
|
Column(
|
||||||
if (loading) {
|
modifier = Modifier
|
||||||
CircularProgressIndicator()
|
.fillMaxSize()
|
||||||
} else if (error != null) {
|
.verticalScroll(rememberScrollState())
|
||||||
Text(text = "Fehler: $error")
|
.padding(16.dp),
|
||||||
} else {
|
) {
|
||||||
ImageGrid(images = images)
|
Text(
|
||||||
|
text = stringResource(R.string.gallery_title),
|
||||||
|
modifier = Modifier.semantics { heading() },
|
||||||
|
)
|
||||||
|
Spacer(Modifier.height(12.dp))
|
||||||
|
|
||||||
|
if (canUpload) {
|
||||||
|
ElevatedCard(modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Column(modifier = Modifier.padding(16.dp)) {
|
||||||
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
|
Text(stringResource(R.string.gallery_upload_title), modifier = Modifier.weight(1f))
|
||||||
|
OutlinedButton(onClick = { showUpload = !showUpload }) {
|
||||||
|
Text(if (showUpload) stringResource(R.string.gallery_upload_hide) else stringResource(R.string.gallery_upload_show))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (showUpload) {
|
||||||
|
Spacer(Modifier.height(12.dp))
|
||||||
|
OutlinedButton(
|
||||||
|
onClick = { picker.launch("image/*") },
|
||||||
|
enabled = !uploading,
|
||||||
|
modifier = Modifier.semantics {
|
||||||
|
contentDescription = context.getString(R.string.gallery_upload_choose_file)
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
Text(selectedUri?.lastPathSegment ?: stringResource(R.string.gallery_upload_choose_file))
|
||||||
|
}
|
||||||
|
Spacer(Modifier.height(8.dp))
|
||||||
|
OutlinedTextField(
|
||||||
|
value = title,
|
||||||
|
onValueChange = { title = it },
|
||||||
|
label = { Text(stringResource(R.string.gallery_upload_image_title)) },
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
enabled = !uploading,
|
||||||
|
singleLine = true,
|
||||||
|
)
|
||||||
|
Spacer(Modifier.height(8.dp))
|
||||||
|
OutlinedTextField(
|
||||||
|
value = description,
|
||||||
|
onValueChange = { description = it },
|
||||||
|
label = { Text(stringResource(R.string.gallery_upload_description)) },
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
enabled = !uploading,
|
||||||
|
minLines = 2,
|
||||||
|
)
|
||||||
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
|
Checkbox(checked = isPublic, onCheckedChange = { isPublic = it }, enabled = !uploading)
|
||||||
|
Text(stringResource(R.string.gallery_upload_public))
|
||||||
|
}
|
||||||
|
Button(
|
||||||
|
onClick = {
|
||||||
|
selectedUri?.let { uri ->
|
||||||
|
viewModel.upload(uri, title, description, isPublic)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
enabled = selectedUri != null && title.isNotBlank() && !uploading,
|
||||||
|
) {
|
||||||
|
Text(if (uploading) stringResource(R.string.gallery_uploading) else stringResource(R.string.gallery_upload_submit))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Spacer(Modifier.height(12.dp))
|
||||||
|
}
|
||||||
|
|
||||||
|
FormMessages(error = error, message = message)
|
||||||
|
Spacer(Modifier.height(8.dp))
|
||||||
|
|
||||||
|
Box(modifier = Modifier.fillMaxWidth(), contentAlignment = Alignment.Center) {
|
||||||
|
if (loading) {
|
||||||
|
LoadingState("Galerie wird geladen...")
|
||||||
|
} else if (images.isEmpty()) {
|
||||||
|
Text(text = stringResource(R.string.gallery_empty))
|
||||||
|
} else {
|
||||||
|
ImageGrid(images = images, modifier = Modifier.height(520.dp))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// load on first composition
|
androidx.compose.runtime.LaunchedEffect(Unit) {
|
||||||
androidx.compose.runtime.LaunchedEffect(Unit) { viewModel.load() }
|
viewModel.load()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
43
android-app/app/src/main/java/de/harheimertc/ui/screens/gallery/GalleryViewModel.kt
Normal file → Executable file
43
android-app/app/src/main/java/de/harheimertc/ui/screens/gallery/GalleryViewModel.kt
Normal file → Executable file
@@ -3,16 +3,22 @@ package de.harheimertc.ui.screens.gallery
|
|||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
|
import android.net.Uri
|
||||||
|
import de.harheimertc.repositories.GalleryImage
|
||||||
import de.harheimertc.repositories.GalleryRepository
|
import de.harheimertc.repositories.GalleryRepository
|
||||||
|
import de.harheimertc.repositories.LoginRepository
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
class GalleryViewModel @Inject constructor(private val repo: GalleryRepository) : ViewModel() {
|
class GalleryViewModel @Inject constructor(
|
||||||
private val _images = MutableStateFlow<List<String>>(emptyList())
|
private val repo: GalleryRepository,
|
||||||
val images: StateFlow<List<String>> = _images
|
private val loginRepository: LoginRepository,
|
||||||
|
) : ViewModel() {
|
||||||
|
private val _images = MutableStateFlow<List<GalleryImage>>(emptyList())
|
||||||
|
val images: StateFlow<List<GalleryImage>> = _images
|
||||||
|
|
||||||
private val _loading = MutableStateFlow(false)
|
private val _loading = MutableStateFlow(false)
|
||||||
val loading: StateFlow<Boolean> = _loading
|
val loading: StateFlow<Boolean> = _loading
|
||||||
@@ -20,14 +26,43 @@ class GalleryViewModel @Inject constructor(private val repo: GalleryRepository)
|
|||||||
private val _error = MutableStateFlow<String?>(null)
|
private val _error = MutableStateFlow<String?>(null)
|
||||||
val error: StateFlow<String?> = _error
|
val error: StateFlow<String?> = _error
|
||||||
|
|
||||||
|
private val _uploading = MutableStateFlow(false)
|
||||||
|
val uploading: StateFlow<Boolean> = _uploading
|
||||||
|
|
||||||
|
private val _message = MutableStateFlow<String?>(null)
|
||||||
|
val message: StateFlow<String?> = _message
|
||||||
|
|
||||||
|
private val _canUpload = MutableStateFlow(false)
|
||||||
|
val canUpload: StateFlow<Boolean> = _canUpload
|
||||||
|
|
||||||
fun load() {
|
fun load() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
_loading.value = true
|
_loading.value = true
|
||||||
_error.value = null
|
_error.value = null
|
||||||
repo.fetchImages()
|
repo.fetchImages()
|
||||||
.onSuccess { _images.value = it }
|
.onSuccess { _images.value = it.images }
|
||||||
.onFailure { _error.value = it.message ?: "Fehler" }
|
.onFailure { _error.value = it.message ?: "Fehler" }
|
||||||
|
loginRepository.status()
|
||||||
|
.onSuccess { status ->
|
||||||
|
val roles = (status.roles + status.user?.roles.orEmpty() + listOfNotNull(status.role)).toSet()
|
||||||
|
_canUpload.value = roles.any { it in setOf("admin", "vorstand") }
|
||||||
|
}
|
||||||
_loading.value = false
|
_loading.value = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun upload(uri: Uri, title: String, description: String, isPublic: Boolean) {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_uploading.value = true
|
||||||
|
_error.value = null
|
||||||
|
_message.value = null
|
||||||
|
repo.uploadImage(uri, title, description, isPublic)
|
||||||
|
.onSuccess {
|
||||||
|
_message.value = "Bild erfolgreich hochgeladen."
|
||||||
|
load()
|
||||||
|
}
|
||||||
|
.onFailure { _error.value = it.message ?: "Fehler beim Hochladen des Bildes" }
|
||||||
|
_uploading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
488
android-app/app/src/main/java/de/harheimertc/ui/screens/home/HomeScreen.kt
Normal file → Executable file
488
android-app/app/src/main/java/de/harheimertc/ui/screens/home/HomeScreen.kt
Normal file → Executable file
@@ -21,16 +21,20 @@ import androidx.compose.material3.AlertDialog
|
|||||||
import androidx.compose.material3.Button
|
import androidx.compose.material3.Button
|
||||||
import androidx.compose.material3.ButtonDefaults
|
import androidx.compose.material3.ButtonDefaults
|
||||||
import androidx.compose.material3.CircularProgressIndicator
|
import androidx.compose.material3.CircularProgressIndicator
|
||||||
|
import androidx.compose.material3.DropdownMenu
|
||||||
|
import androidx.compose.material3.DropdownMenuItem
|
||||||
import androidx.compose.material3.MaterialTheme
|
import androidx.compose.material3.MaterialTheme
|
||||||
import androidx.compose.material3.OutlinedButton
|
import androidx.compose.material3.OutlinedButton
|
||||||
import androidx.compose.material3.Surface
|
import androidx.compose.material3.Surface
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.material3.TextButton
|
import androidx.compose.material3.TextButton
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
import androidx.compose.runtime.collectAsState
|
import androidx.compose.runtime.collectAsState
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.runtime.mutableStateOf
|
import androidx.compose.runtime.mutableStateOf
|
||||||
import androidx.compose.runtime.remember
|
import androidx.compose.runtime.remember
|
||||||
|
import androidx.compose.runtime.saveable.rememberSaveable
|
||||||
import androidx.compose.runtime.setValue
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
@@ -40,18 +44,21 @@ import androidx.compose.ui.graphics.Brush
|
|||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.layout.ContentScale
|
import androidx.compose.ui.layout.ContentScale
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
|
import androidx.compose.ui.text.font.FontFamily
|
||||||
import androidx.compose.ui.text.style.TextAlign
|
import androidx.compose.ui.text.style.TextAlign
|
||||||
import androidx.compose.ui.text.style.TextOverflow
|
import androidx.compose.ui.text.style.TextOverflow
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.unit.sp
|
import androidx.compose.ui.unit.sp
|
||||||
import androidx.hilt.navigation.compose.hiltViewModel
|
import de.harheimertc.ui.navigation.NavigationViewModel
|
||||||
import androidx.navigation.NavController
|
import androidx.navigation.NavController
|
||||||
import coil.compose.AsyncImage
|
import coil.compose.AsyncImage
|
||||||
import de.harheimertc.BuildConfig
|
import de.harheimertc.data.HomepageSectionDto
|
||||||
import de.harheimertc.data.NewsDto
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.SeasonDto
|
||||||
import de.harheimertc.data.SpielDto
|
import de.harheimertc.data.SpielDto
|
||||||
import de.harheimertc.data.TerminDto
|
import de.harheimertc.data.TerminDto
|
||||||
import de.harheimertc.ui.components.AppNavigationHeader
|
import de.harheimertc.ui.components.AppNavigationHeader
|
||||||
|
import de.harheimertc.ui.components.RichText
|
||||||
import de.harheimertc.ui.navigation.Destinations
|
import de.harheimertc.ui.navigation.Destinations
|
||||||
import de.harheimertc.ui.theme.Accent100
|
import de.harheimertc.ui.theme.Accent100
|
||||||
import de.harheimertc.ui.theme.Accent200
|
import de.harheimertc.ui.theme.Accent200
|
||||||
@@ -69,10 +76,13 @@ import java.util.Locale
|
|||||||
fun HomeScreen(
|
fun HomeScreen(
|
||||||
navController: NavController,
|
navController: NavController,
|
||||||
showNavigationHeader: Boolean = true,
|
showNavigationHeader: Boolean = true,
|
||||||
viewModel: HomeViewModel = hiltViewModel(),
|
navigationViewModel: NavigationViewModel,
|
||||||
|
viewModel: HomeViewModel,
|
||||||
) {
|
) {
|
||||||
|
val navigationState by navigationViewModel.state.collectAsState()
|
||||||
val state by viewModel.state.collectAsState()
|
val state by viewModel.state.collectAsState()
|
||||||
var selectedNews by remember { mutableStateOf<NewsDto?>(null) }
|
var selectedNews by remember { mutableStateOf<NewsDto?>(null) }
|
||||||
|
var editHomeSections by rememberSaveable { mutableStateOf(false) }
|
||||||
|
|
||||||
selectedNews?.let { item ->
|
selectedNews?.let { item ->
|
||||||
AlertDialog(
|
AlertDialog(
|
||||||
@@ -83,7 +93,7 @@ fun HomeScreen(
|
|||||||
Text(item.title, style = MaterialTheme.typography.titleLarge)
|
Text(item.title, style = MaterialTheme.typography.titleLarge)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
text = { Text(item.content, style = MaterialTheme.typography.bodyMedium, color = Accent700) },
|
text = { RichText(item.content) },
|
||||||
confirmButton = { TextButton(onClick = { selectedNews = null }) { Text("Schließen") } },
|
confirmButton = { TextButton(onClick = { selectedNews = null }) { Text("Schließen") } },
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -96,44 +106,406 @@ fun HomeScreen(
|
|||||||
AppNavigationHeader(
|
AppNavigationHeader(
|
||||||
selectedRoute = Destinations.Home.route,
|
selectedRoute = Destinations.Home.route,
|
||||||
onNavigate = navController::navigate,
|
onNavigate = navController::navigate,
|
||||||
|
onLogout = {
|
||||||
|
navigationViewModel.logout {
|
||||||
|
navController.navigate(Destinations.Home.route) {
|
||||||
|
launchSingleTop = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
navigationState = navigationState,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
item { WebHero() }
|
if (navigationState.canAccessFullCms) {
|
||||||
item {
|
|
||||||
HomeTermineSection(
|
|
||||||
termine = state.termine,
|
|
||||||
loading = state.loading,
|
|
||||||
onAll = { navController.navigate(Destinations.Termine.route) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
item {
|
|
||||||
HomeGamesSection(
|
|
||||||
spiele = state.spiele,
|
|
||||||
loading = state.loading,
|
|
||||||
onAll = { navController.navigate(Destinations.Spielplan.route) },
|
|
||||||
)
|
|
||||||
}
|
|
||||||
if (state.news.isNotEmpty()) {
|
|
||||||
item {
|
item {
|
||||||
HomeNewsSection(
|
HomeCustomizationSection(
|
||||||
news = state.news,
|
sections = state.homepageSections,
|
||||||
onOpen = { selectedNews = it },
|
spielplanSeasons = state.spielplanSeasons,
|
||||||
|
spielplanTeamsBySeason = state.spielplanTeamsBySeason,
|
||||||
|
editEnabled = editHomeSections,
|
||||||
|
onToggleEdit = { editHomeSections = !editHomeSections },
|
||||||
|
onMoveUp = viewModel::moveSectionUp,
|
||||||
|
onMoveDown = viewModel::moveSectionDown,
|
||||||
|
onEnabledChange = viewModel::setSectionEnabled,
|
||||||
|
onAddSpielplanWidget = viewModel::addSpielplanTeamWidget,
|
||||||
|
onUpdateSpielplanWidget = viewModel::updateSpielplanTeamWidget,
|
||||||
|
onReset = viewModel::resetSections,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
item {
|
if (state.error) {
|
||||||
HomeActionSection(
|
item {
|
||||||
onMembership = { navController.navigate(Destinations.Membership.route) },
|
Column(
|
||||||
onContact = { navController.navigate(Destinations.Contact.route) },
|
modifier = Modifier
|
||||||
)
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 18.dp, vertical = 12.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = state.errorMessage ?: "Daten konnten nicht geladen werden.",
|
||||||
|
color = MaterialTheme.colorScheme.error,
|
||||||
|
style = MaterialTheme.typography.bodyMedium,
|
||||||
|
)
|
||||||
|
OutlinedButton(onClick = viewModel::load) {
|
||||||
|
Text("Erneut versuchen")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (state.debugDiagnostics.isNotEmpty()) {
|
||||||
|
item {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
.padding(horizontal = 18.dp, vertical = 12.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = "Technische Diagnose (vorübergehend)",
|
||||||
|
color = MaterialTheme.colorScheme.error,
|
||||||
|
style = MaterialTheme.typography.titleSmall,
|
||||||
|
)
|
||||||
|
Text(
|
||||||
|
text = state.debugDiagnostics.joinToString("\n\n---\n\n"),
|
||||||
|
style = MaterialTheme.typography.bodySmall,
|
||||||
|
fontFamily = FontFamily.Monospace,
|
||||||
|
color = MaterialTheme.colorScheme.error,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
state.homepageSections.forEachIndexed { index, section ->
|
||||||
|
if (!section.enabled) return@forEachIndexed
|
||||||
|
val sectionKey = homeSectionKey(section)
|
||||||
|
when (section.id) {
|
||||||
|
"banner" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
WebHero(imageUrl = state.heroImageUrl)
|
||||||
|
}
|
||||||
|
"termine" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeTermineSection(
|
||||||
|
termine = state.termine,
|
||||||
|
loading = state.loading,
|
||||||
|
onAll = { navController.navigate(Destinations.Termine.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"spiele" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeGamesSection(
|
||||||
|
spiele = state.spiele,
|
||||||
|
loading = state.loading,
|
||||||
|
onAll = { navController.navigate(Destinations.Spielplan.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"aktuelles" -> {
|
||||||
|
if (state.news.isNotEmpty()) {
|
||||||
|
item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeNewsSection(
|
||||||
|
news = state.news,
|
||||||
|
onOpen = { selectedNews = it },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"kontakt" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeActionSection(
|
||||||
|
onMembership = { navController.navigate(Destinations.Membership.route) },
|
||||||
|
onContact = { navController.navigate(Destinations.Contact.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"training" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeExtraActionSection(
|
||||||
|
title = "Training & Einstieg",
|
||||||
|
body = "Alle Infos zu Trainingszeiten, Trainern und unserem Anfängerangebot.",
|
||||||
|
action = "Zum Training",
|
||||||
|
onClick = { navController.navigate(Destinations.Training.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"links" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeExtraActionSection(
|
||||||
|
title = "Nützliche Links",
|
||||||
|
body = "Direkter Zugang zu Verbänden, Ergebnisdiensten und hilfreichen Portalen.",
|
||||||
|
action = "Links öffnen",
|
||||||
|
onClick = { navController.navigate(Destinations.Links.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"vereinsmeisterschaften" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeExtraActionSection(
|
||||||
|
title = "Vereinsmeisterschaften",
|
||||||
|
body = "Ergebnisse und Historie unserer Vereinsmeisterschaften.",
|
||||||
|
action = "Ergebnisse ansehen",
|
||||||
|
onClick = { navController.navigate(Destinations.Vereinsmeisterschaften.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
"spielplan_team" -> item(key = "home_section_${sectionKey}_$index") {
|
||||||
|
HomeSpielplanTeamWidgetSection(
|
||||||
|
section = section,
|
||||||
|
spiele = state.spielplanWidgetPreviews[sectionKey].orEmpty(),
|
||||||
|
error = state.spielplanWidgetErrors[sectionKey],
|
||||||
|
loading = state.widgetsLoading,
|
||||||
|
onOpenAll = { navController.navigate(Destinations.Spielplan.route) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
item { HomeFooter() }
|
item { HomeFooter() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun WebHero() {
|
private fun HomeCustomizationSection(
|
||||||
|
sections: List<HomepageSectionDto>,
|
||||||
|
spielplanSeasons: List<SeasonDto>,
|
||||||
|
spielplanTeamsBySeason: Map<String, List<HomeSpielplanTeamOption>>,
|
||||||
|
editEnabled: Boolean,
|
||||||
|
onToggleEdit: () -> Unit,
|
||||||
|
onMoveUp: (String) -> Unit,
|
||||||
|
onMoveDown: (String) -> Unit,
|
||||||
|
onEnabledChange: (String, Boolean) -> Unit,
|
||||||
|
onAddSpielplanWidget: (season: String, teamName: String, teamAgeGroup: String) -> Unit,
|
||||||
|
onUpdateSpielplanWidget: (sectionKey: String, season: String, teamName: String, teamAgeGroup: String) -> Unit,
|
||||||
|
onReset: () -> Unit,
|
||||||
|
) {
|
||||||
|
var addSeason by rememberSaveable { mutableStateOf("") }
|
||||||
|
var addTeamKey by rememberSaveable { mutableStateOf("") }
|
||||||
|
val addTeamOptions = spielplanTeamsBySeason[addSeason].orEmpty()
|
||||||
|
|
||||||
|
LaunchedEffect(spielplanSeasons) {
|
||||||
|
if (addSeason.isBlank() || spielplanSeasons.none { it.slug == addSeason }) {
|
||||||
|
addSeason = spielplanSeasons.firstOrNull()?.slug.orEmpty()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LaunchedEffect(addSeason, addTeamOptions) {
|
||||||
|
if (addTeamOptions.none { teamOptionKey(it) == addTeamKey }) {
|
||||||
|
addTeamKey = addTeamOptions.firstOrNull()?.let(::teamOptionKey).orEmpty()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Surface(
|
||||||
|
color = Color(0xFFFAFAFA),
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth().padding(horizontal = 18.dp, vertical = 16.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(10.dp),
|
||||||
|
) {
|
||||||
|
OutlinedButton(onClick = onToggleEdit) {
|
||||||
|
Text(if (editEnabled) "Startseiten-Editor schließen" else "Startseite anpassen")
|
||||||
|
}
|
||||||
|
if (editEnabled) {
|
||||||
|
Text(
|
||||||
|
"Elemente ein-/ausblenden und Reihenfolge festlegen.",
|
||||||
|
style = MaterialTheme.typography.bodyMedium,
|
||||||
|
color = Accent700,
|
||||||
|
)
|
||||||
|
sections.forEachIndexed { index, section ->
|
||||||
|
val label = homeSectionLabels[section.id] ?: section.id
|
||||||
|
val sectionKey = homeSectionKey(section)
|
||||||
|
Surface(color = Color.White, shape = RoundedCornerShape(10.dp), modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth().padding(12.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(10.dp),
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
|
horizontalArrangement = Arrangement.spacedBy(10.dp),
|
||||||
|
) {
|
||||||
|
Column(modifier = Modifier.weight(1f)) {
|
||||||
|
Text(label, style = MaterialTheme.typography.titleMedium, color = Accent900)
|
||||||
|
Text(section.id, style = MaterialTheme.typography.labelSmall, color = Accent500)
|
||||||
|
}
|
||||||
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||||
|
Text("Anzeigen", color = Accent700, style = MaterialTheme.typography.labelSmall)
|
||||||
|
androidx.compose.material3.Checkbox(
|
||||||
|
checked = section.enabled,
|
||||||
|
onCheckedChange = { enabled -> onEnabledChange(sectionKey, enabled) },
|
||||||
|
)
|
||||||
|
}
|
||||||
|
Column(verticalArrangement = Arrangement.spacedBy(6.dp)) {
|
||||||
|
OutlinedButton(onClick = { onMoveUp(sectionKey) }, enabled = index > 0) { Text("Hoch") }
|
||||||
|
OutlinedButton(onClick = { onMoveDown(sectionKey) }, enabled = index < sections.lastIndex) { Text("Runter") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (section.id == "spielplan_team") {
|
||||||
|
SpielplanWidgetConfigEditor(
|
||||||
|
section = section,
|
||||||
|
seasons = spielplanSeasons,
|
||||||
|
teamsBySeason = spielplanTeamsBySeason,
|
||||||
|
onUpdate = { season, teamName, teamAgeGroup ->
|
||||||
|
onUpdateSpielplanWidget(sectionKey, season, teamName, teamAgeGroup)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Surface(color = Color.White, shape = RoundedCornerShape(10.dp), modifier = Modifier.fillMaxWidth()) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier.fillMaxWidth().padding(12.dp),
|
||||||
|
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||||
|
) {
|
||||||
|
Text("Widget hinzufügen", style = MaterialTheme.typography.titleMedium, color = Accent900)
|
||||||
|
Text("Spielplan Mannschaft", style = MaterialTheme.typography.bodyMedium, color = Accent700)
|
||||||
|
|
||||||
|
SimpleSelector(
|
||||||
|
label = "Saison",
|
||||||
|
selected = spielplanSeasons.firstOrNull { it.slug == addSeason }?.let { formatSeasonLabel(it.slug) }
|
||||||
|
?: "Bitte wählen",
|
||||||
|
options = spielplanSeasons.map { season ->
|
||||||
|
SelectOption(
|
||||||
|
key = season.slug,
|
||||||
|
label = formatSeasonLabel(season.slug),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
onSelect = { option ->
|
||||||
|
addSeason = option.key
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
SimpleSelector(
|
||||||
|
label = "Mannschaft",
|
||||||
|
selected = addTeamOptions.firstOrNull { teamOptionKey(it) == addTeamKey }?.label ?: "Bitte wählen",
|
||||||
|
options = addTeamOptions.map { team ->
|
||||||
|
SelectOption(
|
||||||
|
key = teamOptionKey(team),
|
||||||
|
label = team.label,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
onSelect = { option ->
|
||||||
|
addTeamKey = option.key
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
Button(
|
||||||
|
onClick = {
|
||||||
|
val selectedTeam = addTeamOptions.firstOrNull { teamOptionKey(it) == addTeamKey } ?: return@Button
|
||||||
|
onAddSpielplanWidget(addSeason, selectedTeam.teamName, selectedTeam.teamAgeGroup)
|
||||||
|
},
|
||||||
|
enabled = addSeason.isNotBlank() && addTeamKey.isNotBlank(),
|
||||||
|
) {
|
||||||
|
Text("Widget hinzufügen")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TextButton(onClick = onReset) {
|
||||||
|
Text("Auf Server-Standard zurücksetzen")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private data class SelectOption(
|
||||||
|
val key: String,
|
||||||
|
val label: String,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun SimpleSelector(
|
||||||
|
label: String,
|
||||||
|
selected: String,
|
||||||
|
options: List<SelectOption>,
|
||||||
|
onSelect: (SelectOption) -> Unit,
|
||||||
|
) {
|
||||||
|
var expanded by remember { mutableStateOf(false) }
|
||||||
|
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
|
||||||
|
Text(label, style = MaterialTheme.typography.labelSmall, color = Accent500)
|
||||||
|
OutlinedButton(onClick = { expanded = true }, enabled = options.isNotEmpty()) {
|
||||||
|
Text(selected)
|
||||||
|
}
|
||||||
|
DropdownMenu(expanded = expanded, onDismissRequest = { expanded = false }) {
|
||||||
|
options.forEach { option ->
|
||||||
|
DropdownMenuItem(
|
||||||
|
text = { Text(option.label) },
|
||||||
|
onClick = {
|
||||||
|
onSelect(option)
|
||||||
|
expanded = false
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun SpielplanWidgetConfigEditor(
|
||||||
|
section: HomepageSectionDto,
|
||||||
|
seasons: List<SeasonDto>,
|
||||||
|
teamsBySeason: Map<String, List<HomeSpielplanTeamOption>>,
|
||||||
|
onUpdate: (season: String, teamName: String, teamAgeGroup: String) -> Unit,
|
||||||
|
) {
|
||||||
|
val selectedSeason = section.config?.season.orEmpty()
|
||||||
|
val selectedTeamName = section.config?.teamName.orEmpty()
|
||||||
|
val selectedTeamAgeGroup = section.config?.teamAgeGroup.orEmpty()
|
||||||
|
val teamOptions = teamsBySeason[selectedSeason].orEmpty()
|
||||||
|
|
||||||
|
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
SimpleSelector(
|
||||||
|
label = "Saison",
|
||||||
|
selected = seasons.firstOrNull { it.slug == selectedSeason }?.let { formatSeasonLabel(it.slug) } ?: "Bitte wählen",
|
||||||
|
options = seasons.map { season -> SelectOption(season.slug, formatSeasonLabel(season.slug)) },
|
||||||
|
onSelect = { option ->
|
||||||
|
val fallbackTeam = teamsBySeason[option.key].orEmpty().firstOrNull()
|
||||||
|
onUpdate(
|
||||||
|
option.key,
|
||||||
|
fallbackTeam?.teamName ?: "",
|
||||||
|
fallbackTeam?.teamAgeGroup ?: "",
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
SimpleSelector(
|
||||||
|
label = "Mannschaft",
|
||||||
|
selected = teamOptions.firstOrNull {
|
||||||
|
it.teamName == selectedTeamName && it.teamAgeGroup == selectedTeamAgeGroup
|
||||||
|
}?.label ?: "Bitte wählen",
|
||||||
|
options = teamOptions.map { team -> SelectOption(teamOptionKey(team), team.label) },
|
||||||
|
onSelect = { option ->
|
||||||
|
val selectedTeam = teamOptions.firstOrNull { teamOptionKey(it) == option.key }
|
||||||
|
if (selectedTeam != null) {
|
||||||
|
onUpdate(selectedSeason, selectedTeam.teamName, selectedTeam.teamAgeGroup)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun HomeSpielplanTeamWidgetSection(
|
||||||
|
section: HomepageSectionDto,
|
||||||
|
spiele: List<SpielDto>,
|
||||||
|
error: String?,
|
||||||
|
loading: Boolean,
|
||||||
|
onOpenAll: () -> Unit,
|
||||||
|
) {
|
||||||
|
val teamName = section.config?.teamName.orEmpty()
|
||||||
|
val teamAgeGroup = section.config?.teamAgeGroup.orEmpty()
|
||||||
|
val title = if (teamAgeGroup.contains("jugend", ignoreCase = true) && teamName.isNotBlank()) {
|
||||||
|
"Spielplan: (J) $teamName"
|
||||||
|
} else {
|
||||||
|
"Spielplan: ${teamName.ifBlank { "Mannschaft" }}"
|
||||||
|
}
|
||||||
|
val season = section.config?.season.orEmpty()
|
||||||
|
|
||||||
|
HomeSection(title = title, subtitle = "Saison ${formatSeasonLabel(season)}", background = Color.White) {
|
||||||
|
if (loading) {
|
||||||
|
LoadingRow("Spiele werden geladen...")
|
||||||
|
} else if (!error.isNullOrBlank()) {
|
||||||
|
EmptyRow(error)
|
||||||
|
} else if (spiele.isEmpty()) {
|
||||||
|
EmptyRow("Keine kommenden Spiele für diese Mannschaft gefunden.")
|
||||||
|
} else {
|
||||||
|
spiele.forEach { spiel -> MatchCard(spiel) }
|
||||||
|
}
|
||||||
|
PrimaryAction("Voller Spielplan", onOpenAll)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun WebHero(imageUrl: String?) {
|
||||||
val years = Calendar.getInstance().get(Calendar.YEAR) - 1954
|
val years = Calendar.getInstance().get(Calendar.YEAR) - 1954
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
@@ -142,12 +514,14 @@ private fun WebHero() {
|
|||||||
.background(Brush.verticalGradient(listOf(Color(0xFFFAFAFA), Color(0xFFF4F4F5)))),
|
.background(Brush.verticalGradient(listOf(Color(0xFFFAFAFA), Color(0xFFF4F4F5)))),
|
||||||
contentAlignment = Alignment.Center,
|
contentAlignment = Alignment.Center,
|
||||||
) {
|
) {
|
||||||
AsyncImage(
|
if (!imageUrl.isNullOrBlank()) {
|
||||||
model = "${BuildConfig.API_BASE_URL}images/club_about_us.png",
|
AsyncImage(
|
||||||
contentDescription = null,
|
model = imageUrl,
|
||||||
modifier = Modifier.matchParentSize().alpha(0.10f),
|
contentDescription = null,
|
||||||
contentScale = ContentScale.Crop,
|
modifier = Modifier.matchParentSize().alpha(0.10f),
|
||||||
)
|
contentScale = ContentScale.Crop,
|
||||||
|
)
|
||||||
|
}
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier.fillMaxWidth().padding(horizontal = 22.dp, vertical = 58.dp),
|
modifier = Modifier.fillMaxWidth().padding(horizontal = 22.dp, vertical = 58.dp),
|
||||||
horizontalAlignment = Alignment.CenterHorizontally,
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
@@ -221,13 +595,7 @@ private fun HomeNewsSection(news: List<NewsDto>, onOpen: (NewsDto) -> Unit) {
|
|||||||
Column(Modifier.padding(18.dp), verticalArrangement = Arrangement.spacedBy(9.dp)) {
|
Column(Modifier.padding(18.dp), verticalArrangement = Arrangement.spacedBy(9.dp)) {
|
||||||
Text(formatNewsDate(item.created), style = MaterialTheme.typography.labelSmall, color = Accent500)
|
Text(formatNewsDate(item.created), style = MaterialTheme.typography.labelSmall, color = Accent500)
|
||||||
Text(item.title, style = MaterialTheme.typography.titleLarge, color = Accent900)
|
Text(item.title, style = MaterialTheme.typography.titleLarge, color = Accent900)
|
||||||
Text(
|
RichText(item.content)
|
||||||
item.content,
|
|
||||||
style = MaterialTheme.typography.bodyMedium,
|
|
||||||
color = Accent700,
|
|
||||||
maxLines = 3,
|
|
||||||
overflow = TextOverflow.Ellipsis,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -252,6 +620,18 @@ private fun HomeActionSection(onMembership: () -> Unit, onContact: () -> Unit) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
private fun HomeExtraActionSection(title: String, body: String, action: String, onClick: () -> Unit) {
|
||||||
|
HomeSection(title = null, background = Color.White) {
|
||||||
|
ActionCard(
|
||||||
|
title = title,
|
||||||
|
body = body,
|
||||||
|
action = action,
|
||||||
|
onClick = onClick,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun HomeSection(
|
private fun HomeSection(
|
||||||
title: String?,
|
title: String?,
|
||||||
@@ -428,3 +808,27 @@ private fun formatNewsDate(value: String?): String {
|
|||||||
SimpleDateFormat("dd. MMMM yyyy", Locale.GERMANY).format(source.parse(value.take(10))!!)
|
SimpleDateFormat("dd. MMMM yyyy", Locale.GERMANY).format(source.parse(value.take(10))!!)
|
||||||
}.getOrDefault(value.take(10))
|
}.getOrDefault(value.take(10))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun homeSectionKey(section: HomepageSectionDto): String =
|
||||||
|
section.key?.takeIf { it.isNotBlank() } ?: section.id
|
||||||
|
|
||||||
|
private fun teamOptionKey(option: HomeSpielplanTeamOption): String =
|
||||||
|
"${option.teamName}|${option.teamAgeGroup}"
|
||||||
|
|
||||||
|
private fun formatSeasonLabel(value: String): String {
|
||||||
|
val match = Regex("^(\\d{2})--(\\d{2})$").find(value)
|
||||||
|
if (match == null) return value.ifBlank { "-" }
|
||||||
|
return "20${match.groupValues[1]}/${match.groupValues[2]}"
|
||||||
|
}
|
||||||
|
|
||||||
|
private val homeSectionLabels = mapOf(
|
||||||
|
"banner" to "Banner (Willkommen)",
|
||||||
|
"aktuelles" to "Aktuelles",
|
||||||
|
"termine" to "Kommende Termine",
|
||||||
|
"spiele" to "Nächste Spiele",
|
||||||
|
"kontakt" to "Kontakt-Boxen",
|
||||||
|
"training" to "Training-Teaser",
|
||||||
|
"links" to "Links-Teaser",
|
||||||
|
"vereinsmeisterschaften" to "Vereinsmeisterschaften-Teaser",
|
||||||
|
"spielplan_team" to "Widget: Spielplan Mannschaft",
|
||||||
|
)
|
||||||
|
|||||||
359
android-app/app/src/main/java/de/harheimertc/ui/screens/home/HomeViewModel.kt
Normal file → Executable file
359
android-app/app/src/main/java/de/harheimertc/ui/screens/home/HomeViewModel.kt
Normal file → Executable file
@@ -3,30 +3,61 @@ package de.harheimertc.ui.screens.home
|
|||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
|
import de.harheimertc.data.HomepageSectionConfigDto
|
||||||
|
import de.harheimertc.data.HomepageSectionDto
|
||||||
import de.harheimertc.data.NewsDto
|
import de.harheimertc.data.NewsDto
|
||||||
|
import de.harheimertc.data.SeasonDto
|
||||||
import de.harheimertc.data.SpielDto
|
import de.harheimertc.data.SpielDto
|
||||||
import de.harheimertc.data.TerminDto
|
import de.harheimertc.data.TerminDto
|
||||||
|
import de.harheimertc.repositories.HomeLayoutPreferences
|
||||||
import de.harheimertc.repositories.HomeRepository
|
import de.harheimertc.repositories.HomeRepository
|
||||||
import java.time.LocalDate
|
import java.time.LocalDate
|
||||||
import java.time.LocalDateTime
|
import java.time.LocalDateTime
|
||||||
import java.time.format.DateTimeFormatter
|
import java.time.format.DateTimeFormatter
|
||||||
|
import java.util.UUID
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
data class HomeSpielplanTeamOption(
|
||||||
|
val teamName: String,
|
||||||
|
val teamAgeGroup: String,
|
||||||
|
) {
|
||||||
|
val label: String
|
||||||
|
get() = if (teamAgeGroup.contains("jugend", ignoreCase = true)) {
|
||||||
|
"(J) $teamName"
|
||||||
|
} else {
|
||||||
|
teamName
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
data class HomeUiState(
|
data class HomeUiState(
|
||||||
val loading: Boolean = true,
|
val loading: Boolean = true,
|
||||||
|
val heroImageUrl: String? = null,
|
||||||
val termine: List<TerminDto> = emptyList(),
|
val termine: List<TerminDto> = emptyList(),
|
||||||
val spiele: List<SpielDto> = emptyList(),
|
val spiele: List<SpielDto> = emptyList(),
|
||||||
val news: List<NewsDto> = emptyList(),
|
val news: List<NewsDto> = emptyList(),
|
||||||
|
val homepageSections: List<HomepageSectionDto> = defaultHomepageSections,
|
||||||
|
val spielplanSeasons: List<SeasonDto> = emptyList(),
|
||||||
|
val spielplanTeamsBySeason: Map<String, List<HomeSpielplanTeamOption>> = emptyMap(),
|
||||||
|
val spielplanWidgetPreviews: Map<String, List<SpielDto>> = emptyMap(),
|
||||||
|
val spielplanWidgetErrors: Map<String, String> = emptyMap(),
|
||||||
|
val widgetsLoading: Boolean = false,
|
||||||
val error: Boolean = false,
|
val error: Boolean = false,
|
||||||
|
val errorMessage: String? = null,
|
||||||
|
val debugDiagnostics: List<String> = emptyList(),
|
||||||
)
|
)
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
class HomeViewModel @Inject constructor(private val repository: HomeRepository) : ViewModel() {
|
class HomeViewModel @Inject constructor(
|
||||||
|
private val repository: HomeRepository,
|
||||||
|
private val layoutPreferences: HomeLayoutPreferences,
|
||||||
|
) : ViewModel() {
|
||||||
private val _state = MutableStateFlow(HomeUiState())
|
private val _state = MutableStateFlow(HomeUiState())
|
||||||
val state: StateFlow<HomeUiState> = _state
|
val state: StateFlow<HomeUiState> = _state
|
||||||
|
private var serverSections: List<HomepageSectionDto> = defaultHomepageSections
|
||||||
|
private val seasonGamesCache = mutableMapOf<String, List<SpielDto>>()
|
||||||
|
|
||||||
init {
|
init {
|
||||||
load()
|
load()
|
||||||
@@ -34,13 +65,32 @@ class HomeViewModel @Inject constructor(private val repository: HomeRepository)
|
|||||||
|
|
||||||
fun load() {
|
fun load() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
_state.value = _state.value.copy(loading = true, error = false)
|
_state.value = _state.value.copy(
|
||||||
|
loading = true,
|
||||||
|
error = false,
|
||||||
|
errorMessage = null,
|
||||||
|
debugDiagnostics = emptyList(),
|
||||||
|
)
|
||||||
repository.fetchHomeData()
|
repository.fetchHomeData()
|
||||||
.onSuccess { data ->
|
.onSuccess { data ->
|
||||||
|
serverSections = normalizedHomepageSections(data.homepageSections)
|
||||||
|
val sections = mergeWithUserSections(
|
||||||
|
server = serverSections,
|
||||||
|
user = layoutPreferences.getSections(),
|
||||||
|
)
|
||||||
|
seasonGamesCache.clear()
|
||||||
|
data.selectedSpielplanSeason?.takeIf { it.isNotBlank() }?.let { season ->
|
||||||
|
seasonGamesCache[season] = data.spiele
|
||||||
|
}
|
||||||
|
val widgetData = loadWidgetData(
|
||||||
|
sections = sections,
|
||||||
|
seasons = data.spielplanSeasons,
|
||||||
|
)
|
||||||
_state.value = HomeUiState(
|
_state.value = HomeUiState(
|
||||||
loading = false,
|
loading = false,
|
||||||
|
heroImageUrl = data.heroImageUrl,
|
||||||
termine = data.termine
|
termine = data.termine
|
||||||
.filter { it.asDateTime()?.isBefore(LocalDateTime.now()) != true }
|
.filter { it.asDateTime()?.toLocalDate()?.isBefore(LocalDate.now()) != true }
|
||||||
.sortedBy { it.asDateTime() }
|
.sortedBy { it.asDateTime() }
|
||||||
.take(3),
|
.take(3),
|
||||||
spiele = data.spiele
|
spiele = data.spiele
|
||||||
@@ -53,15 +103,207 @@ class HomeViewModel @Inject constructor(private val repository: HomeRepository)
|
|||||||
.sortedBy { it.asDate() }
|
.sortedBy { it.asDate() }
|
||||||
.take(3),
|
.take(3),
|
||||||
news = data.news.take(3),
|
news = data.news.take(3),
|
||||||
|
homepageSections = sections,
|
||||||
|
spielplanSeasons = widgetData.seasons,
|
||||||
|
spielplanTeamsBySeason = widgetData.teamsBySeason,
|
||||||
|
spielplanWidgetPreviews = widgetData.previewGamesBySectionKey,
|
||||||
|
spielplanWidgetErrors = widgetData.errorsBySectionKey,
|
||||||
|
debugDiagnostics = data.diagnostics,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
.onFailure {
|
.onFailure { err ->
|
||||||
_state.value = HomeUiState(loading = false, error = true)
|
_state.value = HomeUiState(
|
||||||
|
loading = false,
|
||||||
|
error = true,
|
||||||
|
errorMessage = err.message ?: "Daten konnten nicht geladen werden.",
|
||||||
|
debugDiagnostics = listOf(err.message ?: "Unbekannter Fehler"),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun moveSectionUp(sectionKey: String) {
|
||||||
|
updateSections { sections ->
|
||||||
|
val index = sections.indexOfFirst { sectionKey(it) == sectionKey }
|
||||||
|
if (index <= 0) return@updateSections sections
|
||||||
|
sections.toMutableList().also { list ->
|
||||||
|
val current = list.removeAt(index)
|
||||||
|
list.add(index - 1, current)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun moveSectionDown(sectionKey: String) {
|
||||||
|
updateSections { sections ->
|
||||||
|
val index = sections.indexOfFirst { sectionKey(it) == sectionKey }
|
||||||
|
if (index < 0 || index >= sections.lastIndex) return@updateSections sections
|
||||||
|
sections.toMutableList().also { list ->
|
||||||
|
val current = list.removeAt(index)
|
||||||
|
list.add(index + 1, current)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun setSectionEnabled(sectionKey: String, enabled: Boolean) {
|
||||||
|
updateSections { sections ->
|
||||||
|
sections.map { section ->
|
||||||
|
if (sectionKey(section) == sectionKey) section.copy(enabled = enabled) else section
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun addSpielplanTeamWidget(season: String, teamName: String, teamAgeGroup: String) {
|
||||||
|
val normalizedSeason = season.trim()
|
||||||
|
val normalizedTeamName = teamName.trim()
|
||||||
|
if (normalizedSeason.isBlank() || normalizedTeamName.isBlank()) return
|
||||||
|
val newSection = HomepageSectionDto(
|
||||||
|
id = WIDGET_SECTION_ID,
|
||||||
|
key = "${WIDGET_SECTION_ID}_${UUID.randomUUID()}",
|
||||||
|
enabled = true,
|
||||||
|
config = HomepageSectionConfigDto(
|
||||||
|
season = normalizedSeason,
|
||||||
|
teamName = normalizedTeamName,
|
||||||
|
teamAgeGroup = teamAgeGroup.trim(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
updateSections { sections -> sections + newSection }
|
||||||
|
refreshWidgetData()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateSpielplanTeamWidget(
|
||||||
|
sectionKey: String,
|
||||||
|
season: String,
|
||||||
|
teamName: String,
|
||||||
|
teamAgeGroup: String,
|
||||||
|
) {
|
||||||
|
updateSections { sections ->
|
||||||
|
sections.map { section ->
|
||||||
|
if (sectionKey(section) != sectionKey) return@map section
|
||||||
|
section.copy(
|
||||||
|
config = HomepageSectionConfigDto(
|
||||||
|
season = season.trim(),
|
||||||
|
teamName = teamName.trim(),
|
||||||
|
teamAgeGroup = teamAgeGroup.trim(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
refreshWidgetData()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun resetSections() {
|
||||||
|
val reset = serverSections
|
||||||
|
layoutPreferences.clearSections()
|
||||||
|
_state.value = _state.value.copy(homepageSections = reset)
|
||||||
|
refreshWidgetData()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateSections(transform: (List<HomepageSectionDto>) -> List<HomepageSectionDto>) {
|
||||||
|
val updated = transform(_state.value.homepageSections)
|
||||||
|
if (updated == _state.value.homepageSections) return
|
||||||
|
layoutPreferences.setSections(updated)
|
||||||
|
_state.value = _state.value.copy(homepageSections = updated)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun refreshWidgetData() {
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = _state.value.copy(widgetsLoading = true)
|
||||||
|
val widgetData = loadWidgetData(
|
||||||
|
sections = _state.value.homepageSections,
|
||||||
|
seasons = _state.value.spielplanSeasons,
|
||||||
|
)
|
||||||
|
_state.value = _state.value.copy(
|
||||||
|
spielplanSeasons = widgetData.seasons,
|
||||||
|
spielplanTeamsBySeason = widgetData.teamsBySeason,
|
||||||
|
spielplanWidgetPreviews = widgetData.previewGamesBySectionKey,
|
||||||
|
spielplanWidgetErrors = widgetData.errorsBySectionKey,
|
||||||
|
widgetsLoading = false,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun loadWidgetData(
|
||||||
|
sections: List<HomepageSectionDto>,
|
||||||
|
seasons: List<SeasonDto>,
|
||||||
|
): HomeWidgetData {
|
||||||
|
val allSeasons = seasons
|
||||||
|
.filter { it.slug.isNotBlank() }
|
||||||
|
.distinctBy { it.slug }
|
||||||
|
.toMutableList()
|
||||||
|
seasonGamesCache.keys.forEach { slug ->
|
||||||
|
if (allSeasons.none { it.slug == slug }) {
|
||||||
|
allSeasons += SeasonDto(slug = slug, label = slug)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val neededWidgetSeasons = sections
|
||||||
|
.asSequence()
|
||||||
|
.filter { it.id == WIDGET_SECTION_ID }
|
||||||
|
.mapNotNull { it.config?.season?.takeIf(String::isNotBlank) }
|
||||||
|
.toSet()
|
||||||
|
|
||||||
|
allSeasons.forEach { season ->
|
||||||
|
ensureSeasonLoaded(season.slug)
|
||||||
|
}
|
||||||
|
neededWidgetSeasons.forEach { season ->
|
||||||
|
if (allSeasons.none { it.slug == season }) {
|
||||||
|
allSeasons += SeasonDto(slug = season, label = season)
|
||||||
|
}
|
||||||
|
ensureSeasonLoaded(season)
|
||||||
|
}
|
||||||
|
|
||||||
|
val teamsBySeason = buildMap {
|
||||||
|
allSeasons.forEach { season ->
|
||||||
|
val games = seasonGamesCache[season.slug] ?: return@forEach
|
||||||
|
put(season.slug, extractHarheimerTeams(games))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val previews = mutableMapOf<String, List<SpielDto>>()
|
||||||
|
val errors = mutableMapOf<String, String>()
|
||||||
|
|
||||||
|
sections.forEach { section ->
|
||||||
|
if (section.id != WIDGET_SECTION_ID) return@forEach
|
||||||
|
val key = sectionKey(section)
|
||||||
|
val config = section.config
|
||||||
|
val season = config?.season.orEmpty()
|
||||||
|
val teamName = config?.teamName.orEmpty()
|
||||||
|
if (season.isBlank() || teamName.isBlank()) {
|
||||||
|
errors[key] = "Bitte Saison und Mannschaft wählen."
|
||||||
|
previews[key] = emptyList()
|
||||||
|
return@forEach
|
||||||
|
}
|
||||||
|
val games = seasonGamesCache[season]
|
||||||
|
if (games == null) {
|
||||||
|
errors[key] = "Spielplan konnte nicht geladen werden."
|
||||||
|
previews[key] = emptyList()
|
||||||
|
return@forEach
|
||||||
|
}
|
||||||
|
previews[key] = filterUpcomingTeamGames(games, teamName, config?.teamAgeGroup.orEmpty())
|
||||||
|
}
|
||||||
|
|
||||||
|
return HomeWidgetData(
|
||||||
|
seasons = allSeasons,
|
||||||
|
teamsBySeason = teamsBySeason,
|
||||||
|
previewGamesBySectionKey = previews,
|
||||||
|
errorsBySectionKey = errors,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun ensureSeasonLoaded(season: String) {
|
||||||
|
if (seasonGamesCache.containsKey(season)) return
|
||||||
|
repository.fetchSpielplanForSeason(season).onSuccess { response ->
|
||||||
|
seasonGamesCache[season] = response.data
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private data class HomeWidgetData(
|
||||||
|
val seasons: List<SeasonDto>,
|
||||||
|
val teamsBySeason: Map<String, List<HomeSpielplanTeamOption>>,
|
||||||
|
val previewGamesBySectionKey: Map<String, List<SpielDto>>,
|
||||||
|
val errorsBySectionKey: Map<String, String>,
|
||||||
|
)
|
||||||
|
|
||||||
private fun TerminDto.asDateTime(): LocalDateTime? = runCatching {
|
private fun TerminDto.asDateTime(): LocalDateTime? = runCatching {
|
||||||
val time = uhrzeit?.takeIf { it.matches(Regex("\\d{2}:\\d{2}")) } ?: "00:00"
|
val time = uhrzeit?.takeIf { it.matches(Regex("\\d{2}:\\d{2}")) } ?: "00:00"
|
||||||
LocalDateTime.parse("$datum $time", DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))
|
LocalDateTime.parse("$datum $time", DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))
|
||||||
@@ -70,3 +312,110 @@ private fun TerminDto.asDateTime(): LocalDateTime? = runCatching {
|
|||||||
fun SpielDto.asDate(): LocalDate? = runCatching {
|
fun SpielDto.asDate(): LocalDate? = runCatching {
|
||||||
LocalDate.parse(termin.substringBefore(' '), DateTimeFormatter.ofPattern("dd.MM.yyyy"))
|
LocalDate.parse(termin.substringBefore(' '), DateTimeFormatter.ofPattern("dd.MM.yyyy"))
|
||||||
}.getOrNull()
|
}.getOrNull()
|
||||||
|
|
||||||
|
private val defaultHomepageSections = listOf(
|
||||||
|
HomepageSectionDto(id = "banner", key = "banner", enabled = true),
|
||||||
|
HomepageSectionDto(id = "aktuelles", key = "aktuelles", enabled = true),
|
||||||
|
HomepageSectionDto(id = "termine", key = "termine", enabled = true),
|
||||||
|
HomepageSectionDto(id = "spiele", key = "spiele", enabled = true),
|
||||||
|
HomepageSectionDto(id = "kontakt", key = "kontakt", enabled = true),
|
||||||
|
HomepageSectionDto(id = "training", key = "training", enabled = false),
|
||||||
|
HomepageSectionDto(id = "links", key = "links", enabled = false),
|
||||||
|
HomepageSectionDto(id = "vereinsmeisterschaften", key = "vereinsmeisterschaften", enabled = false),
|
||||||
|
)
|
||||||
|
|
||||||
|
private fun normalizedHomepageSections(configuredSections: List<HomepageSectionDto>): List<HomepageSectionDto> {
|
||||||
|
val configured = configuredSections
|
||||||
|
.filter { it.id.isNotBlank() }
|
||||||
|
.mapIndexed { index, section ->
|
||||||
|
val fallback = if (section.id == WIDGET_SECTION_ID) "${section.id}_${index + 1}" else section.id
|
||||||
|
section.copy(key = section.key?.takeIf { it.isNotBlank() } ?: fallback)
|
||||||
|
}
|
||||||
|
val knownIds = configured.map { it.id }.toMutableSet()
|
||||||
|
return buildList {
|
||||||
|
addAll(configured)
|
||||||
|
defaultHomepageSections.forEach { section ->
|
||||||
|
if (knownIds.add(section.id)) add(section)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun mergeWithUserSections(
|
||||||
|
server: List<HomepageSectionDto>,
|
||||||
|
user: List<HomepageSectionDto>?,
|
||||||
|
): List<HomepageSectionDto> {
|
||||||
|
if (user.isNullOrEmpty()) return server
|
||||||
|
val serverById = server.associateBy { it.id }
|
||||||
|
val serverByKey = server.associateBy { sectionKey(it) }
|
||||||
|
val ordered = buildList<HomepageSectionDto> {
|
||||||
|
user.forEach { userSection ->
|
||||||
|
val matchedServerSection = serverByKey[sectionKey(userSection)]
|
||||||
|
?: if (userSection.id == WIDGET_SECTION_ID) null else serverById[userSection.id]
|
||||||
|
if (matchedServerSection != null) {
|
||||||
|
if (none { sectionKey(it) == sectionKey(matchedServerSection) }) {
|
||||||
|
add(
|
||||||
|
matchedServerSection.copy(
|
||||||
|
enabled = userSection.enabled,
|
||||||
|
key = sectionKey(userSection),
|
||||||
|
config = userSection.config,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
return@forEach
|
||||||
|
}
|
||||||
|
if (userSection.id == WIDGET_SECTION_ID && none { sectionKey(it) == sectionKey(userSection) }) {
|
||||||
|
add(
|
||||||
|
userSection.copy(
|
||||||
|
key = userSection.key?.takeIf { it.isNotBlank() }
|
||||||
|
?: "${WIDGET_SECTION_ID}_${UUID.randomUUID()}",
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
server.forEach { serverSection ->
|
||||||
|
if (none { sectionKey(it) == sectionKey(serverSection) }) add(serverSection)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ordered.ifEmpty { server }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun sectionKey(section: HomepageSectionDto): String =
|
||||||
|
section.key?.takeIf { it.isNotBlank() } ?: section.id
|
||||||
|
|
||||||
|
private fun extractHarheimerTeams(games: List<SpielDto>): List<HomeSpielplanTeamOption> =
|
||||||
|
games
|
||||||
|
.flatMap { game ->
|
||||||
|
listOf(
|
||||||
|
HomeSpielplanTeamOption(game.heimMannschaft.trim(), game.heimAltersklasse.trim()),
|
||||||
|
HomeSpielplanTeamOption(game.gastMannschaft.trim(), game.gastAltersklasse.trim()),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.filter { option -> option.teamName.contains("Harheimer TC", ignoreCase = true) }
|
||||||
|
.filter { option -> option.teamName.isNotBlank() }
|
||||||
|
.distinctBy { "${it.teamName}|${it.teamAgeGroup}" }
|
||||||
|
.sortedBy { it.label }
|
||||||
|
|
||||||
|
private fun filterUpcomingTeamGames(
|
||||||
|
games: List<SpielDto>,
|
||||||
|
teamName: String,
|
||||||
|
teamAgeGroup: String,
|
||||||
|
): List<SpielDto> {
|
||||||
|
val normalizedTeam = teamName.trim()
|
||||||
|
val normalizedAgeGroup = teamAgeGroup.trim()
|
||||||
|
val today = LocalDate.now()
|
||||||
|
return games
|
||||||
|
.asSequence()
|
||||||
|
.filter { game ->
|
||||||
|
val homeMatch = game.heimMannschaft.trim() == normalizedTeam &&
|
||||||
|
(normalizedAgeGroup.isBlank() || game.heimAltersklasse.trim() == normalizedAgeGroup)
|
||||||
|
val awayMatch = game.gastMannschaft.trim() == normalizedTeam &&
|
||||||
|
(normalizedAgeGroup.isBlank() || game.gastAltersklasse.trim() == normalizedAgeGroup)
|
||||||
|
homeMatch || awayMatch
|
||||||
|
}
|
||||||
|
.filter { game -> game.asDate()?.let { !it.isBefore(today) } == true }
|
||||||
|
.sortedBy { it.asDate() }
|
||||||
|
.take(5)
|
||||||
|
.toList()
|
||||||
|
}
|
||||||
|
|
||||||
|
private const val WIDGET_SECTION_ID = "spielplan_team"
|
||||||
|
|||||||
34
android-app/app/src/main/java/de/harheimertc/ui/screens/login/LoginScreen.kt
Normal file → Executable file
34
android-app/app/src/main/java/de/harheimertc/ui/screens/login/LoginScreen.kt
Normal file → Executable file
@@ -19,11 +19,13 @@ import androidx.compose.material3.OutlinedTextField
|
|||||||
import androidx.compose.material3.Surface
|
import androidx.compose.material3.Surface
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.material3.TextButton
|
import androidx.compose.material3.TextButton
|
||||||
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.collectAsState
|
import androidx.compose.runtime.collectAsState
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
import androidx.compose.ui.text.input.KeyboardType
|
import androidx.compose.ui.text.input.KeyboardType
|
||||||
import androidx.compose.ui.text.input.PasswordVisualTransformation
|
import androidx.compose.ui.text.input.PasswordVisualTransformation
|
||||||
@@ -32,6 +34,7 @@ import androidx.compose.ui.unit.dp
|
|||||||
import androidx.hilt.navigation.compose.hiltViewModel
|
import androidx.hilt.navigation.compose.hiltViewModel
|
||||||
import androidx.navigation.NavController
|
import androidx.navigation.NavController
|
||||||
import de.harheimertc.ui.theme.Accent500
|
import de.harheimertc.ui.theme.Accent500
|
||||||
|
import de.harheimertc.ui.components.ValidatedTextField
|
||||||
import de.harheimertc.ui.theme.Accent900
|
import de.harheimertc.ui.theme.Accent900
|
||||||
import de.harheimertc.ui.theme.Primary100
|
import de.harheimertc.ui.theme.Primary100
|
||||||
import de.harheimertc.ui.theme.Primary600
|
import de.harheimertc.ui.theme.Primary600
|
||||||
@@ -45,6 +48,18 @@ fun LoginScreen(
|
|||||||
viewModel: LoginViewModel = hiltViewModel(),
|
viewModel: LoginViewModel = hiltViewModel(),
|
||||||
) {
|
) {
|
||||||
val state by viewModel.state.collectAsState()
|
val state by viewModel.state.collectAsState()
|
||||||
|
val context = LocalContext.current
|
||||||
|
|
||||||
|
LaunchedEffect(state.loggedIn, state.restoring) {
|
||||||
|
if (state.loggedIn && !state.restoring) {
|
||||||
|
navController.navigate(Destinations.MemberArea.route) {
|
||||||
|
launchSingleTop = true
|
||||||
|
popUpTo(Destinations.Login.route) {
|
||||||
|
inclusive = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
LazyColumn(
|
LazyColumn(
|
||||||
modifier = Modifier.fillMaxSize().background(Color(0xFFFAFAFA)),
|
modifier = Modifier.fillMaxSize().background(Color(0xFFFAFAFA)),
|
||||||
@@ -80,26 +95,33 @@ fun LoginScreen(
|
|||||||
CircularProgressIndicator(color = Primary600, modifier = Modifier.size(28.dp))
|
CircularProgressIndicator(color = Primary600, modifier = Modifier.size(28.dp))
|
||||||
Text("Sitzung wird geprüft...", color = Accent500)
|
Text("Sitzung wird geprüft...", color = Accent500)
|
||||||
} else if (!state.loggedIn) {
|
} else if (!state.loggedIn) {
|
||||||
OutlinedTextField(
|
ValidatedTextField(
|
||||||
value = state.email,
|
value = state.email,
|
||||||
onValueChange = viewModel::setEmail,
|
onValueChange = viewModel::setEmail,
|
||||||
label = { Text("E-Mail-Adresse") },
|
label = "E-Mail-Adresse",
|
||||||
|
error = state.fieldErrors["email"],
|
||||||
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email),
|
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email),
|
||||||
singleLine = true,
|
singleLine = true,
|
||||||
modifier = Modifier.fillMaxWidth(),
|
|
||||||
)
|
)
|
||||||
OutlinedTextField(
|
ValidatedTextField(
|
||||||
value = state.password,
|
value = state.password,
|
||||||
onValueChange = viewModel::setPassword,
|
onValueChange = viewModel::setPassword,
|
||||||
label = { Text("Passwort") },
|
label = "Passwort",
|
||||||
|
error = state.fieldErrors["password"],
|
||||||
visualTransformation = PasswordVisualTransformation(),
|
visualTransformation = PasswordVisualTransformation(),
|
||||||
singleLine = true,
|
singleLine = true,
|
||||||
modifier = Modifier.fillMaxWidth(),
|
|
||||||
)
|
)
|
||||||
Button(onClick = viewModel::login, enabled = !state.loading, modifier = Modifier.fillMaxWidth()) {
|
Button(onClick = viewModel::login, enabled = !state.loading, modifier = Modifier.fillMaxWidth()) {
|
||||||
if (state.loading) CircularProgressIndicator(color = Color.White, strokeWidth = 2.dp, modifier = Modifier.size(18.dp).padding(end = 4.dp))
|
if (state.loading) CircularProgressIndicator(color = Color.White, strokeWidth = 2.dp, modifier = Modifier.size(18.dp).padding(end = 4.dp))
|
||||||
Text(if (state.loading) "Anmeldung läuft..." else "Anmelden")
|
Text(if (state.loading) "Anmeldung läuft..." else "Anmelden")
|
||||||
}
|
}
|
||||||
|
OutlinedButton(
|
||||||
|
onClick = { viewModel.passkeyLogin(context) },
|
||||||
|
enabled = !state.loading,
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
) {
|
||||||
|
Text("Mit Passkey anmelden")
|
||||||
|
}
|
||||||
TextButton(onClick = { navController.navigate(Destinations.PasswordReset.route) }, modifier = Modifier.fillMaxWidth()) {
|
TextButton(onClick = { navController.navigate(Destinations.PasswordReset.route) }, modifier = Modifier.fillMaxWidth()) {
|
||||||
Text("Passwort vergessen?")
|
Text("Passwort vergessen?")
|
||||||
}
|
}
|
||||||
|
|||||||
47
android-app/app/src/main/java/de/harheimertc/ui/screens/login/LoginViewModel.kt
Normal file → Executable file
47
android-app/app/src/main/java/de/harheimertc/ui/screens/login/LoginViewModel.kt
Normal file → Executable file
@@ -1,9 +1,12 @@
|
|||||||
package de.harheimertc.ui.screens.login
|
package de.harheimertc.ui.screens.login
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import de.harheimertc.repositories.LoginRepository
|
import de.harheimertc.repositories.LoginRepository
|
||||||
|
import de.harheimertc.repositories.PasskeyRepository
|
||||||
|
import de.harheimertc.ui.components.isValidEmail
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
@@ -12,6 +15,7 @@ import javax.inject.Inject
|
|||||||
data class LoginUiState(
|
data class LoginUiState(
|
||||||
val email: String = "",
|
val email: String = "",
|
||||||
val password: String = "",
|
val password: String = "",
|
||||||
|
val fieldErrors: Map<String, String> = emptyMap(),
|
||||||
val loading: Boolean = false,
|
val loading: Boolean = false,
|
||||||
val restoring: Boolean = true,
|
val restoring: Boolean = true,
|
||||||
val loggedIn: Boolean = false,
|
val loggedIn: Boolean = false,
|
||||||
@@ -22,7 +26,10 @@ data class LoginUiState(
|
|||||||
)
|
)
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
class LoginViewModel @Inject constructor(private val repository: LoginRepository) : ViewModel() {
|
class LoginViewModel @Inject constructor(
|
||||||
|
private val repository: LoginRepository,
|
||||||
|
private val passkeyRepository: PasskeyRepository,
|
||||||
|
) : ViewModel() {
|
||||||
private val _state = MutableStateFlow(LoginUiState())
|
private val _state = MutableStateFlow(LoginUiState())
|
||||||
val state: StateFlow<LoginUiState> = _state
|
val state: StateFlow<LoginUiState> = _state
|
||||||
|
|
||||||
@@ -42,17 +49,21 @@ class LoginViewModel @Inject constructor(private val repository: LoginRepository
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun setEmail(value: String) {
|
fun setEmail(value: String) {
|
||||||
_state.value = _state.value.copy(email = value, error = null)
|
_state.value = _state.value.copy(email = value, fieldErrors = _state.value.fieldErrors - "email", error = null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setPassword(value: String) {
|
fun setPassword(value: String) {
|
||||||
_state.value = _state.value.copy(password = value, error = null)
|
_state.value = _state.value.copy(password = value, fieldErrors = _state.value.fieldErrors - "password", error = null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun login() {
|
fun login() {
|
||||||
val current = _state.value
|
val current = _state.value
|
||||||
if (current.email.isBlank() || current.password.isBlank()) {
|
val fieldErrors = buildMap {
|
||||||
_state.value = current.copy(error = "Bitte E-Mail-Adresse und Passwort eingeben.")
|
if (!isValidEmail(current.email)) put("email", "Bitte geben Sie eine gültige E-Mail-Adresse ein.")
|
||||||
|
if (current.password.isBlank()) put("password", "Bitte geben Sie Ihr Passwort ein.")
|
||||||
|
}
|
||||||
|
if (fieldErrors.isNotEmpty()) {
|
||||||
|
_state.value = current.copy(fieldErrors = fieldErrors, error = "Bitte prüfen Sie die markierten Felder.")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
@@ -75,6 +86,32 @@ class LoginViewModel @Inject constructor(private val repository: LoginRepository
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun passkeyLogin(context: Context) {
|
||||||
|
val current = _state.value
|
||||||
|
viewModelScope.launch {
|
||||||
|
_state.value = current.copy(loading = true, error = null, message = null)
|
||||||
|
passkeyRepository.login(context, current.email)
|
||||||
|
.onSuccess { response ->
|
||||||
|
_state.value = current.copy(
|
||||||
|
password = "",
|
||||||
|
loading = false,
|
||||||
|
restoring = false,
|
||||||
|
loggedIn = true,
|
||||||
|
userName = response.user?.name ?: response.user?.email,
|
||||||
|
roles = response.user?.roles.orEmpty(),
|
||||||
|
message = "Passkey-Anmeldung erfolgreich.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
.onFailure {
|
||||||
|
_state.value = current.copy(
|
||||||
|
loading = false,
|
||||||
|
restoring = false,
|
||||||
|
error = it.message ?: "Passkey-Anmeldung fehlgeschlagen.",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun logout() {
|
fun logout() {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
repository.logout()
|
repository.logout()
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user