Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8aa3a4da02 | ||
|
|
b7ee0523d1 | ||
|
|
a3105925bb | ||
|
|
7f1dff5661 | ||
|
|
869060c56f |
56
.github/workflows/build.yml
vendored
56
.github/workflows/build.yml
vendored
@@ -4,24 +4,56 @@ on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
# No marketplace actions: this Gitea runner resolves bare action names
|
||||
# against the local instance, and even with full URLs it cannot resolve
|
||||
# annotated tags ("unsupported object type"). Everything below is plain
|
||||
# shell, which also keeps the job readable.
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
ANDROID_SDK_ROOT: /opt/android-sdk
|
||||
CMDLINE_TOOLS: https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Checkout
|
||||
run: |
|
||||
git init -q .
|
||||
git remote add origin "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
|
||||
git fetch -q --depth 1 origin "${GITHUB_SHA}"
|
||||
git checkout -q FETCH_HEAD
|
||||
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: "17"
|
||||
- name: Install JDK
|
||||
run: |
|
||||
apt-get update -qq
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq openjdk-17-jdk-headless > /dev/null
|
||||
java -version
|
||||
|
||||
- uses: gradle/actions/setup-gradle@v4
|
||||
- name: Install Android SDK
|
||||
run: |
|
||||
mkdir -p "$ANDROID_SDK_ROOT/cmdline-tools"
|
||||
curl -sSL -o /tmp/tools.zip "$CMDLINE_TOOLS"
|
||||
unzip -q /tmp/tools.zip -d "$ANDROID_SDK_ROOT/cmdline-tools"
|
||||
mv "$ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools" "$ANDROID_SDK_ROOT/cmdline-tools/latest"
|
||||
# Accept licences by writing the hashes: piping "yes" into
|
||||
# sdkmanager dies of SIGPIPE (exit 141) under pipefail.
|
||||
mkdir -p "$ANDROID_SDK_ROOT/licenses"
|
||||
echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > "$ANDROID_SDK_ROOT/licenses/android-sdk-license"
|
||||
echo "84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_SDK_ROOT/licenses/android-sdk-preview-license"
|
||||
"$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager" \
|
||||
"platforms;android-35" "build-tools;35.0.0" "platform-tools" > /dev/null
|
||||
echo "sdk.dir=$ANDROID_SDK_ROOT" > local.properties
|
||||
|
||||
- name: Fetch club crests
|
||||
run: python3 tools/fetch-crests.py || true
|
||||
|
||||
- name: Unit tests
|
||||
run: ./gradlew testDebugUnitTest --no-daemon --stacktrace
|
||||
|
||||
- name: Build debug APK
|
||||
run: ./gradlew assembleDebug --stacktrace
|
||||
run: ./gradlew assembleDebug --no-daemon --stacktrace
|
||||
|
||||
- name: Upload APK
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: castarr-debug-apk
|
||||
path: app/build/outputs/apk/debug/app-debug.apk
|
||||
- name: Summary
|
||||
if: always()
|
||||
run: |
|
||||
echo "APK:"; ls -la app/build/outputs/apk/debug/ 2>/dev/null || echo " (kein Build)"
|
||||
echo "Tests:"; ls tests/runs/junit/ 2>/dev/null || echo " (keine Reports)"
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@ local.properties
|
||||
*.iml
|
||||
.kotlin/
|
||||
tests/runs/
|
||||
app/src/main/assets/crests/
|
||||
|
||||
@@ -12,8 +12,8 @@ android {
|
||||
applicationId = "dev.castarr.tv"
|
||||
minSdk = 26
|
||||
targetSdk = 35
|
||||
versionCode = 26
|
||||
versionName = "0.10.0"
|
||||
versionCode = 31
|
||||
versionName = "0.10.5"
|
||||
}
|
||||
|
||||
// Release signing from environment (see ~/.keys/castarr-release.env on the
|
||||
|
||||
@@ -27,6 +27,7 @@ class AppState(
|
||||
val dispatcharr: DispatcharrRepository,
|
||||
) {
|
||||
private val prefs = context.getSharedPreferences("app", Context.MODE_PRIVATE)
|
||||
val crests = dev.castarr.tv.data.Crests(context)
|
||||
|
||||
var screen by mutableStateOf(Screen.LIVE)
|
||||
var playerVisible by mutableStateOf(false)
|
||||
@@ -54,14 +55,21 @@ class AppState(
|
||||
private fun loadEnabledTeams(): Set<String> {
|
||||
val stored = prefs.getStringSet("teams", null)
|
||||
if (stored != null) return stored.toSet()
|
||||
return setOfNotNull(dev.castarr.tv.data.TeamFilters.defaultKeyFor(auth.username))
|
||||
return dev.castarr.tv.data.TeamFilters.defaultKeysFor(auth.username).toSet()
|
||||
}
|
||||
|
||||
fun toggleTeam(key: String) {
|
||||
/** Returns false when the cap of [TeamFilters.MAX_ACTIVE] is reached. */
|
||||
fun toggleTeam(key: String): Boolean {
|
||||
if (key !in enabledTeams &&
|
||||
enabledTeams.size >= dev.castarr.tv.data.TeamFilters.MAX_ACTIVE
|
||||
) {
|
||||
return false
|
||||
}
|
||||
enabledTeams =
|
||||
if (key in enabledTeams) enabledTeams - key else enabledTeams + key
|
||||
prefs.edit().putStringSet("teams", enabledTeams).apply()
|
||||
if (activeTeam == key && key !in enabledTeams) activeTeam = null
|
||||
return true
|
||||
}
|
||||
var audioTracks by mutableStateOf<List<PlayerController.AudioTrack>>(emptyList())
|
||||
private set
|
||||
|
||||
@@ -50,7 +50,14 @@ class MainActivity : ComponentActivity(), ControlServer.Listener {
|
||||
server.startServer()
|
||||
state.remoteAvailable = server.running
|
||||
setContent { CastarrApp(state) }
|
||||
lifecycleScope.launch { UpdateChecker.check(state) }
|
||||
lifecycleScope.launch {
|
||||
// At start-up and then occasionally: a TV often keeps the same
|
||||
// app process alive for days.
|
||||
while (true) {
|
||||
UpdateChecker.check(state)
|
||||
delay(UPDATE_CHECK_INTERVAL_MS)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun onPlaybackChanged() {
|
||||
@@ -325,5 +332,6 @@ class MainActivity : ComponentActivity(), ControlServer.Listener {
|
||||
const val TICK_INTERVAL_MS = 2_000L
|
||||
const val SEEK_STEP_SECONDS = 10L
|
||||
const val DIGIT_COMMIT_MS = 1_800L
|
||||
const val UPDATE_CHECK_INTERVAL_MS = 6 * 60 * 60 * 1000L
|
||||
}
|
||||
}
|
||||
|
||||
63
app/src/main/java/dev/castarr/tv/data/Crests.kt
Normal file
63
app/src/main/java/dev/castarr/tv/data/Crests.kt
Normal file
@@ -0,0 +1,63 @@
|
||||
package dev.castarr.tv.data
|
||||
|
||||
import android.content.Context
|
||||
import android.util.Log
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.json.JSONObject
|
||||
import java.net.HttpURLConnection
|
||||
import java.net.URL
|
||||
import java.net.URLEncoder
|
||||
|
||||
/**
|
||||
* Resolves club crests at runtime from Wikipedia's page summary. The badges
|
||||
* are trademarks, so they are fetched and cached on the device rather than
|
||||
* shipped with the app — nothing copyrighted lives in the repository.
|
||||
*/
|
||||
class Crests(context: Context) {
|
||||
|
||||
private val prefs = context.getSharedPreferences("crests", Context.MODE_PRIVATE)
|
||||
|
||||
/** Cached crest URL for a club, fetched once and then reused. */
|
||||
suspend fun urlFor(article: String): String? = withContext(Dispatchers.IO) {
|
||||
prefs.getString(article, null)?.takeIf { it.isNotEmpty() }?.let {
|
||||
return@withContext it
|
||||
}
|
||||
val resolved = runCatching { fetch(article) }
|
||||
.onFailure { Log.w(TAG, "crest lookup failed for $article: $it") }
|
||||
.getOrNull()
|
||||
if (resolved != null) {
|
||||
Log.i(TAG, "crest for $article: $resolved")
|
||||
prefs.edit().putString(article, resolved).apply()
|
||||
} else {
|
||||
// Deliberately not cached: a single failed lookup (no network
|
||||
// yet at start-up) must not hide the crest forever.
|
||||
Log.w(TAG, "no crest for $article")
|
||||
}
|
||||
resolved
|
||||
}
|
||||
|
||||
private fun fetch(article: String): String? {
|
||||
val encoded = URLEncoder.encode(article, "UTF-8").replace("+", "%20")
|
||||
val connection = URL("$SUMMARY$encoded").openConnection() as HttpURLConnection
|
||||
return try {
|
||||
connection.connectTimeout = 10_000
|
||||
connection.readTimeout = 10_000
|
||||
connection.setRequestProperty("User-Agent", USER_AGENT)
|
||||
connection.setRequestProperty("Accept", "application/json")
|
||||
val body = connection.inputStream.bufferedReader().use { it.readText() }
|
||||
JSONObject(body).optJSONObject("thumbnail")?.optString("source")
|
||||
?.takeIf { it.isNotEmpty() }
|
||||
// Drop the analytics query the API appends.
|
||||
?.substringBefore("?")
|
||||
} finally {
|
||||
connection.disconnect()
|
||||
}
|
||||
}
|
||||
|
||||
private companion object {
|
||||
const val TAG = "Crests"
|
||||
const val SUMMARY = "https://de.wikipedia.org/api/rest_v1/page/summary/"
|
||||
const val USER_AGENT = "Castarr TV (private use)"
|
||||
}
|
||||
}
|
||||
@@ -5,21 +5,21 @@ import androidx.compose.ui.graphics.Color
|
||||
/**
|
||||
* Per-club shortcut to "where does my club play tonight": a rail entry that
|
||||
* lists every channel whose EPG mentions the club within the next few hours.
|
||||
* Club crests are trademarks, so the icon is a plain shield in the club
|
||||
* colours rather than the real badge.
|
||||
* Crests are fetched from Wikipedia at runtime and cached on the device;
|
||||
* the club colours are the fallback while that is pending or unavailable.
|
||||
*/
|
||||
data class TeamFilter(
|
||||
val key: String,
|
||||
/** Short caption next to the crest in the rail. */
|
||||
val label: String,
|
||||
/** How the club is named in a sentence. */
|
||||
val name: String,
|
||||
/** Full club name, used in the settings. */
|
||||
/** Full club name, shown in the settings and in messages. */
|
||||
val fullName: String,
|
||||
/** Lowercase needles matched against programme titles. */
|
||||
val needles: List<String>,
|
||||
val primary: Color,
|
||||
val secondary: Color,
|
||||
/** German Wikipedia article the crest is resolved from. */
|
||||
val article: String,
|
||||
) {
|
||||
fun matches(title: String): Boolean {
|
||||
val haystack = title.lowercase()
|
||||
@@ -32,31 +32,89 @@ object TeamFilters {
|
||||
/** Window scanned ahead of now. */
|
||||
const val WINDOW_MS = 3 * 60 * 60 * 1000L
|
||||
|
||||
val all = listOf(
|
||||
TeamFilter(
|
||||
key = "hansa",
|
||||
label = "FCH",
|
||||
name = "Hansa",
|
||||
fullName = "Hansa Rostock",
|
||||
needles = listOf("hansa"),
|
||||
primary = Color(0xFF0B4EA2),
|
||||
secondary = Color(0xFFF2F3F5),
|
||||
),
|
||||
TeamFilter(
|
||||
key = "vfb",
|
||||
label = "1893",
|
||||
name = "dem VfB",
|
||||
fullName = "VfB Stuttgart",
|
||||
needles = listOf("vfb stuttgart", "vfb"),
|
||||
primary = Color(0xFFE32219),
|
||||
secondary = Color(0xFFF2F3F5),
|
||||
),
|
||||
/** At most this many club groups sit in the rail at once. */
|
||||
const val MAX_ACTIVE = 3
|
||||
|
||||
private const val WHITE = 0xFFF2F3F5
|
||||
private const val BLACK = 0xFF15171B
|
||||
|
||||
private fun club(
|
||||
key: String,
|
||||
label: String,
|
||||
fullName: String,
|
||||
needles: List<String>,
|
||||
primary: Long,
|
||||
secondary: Long,
|
||||
article: String = fullName,
|
||||
) = TeamFilter(key, label, fullName, needles, Color(primary), Color(secondary), article)
|
||||
|
||||
/** Clubs of the top three German divisions. */
|
||||
val all: List<TeamFilter> = listOf(
|
||||
// --- Bundesliga ---
|
||||
club("bayern", "FCB", "FC Bayern München", listOf("bayern münchen", "fc bayern"), 0xFFDC052D, WHITE),
|
||||
club("bvb", "BVB", "Borussia Dortmund", listOf("borussia dortmund", "bvb"), 0xFFFDE100, BLACK),
|
||||
club("leipzig", "RBL", "RB Leipzig", listOf("rb leipzig"), 0xFFDD0741, WHITE),
|
||||
club("leverkusen", "B04", "Bayer 04 Leverkusen", listOf("leverkusen"), 0xFFE32219, BLACK),
|
||||
club("frankfurt", "SGE", "Eintracht Frankfurt", listOf("eintracht frankfurt"), 0xFF1A1A1A, 0xFFE1000F),
|
||||
club("stuttgart", "1893", "VfB Stuttgart", listOf("vfb stuttgart"), 0xFFE32219, WHITE),
|
||||
club("gladbach", "BMG", "Borussia Mönchengladbach", listOf("mönchengladbach", "gladbach"), 0xFF1A1A1A, 0xFF00A94F),
|
||||
club("wolfsburg", "WOB", "VfL Wolfsburg", listOf("wolfsburg"), 0xFF65B32E, WHITE),
|
||||
club("bremen", "SVW", "SV Werder Bremen", listOf("werder bremen", "werder"), 0xFF1D9053, WHITE),
|
||||
club("freiburg", "SCF", "SC Freiburg", listOf("sc freiburg", "freiburg"), 0xFFE2001A, WHITE),
|
||||
club("hoffenheim", "TSG", "TSG Hoffenheim", listOf("hoffenheim"), 0xFF1C63B7, WHITE),
|
||||
club("mainz", "M05", "1. FSV Mainz 05", listOf("mainz 05", "mainz"), 0xFFE1000F, WHITE),
|
||||
club("augsburg", "FCA", "FC Augsburg", listOf("augsburg"), 0xFF00693F, 0xFFE1000F),
|
||||
club("union", "FCU", "1. FC Union Berlin", listOf("union berlin"), 0xFFE1000F, 0xFFFDE100),
|
||||
club("koeln", "EFC", "1. FC Köln", listOf("1. fc köln", "fc köln"), 0xFFE1000F, WHITE),
|
||||
club("hsv", "HSV", "Hamburger SV", listOf("hamburger sv", "hsv"), 0xFF0E5EA6, BLACK),
|
||||
club("heidenheim", "FCH1", "1. FC Heidenheim", listOf("heidenheim"), 0xFFE1000F, 0xFF1656A4),
|
||||
club("st-pauli", "FCSP", "FC St. Pauli", listOf("st. pauli", "st pauli"), 0xFF6B4423, WHITE),
|
||||
// --- 2. Bundesliga ---
|
||||
club("schalke", "S04", "FC Schalke 04", listOf("schalke"), 0xFF004D9D, WHITE),
|
||||
club("hertha", "BSC", "Hertha BSC", listOf("hertha"), 0xFF004D9D, WHITE),
|
||||
club("duesseldorf", "F95", "Fortuna Düsseldorf", listOf("fortuna düsseldorf"), 0xFFE1000F, WHITE),
|
||||
club("nuernberg", "FCN", "1. FC Nürnberg", listOf("nürnberg"), 0xFF8B1A1A, WHITE),
|
||||
club("kaiserslautern", "FCK", "1. FC Kaiserslautern", listOf("kaiserslautern"), 0xFFE1000F, WHITE),
|
||||
club("karlsruhe", "KSC", "Karlsruher SC", listOf("karlsruher sc", "ksc"), 0xFF0055A5, WHITE),
|
||||
club("hannover", "H96", "Hannover 96", listOf("hannover 96"), 0xFF00A94F, WHITE),
|
||||
club("paderborn", "SCP", "SC Paderborn 07", listOf("paderborn"), 0xFF004D9D, WHITE),
|
||||
club("magdeburg", "FCM", "1. FC Magdeburg", listOf("magdeburg"), 0xFF0B7A3E, WHITE),
|
||||
club("elversberg", "SVE", "SV Elversberg", listOf("elversberg"), 0xFF1A1A1A, 0xFFE1000F),
|
||||
club("darmstadt", "SV98", "SV Darmstadt 98", listOf("darmstadt"), 0xFF004E9E, WHITE),
|
||||
club("braunschweig", "BTSV", "Eintracht Braunschweig", listOf("braunschweig"), 0xFFFDE100, 0xFF004E9E),
|
||||
club("bochum", "BOC", "VfL Bochum", listOf("bochum"), 0xFF005CA9, WHITE),
|
||||
club("muenster", "SCPM", "Preußen Münster", listOf("preußen münster", "münster"), 0xFF00703C, WHITE),
|
||||
club("fuerth", "SGF", "SpVgg Greuther Fürth", listOf("greuther fürth", "fürth"), 0xFF00A94F, WHITE),
|
||||
club("holstein", "KSV", "Holstein Kiel", listOf("holstein kiel"), 0xFF004E9E, 0xFFE1000F),
|
||||
club("dresden", "SGD", "Dynamo Dresden", listOf("dynamo dresden"), 0xFFFDE100, BLACK),
|
||||
club("bielefeld", "DSC", "Arminia Bielefeld", listOf("arminia bielefeld", "bielefeld"), 0xFF00539F, WHITE),
|
||||
// --- 3. Liga ---
|
||||
club("hansa", "FCH", "FC Hansa Rostock", listOf("hansa"), 0xFF0B4EA2, WHITE),
|
||||
club("saarbruecken", "FCS", "1. FC Saarbrücken", listOf("saarbrücken"), 0xFF0B4EA2, BLACK),
|
||||
club("aue", "FCE", "Erzgebirge Aue", listOf("erzgebirge aue"), 0xFF7C0A02, WHITE),
|
||||
club("cottbus", "FCEC", "Energie Cottbus", listOf("energie cottbus", "cottbus"), 0xFFE1000F, WHITE),
|
||||
club("essen", "RWE", "Rot-Weiss Essen", listOf("rot-weiss essen", "rot weiss essen"), 0xFFE1000F, WHITE),
|
||||
club("duisburg", "MSV", "MSV Duisburg", listOf("msv duisburg", "duisburg"), 0xFF004E9E, WHITE),
|
||||
club("mannheim", "SVWM", "SV Waldhof Mannheim", listOf("waldhof mannheim", "waldhof"), 0xFF0B4EA2, WHITE),
|
||||
club("wehen", "SVWW", "SV Wehen Wiesbaden", listOf("wehen wiesbaden", "wehen"), 0xFFE1000F, BLACK),
|
||||
club("ulm", "SSV", "SSV Ulm 1846", listOf("ssv ulm"), 0xFFE1000F, WHITE, article = "SSV Ulm 1846 Fußball"),
|
||||
club("regensburg", "SSVJ", "SSV Jahn Regensburg", listOf("jahn regensburg", "regensburg"), 0xFFE1000F, WHITE),
|
||||
club("verl", "SCV", "SC Verl", listOf("sc verl"), 0xFF00703C, WHITE),
|
||||
club("viktoria", "VKÖ", "Viktoria Köln", listOf("viktoria köln"), 0xFFE1000F, WHITE),
|
||||
club("havelse", "TSVH", "TSV Havelse", listOf("havelse"), 0xFF004E9E, WHITE),
|
||||
club("schweinfurt", "FC05", "1. FC Schweinfurt 05", listOf("schweinfurt"), 0xFF00A94F, WHITE),
|
||||
club("osnabrueck", "VfLO", "VfL Osnabrück", listOf("osnabrück"), 0xFF6A2C8F, WHITE),
|
||||
club("aachen", "ALE", "Alemannia Aachen", listOf("alemannia aachen", "aachen"), 0xFFFDE100, BLACK),
|
||||
club("ingolstadt", "FCI", "FC Ingolstadt 04", listOf("ingolstadt"), 0xFFE1000F, BLACK),
|
||||
club("wuppertal", "WSV", "Wuppertaler SV", listOf("wuppertaler sv"), 0xFFE1000F, 0xFF0B4EA2),
|
||||
club("stuttgart-ii", "VfB2", "VfB Stuttgart II", listOf("vfb stuttgart ii"), 0xFFE32219, BLACK),
|
||||
club("hoffenheim-ii", "TSG2", "TSG Hoffenheim II", listOf("hoffenheim ii"), 0xFF1C63B7, BLACK, article = "TSG 1899 Hoffenheim"),
|
||||
)
|
||||
|
||||
/** The club a viewer gets switched on by default. */
|
||||
/** Clubs switched on for a viewer before they touch the settings. */
|
||||
private val defaultForUser = mapOf(
|
||||
"benjamin" to "hansa",
|
||||
"tobiasb" to "vfb",
|
||||
"benjamin" to listOf("hansa"),
|
||||
"tobiasb" to listOf("stuttgart"),
|
||||
)
|
||||
|
||||
/**
|
||||
@@ -80,6 +138,6 @@ object TeamFilters {
|
||||
|
||||
fun byKey(key: String): TeamFilter? = all.firstOrNull { it.key == key }
|
||||
|
||||
fun defaultKeyFor(username: String): String? =
|
||||
defaultForUser[username.trim().lowercase()]
|
||||
fun defaultKeysFor(username: String): List<String> =
|
||||
defaultForUser[username.trim().lowercase()].orEmpty()
|
||||
}
|
||||
|
||||
@@ -132,6 +132,10 @@ private fun TopBar(state: AppState) {
|
||||
}
|
||||
Spacer(Modifier.width(18.dp))
|
||||
}
|
||||
state.updateAvailable?.let { version ->
|
||||
UpdateChip(version) { state.screen = AppState.Screen.SETTINGS }
|
||||
Spacer(Modifier.width(10.dp))
|
||||
}
|
||||
GearButton {
|
||||
state.screen = if (state.screen == AppState.Screen.LIVE) AppState.Screen.SETTINGS
|
||||
else AppState.Screen.LIVE
|
||||
@@ -139,6 +143,33 @@ private fun TopBar(state: AppState) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Shown in the top bar as soon as the start-up check finds a newer
|
||||
* release — otherwise an update would only be noticed by someone who
|
||||
* happens to open the settings.
|
||||
*/
|
||||
@Composable
|
||||
private fun UpdateChip(version: String, onClick: () -> Unit) {
|
||||
Surface(
|
||||
onClick = onClick,
|
||||
shape = ClickableSurfaceDefaults.shape(RoundedCornerShape(999.dp)),
|
||||
colors = ClickableSurfaceDefaults.colors(
|
||||
containerColor = CastarrColors.accentDim,
|
||||
contentColor = CastarrColors.accent,
|
||||
focusedContainerColor = CastarrColors.accent,
|
||||
focusedContentColor = CastarrColors.onAccent,
|
||||
),
|
||||
) {
|
||||
Text(
|
||||
"Update $version",
|
||||
fontFamily = AppFont,
|
||||
fontSize = 13.sp,
|
||||
fontWeight = FontWeight.Medium,
|
||||
modifier = Modifier.padding(horizontal = 14.dp, vertical = 8.dp),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/** Round settings button with a drawn gear (glyphs render as emoji). */
|
||||
@Composable
|
||||
private fun GearButton(onClick: () -> Unit) {
|
||||
|
||||
@@ -34,8 +34,12 @@ import androidx.compose.ui.geometry.Offset
|
||||
import androidx.compose.ui.graphics.Path
|
||||
import androidx.compose.ui.graphics.drawscope.clipPath
|
||||
import androidx.compose.ui.focus.FocusRequester
|
||||
import androidx.compose.ui.focus.focusProperties
|
||||
import androidx.compose.ui.focus.focusRequester
|
||||
import androidx.compose.ui.input.key.Key
|
||||
import androidx.compose.ui.input.key.KeyEventType
|
||||
import androidx.compose.ui.input.key.key
|
||||
import androidx.compose.ui.input.key.onPreviewKeyEvent
|
||||
import androidx.compose.ui.input.key.type
|
||||
import androidx.compose.ui.focus.onFocusChanged
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.text.font.FontWeight
|
||||
@@ -130,11 +134,18 @@ fun LiveScreen(state: AppState) {
|
||||
state.restorePending = false
|
||||
}
|
||||
}
|
||||
val intoList = if (channels.isEmpty()) Modifier
|
||||
else Modifier.focusProperties { right = listFocus }
|
||||
// A FocusRequester that is not currently attached throws when used, and
|
||||
// in a LazyColumn the selected row may well be scrolled out of
|
||||
// composition — so jumps are attempted, not declared.
|
||||
val intoList = if (channels.isEmpty()) Modifier else Modifier.onPreviewKeyEvent { event ->
|
||||
event.type == KeyEventType.KeyDown && event.key == Key.DirectionRight &&
|
||||
runCatching { listFocus.requestFocus() }.isSuccess
|
||||
}
|
||||
|
||||
val railState = rememberLazyListState()
|
||||
Row(Modifier.fillMaxSize()) {
|
||||
LazyColumn(
|
||||
state = railState,
|
||||
modifier = Modifier
|
||||
.width(264.dp)
|
||||
.fillMaxHeight(),
|
||||
@@ -182,7 +193,7 @@ fun LiveScreen(state: AppState) {
|
||||
label = club.label,
|
||||
count = matchesByTeam[club.key]?.size ?: 0,
|
||||
selected = state.activeTeam == club.key,
|
||||
leading = { Crest(club) },
|
||||
leading = { Crest(club, state) },
|
||||
modifier = intoList.then(
|
||||
if (state.activeTeam == club.key) Modifier.focusRequester(railFocus)
|
||||
else Modifier
|
||||
@@ -235,7 +246,7 @@ fun LiveScreen(state: AppState) {
|
||||
Text(
|
||||
when {
|
||||
activeTeam != null ->
|
||||
"In den nächsten 3 Stunden läuft nichts mit ${activeTeam.name}."
|
||||
"In den nächsten 3 Stunden läuft nichts mit ${activeTeam.fullName}."
|
||||
state.favoritesOnly ->
|
||||
"Noch keine Favoriten — halte OK auf einem Sender gedrückt."
|
||||
else -> "Diese Gruppe ist leer."
|
||||
@@ -254,7 +265,11 @@ fun LiveScreen(state: AppState) {
|
||||
// matching the remote's number pad in every view.
|
||||
number = allChannels.indexOf(channel) + 1,
|
||||
modifier = Modifier
|
||||
.focusProperties { left = railFocus }
|
||||
.onPreviewKeyEvent { event ->
|
||||
event.type == KeyEventType.KeyDown &&
|
||||
event.key == Key.DirectionLeft &&
|
||||
runCatching { railFocus.requestFocus() }.isSuccess
|
||||
}
|
||||
.then(if (listIndex == 0) Modifier.focusRequester(listFocus) else Modifier)
|
||||
.then(
|
||||
if (listIndex == restoreIndex) Modifier.focusRequester(restoreFocus)
|
||||
@@ -418,11 +433,26 @@ private fun ChannelRow(
|
||||
}
|
||||
|
||||
/**
|
||||
* Stand-in for the club badge: real crests are trademarks, so this draws a
|
||||
* simple shield in the club colours instead.
|
||||
* The club badge. The images ship in the APK (fetched at build time by
|
||||
* tools/fetch-crests.py, never committed), so nothing has to load over the
|
||||
* network; the coloured shield stands in if one is ever missing.
|
||||
*/
|
||||
@Composable
|
||||
private fun Crest(team: dev.castarr.tv.data.TeamFilter) {
|
||||
private fun Crest(team: dev.castarr.tv.data.TeamFilter, state: AppState) {
|
||||
Box(Modifier.size(20.dp), contentAlignment = Alignment.Center) {
|
||||
SubcomposeAsyncImage(
|
||||
model = "file:///android_asset/crests/${team.key}.png",
|
||||
contentDescription = null,
|
||||
contentScale = ContentScale.Fit,
|
||||
modifier = Modifier.fillMaxSize(),
|
||||
loading = { ShieldFallback(team) },
|
||||
error = { ShieldFallback(team) },
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun ShieldFallback(team: dev.castarr.tv.data.TeamFilter) {
|
||||
Canvas(Modifier.size(18.dp)) {
|
||||
val w = size.width
|
||||
val h = size.height
|
||||
|
||||
@@ -6,6 +6,8 @@ import androidx.compose.foundation.Canvas
|
||||
import androidx.compose.foundation.Image
|
||||
import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.border
|
||||
import androidx.compose.foundation.rememberScrollState
|
||||
import androidx.compose.foundation.verticalScroll
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.Column
|
||||
@@ -14,9 +16,13 @@ import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.heightIn
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.layout.width
|
||||
import androidx.compose.foundation.lazy.LazyColumn
|
||||
import androidx.compose.foundation.lazy.itemsIndexed
|
||||
import androidx.compose.foundation.lazy.rememberLazyListState
|
||||
import androidx.compose.foundation.shape.CircleShape
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.runtime.Composable
|
||||
@@ -80,7 +86,14 @@ fun SettingsScreen(state: AppState) {
|
||||
.fillMaxSize()
|
||||
.padding(horizontal = 40.dp, vertical = 12.dp)
|
||||
) {
|
||||
Column(Modifier.weight(1.25f), verticalArrangement = Arrangement.spacedBy(16.dp)) {
|
||||
// The cards outgrew one screen once club menus arrived; focus
|
||||
// movement scrolls this column along.
|
||||
Column(
|
||||
Modifier
|
||||
.weight(1.25f)
|
||||
.verticalScroll(rememberScrollState()),
|
||||
verticalArrangement = Arrangement.spacedBy(16.dp),
|
||||
) {
|
||||
SettingsCard("Konto") {
|
||||
if (state.auth.isLoggedIn) {
|
||||
Row(
|
||||
@@ -165,36 +178,37 @@ fun SettingsScreen(state: AppState) {
|
||||
|
||||
SettingsCard("Vereinsmenüs") {
|
||||
Text(
|
||||
"Zeigt eine eigene Gruppe mit allen Sendern, auf denen der " +
|
||||
"Verein in den nächsten 3 Stunden läuft.",
|
||||
"Eigene Gruppe mit allen Sendern, auf denen der Verein in den " +
|
||||
"nächsten 3 Stunden läuft. Bis zu " +
|
||||
"${dev.castarr.tv.data.TeamFilters.MAX_ACTIVE} Vereine.",
|
||||
color = CastarrColors.faint, fontFamily = AppFont, fontSize = 11.sp,
|
||||
modifier = Modifier.padding(start = 14.dp, end = 14.dp, bottom = 6.dp),
|
||||
)
|
||||
dev.castarr.tv.data.TeamFilters.all.forEach { club ->
|
||||
val on = club.key in state.enabledTeams
|
||||
val active = dev.castarr.tv.data.TeamFilters.all
|
||||
.filter { it.key in state.enabledTeams }
|
||||
active.forEach { club ->
|
||||
SettingRow(
|
||||
club.fullName,
|
||||
subtitle = "Erscheint als ${club.label} in der Senderliste",
|
||||
trailing = {
|
||||
Box(
|
||||
Modifier
|
||||
.clip(RoundedCornerShape(999.dp))
|
||||
.background(
|
||||
if (on) CastarrColors.accent else CastarrColors.bg
|
||||
)
|
||||
.padding(horizontal = 12.dp, vertical = 5.dp)
|
||||
) {
|
||||
Text(
|
||||
if (on) "An" else "Aus",
|
||||
color = if (on) CastarrColors.onAccent else CastarrColors.muted,
|
||||
fontFamily = AppFont,
|
||||
fontSize = 12.sp,
|
||||
fontWeight = if (on) FontWeight.SemiBold else FontWeight.Normal,
|
||||
)
|
||||
}
|
||||
},
|
||||
trailing = { TogglePill(on = true) },
|
||||
) { state.toggleTeam(club.key) }
|
||||
}
|
||||
if (active.size < dev.castarr.tv.data.TeamFilters.MAX_ACTIVE) {
|
||||
SettingRow(
|
||||
"Verein hinzufügen",
|
||||
subtitle = "1. bis 3. Liga",
|
||||
) {
|
||||
val choices = dev.castarr.tv.data.TeamFilters.all
|
||||
.filter { it.key !in state.enabledTeams }
|
||||
picker = Picker(
|
||||
"Verein hinzufügen",
|
||||
choices.map { it.fullName },
|
||||
-1,
|
||||
) { index ->
|
||||
choices.getOrNull(index)?.let { state.toggleTeam(it.key) }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SettingsCard("App") {
|
||||
@@ -307,7 +321,13 @@ fun SettingsScreen(state: AppState) {
|
||||
@Composable
|
||||
private fun PickerDialog(picker: Picker, onClose: () -> Unit) {
|
||||
val selectedFocus = remember { FocusRequester() }
|
||||
LaunchedEffect(Unit) { selectedFocus.requestFocus() }
|
||||
// A requester bound to no composed row throws; with no preselection
|
||||
// (adding something new) there is deliberately no such row.
|
||||
LaunchedEffect(Unit) { runCatching { selectedFocus.requestFocus() } }
|
||||
val listState = rememberLazyListState()
|
||||
LaunchedEffect(picker.selected) {
|
||||
if (picker.selected > 0) listState.scrollToItem(picker.selected)
|
||||
}
|
||||
Dialog(
|
||||
onDismissRequest = onClose,
|
||||
properties = DialogProperties(usePlatformDefaultWidth = false),
|
||||
@@ -336,7 +356,11 @@ private fun PickerDialog(picker: Picker, onClose: () -> Unit) {
|
||||
letterSpacing = 2.sp,
|
||||
modifier = Modifier.padding(start = 14.dp, bottom = 10.dp),
|
||||
)
|
||||
picker.options.forEachIndexed { index, option ->
|
||||
LazyColumn(
|
||||
state = listState,
|
||||
modifier = Modifier.heightIn(max = 420.dp),
|
||||
) {
|
||||
itemsIndexed(picker.options) { index, option ->
|
||||
val selected = index == picker.selected
|
||||
Surface(
|
||||
onClick = {
|
||||
@@ -345,7 +369,11 @@ private fun PickerDialog(picker: Picker, onClose: () -> Unit) {
|
||||
},
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.then(if (selected) Modifier.focusRequester(selectedFocus) else Modifier),
|
||||
.then(
|
||||
if (selected || (picker.selected < 0 && index == 0))
|
||||
Modifier.focusRequester(selectedFocus)
|
||||
else Modifier
|
||||
),
|
||||
shape = ClickableSurfaceDefaults.shape(rowShape),
|
||||
scale = ClickableSurfaceDefaults.scale(focusedScale = 1f),
|
||||
colors = ClickableSurfaceDefaults.colors(
|
||||
@@ -389,6 +417,7 @@ private fun PickerDialog(picker: Picker, onClose: () -> Unit) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** Current value plus a small drawn caret, shown at a row's trailing edge. */
|
||||
@@ -419,6 +448,24 @@ private fun ValueWithCaret(value: String) {
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun TogglePill(on: Boolean) {
|
||||
Box(
|
||||
Modifier
|
||||
.clip(RoundedCornerShape(999.dp))
|
||||
.background(if (on) CastarrColors.accent else CastarrColors.bg)
|
||||
.padding(horizontal = 12.dp, vertical = 5.dp)
|
||||
) {
|
||||
Text(
|
||||
if (on) "An" else "Aus",
|
||||
color = if (on) CastarrColors.onAccent else CastarrColors.muted,
|
||||
fontFamily = AppFont,
|
||||
fontSize = 12.sp,
|
||||
fontWeight = if (on) FontWeight.SemiBold else FontWeight.Normal,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun SettingsCard(title: String, content: @Composable () -> Unit) {
|
||||
Column(
|
||||
|
||||
@@ -2,14 +2,13 @@ package dev.castarr.tv.data
|
||||
|
||||
import org.junit.Assert.assertEquals
|
||||
import org.junit.Assert.assertFalse
|
||||
import org.junit.Assert.assertNull
|
||||
import org.junit.Assert.assertTrue
|
||||
import org.junit.Test
|
||||
|
||||
class TeamFiltersTest {
|
||||
|
||||
private val hansa = TeamFilters.byKey("hansa")!!
|
||||
private val vfb = TeamFilters.byKey("vfb")!!
|
||||
private val vfb = TeamFilters.byKey("stuttgart")!!
|
||||
|
||||
@Test
|
||||
fun `matches the club regardless of case and surrounding text`() {
|
||||
@@ -39,8 +38,24 @@ class TeamFiltersTest {
|
||||
|
||||
@Test
|
||||
fun `assigns each viewer their own club by default`() {
|
||||
assertEquals("hansa", TeamFilters.defaultKeyFor("benjamin"))
|
||||
assertEquals("vfb", TeamFilters.defaultKeyFor("TobiasB"))
|
||||
assertNull(TeamFilters.defaultKeyFor("someone-else"))
|
||||
assertEquals(listOf("hansa"), TeamFilters.defaultKeysFor("benjamin"))
|
||||
assertEquals(listOf("stuttgart"), TeamFilters.defaultKeysFor("TobiasB"))
|
||||
assertTrue(TeamFilters.defaultKeysFor("someone-else").isEmpty())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `club keys are unique and every club has needles`() {
|
||||
val keys = TeamFilters.all.map { it.key }
|
||||
assertEquals(keys.size, keys.toSet().size)
|
||||
assertTrue(TeamFilters.all.all { it.needles.isNotEmpty() })
|
||||
assertTrue(TeamFilters.all.all { c -> c.needles.all { it == it.lowercase() } })
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `covers all three divisions`() {
|
||||
assertTrue(TeamFilters.all.size > 50)
|
||||
listOf("bayern", "schalke", "hansa").forEach {
|
||||
assertTrue(it, TeamFilters.byKey(it) != null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
54
tools/fetch-crests.py
Normal file
54
tools/fetch-crests.py
Normal file
@@ -0,0 +1,54 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Downloads club crests into the APK's assets at build time.
|
||||
|
||||
The badges are trademarks: they are fetched into a generated, git-ignored
|
||||
folder so the repository stays free of them while the app ships with them
|
||||
and needs no network at runtime.
|
||||
"""
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
import time
|
||||
import urllib.parse
|
||||
import urllib.request
|
||||
|
||||
OUT = sys.argv[1] if len(sys.argv) > 1 else "app/src/main/assets/crests"
|
||||
SRC = "app/src/main/java/dev/castarr/tv/data/TeamFilters.kt"
|
||||
SUMMARY = "https://de.wikipedia.org/api/rest_v1/page/summary/"
|
||||
UA = {"User-Agent": "Castarr build script (private use)"}
|
||||
|
||||
os.makedirs(OUT, exist_ok=True)
|
||||
kotlin = open(SRC, encoding="utf-8").read()
|
||||
entries = re.findall(r'club\((.*?)\)\s*,\s*(?://.*)?$', kotlin, re.M | re.S)
|
||||
clubs = []
|
||||
for raw in re.findall(r'club\(\s*"([^"]+)",\s*"[^"]*",\s*"([^"]+)"[^\n]*', kotlin):
|
||||
clubs.append(raw)
|
||||
# an explicit article = "..." wins over the club name
|
||||
overrides = dict(re.findall(r'club\(\s*"([^"]+)"[^\n]*article = "([^"]+)"', kotlin))
|
||||
clubs = [(k, overrides.get(k, n)) for k, n in clubs]
|
||||
|
||||
fetched = skipped = failed = 0
|
||||
for key, full_name in clubs:
|
||||
target = os.path.join(OUT, f"{key}.png")
|
||||
if os.path.exists(target) and os.path.getsize(target) > 0:
|
||||
skipped += 1
|
||||
continue
|
||||
try:
|
||||
url = SUMMARY + urllib.parse.quote(full_name)
|
||||
with urllib.request.urlopen(urllib.request.Request(url, headers=UA), timeout=20) as r:
|
||||
thumb = json.load(r).get("thumbnail", {}).get("source")
|
||||
if not thumb:
|
||||
raise ValueError("no thumbnail")
|
||||
with urllib.request.urlopen(urllib.request.Request(thumb, headers=UA), timeout=20) as r:
|
||||
data = r.read()
|
||||
with open(target, "wb") as f:
|
||||
f.write(data)
|
||||
fetched += 1
|
||||
except Exception as exc: # noqa: BLE001 - best effort, shield is the fallback
|
||||
print(f" {key}: {exc}", file=sys.stderr)
|
||||
failed += 1
|
||||
# Wikipedia rate-limits bursts; this runs rarely and caches.
|
||||
time.sleep(1.2)
|
||||
|
||||
print(f"crests: {fetched} geladen, {skipped} vorhanden, {failed} fehlgeschlagen")
|
||||
Reference in New Issue
Block a user