Compare commits
22 Commits
IOS_2.1.0
...
ANDROID_2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
6342bfed5c
|
|||
| 869ca0fc0d | |||
| 33562e9d16 | |||
|
a212f3f3b5
|
|||
|
a99196b9ca
|
|||
|
93fb7a41fb
|
|||
|
6d67ae6d81
|
|||
| 071e47f95e | |||
| c6c3e6084b | |||
|
c2f95f2793
|
|||
|
b7a3c98b2c
|
|||
|
fed9bab2ea
|
|||
|
862622b07b
|
|||
|
eba503eb5e
|
|||
|
8c4a78ad50
|
|||
|
3b16475dc6
|
|||
|
105d39689d
|
|||
|
d4023133b7
|
|||
|
602b5f8938
|
|||
| 8529f76c22 | |||
|
879aae0721
|
|||
|
6fc86558b2
|
@@ -16,8 +16,8 @@ android {
|
|||||||
applicationId = "com.atridad.ascently"
|
applicationId = "com.atridad.ascently"
|
||||||
minSdk = 31
|
minSdk = 31
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 42
|
versionCode = 47
|
||||||
versionName = "2.1.0"
|
versionName = "2.3.1"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
@@ -38,7 +38,10 @@ android {
|
|||||||
|
|
||||||
java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } }
|
java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } }
|
||||||
|
|
||||||
buildFeatures { compose = true }
|
buildFeatures {
|
||||||
|
compose = true
|
||||||
|
buildConfig = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin { compilerOptions { jvmTarget.set(JvmTarget.JVM_17) } }
|
kotlin { compilerOptions { jvmTarget.set(JvmTarget.JVM_17) } }
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
|
|
||||||
<!-- Permissions for notifications and foreground service -->
|
<!-- Permissions for notifications and foreground service -->
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
|
<uses-permission android:name="android.permission.POST_PROMOTED_NOTIFICATIONS" />
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package com.atridad.ascently.data.health
|
|||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.util.Log
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import androidx.activity.result.contract.ActivityResultContract
|
import androidx.activity.result.contract.ActivityResultContract
|
||||||
import androidx.health.connect.client.HealthConnectClient
|
import androidx.health.connect.client.HealthConnectClient
|
||||||
import androidx.health.connect.client.PermissionController
|
import androidx.health.connect.client.PermissionController
|
||||||
@@ -60,7 +60,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
try {
|
try {
|
||||||
HealthConnectClient.getOrCreate(context)
|
HealthConnectClient.getOrCreate(context)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Failed to create Health Connect client", e)
|
AppLogger.e(TAG, e) { "Failed to create Health Connect client" }
|
||||||
_isCompatible.value = false
|
_isCompatible.value = false
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
@@ -75,7 +75,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
val status = HealthConnectClient.getSdkStatus(context)
|
val status = HealthConnectClient.getSdkStatus(context)
|
||||||
emit(status == HealthConnectClient.SDK_AVAILABLE)
|
emit(status == HealthConnectClient.SDK_AVAILABLE)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error checking Health Connect availability", e)
|
AppLogger.e(TAG, e) { "Error checking Health Connect availability" }
|
||||||
_isCompatible.value = false
|
_isCompatible.value = false
|
||||||
emit(false)
|
emit(false)
|
||||||
}
|
}
|
||||||
@@ -90,10 +90,10 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
try {
|
try {
|
||||||
val alreadyHasPermissions = hasAllPermissions()
|
val alreadyHasPermissions = hasAllPermissions()
|
||||||
if (!alreadyHasPermissions) {
|
if (!alreadyHasPermissions) {
|
||||||
Log.d(TAG, "Health Connect enabled - permissions will be requested by UI")
|
AppLogger.d(TAG) { "Health Connect enabled - permissions will be requested by UI" }
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Error checking permissions when enabling Health Connect", e)
|
AppLogger.w(TAG, e) { "Error checking permissions when enabling Health Connect" }
|
||||||
}
|
}
|
||||||
} else if (!enabled) {
|
} else if (!enabled) {
|
||||||
setPermissionsGranted(false)
|
setPermissionsGranted(false)
|
||||||
@@ -119,7 +119,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
setPermissionsGranted(hasAll)
|
setPermissionsGranted(hasAll)
|
||||||
hasAll
|
hasAll
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error checking permissions", e)
|
AppLogger.e(TAG, e) { "Error checking permissions" }
|
||||||
setPermissionsGranted(false)
|
setPermissionsGranted(false)
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
@@ -135,7 +135,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
val hasPerms = if (isAvailable) hasAllPermissions() else false
|
val hasPerms = if (isAvailable) hasAllPermissions() else false
|
||||||
isAvailable && hasPerms
|
isAvailable && hasPerms
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error checking Health Connect readiness", e)
|
AppLogger.e(TAG, e) { "Error checking Health Connect readiness" }
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -148,7 +148,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
return try {
|
return try {
|
||||||
REQUIRED_PERMISSIONS.map { it }.toSet()
|
REQUIRED_PERMISSIONS.map { it }.toSet()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error getting required permissions", e)
|
AppLogger.e(TAG, e) { "Error getting required permissions" }
|
||||||
emptySet()
|
emptySet()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -181,7 +181,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d(TAG, "Attempting to sync session '${session.id}' to Health Connect...")
|
AppLogger.d(TAG) { "Attempting to sync session '${session.id}' to Health Connect..." }
|
||||||
|
|
||||||
val records = mutableListOf<androidx.health.connect.client.records.Record>()
|
val records = mutableListOf<androidx.health.connect.client.records.Record>()
|
||||||
|
|
||||||
@@ -199,7 +199,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
)
|
)
|
||||||
records.add(exerciseSession)
|
records.add(exerciseSession)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Failed to create exercise session record", e)
|
AppLogger.w(TAG, e) { "Failed to create exercise session record" }
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -220,23 +220,22 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
records.add(caloriesRecord)
|
records.add(caloriesRecord)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Failed to create calories record", e)
|
AppLogger.w(TAG, e) { "Failed to create calories record" }
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val heartRateRecord = createHeartRateRecord(startTime, endTime, attemptCount)
|
val heartRateRecord = createHeartRateRecord(startTime, endTime, attemptCount)
|
||||||
heartRateRecord?.let { records.add(it) }
|
heartRateRecord?.let { records.add(it) }
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Failed to create heart rate record", e)
|
AppLogger.w(TAG, e) { "Failed to create heart rate record" }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (records.isNotEmpty() && healthConnectClient != null) {
|
if (records.isNotEmpty() && healthConnectClient != null) {
|
||||||
Log.d(TAG, "Writing ${records.size} records to Health Connect...")
|
AppLogger.d(TAG) { "Writing ${records.size} records to Health Connect..." }
|
||||||
healthConnectClient!!.insertRecords(records)
|
healthConnectClient!!.insertRecords(records)
|
||||||
Log.i(
|
AppLogger.i(TAG) {
|
||||||
TAG,
|
|
||||||
"Successfully synced ${records.size} records for session '${session.id}' to Health Connect"
|
"Successfully synced ${records.size} records for session '${session.id}' to Health Connect"
|
||||||
)
|
}
|
||||||
|
|
||||||
preferences
|
preferences
|
||||||
.edit()
|
.edit()
|
||||||
@@ -249,13 +248,13 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
healthConnectClient == null -> "Health Connect client unavailable"
|
healthConnectClient == null -> "Health Connect client unavailable"
|
||||||
else -> "Unknown reason"
|
else -> "Unknown reason"
|
||||||
}
|
}
|
||||||
Log.w(TAG, "Sync failed for session '${session.id}': $reason")
|
AppLogger.w(TAG) { "Sync failed for session '${session.id}': $reason" }
|
||||||
return Result.failure(Exception("Sync failed: $reason"))
|
return Result.failure(Exception("Sync failed: $reason"))
|
||||||
}
|
}
|
||||||
|
|
||||||
Result.success(Unit)
|
Result.success(Unit)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error syncing climbing session to Health Connect", e)
|
AppLogger.e(TAG, e) { "Error syncing climbing session to Health Connect" }
|
||||||
Result.failure(e)
|
Result.failure(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -266,7 +265,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
attemptCount: Int = 0
|
attemptCount: Int = 0
|
||||||
): Result<Unit> {
|
): Result<Unit> {
|
||||||
return if (_autoSync.value && isReady() && session.status == SessionStatus.COMPLETED) {
|
return if (_autoSync.value && isReady() && session.status == SessionStatus.COMPLETED) {
|
||||||
Log.d(TAG, "Auto-syncing completed session '${session.id}' to Health Connect...")
|
AppLogger.d(TAG) { "Auto-syncing completed session '${session.id}' to Health Connect..." }
|
||||||
syncCompletedSession(session, gymName, attemptCount)
|
syncCompletedSession(session, gymName, attemptCount)
|
||||||
} else {
|
} else {
|
||||||
val reason =
|
val reason =
|
||||||
@@ -276,7 +275,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
!isReady() -> "Health Connect not ready"
|
!isReady() -> "Health Connect not ready"
|
||||||
else -> "unknown reason"
|
else -> "unknown reason"
|
||||||
}
|
}
|
||||||
Log.d(TAG, "Auto-sync skipped for session '${session.id}': $reason")
|
AppLogger.d(TAG) { "Auto-sync skipped for session '${session.id}': $reason" }
|
||||||
Result.success(Unit)
|
Result.success(Unit)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -328,7 +327,7 @@ class HealthConnectManager(private val context: Context) {
|
|||||||
samples = samples
|
samples = samples
|
||||||
)
|
)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Error creating heart rate record", e)
|
AppLogger.e(TAG, e) { "Error creating heart rate record" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import com.atridad.ascently.data.format.DeletedItem
|
|||||||
import com.atridad.ascently.data.model.*
|
import com.atridad.ascently.data.model.*
|
||||||
import com.atridad.ascently.data.state.DataStateManager
|
import com.atridad.ascently.data.state.DataStateManager
|
||||||
import com.atridad.ascently.utils.DateFormatUtils
|
import com.atridad.ascently.utils.DateFormatUtils
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import com.atridad.ascently.utils.ZipExportImportUtils
|
import com.atridad.ascently.utils.ZipExportImportUtils
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
@@ -43,11 +44,13 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
triggerAutoSync()
|
triggerAutoSync()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun updateGym(gym: Gym) {
|
suspend fun updateGym(gym: Gym) {
|
||||||
gymDao.updateGym(gym)
|
gymDao.updateGym(gym)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
triggerAutoSync()
|
triggerAutoSync()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun deleteGym(gym: Gym) {
|
suspend fun deleteGym(gym: Gym) {
|
||||||
gymDao.deleteGym(gym)
|
gymDao.deleteGym(gym)
|
||||||
trackDeletion(gym.id, "gym")
|
trackDeletion(gym.id, "gym")
|
||||||
@@ -63,10 +66,12 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
problemDao.insertProblem(problem)
|
problemDao.insertProblem(problem)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun updateProblem(problem: Problem) {
|
suspend fun updateProblem(problem: Problem) {
|
||||||
problemDao.updateProblem(problem)
|
problemDao.updateProblem(problem)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun deleteProblem(problem: Problem) {
|
suspend fun deleteProblem(problem: Problem) {
|
||||||
problemDao.deleteProblem(problem)
|
problemDao.deleteProblem(problem)
|
||||||
trackDeletion(problem.id, "problem")
|
trackDeletion(problem.id, "problem")
|
||||||
@@ -78,6 +83,7 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
suspend fun getSessionById(id: String): ClimbSession? = sessionDao.getSessionById(id)
|
suspend fun getSessionById(id: String): ClimbSession? = sessionDao.getSessionById(id)
|
||||||
fun getSessionsByGym(gymId: String): Flow<List<ClimbSession>> =
|
fun getSessionsByGym(gymId: String): Flow<List<ClimbSession>> =
|
||||||
sessionDao.getSessionsByGym(gymId)
|
sessionDao.getSessionsByGym(gymId)
|
||||||
|
|
||||||
suspend fun getActiveSession(): ClimbSession? = sessionDao.getActiveSession()
|
suspend fun getActiveSession(): ClimbSession? = sessionDao.getActiveSession()
|
||||||
fun getActiveSessionFlow(): Flow<ClimbSession?> = sessionDao.getActiveSessionFlow()
|
fun getActiveSessionFlow(): Flow<ClimbSession?> = sessionDao.getActiveSessionFlow()
|
||||||
suspend fun insertSession(session: ClimbSession) {
|
suspend fun insertSession(session: ClimbSession) {
|
||||||
@@ -88,6 +94,7 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
triggerAutoSync()
|
triggerAutoSync()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun updateSession(session: ClimbSession) {
|
suspend fun updateSession(session: ClimbSession) {
|
||||||
sessionDao.updateSession(session)
|
sessionDao.updateSession(session)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
@@ -96,12 +103,14 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
triggerAutoSync()
|
triggerAutoSync()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun deleteSession(session: ClimbSession) {
|
suspend fun deleteSession(session: ClimbSession) {
|
||||||
sessionDao.deleteSession(session)
|
sessionDao.deleteSession(session)
|
||||||
trackDeletion(session.id, "session")
|
trackDeletion(session.id, "session")
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
triggerAutoSync()
|
triggerAutoSync()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getLastUsedGym(): Gym? {
|
suspend fun getLastUsedGym(): Gym? {
|
||||||
val recentSessions = sessionDao.getRecentSessions(1).first()
|
val recentSessions = sessionDao.getRecentSessions(1).first()
|
||||||
return if (recentSessions.isNotEmpty()) {
|
return if (recentSessions.isNotEmpty()) {
|
||||||
@@ -115,16 +124,20 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
fun getAllAttempts(): Flow<List<Attempt>> = attemptDao.getAllAttempts()
|
fun getAllAttempts(): Flow<List<Attempt>> = attemptDao.getAllAttempts()
|
||||||
fun getAttemptsBySession(sessionId: String): Flow<List<Attempt>> =
|
fun getAttemptsBySession(sessionId: String): Flow<List<Attempt>> =
|
||||||
attemptDao.getAttemptsBySession(sessionId)
|
attemptDao.getAttemptsBySession(sessionId)
|
||||||
|
|
||||||
fun getAttemptsByProblem(problemId: String): Flow<List<Attempt>> =
|
fun getAttemptsByProblem(problemId: String): Flow<List<Attempt>> =
|
||||||
attemptDao.getAttemptsByProblem(problemId)
|
attemptDao.getAttemptsByProblem(problemId)
|
||||||
|
|
||||||
suspend fun insertAttempt(attempt: Attempt) {
|
suspend fun insertAttempt(attempt: Attempt) {
|
||||||
attemptDao.insertAttempt(attempt)
|
attemptDao.insertAttempt(attempt)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun updateAttempt(attempt: Attempt) {
|
suspend fun updateAttempt(attempt: Attempt) {
|
||||||
attemptDao.updateAttempt(attempt)
|
attemptDao.updateAttempt(attempt)
|
||||||
dataStateManager.updateDataState()
|
dataStateManager.updateDataState()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun deleteAttempt(attempt: Attempt) {
|
suspend fun deleteAttempt(attempt: Attempt) {
|
||||||
attemptDao.deleteAttempt(attempt)
|
attemptDao.deleteAttempt(attempt)
|
||||||
trackDeletion(attempt.id, "attempt")
|
trackDeletion(attempt.id, "attempt")
|
||||||
@@ -386,10 +399,10 @@ class ClimbRepository(database: AscentlyDatabase, private val context: Context)
|
|||||||
if (imagesDir.exists() && imagesDir.isDirectory) {
|
if (imagesDir.exists() && imagesDir.isDirectory) {
|
||||||
val deletedCount = imagesDir.listFiles()?.size ?: 0
|
val deletedCount = imagesDir.listFiles()?.size ?: 0
|
||||||
imagesDir.deleteRecursively()
|
imagesDir.deleteRecursively()
|
||||||
android.util.Log.i("ClimbRepository", "Cleared $deletedCount image files")
|
AppLogger.i("ClimbRepository") { "Cleared $deletedCount image files" }
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
android.util.Log.w("ClimbRepository", "Failed to clear some images: ${e.message}")
|
AppLogger.w("ClimbRepository", e) { "Failed to clear some images: ${e.message}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ package com.atridad.ascently.data.state
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.util.Log
|
|
||||||
import androidx.core.content.edit
|
import androidx.core.content.edit
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import com.atridad.ascently.utils.DateFormatUtils
|
import com.atridad.ascently.utils.DateFormatUtils
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -26,7 +26,7 @@ class DataStateManager(context: Context) {
|
|||||||
if (!isInitialized()) {
|
if (!isInitialized()) {
|
||||||
updateDataState()
|
updateDataState()
|
||||||
markAsInitialized()
|
markAsInitialized()
|
||||||
Log.d(TAG, "DataStateManager initialized with timestamp: ${getLastModified()}")
|
AppLogger.d(TAG) { "DataStateManager initialized with timestamp: ${getLastModified()}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ class DataStateManager(context: Context) {
|
|||||||
fun updateDataState() {
|
fun updateDataState() {
|
||||||
val now = DateFormatUtils.nowISO8601()
|
val now = DateFormatUtils.nowISO8601()
|
||||||
prefs.edit { putString(KEY_LAST_MODIFIED, now) }
|
prefs.edit { putString(KEY_LAST_MODIFIED, now) }
|
||||||
Log.d(TAG, "Data state updated to: $now")
|
AppLogger.d(TAG) { "Data state updated to: $now" }
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ import android.content.Context
|
|||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.net.ConnectivityManager
|
import android.net.ConnectivityManager
|
||||||
import android.net.NetworkCapabilities
|
import android.net.NetworkCapabilities
|
||||||
import android.util.Log
|
|
||||||
import androidx.annotation.RequiresPermission
|
import androidx.annotation.RequiresPermission
|
||||||
import androidx.core.content.edit
|
import androidx.core.content.edit
|
||||||
import com.atridad.ascently.data.format.BackupAttempt
|
import com.atridad.ascently.data.format.BackupAttempt
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import com.atridad.ascently.data.format.BackupClimbSession
|
import com.atridad.ascently.data.format.BackupClimbSession
|
||||||
import com.atridad.ascently.data.format.BackupGym
|
import com.atridad.ascently.data.format.BackupGym
|
||||||
import com.atridad.ascently.data.format.BackupProblem
|
import com.atridad.ascently.data.format.BackupProblem
|
||||||
@@ -164,12 +164,12 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
@RequiresPermission(android.Manifest.permission.ACCESS_NETWORK_STATE)
|
@RequiresPermission(android.Manifest.permission.ACCESS_NETWORK_STATE)
|
||||||
suspend fun syncWithServer() {
|
suspend fun syncWithServer() {
|
||||||
if (isOfflineMode) {
|
if (isOfflineMode) {
|
||||||
Log.d(TAG, "Sync skipped: Offline mode is enabled.")
|
AppLogger.d(TAG) { "Sync skipped: Offline mode is enabled." }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (!isNetworkAvailable()) {
|
if (!isNetworkAvailable()) {
|
||||||
_syncError.value = "No internet connection."
|
_syncError.value = "No internet connection."
|
||||||
Log.d(TAG, "Sync skipped: No internet connection.")
|
AppLogger.d(TAG) { "Sync skipped: No internet connection." }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (!_isConfigured.value) {
|
if (!_isConfigured.value) {
|
||||||
@@ -202,29 +202,32 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
// If both client and server have been synced before, use delta sync
|
// If both client and server have been synced before, use delta sync
|
||||||
val lastSyncTimeStr = sharedPreferences.getString(Keys.LAST_SYNC_TIME, null)
|
val lastSyncTimeStr = sharedPreferences.getString(Keys.LAST_SYNC_TIME, null)
|
||||||
if (hasLocalData && hasServerData && lastSyncTimeStr != null) {
|
if (hasLocalData && hasServerData && lastSyncTimeStr != null) {
|
||||||
Log.d(TAG, "Using delta sync for incremental updates")
|
AppLogger.d(TAG) { "Using delta sync for incremental updates" }
|
||||||
performDeltaSync(lastSyncTimeStr)
|
performDeltaSync(lastSyncTimeStr)
|
||||||
} else {
|
} else {
|
||||||
when {
|
when {
|
||||||
!hasLocalData && hasServerData -> {
|
!hasLocalData && hasServerData -> {
|
||||||
Log.d(TAG, "No local data found, performing full restore from server")
|
AppLogger.d(TAG) { "No local data found, performing full restore from server" }
|
||||||
val imagePathMapping = syncImagesFromServer(serverBackup)
|
val imagePathMapping = syncImagesFromServer(serverBackup)
|
||||||
importBackupToRepository(serverBackup, imagePathMapping)
|
importBackupToRepository(serverBackup, imagePathMapping)
|
||||||
Log.d(TAG, "Full restore completed")
|
AppLogger.d(TAG) { "Full restore completed" }
|
||||||
}
|
}
|
||||||
|
|
||||||
hasLocalData && !hasServerData -> {
|
hasLocalData && !hasServerData -> {
|
||||||
Log.d(TAG, "No server data found, uploading local data to server")
|
AppLogger.d(TAG) { "No server data found, uploading local data to server" }
|
||||||
uploadData(localBackup)
|
uploadData(localBackup)
|
||||||
syncImagesForBackup(localBackup)
|
syncImagesForBackup(localBackup)
|
||||||
Log.d(TAG, "Initial upload completed")
|
AppLogger.d(TAG) { "Initial upload completed" }
|
||||||
}
|
}
|
||||||
|
|
||||||
hasLocalData && hasServerData -> {
|
hasLocalData && hasServerData -> {
|
||||||
Log.d(TAG, "Both local and server data exist, merging (server wins)")
|
AppLogger.d(TAG) { "Both local and server data exist, merging (server wins)" }
|
||||||
mergeDataSafely(serverBackup)
|
mergeDataSafely(serverBackup)
|
||||||
Log.d(TAG, "Merge completed")
|
AppLogger.d(TAG) { "Merge completed" }
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
Log.d(TAG, "No data to sync")
|
AppLogger.d(TAG) { "No data to sync" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -242,7 +245,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun performDeltaSync(lastSyncTimeStr: String) {
|
private suspend fun performDeltaSync(lastSyncTimeStr: String) {
|
||||||
Log.d(TAG, "Starting delta sync with lastSyncTime=$lastSyncTimeStr")
|
AppLogger.d(TAG) { "Starting delta sync with lastSyncTime=$lastSyncTimeStr" }
|
||||||
|
|
||||||
// Parse last sync time to filter modified items
|
// Parse last sync time to filter modified items
|
||||||
val lastSyncDate = parseISO8601(lastSyncTimeStr) ?: Date(0)
|
val lastSyncDate = parseISO8601(lastSyncTimeStr) ?: Date(0)
|
||||||
@@ -295,10 +298,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
parseISO8601(item.deletedAt)?.after(lastSyncDate) == true
|
parseISO8601(item.deletedAt)?.after(lastSyncDate) == true
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d(
|
AppLogger.d(TAG) {
|
||||||
TAG,
|
|
||||||
"Delta sync sending: gyms=${modifiedGyms.size}, problems=${modifiedProblems.size}, sessions=${modifiedSessions.size}, attempts=${modifiedAttempts.size}, deletions=${modifiedDeletions.size}"
|
"Delta sync sending: gyms=${modifiedGyms.size}, problems=${modifiedProblems.size}, sessions=${modifiedSessions.size}, attempts=${modifiedAttempts.size}, deletions=${modifiedDeletions.size}"
|
||||||
)
|
}
|
||||||
|
|
||||||
// Create delta request
|
// Create delta request
|
||||||
val deltaRequest =
|
val deltaRequest =
|
||||||
@@ -342,10 +344,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d(
|
AppLogger.d(TAG) {
|
||||||
TAG,
|
|
||||||
"Delta sync received: gyms=${deltaResponse.gyms.size}, problems=${deltaResponse.problems.size}, sessions=${deltaResponse.sessions.size}, attempts=${deltaResponse.attempts.size}, deletions=${deltaResponse.deletedItems.size}"
|
"Delta sync received: gyms=${deltaResponse.gyms.size}, problems=${deltaResponse.problems.size}, sessions=${deltaResponse.sessions.size}, attempts=${deltaResponse.attempts.size}, deletions=${deltaResponse.deletedItems.size}"
|
||||||
)
|
}
|
||||||
|
|
||||||
// Apply server changes to local data
|
// Apply server changes to local data
|
||||||
applyDeltaResponse(deltaResponse)
|
applyDeltaResponse(deltaResponse)
|
||||||
@@ -368,9 +369,22 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
repository.setAutoSyncCallback(null)
|
repository.setAutoSyncCallback(null)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// Merge and apply deletions first to prevent resurrection
|
||||||
|
val allDeletions = repository.getDeletedItems() + response.deletedItems
|
||||||
|
val uniqueDeletions = allDeletions.distinctBy { "${it.type}:${it.id}" }
|
||||||
|
|
||||||
|
AppLogger.d(TAG) { "Applying ${uniqueDeletions.size} deletion records before merging data" }
|
||||||
|
applyDeletions(uniqueDeletions)
|
||||||
|
|
||||||
|
// Build deleted item lookup set
|
||||||
|
val deletedItemSet = uniqueDeletions.map { "${it.type}:${it.id}" }.toSet()
|
||||||
|
|
||||||
// Download images for new/modified problems from server
|
// Download images for new/modified problems from server
|
||||||
val imagePathMapping = mutableMapOf<String, String>()
|
val imagePathMapping = mutableMapOf<String, String>()
|
||||||
for (problem in response.problems) {
|
for (problem in response.problems) {
|
||||||
|
if (deletedItemSet.contains("problem:${problem.id}")) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
problem.imagePaths?.forEach { imagePath ->
|
problem.imagePaths?.forEach { imagePath ->
|
||||||
val serverFilename = imagePath.substringAfterLast('/')
|
val serverFilename = imagePath.substringAfterLast('/')
|
||||||
try {
|
try {
|
||||||
@@ -379,14 +393,17 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
imagePathMapping[imagePath] = localImagePath
|
imagePathMapping[imagePath] = localImagePath
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Failed to download image $imagePath: ${e.message}")
|
AppLogger.w(TAG) { "Failed to download image $imagePath: ${e.message}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Merge gyms - check if exists and compare timestamps
|
// Merge gyms
|
||||||
val existingGyms = repository.getAllGyms().first()
|
val existingGyms = repository.getAllGyms().first()
|
||||||
for (backupGym in response.gyms) {
|
for (backupGym in response.gyms) {
|
||||||
|
if (deletedItemSet.contains("gym:${backupGym.id}")) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
val existing = existingGyms.find { it.id == backupGym.id }
|
val existing = existingGyms.find { it.id == backupGym.id }
|
||||||
if (existing == null || backupGym.updatedAt >= existing.updatedAt) {
|
if (existing == null || backupGym.updatedAt >= existing.updatedAt) {
|
||||||
val gym = backupGym.toGym()
|
val gym = backupGym.toGym()
|
||||||
@@ -401,6 +418,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
// Merge problems
|
// Merge problems
|
||||||
val existingProblems = repository.getAllProblems().first()
|
val existingProblems = repository.getAllProblems().first()
|
||||||
for (backupProblem in response.problems) {
|
for (backupProblem in response.problems) {
|
||||||
|
if (deletedItemSet.contains("problem:${backupProblem.id}")) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
val updatedImagePaths =
|
val updatedImagePaths =
|
||||||
backupProblem.imagePaths?.map { oldPath ->
|
backupProblem.imagePaths?.map { oldPath ->
|
||||||
imagePathMapping[oldPath] ?: oldPath
|
imagePathMapping[oldPath] ?: oldPath
|
||||||
@@ -421,6 +441,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
// Merge sessions
|
// Merge sessions
|
||||||
val existingSessions = repository.getAllSessions().first()
|
val existingSessions = repository.getAllSessions().first()
|
||||||
for (backupSession in response.sessions) {
|
for (backupSession in response.sessions) {
|
||||||
|
if (deletedItemSet.contains("session:${backupSession.id}")) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
val session = backupSession.toClimbSession()
|
val session = backupSession.toClimbSession()
|
||||||
val existing = existingSessions.find { it.id == backupSession.id }
|
val existing = existingSessions.find { it.id == backupSession.id }
|
||||||
if (existing == null || backupSession.updatedAt >= existing.updatedAt) {
|
if (existing == null || backupSession.updatedAt >= existing.updatedAt) {
|
||||||
@@ -435,6 +458,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
// Merge attempts
|
// Merge attempts
|
||||||
val existingAttempts = repository.getAllAttempts().first()
|
val existingAttempts = repository.getAllAttempts().first()
|
||||||
for (backupAttempt in response.attempts) {
|
for (backupAttempt in response.attempts) {
|
||||||
|
if (deletedItemSet.contains("attempt:${backupAttempt.id}")) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
val attempt = backupAttempt.toAttempt()
|
val attempt = backupAttempt.toAttempt()
|
||||||
val existing = existingAttempts.find { it.id == backupAttempt.id }
|
val existing = existingAttempts.find { it.id == backupAttempt.id }
|
||||||
if (existing == null || backupAttempt.createdAt >= existing.createdAt) {
|
if (existing == null || backupAttempt.createdAt >= existing.createdAt) {
|
||||||
@@ -446,15 +472,12 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply deletions
|
// Apply deletions again for safety
|
||||||
applyDeletions(response.deletedItems)
|
applyDeletions(uniqueDeletions)
|
||||||
|
|
||||||
// Update deletion records
|
// Update deletion records
|
||||||
val allDeletions = repository.getDeletedItems() + response.deletedItems
|
|
||||||
repository.clearDeletedItems()
|
repository.clearDeletedItems()
|
||||||
allDeletions.distinctBy { "${it.type}:${it.id}" }.forEach {
|
uniqueDeletions.forEach { repository.trackDeletion(it.id, it.type) }
|
||||||
repository.trackDeletion(it.id, it.type)
|
|
||||||
}
|
|
||||||
} finally {
|
} finally {
|
||||||
// Re-enable auto-sync
|
// Re-enable auto-sync
|
||||||
repository.setAutoSyncCallback { serviceScope.launch { triggerAutoSync() } }
|
repository.setAutoSyncCallback { serviceScope.launch { triggerAutoSync() } }
|
||||||
@@ -474,12 +497,15 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
"gym" -> {
|
"gym" -> {
|
||||||
existingGyms.find { it.id == item.id }?.let { repository.deleteGym(it) }
|
existingGyms.find { it.id == item.id }?.let { repository.deleteGym(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
"problem" -> {
|
"problem" -> {
|
||||||
existingProblems.find { it.id == item.id }?.let { repository.deleteProblem(it) }
|
existingProblems.find { it.id == item.id }?.let { repository.deleteProblem(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
"session" -> {
|
"session" -> {
|
||||||
existingSessions.find { it.id == item.id }?.let { repository.deleteSession(it) }
|
existingSessions.find { it.id == item.id }?.let { repository.deleteSession(it) }
|
||||||
}
|
}
|
||||||
|
|
||||||
"attempt" -> {
|
"attempt" -> {
|
||||||
existingAttempts.find { it.id == item.id }?.let { repository.deleteAttempt(it) }
|
existingAttempts.find { it.id == item.id }?.let { repository.deleteAttempt(it) }
|
||||||
}
|
}
|
||||||
@@ -490,7 +516,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
private suspend fun syncModifiedImages(modifiedProblems: List<BackupProblem>) {
|
private suspend fun syncModifiedImages(modifiedProblems: List<BackupProblem>) {
|
||||||
if (modifiedProblems.isEmpty()) return
|
if (modifiedProblems.isEmpty()) return
|
||||||
|
|
||||||
Log.d(TAG, "Syncing images for ${modifiedProblems.size} modified problems")
|
AppLogger.d(TAG) { "Syncing images for ${modifiedProblems.size} modified problems" }
|
||||||
|
|
||||||
for (backupProblem in modifiedProblems) {
|
for (backupProblem in modifiedProblems) {
|
||||||
backupProblem.imagePaths?.forEach { imagePath ->
|
backupProblem.imagePaths?.forEach { imagePath ->
|
||||||
@@ -542,7 +568,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
Request.Builder()
|
Request.Builder()
|
||||||
.url("$serverUrl/sync")
|
.url("$serverUrl/sync")
|
||||||
.header("Authorization", "Bearer $authToken")
|
.header("Authorization", "Bearer $authToken")
|
||||||
.post(requestBody)
|
.put(requestBody)
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
@@ -561,7 +587,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
private suspend fun syncImagesFromServer(backup: ClimbDataBackup): Map<String, String> {
|
private suspend fun syncImagesFromServer(backup: ClimbDataBackup): Map<String, String> {
|
||||||
val imagePathMapping = mutableMapOf<String, String>()
|
val imagePathMapping = mutableMapOf<String, String>()
|
||||||
val totalImages = backup.problems.sumOf { it.imagePaths?.size ?: 0 }
|
val totalImages = backup.problems.sumOf { it.imagePaths?.size ?: 0 }
|
||||||
Log.d(TAG, "Starting image download from server for $totalImages images")
|
AppLogger.d(TAG) { "Starting image download from server for $totalImages images" }
|
||||||
|
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
backup.problems.forEach { problem ->
|
backup.problems.forEach { problem ->
|
||||||
@@ -573,9 +599,9 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
imagePathMapping[imagePath] = localImagePath
|
imagePathMapping[imagePath] = localImagePath
|
||||||
}
|
}
|
||||||
} catch (_: SyncException.ImageNotFound) {
|
} catch (_: SyncException.ImageNotFound) {
|
||||||
Log.w(TAG, "Image not found on server: $imagePath")
|
AppLogger.w(TAG) { "Image not found on server: $imagePath" }
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "Failed to download image $imagePath: ${e.message}")
|
AppLogger.w(TAG) { "Failed to download image $imagePath: ${e.message}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -603,14 +629,14 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Log.e(TAG, "Network error downloading image $serverFilename", e)
|
AppLogger.e(TAG, e) { "Network error downloading image $serverFilename" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun syncImagesForBackup(backup: ClimbDataBackup) {
|
private suspend fun syncImagesForBackup(backup: ClimbDataBackup) {
|
||||||
Log.d(TAG, "Starting image sync for backup with ${backup.problems.size} problems")
|
AppLogger.d(TAG) { "Starting image sync for backup with ${backup.problems.size} problems" }
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
backup.problems.forEach { problem ->
|
backup.problems.forEach { problem ->
|
||||||
problem.imagePaths?.forEach { localPath ->
|
problem.imagePaths?.forEach { localPath ->
|
||||||
@@ -624,7 +650,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
private suspend fun uploadImage(localPath: String, filename: String) {
|
private suspend fun uploadImage(localPath: String, filename: String) {
|
||||||
val file = ImageUtils.getImageFile(context, localPath)
|
val file = ImageUtils.getImageFile(context, localPath)
|
||||||
if (!file.exists()) {
|
if (!file.exists()) {
|
||||||
Log.w(TAG, "Local image file not found, cannot upload: $localPath")
|
AppLogger.w(TAG) { "Local image file not found, cannot upload: $localPath" }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -641,16 +667,15 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
try {
|
try {
|
||||||
httpClient.newCall(request).execute().use { response ->
|
httpClient.newCall(request).execute().use { response ->
|
||||||
if (response.isSuccessful) {
|
if (response.isSuccessful) {
|
||||||
Log.d(TAG, "Successfully uploaded image: $filename")
|
AppLogger.d(TAG) { "Successfully uploaded image: $filename" }
|
||||||
} else {
|
} else {
|
||||||
Log.w(
|
AppLogger.w(TAG) {
|
||||||
TAG,
|
|
||||||
"Failed to upload image $filename. Server responded with ${response.code}"
|
"Failed to upload image $filename. Server responded with ${response.code}"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: IOException) {
|
} catch (e: IOException) {
|
||||||
Log.e(TAG, "Network error uploading image $filename", e)
|
AppLogger.e(TAG, e) { "Network error uploading image $filename" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -715,7 +740,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun mergeDataSafely(serverBackup: ClimbDataBackup) {
|
private suspend fun mergeDataSafely(serverBackup: ClimbDataBackup) {
|
||||||
Log.d(TAG, "Server data will overwrite local data. Performing full restore.")
|
AppLogger.d(TAG) { "Server data will overwrite local data. Performing full restore." }
|
||||||
val imagePathMapping = syncImagesFromServer(serverBackup)
|
val imagePathMapping = syncImagesFromServer(serverBackup)
|
||||||
importBackupToRepository(serverBackup, imagePathMapping)
|
importBackupToRepository(serverBackup, imagePathMapping)
|
||||||
}
|
}
|
||||||
@@ -776,7 +801,7 @@ class SyncService(private val context: Context, private val repository: ClimbRep
|
|||||||
try {
|
try {
|
||||||
syncWithServer()
|
syncWithServer()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e(TAG, "Auto-sync failed", e)
|
AppLogger.e(TAG, e) { "Auto-sync failed" }
|
||||||
}
|
}
|
||||||
if (pendingChanges) {
|
if (pendingChanges) {
|
||||||
pendingChanges = false
|
pendingChanges = false
|
||||||
@@ -811,5 +836,6 @@ sealed class SyncException(message: String) : IOException(message), Serializable
|
|||||||
data class ServerError(val code: Int) : SyncException("Server error: HTTP $code")
|
data class ServerError(val code: Int) : SyncException("Server error: HTTP $code")
|
||||||
data class InvalidResponse(val details: String) :
|
data class InvalidResponse(val details: String) :
|
||||||
SyncException("Invalid server response: $details")
|
SyncException("Invalid server response: $details")
|
||||||
|
|
||||||
data class NetworkError(val details: String) : SyncException("Network error: $details")
|
data class NetworkError(val details: String) : SyncException("Network error: $details")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,16 +6,21 @@ import android.app.PendingIntent
|
|||||||
import android.app.Service
|
import android.app.Service
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
|
import android.os.Build
|
||||||
|
import android.os.Bundle
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import androidx.core.app.NotificationCompat
|
import androidx.core.app.NotificationCompat
|
||||||
import com.atridad.ascently.MainActivity
|
import com.atridad.ascently.MainActivity
|
||||||
import com.atridad.ascently.R
|
import com.atridad.ascently.R
|
||||||
import com.atridad.ascently.data.database.AscentlyDatabase
|
import com.atridad.ascently.data.database.AscentlyDatabase
|
||||||
import com.atridad.ascently.data.repository.ClimbRepository
|
import com.atridad.ascently.data.repository.ClimbRepository
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
|
import com.atridad.ascently.widget.ClimbStatsWidgetProvider
|
||||||
|
import java.time.LocalDateTime
|
||||||
|
import java.time.ZoneId
|
||||||
|
import java.time.temporal.ChronoUnit
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import kotlinx.coroutines.flow.firstOrNull
|
import kotlinx.coroutines.flow.firstOrNull
|
||||||
import java.time.LocalDateTime
|
|
||||||
import java.time.temporal.ChronoUnit
|
|
||||||
import kotlinx.coroutines.runBlocking
|
import kotlinx.coroutines.runBlocking
|
||||||
|
|
||||||
class SessionTrackingService : Service() {
|
class SessionTrackingService : Service() {
|
||||||
@@ -28,6 +33,7 @@ class SessionTrackingService : Service() {
|
|||||||
private lateinit var notificationManager: NotificationManager
|
private lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
private const val LOG_TAG = "SessionTrackingService"
|
||||||
const val NOTIFICATION_ID = 1001
|
const val NOTIFICATION_ID = 1001
|
||||||
const val CHANNEL_ID = "session_tracking_channel"
|
const val CHANNEL_ID = "session_tracking_channel"
|
||||||
const val ACTION_START_SESSION = "start_session"
|
const val ACTION_START_SESSION = "start_session"
|
||||||
@@ -67,16 +73,24 @@ class SessionTrackingService : Service() {
|
|||||||
startSessionTracking(sessionId)
|
startSessionTracking(sessionId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ACTION_STOP_SESSION -> {
|
ACTION_STOP_SESSION -> {
|
||||||
val sessionId = intent.getStringExtra(EXTRA_SESSION_ID)
|
val sessionId = intent.getStringExtra(EXTRA_SESSION_ID)
|
||||||
serviceScope.launch {
|
serviceScope.launch {
|
||||||
try {
|
try {
|
||||||
val targetSession = when {
|
val targetSession =
|
||||||
|
when {
|
||||||
sessionId != null -> repository.getSessionById(sessionId)
|
sessionId != null -> repository.getSessionById(sessionId)
|
||||||
else -> repository.getActiveSession()
|
else -> repository.getActiveSession()
|
||||||
}
|
}
|
||||||
if (targetSession != null && targetSession.status == com.atridad.ascently.data.model.SessionStatus.ACTIVE) {
|
if (targetSession != null &&
|
||||||
val completed = with(com.atridad.ascently.data.model.ClimbSession) { targetSession.complete() }
|
targetSession.status ==
|
||||||
|
com.atridad.ascently.data.model.SessionStatus.ACTIVE
|
||||||
|
) {
|
||||||
|
val completed =
|
||||||
|
with(com.atridad.ascently.data.model.ClimbSession) {
|
||||||
|
targetSession.complete()
|
||||||
|
}
|
||||||
repository.updateSession(completed)
|
repository.updateSession(completed)
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
@@ -97,11 +111,14 @@ class SessionTrackingService : Service() {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
createAndShowNotification(sessionId)
|
createAndShowNotification(sessionId)
|
||||||
|
// Update widget when session tracking starts
|
||||||
|
ClimbStatsWidgetProvider.updateAllWidgets(this)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e(LOG_TAG, e) { "Failed to initialize session tracking notification" }
|
||||||
}
|
}
|
||||||
|
|
||||||
notificationJob = serviceScope.launch {
|
notificationJob =
|
||||||
|
serviceScope.launch {
|
||||||
try {
|
try {
|
||||||
if (!isNotificationActive()) {
|
if (!isNotificationActive()) {
|
||||||
delay(1000L)
|
delay(1000L)
|
||||||
@@ -113,11 +130,12 @@ class SessionTrackingService : Service() {
|
|||||||
updateNotification(sessionId)
|
updateNotification(sessionId)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e(LOG_TAG, e) { "Notification updater loop crashed" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
monitoringJob = serviceScope.launch {
|
monitoringJob =
|
||||||
|
serviceScope.launch {
|
||||||
try {
|
try {
|
||||||
while (isActive) {
|
while (isActive) {
|
||||||
delay(10000L)
|
delay(10000L)
|
||||||
@@ -127,13 +145,17 @@ class SessionTrackingService : Service() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val session = repository.getSessionById(sessionId)
|
val session = repository.getSessionById(sessionId)
|
||||||
if (session == null || session.status != com.atridad.ascently.data.model.SessionStatus.ACTIVE) {
|
if (session == null ||
|
||||||
|
session.status !=
|
||||||
|
com.atridad.ascently.data.model.SessionStatus
|
||||||
|
.ACTIVE
|
||||||
|
) {
|
||||||
stopSessionTracking()
|
stopSessionTracking()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e(LOG_TAG, e) { "Session monitoring loop crashed" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -143,6 +165,8 @@ class SessionTrackingService : Service() {
|
|||||||
monitoringJob?.cancel()
|
monitoringJob?.cancel()
|
||||||
stopForeground(STOP_FOREGROUND_REMOVE)
|
stopForeground(STOP_FOREGROUND_REMOVE)
|
||||||
stopSelf()
|
stopSelf()
|
||||||
|
// Update widget when session tracking stops
|
||||||
|
ClimbStatsWidgetProvider.updateAllWidgets(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun isNotificationActive(): Boolean {
|
private fun isNotificationActive(): Boolean {
|
||||||
@@ -157,14 +181,16 @@ class SessionTrackingService : Service() {
|
|||||||
private suspend fun updateNotification(sessionId: String) {
|
private suspend fun updateNotification(sessionId: String) {
|
||||||
try {
|
try {
|
||||||
createAndShowNotification(sessionId)
|
createAndShowNotification(sessionId)
|
||||||
|
// Update widget when notification updates
|
||||||
|
ClimbStatsWidgetProvider.updateAllWidgets(this)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e(LOG_TAG, e) { "Failed to update notification; retrying in 10s" }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
delay(10000L)
|
delay(10000L)
|
||||||
createAndShowNotification(sessionId)
|
createAndShowNotification(sessionId)
|
||||||
} catch (retryException: Exception) {
|
} catch (retryException: Exception) {
|
||||||
retryException.printStackTrace()
|
AppLogger.e(LOG_TAG, retryException) { "Retrying notification update failed" }
|
||||||
stopSessionTracking()
|
stopSessionTracking()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -172,44 +198,22 @@ class SessionTrackingService : Service() {
|
|||||||
|
|
||||||
private fun createAndShowNotification(sessionId: String) {
|
private fun createAndShowNotification(sessionId: String) {
|
||||||
try {
|
try {
|
||||||
val session = runBlocking {
|
val session = runBlocking { repository.getSessionById(sessionId) }
|
||||||
repository.getSessionById(sessionId)
|
if (session == null ||
|
||||||
}
|
session.status != com.atridad.ascently.data.model.SessionStatus.ACTIVE
|
||||||
if (session == null || session.status != com.atridad.ascently.data.model.SessionStatus.ACTIVE) {
|
) {
|
||||||
stopSessionTracking()
|
stopSessionTracking()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
val gym = runBlocking {
|
val gym = runBlocking { repository.getGymById(session.gymId) }
|
||||||
repository.getGymById(session.gymId)
|
|
||||||
}
|
|
||||||
|
|
||||||
val attempts = runBlocking {
|
val attempts = runBlocking {
|
||||||
repository.getAttemptsBySession(sessionId).firstOrNull() ?: emptyList()
|
repository.getAttemptsBySession(sessionId).firstOrNull() ?: emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
val duration = session.startTime?.let { startTime ->
|
val notificationBuilder =
|
||||||
try {
|
NotificationCompat.Builder(this, CHANNEL_ID)
|
||||||
val start = LocalDateTime.parse(startTime)
|
|
||||||
val now = LocalDateTime.now()
|
|
||||||
val totalSeconds = ChronoUnit.SECONDS.between(start, now)
|
|
||||||
val hours = totalSeconds / 3600
|
|
||||||
val minutes = (totalSeconds % 3600) / 60
|
|
||||||
val seconds = totalSeconds % 60
|
|
||||||
|
|
||||||
when {
|
|
||||||
hours > 0 -> "${hours}h ${minutes}m ${seconds}s"
|
|
||||||
minutes > 0 -> "${minutes}m ${seconds}s"
|
|
||||||
else -> "${totalSeconds}s"
|
|
||||||
}
|
|
||||||
} catch (_: Exception) {
|
|
||||||
"Active"
|
|
||||||
}
|
|
||||||
} ?: "Active"
|
|
||||||
|
|
||||||
val notification = NotificationCompat.Builder(this, CHANNEL_ID)
|
|
||||||
.setContentTitle("Climbing Session Active")
|
|
||||||
.setContentText("${gym?.name ?: "Gym"} • $duration • ${attempts.size} attempts")
|
|
||||||
.setSmallIcon(R.drawable.ic_mountains)
|
.setSmallIcon(R.drawable.ic_mountains)
|
||||||
.setOngoing(true)
|
.setOngoing(true)
|
||||||
.setAutoCancel(false)
|
.setAutoCancel(false)
|
||||||
@@ -227,20 +231,77 @@ class SessionTrackingService : Service() {
|
|||||||
"End Session",
|
"End Session",
|
||||||
createStopPendingIntent(sessionId)
|
createStopPendingIntent(sessionId)
|
||||||
)
|
)
|
||||||
.build()
|
|
||||||
|
// Use Live Update
|
||||||
|
if (Build.VERSION.SDK_INT >= 36) {
|
||||||
|
val startTimeMillis =
|
||||||
|
session.startTime?.let { startTime ->
|
||||||
|
try {
|
||||||
|
val start = LocalDateTime.parse(startTime)
|
||||||
|
val zoneId = ZoneId.systemDefault()
|
||||||
|
start.atZone(zoneId).toInstant().toEpochMilli()
|
||||||
|
} catch (_: Exception) {
|
||||||
|
System.currentTimeMillis()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?: System.currentTimeMillis()
|
||||||
|
|
||||||
|
notificationBuilder
|
||||||
|
.setContentTitle("Climbing Session Active")
|
||||||
|
.setContentText(
|
||||||
|
"${gym?.name ?: "Gym"} • ${attempts.size} attempts"
|
||||||
|
)
|
||||||
|
.setWhen(startTimeMillis)
|
||||||
|
.setUsesChronometer(true)
|
||||||
|
.setShowWhen(true)
|
||||||
|
|
||||||
|
val extras = Bundle()
|
||||||
|
extras.putBoolean("android.extra.REQUEST_PROMOTED_ONGOING", true)
|
||||||
|
notificationBuilder.setExtras(extras)
|
||||||
|
} else {
|
||||||
|
// Fallback for older versions
|
||||||
|
val duration =
|
||||||
|
session.startTime?.let { startTime ->
|
||||||
|
try {
|
||||||
|
val start = LocalDateTime.parse(startTime)
|
||||||
|
val now = LocalDateTime.now()
|
||||||
|
val totalSeconds = ChronoUnit.SECONDS.between(start, now)
|
||||||
|
val hours = totalSeconds / 3600
|
||||||
|
val minutes = (totalSeconds % 3600) / 60
|
||||||
|
val seconds = totalSeconds % 60
|
||||||
|
|
||||||
|
when {
|
||||||
|
hours > 0 -> "${hours}h ${minutes}m ${seconds}s"
|
||||||
|
minutes > 0 -> "${minutes}m ${seconds}s"
|
||||||
|
else -> "${totalSeconds}s"
|
||||||
|
}
|
||||||
|
} catch (_: Exception) {
|
||||||
|
"Active"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?: "Active"
|
||||||
|
|
||||||
|
notificationBuilder
|
||||||
|
.setContentTitle("Climbing Session Active")
|
||||||
|
.setContentText(
|
||||||
|
"${gym?.name ?: "Gym"} • $duration • ${attempts.size} attempts"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
val notification = notificationBuilder.build()
|
||||||
|
|
||||||
startForeground(NOTIFICATION_ID, notification)
|
startForeground(NOTIFICATION_ID, notification)
|
||||||
|
|
||||||
notificationManager.notify(NOTIFICATION_ID, notification)
|
notificationManager.notify(NOTIFICATION_ID, notification)
|
||||||
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e(LOG_TAG, e) { "Failed to build session tracking notification" }
|
||||||
throw e
|
throw e
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun createOpenAppIntent(): PendingIntent {
|
private fun createOpenAppIntent(): PendingIntent {
|
||||||
val intent = Intent(this, MainActivity::class.java).apply {
|
val intent =
|
||||||
|
Intent(this, MainActivity::class.java).apply {
|
||||||
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP
|
||||||
action = "OPEN_SESSION"
|
action = "OPEN_SESSION"
|
||||||
}
|
}
|
||||||
@@ -263,11 +324,13 @@ class SessionTrackingService : Service() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun createNotificationChannel() {
|
private fun createNotificationChannel() {
|
||||||
val channel = NotificationChannel(
|
val channel =
|
||||||
|
NotificationChannel(
|
||||||
CHANNEL_ID,
|
CHANNEL_ID,
|
||||||
"Session Tracking",
|
"Session Tracking",
|
||||||
NotificationManager.IMPORTANCE_DEFAULT
|
NotificationManager.IMPORTANCE_DEFAULT
|
||||||
).apply {
|
)
|
||||||
|
.apply {
|
||||||
description = "Shows active climbing session information"
|
description = "Shows active climbing session information"
|
||||||
setShowBadge(false)
|
setShowBadge(false)
|
||||||
lockscreenVisibility = NotificationCompat.VISIBILITY_PUBLIC
|
lockscreenVisibility = NotificationCompat.VISIBILITY_PUBLIC
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ import com.atridad.ascently.ui.components.NotificationPermissionDialog
|
|||||||
import com.atridad.ascently.ui.screens.*
|
import com.atridad.ascently.ui.screens.*
|
||||||
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
||||||
import com.atridad.ascently.ui.viewmodel.ClimbViewModelFactory
|
import com.atridad.ascently.ui.viewmodel.ClimbViewModelFactory
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import com.atridad.ascently.utils.AppShortcutManager
|
import com.atridad.ascently.utils.AppShortcutManager
|
||||||
import com.atridad.ascently.utils.NotificationPermissionUtils
|
import com.atridad.ascently.utils.NotificationPermissionUtils
|
||||||
|
|
||||||
@@ -101,6 +102,7 @@ fun AscentlyApp(
|
|||||||
launchSingleTop = true
|
launchSingleTop = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AppShortcutManager.ACTION_END_SESSION -> {
|
AppShortcutManager.ACTION_END_SESSION -> {
|
||||||
navController.navigate(Screen.Sessions) {
|
navController.navigate(Screen.Sessions) {
|
||||||
popUpTo(0) { inclusive = true }
|
popUpTo(0) { inclusive = true }
|
||||||
@@ -114,10 +116,7 @@ fun AscentlyApp(
|
|||||||
|
|
||||||
LaunchedEffect(shortcutAction, activeSession, gyms, lastUsedGym) {
|
LaunchedEffect(shortcutAction, activeSession, gyms, lastUsedGym) {
|
||||||
if (shortcutAction == AppShortcutManager.ACTION_START_SESSION && gyms.isNotEmpty()) {
|
if (shortcutAction == AppShortcutManager.ACTION_START_SESSION && gyms.isNotEmpty()) {
|
||||||
android.util.Log.d(
|
AppLogger.d("AscentlyApp") { "Processing shortcut action: activeSession=$activeSession, gyms.size=${gyms.size}, lastUsedGymId=$lastUsedGymId, lastUsedGym=${lastUsedGym?.name}" }
|
||||||
"AscentlyApp",
|
|
||||||
"Processing shortcut action: activeSession=$activeSession, gyms.size=${gyms.size}, lastUsedGymId=$lastUsedGymId, lastUsedGym=${lastUsedGym?.name}"
|
|
||||||
)
|
|
||||||
|
|
||||||
if (activeSession == null) {
|
if (activeSession == null) {
|
||||||
if (NotificationPermissionUtils.shouldRequestNotificationPermission() &&
|
if (NotificationPermissionUtils.shouldRequestNotificationPermission() &&
|
||||||
@@ -125,14 +124,11 @@ fun AscentlyApp(
|
|||||||
context
|
context
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
android.util.Log.d("AscentlyApp", "Showing notification permission dialog")
|
AppLogger.d("AscentlyApp") { "Showing notification permission dialog" }
|
||||||
showNotificationPermissionDialog = true
|
showNotificationPermissionDialog = true
|
||||||
} else {
|
} else {
|
||||||
if (gyms.size == 1) {
|
if (gyms.size == 1) {
|
||||||
android.util.Log.d(
|
AppLogger.d("AscentlyApp") { "Starting session with single gym: ${gyms.first().name}" }
|
||||||
"AscentlyApp",
|
|
||||||
"Starting session with single gym: ${gyms.first().name}"
|
|
||||||
)
|
|
||||||
viewModel.startSession(context, gyms.first().id)
|
viewModel.startSession(context, gyms.first().id)
|
||||||
} else {
|
} else {
|
||||||
val targetGym =
|
val targetGym =
|
||||||
@@ -140,25 +136,16 @@ fun AscentlyApp(
|
|||||||
?: lastUsedGym
|
?: lastUsedGym
|
||||||
|
|
||||||
if (targetGym != null) {
|
if (targetGym != null) {
|
||||||
android.util.Log.d(
|
AppLogger.d("AscentlyApp") { "Starting session with target gym: ${targetGym.name}" }
|
||||||
"AscentlyApp",
|
|
||||||
"Starting session with target gym: ${targetGym.name}"
|
|
||||||
)
|
|
||||||
viewModel.startSession(context, targetGym.id)
|
viewModel.startSession(context, targetGym.id)
|
||||||
} else {
|
} else {
|
||||||
android.util.Log.d(
|
AppLogger.d("AscentlyApp") { "No target gym found, navigating to selection" }
|
||||||
"AscentlyApp",
|
|
||||||
"No target gym found, navigating to selection"
|
|
||||||
)
|
|
||||||
navController.navigate(Screen.AddEditSession())
|
navController.navigate(Screen.AddEditSession())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
android.util.Log.d(
|
AppLogger.d("AscentlyApp") { "Active session already exists: ${activeSession?.id}" }
|
||||||
"AscentlyApp",
|
|
||||||
"Active session already exists: ${activeSession?.id}"
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onShortcutActionProcessed()
|
onShortcutActionProcessed()
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ import androidx.compose.ui.window.Dialog
|
|||||||
import com.atridad.ascently.data.model.*
|
import com.atridad.ascently.data.model.*
|
||||||
import com.atridad.ascently.ui.components.FullscreenImageViewer
|
import com.atridad.ascently.ui.components.FullscreenImageViewer
|
||||||
import com.atridad.ascently.ui.components.ImageDisplaySection
|
import com.atridad.ascently.ui.components.ImageDisplaySection
|
||||||
|
import com.atridad.ascently.ui.components.ImagePicker
|
||||||
import com.atridad.ascently.ui.theme.CustomIcons
|
import com.atridad.ascently.ui.theme.CustomIcons
|
||||||
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
||||||
import com.atridad.ascently.utils.DateFormatUtils
|
import com.atridad.ascently.utils.DateFormatUtils
|
||||||
@@ -1489,6 +1490,7 @@ fun EnhancedAddAttemptDialog(
|
|||||||
// New problem creation state
|
// New problem creation state
|
||||||
var newProblemName by remember { mutableStateOf("") }
|
var newProblemName by remember { mutableStateOf("") }
|
||||||
var newProblemGrade by remember { mutableStateOf("") }
|
var newProblemGrade by remember { mutableStateOf("") }
|
||||||
|
var newProblemImagePaths by remember { mutableStateOf<List<String>>(emptyList()) }
|
||||||
var selectedClimbType by remember { mutableStateOf(ClimbType.BOULDER) }
|
var selectedClimbType by remember { mutableStateOf(ClimbType.BOULDER) }
|
||||||
var selectedDifficultySystem by remember {
|
var selectedDifficultySystem by remember {
|
||||||
mutableStateOf(gym.difficultySystems.firstOrNull() ?: DifficultySystem.V_SCALE)
|
mutableStateOf(gym.difficultySystems.firstOrNull() ?: DifficultySystem.V_SCALE)
|
||||||
@@ -1690,7 +1692,14 @@ fun EnhancedAddAttemptDialog(
|
|||||||
color = MaterialTheme.colorScheme.onSurface
|
color = MaterialTheme.colorScheme.onSurface
|
||||||
)
|
)
|
||||||
|
|
||||||
IconButton(onClick = { showCreateProblem = false }) {
|
IconButton(
|
||||||
|
onClick = {
|
||||||
|
showCreateProblem = false
|
||||||
|
newProblemName = ""
|
||||||
|
newProblemGrade = ""
|
||||||
|
newProblemImagePaths = emptyList()
|
||||||
|
}
|
||||||
|
) {
|
||||||
Icon(
|
Icon(
|
||||||
Icons.AutoMirrored.Filled.ArrowBack,
|
Icons.AutoMirrored.Filled.ArrowBack,
|
||||||
contentDescription = "Back",
|
contentDescription = "Back",
|
||||||
@@ -1905,6 +1914,21 @@ fun EnhancedAddAttemptDialog(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Photos Section
|
||||||
|
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||||
|
Text(
|
||||||
|
text = "Photos (Optional)",
|
||||||
|
style = MaterialTheme.typography.bodyLarge,
|
||||||
|
fontWeight = FontWeight.Medium,
|
||||||
|
color = MaterialTheme.colorScheme.onSurface
|
||||||
|
)
|
||||||
|
ImagePicker(
|
||||||
|
imageUris = newProblemImagePaths,
|
||||||
|
onImagesChanged = { newProblemImagePaths = it },
|
||||||
|
maxImages = 5
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2069,7 +2093,9 @@ fun EnhancedAddAttemptDialog(
|
|||||||
null
|
null
|
||||||
},
|
},
|
||||||
climbType = selectedClimbType,
|
climbType = selectedClimbType,
|
||||||
difficulty = difficulty
|
difficulty = difficulty,
|
||||||
|
imagePaths =
|
||||||
|
newProblemImagePaths
|
||||||
)
|
)
|
||||||
|
|
||||||
onProblemCreated(newProblem)
|
onProblemCreated(newProblem)
|
||||||
@@ -2087,6 +2113,12 @@ fun EnhancedAddAttemptDialog(
|
|||||||
notes = notes.ifBlank { null }
|
notes = notes.ifBlank { null }
|
||||||
)
|
)
|
||||||
onAttemptAdded(attempt)
|
onAttemptAdded(attempt)
|
||||||
|
|
||||||
|
// Reset form
|
||||||
|
newProblemName = ""
|
||||||
|
newProblemGrade = ""
|
||||||
|
newProblemImagePaths = emptyList()
|
||||||
|
showCreateProblem = false
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Create attempt for selected problem
|
// Create attempt for selected problem
|
||||||
|
|||||||
@@ -1,16 +1,24 @@
|
|||||||
package com.atridad.ascently.ui.screens
|
package com.atridad.ascently.ui.screens
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.compose.foundation.background
|
||||||
|
import androidx.compose.foundation.clickable
|
||||||
import androidx.compose.foundation.layout.*
|
import androidx.compose.foundation.layout.*
|
||||||
import androidx.compose.foundation.lazy.LazyColumn
|
import androidx.compose.foundation.lazy.LazyColumn
|
||||||
import androidx.compose.foundation.lazy.items
|
import androidx.compose.foundation.lazy.items
|
||||||
|
import androidx.compose.foundation.shape.CircleShape
|
||||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||||
import androidx.compose.material.icons.Icons
|
import androidx.compose.material.icons.Icons
|
||||||
|
import androidx.compose.material.icons.automirrored.filled.List
|
||||||
|
import androidx.compose.material.icons.filled.CalendarMonth
|
||||||
import androidx.compose.material.icons.filled.CheckCircle
|
import androidx.compose.material.icons.filled.CheckCircle
|
||||||
import androidx.compose.material.icons.filled.Warning
|
import androidx.compose.material.icons.filled.Warning
|
||||||
import androidx.compose.material3.*
|
import androidx.compose.material3.*
|
||||||
import androidx.compose.runtime.*
|
import androidx.compose.runtime.*
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.draw.clip
|
||||||
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
import androidx.compose.ui.text.font.FontWeight
|
||||||
@@ -23,6 +31,17 @@ import com.atridad.ascently.ui.components.ActiveSessionBanner
|
|||||||
import com.atridad.ascently.ui.components.SyncIndicator
|
import com.atridad.ascently.ui.components.SyncIndicator
|
||||||
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
import com.atridad.ascently.ui.viewmodel.ClimbViewModel
|
||||||
import com.atridad.ascently.utils.DateFormatUtils
|
import com.atridad.ascently.utils.DateFormatUtils
|
||||||
|
import java.time.LocalDate
|
||||||
|
import java.time.YearMonth
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
import java.time.format.TextStyle
|
||||||
|
import java.util.Locale
|
||||||
|
import androidx.core.content.edit
|
||||||
|
|
||||||
|
enum class ViewMode {
|
||||||
|
LIST,
|
||||||
|
CALENDAR
|
||||||
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalMaterial3Api::class)
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
@@ -33,7 +52,15 @@ fun SessionsScreen(viewModel: ClimbViewModel, onNavigateToSessionDetail: (String
|
|||||||
val activeSession by viewModel.activeSession.collectAsState()
|
val activeSession by viewModel.activeSession.collectAsState()
|
||||||
val uiState by viewModel.uiState.collectAsState()
|
val uiState by viewModel.uiState.collectAsState()
|
||||||
|
|
||||||
// Filter out active sessions from regular session list
|
val sharedPreferences =
|
||||||
|
context.getSharedPreferences("SessionsPreferences", Context.MODE_PRIVATE)
|
||||||
|
val savedViewMode = sharedPreferences.getString("view_mode", "LIST")
|
||||||
|
var viewMode by remember {
|
||||||
|
mutableStateOf(if (savedViewMode == "CALENDAR") ViewMode.CALENDAR else ViewMode.LIST)
|
||||||
|
}
|
||||||
|
var selectedMonth by remember { mutableStateOf(YearMonth.now()) }
|
||||||
|
var selectedDate by remember { mutableStateOf<LocalDate?>(LocalDate.now()) }
|
||||||
|
|
||||||
val completedSessions = sessions.filter { it.status == SessionStatus.COMPLETED }
|
val completedSessions = sessions.filter { it.status == SessionStatus.COMPLETED }
|
||||||
val activeSessionGym = activeSession?.let { session -> gyms.find { it.id == session.gymId } }
|
val activeSessionGym = activeSession?.let { session -> gyms.find { it.id == session.gymId } }
|
||||||
|
|
||||||
@@ -55,12 +82,30 @@ fun SessionsScreen(viewModel: ClimbViewModel, onNavigateToSessionDetail: (String
|
|||||||
fontWeight = FontWeight.Bold,
|
fontWeight = FontWeight.Bold,
|
||||||
modifier = Modifier.weight(1f)
|
modifier = Modifier.weight(1f)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
IconButton(
|
||||||
|
onClick = {
|
||||||
|
viewMode =
|
||||||
|
if (viewMode == ViewMode.LIST) ViewMode.CALENDAR else ViewMode.LIST
|
||||||
|
selectedDate = null
|
||||||
|
sharedPreferences.edit { putString("view_mode", viewMode.name) }
|
||||||
|
}
|
||||||
|
) {
|
||||||
|
Icon(
|
||||||
|
imageVector =
|
||||||
|
if (viewMode == ViewMode.LIST) Icons.Default.CalendarMonth
|
||||||
|
else Icons.AutoMirrored.Filled.List,
|
||||||
|
contentDescription =
|
||||||
|
if (viewMode == ViewMode.LIST) "Calendar View" else "List View",
|
||||||
|
tint = MaterialTheme.colorScheme.primary
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
SyncIndicator(isSyncing = viewModel.syncService.isSyncing)
|
SyncIndicator(isSyncing = viewModel.syncService.isSyncing)
|
||||||
}
|
}
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
// Active session banner
|
|
||||||
ActiveSessionBanner(
|
ActiveSessionBanner(
|
||||||
activeSession = activeSession,
|
activeSession = activeSession,
|
||||||
gym = activeSessionGym,
|
gym = activeSessionGym,
|
||||||
@@ -83,20 +128,35 @@ fun SessionsScreen(viewModel: ClimbViewModel, onNavigateToSessionDetail: (String
|
|||||||
actionText = ""
|
actionText = ""
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
when (viewMode) {
|
||||||
|
ViewMode.LIST -> {
|
||||||
LazyColumn {
|
LazyColumn {
|
||||||
items(completedSessions) { session ->
|
items(completedSessions) { session ->
|
||||||
SessionCard(
|
SessionCard(
|
||||||
session = session,
|
session = session,
|
||||||
gymName = gyms.find { it.id == session.gymId }?.name ?: "Unknown Gym",
|
gymName = gyms.find { it.id == session.gymId }?.name
|
||||||
|
?: "Unknown Gym",
|
||||||
onClick = { onNavigateToSessionDetail(session.id) }
|
onClick = { onNavigateToSessionDetail(session.id) }
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ViewMode.CALENDAR -> {
|
||||||
|
CalendarView(
|
||||||
|
sessions = completedSessions,
|
||||||
|
gyms = gyms,
|
||||||
|
selectedMonth = selectedMonth,
|
||||||
|
onMonthChange = { selectedMonth = it },
|
||||||
|
selectedDate = selectedDate,
|
||||||
|
onDateSelected = { selectedDate = it },
|
||||||
|
onNavigateToSessionDetail = onNavigateToSessionDetail
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show UI state messages and errors
|
|
||||||
uiState.message?.let { message ->
|
uiState.message?.let { message ->
|
||||||
LaunchedEffect(message) {
|
LaunchedEffect(message) {
|
||||||
kotlinx.coroutines.delay(5000)
|
kotlinx.coroutines.delay(5000)
|
||||||
@@ -245,6 +305,234 @@ fun EmptyStateMessage(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun CalendarView(
|
||||||
|
sessions: List<ClimbSession>,
|
||||||
|
gyms: List<com.atridad.ascently.data.model.Gym>,
|
||||||
|
selectedMonth: YearMonth,
|
||||||
|
onMonthChange: (YearMonth) -> Unit,
|
||||||
|
selectedDate: LocalDate?,
|
||||||
|
onDateSelected: (LocalDate?) -> Unit,
|
||||||
|
onNavigateToSessionDetail: (String) -> Unit
|
||||||
|
) {
|
||||||
|
val sessionsByDate =
|
||||||
|
remember(sessions) {
|
||||||
|
sessions.groupBy {
|
||||||
|
try {
|
||||||
|
java.time.Instant.parse(it.date)
|
||||||
|
.atZone(java.time.ZoneId.systemDefault())
|
||||||
|
.toLocalDate()
|
||||||
|
} catch (_: Exception) {
|
||||||
|
LocalDate.parse(it.date, DateTimeFormatter.ISO_LOCAL_DATE)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val firstDayOfMonth = selectedMonth.atDay(1)
|
||||||
|
val daysInMonth = selectedMonth.lengthOfMonth()
|
||||||
|
val firstDayOfWeek = firstDayOfMonth.dayOfWeek.value % 7
|
||||||
|
val totalCells =
|
||||||
|
((firstDayOfWeek + daysInMonth) / 7.0).let {
|
||||||
|
if (it == it.toInt().toDouble()) it.toInt() * 7 else (it.toInt() + 1) * 7
|
||||||
|
}
|
||||||
|
val numRows = totalCells / 7
|
||||||
|
|
||||||
|
LazyColumn(modifier = Modifier.fillMaxSize()) {
|
||||||
|
item {
|
||||||
|
Card(
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
colors =
|
||||||
|
CardDefaults.cardColors(
|
||||||
|
containerColor = MaterialTheme.colorScheme.surfaceVariant
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
modifier =
|
||||||
|
Modifier.fillMaxWidth().padding(horizontal = 8.dp, vertical = 12.dp),
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
|
) {
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.fillMaxWidth(),
|
||||||
|
horizontalArrangement = Arrangement.SpaceBetween,
|
||||||
|
verticalAlignment = Alignment.CenterVertically
|
||||||
|
) {
|
||||||
|
IconButton(onClick = { onMonthChange(selectedMonth.minusMonths(1)) }) {
|
||||||
|
Text("‹", style = MaterialTheme.typography.headlineMedium)
|
||||||
|
}
|
||||||
|
|
||||||
|
Text(
|
||||||
|
text =
|
||||||
|
"${selectedMonth.month.getDisplayName(TextStyle.FULL, Locale.getDefault())} ${selectedMonth.year}",
|
||||||
|
style = MaterialTheme.typography.titleMedium,
|
||||||
|
fontWeight = FontWeight.Bold
|
||||||
|
)
|
||||||
|
|
||||||
|
IconButton(onClick = { onMonthChange(selectedMonth.plusMonths(1)) }) {
|
||||||
|
Text("›", style = MaterialTheme.typography.headlineMedium)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
|
||||||
|
Button(
|
||||||
|
onClick = {
|
||||||
|
val today = LocalDate.now()
|
||||||
|
onMonthChange(YearMonth.from(today))
|
||||||
|
onDateSelected(today)
|
||||||
|
},
|
||||||
|
shape = RoundedCornerShape(50),
|
||||||
|
colors =
|
||||||
|
ButtonDefaults.buttonColors(
|
||||||
|
containerColor = MaterialTheme.colorScheme.primary
|
||||||
|
),
|
||||||
|
contentPadding = PaddingValues(horizontal = 20.dp, vertical = 8.dp)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = "Today",
|
||||||
|
style = MaterialTheme.typography.labelLarge,
|
||||||
|
fontWeight = FontWeight.SemiBold
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
Row(modifier = Modifier.fillMaxWidth()) {
|
||||||
|
listOf("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat").forEach { day ->
|
||||||
|
Text(
|
||||||
|
text = day,
|
||||||
|
modifier = Modifier.weight(1f),
|
||||||
|
textAlign = TextAlign.Center,
|
||||||
|
style = MaterialTheme.typography.labelSmall,
|
||||||
|
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||||
|
fontWeight = FontWeight.Bold
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
}
|
||||||
|
|
||||||
|
items(numRows) { rowIndex ->
|
||||||
|
Row(modifier = Modifier.fillMaxWidth()) {
|
||||||
|
for (colIndex in 0 until 7) {
|
||||||
|
val index = rowIndex * 7 + colIndex
|
||||||
|
val dayNumber = index - firstDayOfWeek + 1
|
||||||
|
|
||||||
|
Box(modifier = Modifier.weight(1f)) {
|
||||||
|
if (dayNumber in 1..daysInMonth) {
|
||||||
|
val date = selectedMonth.atDay(dayNumber)
|
||||||
|
val sessionsOnDate = sessionsByDate[date] ?: emptyList()
|
||||||
|
val isSelected = date == selectedDate
|
||||||
|
val isToday = date == LocalDate.now()
|
||||||
|
|
||||||
|
CalendarDay(
|
||||||
|
day = dayNumber,
|
||||||
|
hasSession = sessionsOnDate.isNotEmpty(),
|
||||||
|
isSelected = isSelected,
|
||||||
|
isToday = isToday,
|
||||||
|
onClick = {
|
||||||
|
if (sessionsOnDate.isNotEmpty()) {
|
||||||
|
onDateSelected(if (isSelected) null else date)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
Spacer(modifier = Modifier.aspectRatio(1f))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selectedDate != null) {
|
||||||
|
val sessionsOnSelectedDate = sessionsByDate[selectedDate] ?: emptyList()
|
||||||
|
|
||||||
|
item {
|
||||||
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
||||||
|
Text(
|
||||||
|
text =
|
||||||
|
"Sessions on ${selectedDate.format(DateTimeFormatter.ofPattern("MMMM d, yyyy"))}",
|
||||||
|
style = MaterialTheme.typography.titleSmall,
|
||||||
|
fontWeight = FontWeight.Bold,
|
||||||
|
modifier = Modifier.padding(vertical = 8.dp)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
items(sessionsOnSelectedDate) { session ->
|
||||||
|
SessionCard(
|
||||||
|
session = session,
|
||||||
|
gymName = gyms.find { it.id == session.gymId }?.name ?: "Unknown Gym",
|
||||||
|
onClick = { onNavigateToSessionDetail(session.id) }
|
||||||
|
)
|
||||||
|
Spacer(modifier = Modifier.height(8.dp))
|
||||||
|
}
|
||||||
|
|
||||||
|
item { Spacer(modifier = Modifier.height(16.dp)) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Composable
|
||||||
|
fun CalendarDay(
|
||||||
|
day: Int,
|
||||||
|
hasSession: Boolean,
|
||||||
|
isSelected: Boolean,
|
||||||
|
isToday: Boolean,
|
||||||
|
onClick: () -> Unit
|
||||||
|
) {
|
||||||
|
Box(
|
||||||
|
modifier =
|
||||||
|
Modifier.aspectRatio(1f)
|
||||||
|
.padding(2.dp)
|
||||||
|
.clip(CircleShape)
|
||||||
|
.background(
|
||||||
|
when {
|
||||||
|
isSelected -> MaterialTheme.colorScheme.primaryContainer
|
||||||
|
isToday -> MaterialTheme.colorScheme.secondaryContainer
|
||||||
|
else -> Color.Transparent
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.clickable(enabled = hasSession, onClick = onClick),
|
||||||
|
contentAlignment = Alignment.Center
|
||||||
|
) {
|
||||||
|
Column(
|
||||||
|
horizontalAlignment = Alignment.CenterHorizontally,
|
||||||
|
verticalArrangement = Arrangement.Center
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
text = day.toString(),
|
||||||
|
style = MaterialTheme.typography.bodyMedium,
|
||||||
|
color =
|
||||||
|
when {
|
||||||
|
isSelected -> MaterialTheme.colorScheme.onPrimaryContainer
|
||||||
|
isToday -> MaterialTheme.colorScheme.onSecondaryContainer
|
||||||
|
!hasSession -> MaterialTheme.colorScheme.onSurfaceVariant
|
||||||
|
else -> MaterialTheme.colorScheme.onSurface
|
||||||
|
},
|
||||||
|
fontWeight = if (hasSession || isToday) FontWeight.Bold else FontWeight.Normal
|
||||||
|
)
|
||||||
|
|
||||||
|
if (hasSession) {
|
||||||
|
Box(
|
||||||
|
modifier =
|
||||||
|
Modifier.size(6.dp)
|
||||||
|
.clip(CircleShape)
|
||||||
|
.background(
|
||||||
|
if (isSelected) MaterialTheme.colorScheme.primary
|
||||||
|
else
|
||||||
|
MaterialTheme.colorScheme.primary.copy(
|
||||||
|
alpha = 0.7f
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun formatDate(dateString: String): String {
|
private fun formatDate(dateString: String): String {
|
||||||
return DateFormatUtils.formatDateForDisplay(dateString)
|
return DateFormatUtils.formatDateForDisplay(dateString)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -583,41 +583,6 @@ fun SettingsScreen(viewModel: ClimbViewModel) {
|
|||||||
|
|
||||||
Spacer(modifier = Modifier.height(12.dp))
|
Spacer(modifier = Modifier.height(12.dp))
|
||||||
|
|
||||||
Card(
|
|
||||||
shape = RoundedCornerShape(12.dp),
|
|
||||||
colors =
|
|
||||||
CardDefaults.cardColors(
|
|
||||||
containerColor =
|
|
||||||
MaterialTheme.colorScheme.surfaceVariant.copy(
|
|
||||||
alpha = 0.3f
|
|
||||||
)
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
ListItem(
|
|
||||||
headlineContent = {
|
|
||||||
Row(
|
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
|
||||||
horizontalArrangement = Arrangement.spacedBy(8.dp)
|
|
||||||
) {
|
|
||||||
Icon(
|
|
||||||
painter =
|
|
||||||
painterResource(
|
|
||||||
id = R.drawable.ic_mountains
|
|
||||||
),
|
|
||||||
contentDescription = "Ascently Logo",
|
|
||||||
modifier = Modifier.size(24.dp),
|
|
||||||
tint = MaterialTheme.colorScheme.primary
|
|
||||||
)
|
|
||||||
Text("Ascently")
|
|
||||||
}
|
|
||||||
},
|
|
||||||
supportingContent = { Text("Track your climbing progress") },
|
|
||||||
leadingContent = {}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(8.dp))
|
|
||||||
|
|
||||||
Card(
|
Card(
|
||||||
shape = RoundedCornerShape(12.dp),
|
shape = RoundedCornerShape(12.dp),
|
||||||
colors =
|
colors =
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import com.atridad.ascently.data.model.*
|
|||||||
import com.atridad.ascently.data.repository.ClimbRepository
|
import com.atridad.ascently.data.repository.ClimbRepository
|
||||||
import com.atridad.ascently.data.sync.SyncService
|
import com.atridad.ascently.data.sync.SyncService
|
||||||
import com.atridad.ascently.service.SessionTrackingService
|
import com.atridad.ascently.service.SessionTrackingService
|
||||||
|
import com.atridad.ascently.utils.AppLogger
|
||||||
import com.atridad.ascently.utils.ImageUtils
|
import com.atridad.ascently.utils.ImageUtils
|
||||||
import com.atridad.ascently.widget.ClimbStatsWidgetProvider
|
import com.atridad.ascently.widget.ClimbStatsWidgetProvider
|
||||||
import java.io.File
|
import java.io.File
|
||||||
@@ -192,7 +193,7 @@ class ClimbViewModel(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
println("Deleted $deletedCount image files and cleared image references")
|
AppLogger.i("ClimbViewModel") { "Deleted $deletedCount image files and cleared image references" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,12 +234,12 @@ class ClimbViewModel(
|
|||||||
// Active session management
|
// Active session management
|
||||||
fun startSession(context: Context, gymId: String, notes: String? = null) {
|
fun startSession(context: Context, gymId: String, notes: String? = null) {
|
||||||
viewModelScope.launch {
|
viewModelScope.launch {
|
||||||
android.util.Log.d("ClimbViewModel", "startSession called with gymId: $gymId")
|
AppLogger.d("ClimbViewModel") { "startSession called with gymId: $gymId" }
|
||||||
|
|
||||||
if (!com.atridad.ascently.utils.NotificationPermissionUtils
|
if (!com.atridad.ascently.utils.NotificationPermissionUtils
|
||||||
.isNotificationPermissionGranted(context)
|
.isNotificationPermissionGranted(context)
|
||||||
) {
|
) {
|
||||||
android.util.Log.d("ClimbViewModel", "Notification permission not granted")
|
AppLogger.d("ClimbViewModel") { "Notification permission not granted" }
|
||||||
_uiState.value =
|
_uiState.value =
|
||||||
_uiState.value.copy(
|
_uiState.value.copy(
|
||||||
error =
|
error =
|
||||||
@@ -249,10 +250,7 @@ class ClimbViewModel(
|
|||||||
|
|
||||||
val existingActive = repository.getActiveSession()
|
val existingActive = repository.getActiveSession()
|
||||||
if (existingActive != null) {
|
if (existingActive != null) {
|
||||||
android.util.Log.d(
|
AppLogger.d("ClimbViewModel") { "Active session already exists: ${existingActive.id}" }
|
||||||
"ClimbViewModel",
|
|
||||||
"Active session already exists: ${existingActive.id}"
|
|
||||||
)
|
|
||||||
_uiState.value =
|
_uiState.value =
|
||||||
_uiState.value.copy(
|
_uiState.value.copy(
|
||||||
error = "There's already an active session. Please end it first."
|
error = "There's already an active session. Please end it first."
|
||||||
@@ -260,14 +258,11 @@ class ClimbViewModel(
|
|||||||
return@launch
|
return@launch
|
||||||
}
|
}
|
||||||
|
|
||||||
android.util.Log.d("ClimbViewModel", "Creating new session")
|
AppLogger.d("ClimbViewModel") { "Creating new session" }
|
||||||
val newSession = ClimbSession.create(gymId = gymId, notes = notes)
|
val newSession = ClimbSession.create(gymId = gymId, notes = notes)
|
||||||
repository.insertSession(newSession)
|
repository.insertSession(newSession)
|
||||||
|
|
||||||
android.util.Log.d(
|
AppLogger.d("ClimbViewModel") { "Starting tracking service for session: ${newSession.id}" }
|
||||||
"ClimbViewModel",
|
|
||||||
"Starting tracking service for session: ${newSession.id}"
|
|
||||||
)
|
|
||||||
// Start the tracking service
|
// Start the tracking service
|
||||||
val serviceIntent = SessionTrackingService.createStartIntent(context, newSession.id)
|
val serviceIntent = SessionTrackingService.createStartIntent(context, newSession.id)
|
||||||
context.startForegroundService(serviceIntent)
|
context.startForegroundService(serviceIntent)
|
||||||
@@ -477,15 +472,12 @@ class ClimbViewModel(
|
|||||||
|
|
||||||
result.onFailure { error ->
|
result.onFailure { error ->
|
||||||
if (healthConnectManager.isReadySync()) {
|
if (healthConnectManager.isReadySync()) {
|
||||||
android.util.Log.w(
|
AppLogger.w("ClimbViewModel") { "Health Connect sync failed: ${error.message}" }
|
||||||
"ClimbViewModel",
|
|
||||||
"Health Connect sync failed: ${error.message}"
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
if (healthConnectManager.isReadySync()) {
|
if (healthConnectManager.isReadySync()) {
|
||||||
android.util.Log.w("ClimbViewModel", "Health Connect sync error: ${e.message}")
|
AppLogger.w("ClimbViewModel") { "Health Connect sync error: ${e.message}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
package com.atridad.ascently.utils
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.atridad.ascently.BuildConfig
|
||||||
|
|
||||||
|
object AppLogger {
|
||||||
|
|
||||||
|
private const val DEFAULT_TAG = "Ascently"
|
||||||
|
|
||||||
|
enum class Level(val androidLevel: Int) {
|
||||||
|
DEBUG(Log.DEBUG),
|
||||||
|
INFO(Log.INFO),
|
||||||
|
WARN(Log.WARN),
|
||||||
|
ERROR(Log.ERROR)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun d(tag: String = DEFAULT_TAG, messageProvider: () -> String) {
|
||||||
|
log(Level.DEBUG, tag, messageProvider)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun i(tag: String = DEFAULT_TAG, messageProvider: () -> String) {
|
||||||
|
log(Level.INFO, tag, messageProvider)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun w(tag: String = DEFAULT_TAG, throwable: Throwable? = null, messageProvider: () -> String) {
|
||||||
|
log(Level.WARN, tag, messageProvider, throwable)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun e(tag: String = DEFAULT_TAG, throwable: Throwable? = null, messageProvider: () -> String) {
|
||||||
|
log(Level.ERROR, tag, messageProvider, throwable)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun log(
|
||||||
|
level: Level,
|
||||||
|
tag: String,
|
||||||
|
messageProvider: () -> String,
|
||||||
|
throwable: Throwable? = null
|
||||||
|
) {
|
||||||
|
if (!BuildConfig.DEBUG) return
|
||||||
|
|
||||||
|
val message = messageProvider()
|
||||||
|
if (throwable != null) {
|
||||||
|
Log.println(level.androidLevel, tag, "$message\n${Log.getStackTraceString(throwable)}")
|
||||||
|
} else {
|
||||||
|
Log.println(level.androidLevel, tag, message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,7 +6,6 @@ import android.graphics.Bitmap
|
|||||||
import android.graphics.BitmapFactory
|
import android.graphics.BitmapFactory
|
||||||
import android.graphics.ImageDecoder
|
import android.graphics.ImageDecoder
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.util.Log
|
|
||||||
import androidx.core.graphics.scale
|
import androidx.core.graphics.scale
|
||||||
import androidx.exifinterface.media.ExifInterface
|
import androidx.exifinterface.media.ExifInterface
|
||||||
import java.io.File
|
import java.io.File
|
||||||
@@ -73,7 +72,7 @@ object ImageUtils {
|
|||||||
compressedBitmap.recycle()
|
compressedBitmap.recycle()
|
||||||
true
|
true
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Error saving image with EXIF data" }
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -119,7 +118,7 @@ object ImageUtils {
|
|||||||
val file = getImageFile(context, relativePath)
|
val file = getImageFile(context, relativePath)
|
||||||
file.delete()
|
file.delete()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Failed to delete image: $relativePath" }
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -137,7 +136,7 @@ object ImageUtils {
|
|||||||
sourceFile.copyTo(destFile, overwrite = true)
|
sourceFile.copyTo(destFile, overwrite = true)
|
||||||
"$IMAGES_DIR/$filename"
|
"$IMAGES_DIR/$filename"
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Failed to import image from source: ${sourceFile.name}" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -157,7 +156,7 @@ object ImageUtils {
|
|||||||
}
|
}
|
||||||
?: emptyList()
|
?: emptyList()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Failed to enumerate images directory" }
|
||||||
emptyList()
|
emptyList()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -178,7 +177,7 @@ object ImageUtils {
|
|||||||
|
|
||||||
tempFilename
|
tempFilename
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("ImageUtils", "Error saving temporary image from URI", e)
|
AppLogger.e("ImageUtils", e) { "Error saving temporary image from URI" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -193,7 +192,7 @@ object ImageUtils {
|
|||||||
return try {
|
return try {
|
||||||
val tempFile = File(getImagesDirectory(context), tempFilename)
|
val tempFile = File(getImagesDirectory(context), tempFilename)
|
||||||
if (!tempFile.exists()) {
|
if (!tempFile.exists()) {
|
||||||
Log.e("ImageUtils", "Temporary file does not exist: $tempFilename")
|
AppLogger.e("ImageUtils") { "Temporary file does not exist: $tempFilename" }
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -202,17 +201,14 @@ object ImageUtils {
|
|||||||
val finalFile = File(getImagesDirectory(context), deterministicFilename)
|
val finalFile = File(getImagesDirectory(context), deterministicFilename)
|
||||||
|
|
||||||
if (tempFile.renameTo(finalFile)) {
|
if (tempFile.renameTo(finalFile)) {
|
||||||
Log.d(
|
AppLogger.d("ImageUtils") { "Renamed temporary image: $tempFilename -> $deterministicFilename" }
|
||||||
"ImageUtils",
|
|
||||||
"Renamed temporary image: $tempFilename -> $deterministicFilename"
|
|
||||||
)
|
|
||||||
deterministicFilename
|
deterministicFilename
|
||||||
} else {
|
} else {
|
||||||
Log.e("ImageUtils", "Failed to rename temporary image: $tempFilename")
|
AppLogger.e("ImageUtils") { "Failed to rename temporary image: $tempFilename" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("ImageUtils", "Error renaming temporary image", e)
|
AppLogger.e("ImageUtils", e) { "Error renaming temporary image" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -249,7 +245,7 @@ object ImageUtils {
|
|||||||
destExif.saveAttributes()
|
destExif.saveAttributes()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
// If EXIF preservation fails, continue without it
|
// If EXIF preservation fails, continue without it
|
||||||
Log.w("ImageUtils", "Failed to preserve EXIF data: ${e.message}")
|
AppLogger.w("ImageUtils") { "Failed to preserve EXIF data: ${e.message}" }
|
||||||
}
|
}
|
||||||
|
|
||||||
bitmap.recycle()
|
bitmap.recycle()
|
||||||
@@ -262,7 +258,7 @@ object ImageUtils {
|
|||||||
// Return relative path
|
// Return relative path
|
||||||
"$IMAGES_DIR/$filename"
|
"$IMAGES_DIR/$filename"
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Failed to save image from bytes: $filename" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -275,7 +271,7 @@ object ImageUtils {
|
|||||||
|
|
||||||
orphanedImages.forEach { path -> deleteImage(context, path) }
|
orphanedImages.forEach { path -> deleteImage(context, path) }
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
AppLogger.e("ImageUtils", e) { "Failed to clean up orphaned images" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package com.atridad.ascently.utils
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.util.Log
|
|
||||||
import androidx.core.content.edit
|
import androidx.core.content.edit
|
||||||
|
|
||||||
class MigrationManager(private val context: Context) {
|
class MigrationManager(private val context: Context) {
|
||||||
@@ -22,11 +21,11 @@ class MigrationManager(private val context: Context) {
|
|||||||
*/
|
*/
|
||||||
fun migrateIfNeeded() {
|
fun migrateIfNeeded() {
|
||||||
if (migrationPrefs.getBoolean(MIGRATION_COMPLETED_KEY, false)) {
|
if (migrationPrefs.getBoolean(MIGRATION_COMPLETED_KEY, false)) {
|
||||||
Log.d(TAG, "Migration already completed, skipping")
|
AppLogger.d(TAG) { "Migration already completed, skipping" }
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.i(TAG, "🔄 Starting migration from OpenClimb to Ascently...")
|
AppLogger.i(TAG) { "🔄 Starting migration from OpenClimb to Ascently..." }
|
||||||
var migrationCount = 0
|
var migrationCount = 0
|
||||||
|
|
||||||
// Migrate SharedPreferences
|
// Migrate SharedPreferences
|
||||||
@@ -36,12 +35,9 @@ class MigrationManager(private val context: Context) {
|
|||||||
migrationPrefs.edit { putBoolean(MIGRATION_COMPLETED_KEY, true) }
|
migrationPrefs.edit { putBoolean(MIGRATION_COMPLETED_KEY, true) }
|
||||||
|
|
||||||
if (migrationCount > 0) {
|
if (migrationCount > 0) {
|
||||||
Log.i(
|
AppLogger.i(TAG) { "🎉 Migration completed! Migrated $migrationCount items from OpenClimb to Ascently" }
|
||||||
TAG,
|
|
||||||
"🎉 Migration completed! Migrated $migrationCount items from OpenClimb to Ascently"
|
|
||||||
)
|
|
||||||
} else {
|
} else {
|
||||||
Log.i(TAG, "ℹ️ No OpenClimb data found to migrate")
|
AppLogger.i(TAG) { "ℹ️ No OpenClimb data found to migrate" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,10 +91,7 @@ class MigrationManager(private val context: Context) {
|
|||||||
// Clear old preferences
|
// Clear old preferences
|
||||||
oldPrefs.edit { clear() }
|
oldPrefs.edit { clear() }
|
||||||
|
|
||||||
Log.d(
|
AppLogger.d(TAG) { "Migrated preference file: $oldFileName → $newFileName (${oldPrefs.all.size} keys)" }
|
||||||
TAG,
|
|
||||||
"✅ Migrated preference file: $oldFileName → $newFileName (${oldPrefs.all.size} keys)"
|
|
||||||
)
|
|
||||||
return oldPrefs.all.size
|
return oldPrefs.all.size
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,7 +143,7 @@ class MigrationManager(private val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d(TAG, "✅ Migrated ${keysToMigrate.size} keys in $prefFileName")
|
AppLogger.d(TAG) { "Migrated ${keysToMigrate.size} keys in $prefFileName" }
|
||||||
count += keysToMigrate.size
|
count += keysToMigrate.size
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -166,6 +159,6 @@ class MigrationManager(private val context: Context) {
|
|||||||
/** Reset migration state (for testing purposes) */
|
/** Reset migration state (for testing purposes) */
|
||||||
fun resetMigrationState() {
|
fun resetMigrationState() {
|
||||||
migrationPrefs.edit { putBoolean(MIGRATION_COMPLETED_KEY, false) }
|
migrationPrefs.edit { putBoolean(MIGRATION_COMPLETED_KEY, false) }
|
||||||
Log.d(TAG, "Migration state reset")
|
AppLogger.d(TAG) { "Migration state reset" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,7 +52,8 @@ object ZipExportImportUtils {
|
|||||||
zipOut.closeEntry()
|
zipOut.closeEntry()
|
||||||
|
|
||||||
// Add JSON data file
|
// Add JSON data file
|
||||||
val json = Json {
|
val json =
|
||||||
|
Json {
|
||||||
prettyPrint = true
|
prettyPrint = true
|
||||||
ignoreUnknownKeys = true
|
ignoreUnknownKeys = true
|
||||||
}
|
}
|
||||||
@@ -78,24 +79,21 @@ object ZipExportImportUtils {
|
|||||||
zipOut.closeEntry()
|
zipOut.closeEntry()
|
||||||
successfulImages++
|
successfulImages++
|
||||||
} else {
|
} else {
|
||||||
android.util.Log.w(
|
AppLogger.w("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Image file not found or empty: $imagePath"
|
"Image file not found or empty: $imagePath"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
android.util.Log.e(
|
AppLogger.e("ZipExportImportUtils", e) {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Failed to add image $imagePath: ${e.message}"
|
"Failed to add image $imagePath: ${e.message}"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log export summary
|
// Log export summary
|
||||||
android.util.Log.i(
|
AppLogger.i("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Export completed: ${successfulImages}/${referencedImagePaths.size} images included"
|
"Export completed: ${successfulImages}/${referencedImagePaths.size} images included"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate the created ZIP file
|
// Validate the created ZIP file
|
||||||
@@ -131,7 +129,8 @@ object ZipExportImportUtils {
|
|||||||
zipOut.closeEntry()
|
zipOut.closeEntry()
|
||||||
|
|
||||||
// Add JSON data file
|
// Add JSON data file
|
||||||
val json = Json {
|
val json =
|
||||||
|
Json {
|
||||||
prettyPrint = true
|
prettyPrint = true
|
||||||
ignoreUnknownKeys = true
|
ignoreUnknownKeys = true
|
||||||
}
|
}
|
||||||
@@ -158,17 +157,15 @@ object ZipExportImportUtils {
|
|||||||
successfulImages++
|
successfulImages++
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
android.util.Log.e(
|
AppLogger.e("ZipExportImportUtils", e) {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Failed to add image $imagePath: ${e.message}"
|
"Failed to add image $imagePath: ${e.message}"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
android.util.Log.i(
|
AppLogger.i("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Export to URI completed: ${successfulImages}/${referencedImagePaths.size} images included"
|
"Export to URI completed: ${successfulImages}/${referencedImagePaths.size} images included"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?: throw IOException("Could not open output stream")
|
?: throw IOException("Could not open output stream")
|
||||||
@@ -217,16 +214,17 @@ object ZipExportImportUtils {
|
|||||||
// Read metadata for validation
|
// Read metadata for validation
|
||||||
val metadataContent = zipIn.readBytes().toString(Charsets.UTF_8)
|
val metadataContent = zipIn.readBytes().toString(Charsets.UTF_8)
|
||||||
foundRequiredFiles.add("metadata")
|
foundRequiredFiles.add("metadata")
|
||||||
android.util.Log.i(
|
AppLogger.i("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Found metadata: ${metadataContent.lines().take(3).joinToString()}"
|
"Found metadata: ${metadataContent.lines().take(3).joinToString()}"
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
entry.name == DATA_JSON_FILENAME -> {
|
entry.name == DATA_JSON_FILENAME -> {
|
||||||
// Read JSON data
|
// Read JSON data
|
||||||
jsonContent = zipIn.readBytes().toString(Charsets.UTF_8)
|
jsonContent = zipIn.readBytes().toString(Charsets.UTF_8)
|
||||||
foundRequiredFiles.add("data")
|
foundRequiredFiles.add("data")
|
||||||
}
|
}
|
||||||
|
|
||||||
entry.name.startsWith("$IMAGES_DIR_NAME/") && !entry.isDirectory -> {
|
entry.name.startsWith("$IMAGES_DIR_NAME/") && !entry.isDirectory -> {
|
||||||
// Extract image file
|
// Extract image file
|
||||||
val originalFilename = entry.name.substringAfter("$IMAGES_DIR_NAME/")
|
val originalFilename = entry.name.substringAfter("$IMAGES_DIR_NAME/")
|
||||||
@@ -248,37 +246,33 @@ object ZipExportImportUtils {
|
|||||||
val newPath = ImageUtils.importImageFile(context, tempFile)
|
val newPath = ImageUtils.importImageFile(context, tempFile)
|
||||||
if (newPath != null) {
|
if (newPath != null) {
|
||||||
importedImagePaths[originalFilename] = newPath
|
importedImagePaths[originalFilename] = newPath
|
||||||
android.util.Log.d(
|
AppLogger.d("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Successfully imported image: $originalFilename -> $newPath"
|
"Successfully imported image: $originalFilename -> $newPath"
|
||||||
)
|
|
||||||
} else {
|
|
||||||
android.util.Log.w(
|
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Failed to import image: $originalFilename"
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
android.util.Log.w(
|
AppLogger.w("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
"Failed to import image: $originalFilename"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
AppLogger.w("ZipExportImportUtils") {
|
||||||
"Extracted image is empty: $originalFilename"
|
"Extracted image is empty: $originalFilename"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clean up temp file
|
// Clean up temp file
|
||||||
tempFile.delete()
|
tempFile.delete()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
android.util.Log.e(
|
AppLogger.e("ZipExportImportUtils", e) {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Failed to process image $originalFilename: ${e.message}"
|
"Failed to process image $originalFilename: ${e.message}"
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
android.util.Log.d(
|
AppLogger.d("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Skipping ZIP entry: ${entry.name}"
|
"Skipping ZIP entry: ${entry.name}"
|
||||||
)
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -296,10 +290,9 @@ object ZipExportImportUtils {
|
|||||||
throw IOException("Invalid ZIP file: data.json is empty")
|
throw IOException("Invalid ZIP file: data.json is empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
android.util.Log.i(
|
AppLogger.i("ZipExportImportUtils") {
|
||||||
"ZipExportImportUtils",
|
|
||||||
"Import extraction completed: ${importedImagePaths.size} images processed"
|
"Import extraction completed: ${importedImagePaths.size} images processed"
|
||||||
)
|
}
|
||||||
|
|
||||||
return ImportResult(jsonContent, importedImagePaths)
|
return ImportResult(jsonContent, importedImagePaths)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import com.atridad.ascently.MainActivity
|
|||||||
import com.atridad.ascently.R
|
import com.atridad.ascently.R
|
||||||
import com.atridad.ascently.data.database.AscentlyDatabase
|
import com.atridad.ascently.data.database.AscentlyDatabase
|
||||||
import com.atridad.ascently.data.repository.ClimbRepository
|
import com.atridad.ascently.data.repository.ClimbRepository
|
||||||
|
import java.time.LocalDate
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.SupervisorJob
|
import kotlinx.coroutines.SupervisorJob
|
||||||
@@ -48,53 +49,47 @@ class ClimbStatsWidgetProvider : AppWidgetProvider() {
|
|||||||
val database = AscentlyDatabase.getDatabase(context)
|
val database = AscentlyDatabase.getDatabase(context)
|
||||||
val repository = ClimbRepository(database, context)
|
val repository = ClimbRepository(database, context)
|
||||||
|
|
||||||
// Fetch stats data
|
// Get last 7 days date range (rolling period)
|
||||||
|
val today = LocalDate.now()
|
||||||
|
val sevenDaysAgo = today.minusDays(6) // Today + 6 days ago = 7 days total
|
||||||
|
|
||||||
|
// Fetch all sessions and attempts
|
||||||
val sessions = repository.getAllSessions().first()
|
val sessions = repository.getAllSessions().first()
|
||||||
val problems = repository.getAllProblems().first()
|
|
||||||
val attempts = repository.getAllAttempts().first()
|
val attempts = repository.getAllAttempts().first()
|
||||||
val gyms = repository.getAllGyms().first()
|
|
||||||
|
|
||||||
// Calculate stats
|
// Filter for last 7 days across all gyms
|
||||||
val completedSessions = sessions.filter { it.endTime != null }
|
val weekSessions =
|
||||||
|
sessions.filter { session ->
|
||||||
// Count problems that have been completed (have at least one successful attempt)
|
try {
|
||||||
val completedProblems =
|
val sessionDate = LocalDate.parse(session.date.substring(0, 10))
|
||||||
problems
|
!sessionDate.isBefore(sevenDaysAgo) && !sessionDate.isAfter(today)
|
||||||
.filter { problem ->
|
} catch (_: Exception) {
|
||||||
attempts.any { attempt ->
|
false
|
||||||
attempt.problemId == problem.id &&
|
|
||||||
(attempt.result ==
|
|
||||||
com.atridad.ascently.data.model
|
|
||||||
.AttemptResult.SUCCESS ||
|
|
||||||
attempt.result ==
|
|
||||||
com.atridad.ascently.data.model
|
|
||||||
.AttemptResult.FLASH)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.size
|
|
||||||
|
|
||||||
val favoriteGym =
|
val weekSessionIds = weekSessions.map { it.id }.toSet()
|
||||||
sessions.groupBy { it.gymId }.maxByOrNull { it.value.size }?.let {
|
|
||||||
(gymId, _) ->
|
// Count total attempts this week
|
||||||
gyms.find { it.id == gymId }?.name
|
val totalAttempts =
|
||||||
}
|
attempts.count { attempt -> weekSessionIds.contains(attempt.sessionId) }
|
||||||
?: "No sessions yet"
|
|
||||||
|
// Count sessions this week
|
||||||
|
val totalSessions = weekSessions.size
|
||||||
|
|
||||||
launch(Dispatchers.Main) {
|
launch(Dispatchers.Main) {
|
||||||
val views = RemoteViews(context.packageName, R.layout.widget_climb_stats)
|
val views = RemoteViews(context.packageName, R.layout.widget_climb_stats)
|
||||||
|
|
||||||
views.setTextViewText(
|
// Set weekly stats
|
||||||
R.id.widget_total_sessions,
|
views.setTextViewText(R.id.widget_attempts_value, totalAttempts.toString())
|
||||||
completedSessions.size.toString()
|
views.setTextViewText(R.id.widget_sessions_value, totalSessions.toString())
|
||||||
)
|
|
||||||
views.setTextViewText(
|
|
||||||
R.id.widget_problems_completed,
|
|
||||||
completedProblems.toString()
|
|
||||||
)
|
|
||||||
views.setTextViewText(R.id.widget_total_problems, problems.size.toString())
|
|
||||||
views.setTextViewText(R.id.widget_favorite_gym, favoriteGym)
|
|
||||||
|
|
||||||
val intent = Intent(context, MainActivity::class.java)
|
val intent =
|
||||||
|
Intent(context, MainActivity::class.java).apply {
|
||||||
|
flags =
|
||||||
|
Intent.FLAG_ACTIVITY_NEW_TASK or
|
||||||
|
Intent.FLAG_ACTIVITY_CLEAR_TOP
|
||||||
|
}
|
||||||
val pendingIntent =
|
val pendingIntent =
|
||||||
PendingIntent.getActivity(
|
PendingIntent.getActivity(
|
||||||
context,
|
context,
|
||||||
@@ -110,10 +105,8 @@ class ClimbStatsWidgetProvider : AppWidgetProvider() {
|
|||||||
} catch (_: Exception) {
|
} catch (_: Exception) {
|
||||||
launch(Dispatchers.Main) {
|
launch(Dispatchers.Main) {
|
||||||
val views = RemoteViews(context.packageName, R.layout.widget_climb_stats)
|
val views = RemoteViews(context.packageName, R.layout.widget_climb_stats)
|
||||||
views.setTextViewText(R.id.widget_total_sessions, "0")
|
views.setTextViewText(R.id.widget_attempts_value, "0")
|
||||||
views.setTextViewText(R.id.widget_problems_completed, "0")
|
views.setTextViewText(R.id.widget_sessions_value, "0")
|
||||||
views.setTextViewText(R.id.widget_total_problems, "0")
|
|
||||||
views.setTextViewText(R.id.widget_favorite_gym, "No data")
|
|
||||||
|
|
||||||
val intent = Intent(context, MainActivity::class.java)
|
val intent = Intent(context, MainActivity::class.java)
|
||||||
val pendingIntent =
|
val pendingIntent =
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000000"
|
||||||
|
android:pathData="M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2ZM10,17L5,12L6.41,10.59L10,14.17L17.59,6.58L19,8L10,17Z"/>
|
||||||
|
</vector>
|
||||||
9
android/app/src/main/res/drawable/ic_circle_filled.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24"
|
||||||
|
android:viewportHeight="24">
|
||||||
|
<path
|
||||||
|
android:fillColor="#000000"
|
||||||
|
android:pathData="M9,11.24V7.5C9,6.12 10.12,5 11.5,5S14,6.12 14,7.5v3.74c1.21,-0.81 2,-2.18 2,-3.74C16,5.01 13.99,3 11.5,3S7,5.01 7,7.5C7,9.06 7.79,10.43 9,11.24zM18.84,15.87l-4.54,-2.26c-0.17,-0.07 -0.35,-0.11 -0.54,-0.11H13v-6C13,6.67 12.33,6 11.5,6S10,6.67 10,7.5v10.74l-3.43,-0.72c-0.08,-0.01 -0.15,-0.03 -0.24,-0.03c-0.31,0 -0.59,0.13 -0.79,0.33l-0.79,0.8l4.94,4.94C9.96,23.83 10.34,24 10.75,24h6.79c0.75,0 1.33,-0.55 1.44,-1.28l0.75,-5.27c0.01,-0.07 0.02,-0.14 0.02,-0.2C19.75,16.63 19.37,16.09 18.84,15.87z"/>
|
||||||
|
</vector>
|
||||||
@@ -4,27 +4,6 @@
|
|||||||
android:height="108dp"
|
android:height="108dp"
|
||||||
android:viewportWidth="108"
|
android:viewportWidth="108"
|
||||||
android:viewportHeight="108">
|
android:viewportHeight="108">
|
||||||
|
<path android:fillColor="#FFC107" android:pathData="M24.000,78.545 L41.851,38.380 L59.702,78.545 Z" />
|
||||||
<group
|
<path android:fillColor="#F44336" android:pathData="M39.372,78.545 L61.686,29.455 L84.000,78.545 Z" />
|
||||||
android:scaleX="0.7"
|
|
||||||
android:scaleY="0.7"
|
|
||||||
android:translateX="16.2"
|
|
||||||
android:translateY="20">
|
|
||||||
|
|
||||||
<!-- Left mountain (yellow/amber) -->
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFC107"
|
|
||||||
android:strokeColor="#1C1C1C"
|
|
||||||
android:strokeWidth="3"
|
|
||||||
android:strokeLineJoin="round"
|
|
||||||
android:pathData="M15,70 L35,25 L55,70 Z" />
|
|
||||||
|
|
||||||
<!-- Right mountain (red) -->
|
|
||||||
<path
|
|
||||||
android:fillColor="#F44336"
|
|
||||||
android:strokeColor="#1C1C1C"
|
|
||||||
android:strokeWidth="3"
|
|
||||||
android:strokeLineJoin="round"
|
|
||||||
android:pathData="M40,70 L65,15 L90,70 Z" />
|
|
||||||
</group>
|
|
||||||
</vector>
|
</vector>
|
||||||
@@ -4,29 +4,6 @@
|
|||||||
android:height="24dp"
|
android:height="24dp"
|
||||||
android:viewportWidth="24"
|
android:viewportWidth="24"
|
||||||
android:viewportHeight="24">
|
android:viewportHeight="24">
|
||||||
|
<path android:fillColor="#FFC107" android:pathData="M2.000,20.182 L7.950,6.793 L13.901,20.182 Z" />
|
||||||
<!-- Left mountain (yellow/amber) -->
|
<path android:fillColor="#F44336" android:pathData="M7.124,20.182 L14.562,3.818 L22.000,20.182 Z" />
|
||||||
<path
|
|
||||||
android:fillColor="#FFC107"
|
|
||||||
android:pathData="M3,18 L8,9 L13,18 Z" />
|
|
||||||
|
|
||||||
<!-- Right mountain (red) -->
|
|
||||||
<path
|
|
||||||
android:fillColor="#F44336"
|
|
||||||
android:pathData="M11,18 L16,7 L21,18 Z" />
|
|
||||||
|
|
||||||
<!-- Black outlines -->
|
|
||||||
<path
|
|
||||||
android:fillColor="@android:color/transparent"
|
|
||||||
android:strokeColor="#1C1C1C"
|
|
||||||
android:strokeWidth="1"
|
|
||||||
android:strokeLineJoin="round"
|
|
||||||
android:pathData="M3,18 L8,9 L13,18" />
|
|
||||||
|
|
||||||
<path
|
|
||||||
android:fillColor="@android:color/transparent"
|
|
||||||
android:strokeColor="#1C1C1C"
|
|
||||||
android:strokeWidth="1"
|
|
||||||
android:strokeLineJoin="round"
|
|
||||||
android:pathData="M11,18 L16,7 L21,18" />
|
|
||||||
</vector>
|
</vector>
|
||||||
19
android/app/src/main/res/drawable/ic_splash.xml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="108"
|
||||||
|
android:viewportHeight="108">
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#FFFFFF"
|
||||||
|
android:pathData="M0,0 L108,0 L108,108 L0,108 Z" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#FFC107"
|
||||||
|
android:pathData="M24,74 L42,34 L60,74 Z" />
|
||||||
|
|
||||||
|
<path
|
||||||
|
android:fillColor="#F44336"
|
||||||
|
android:pathData="M41,74 L59,24 L84,74 Z" />
|
||||||
|
</vector>
|
||||||
@@ -5,190 +5,84 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="@drawable/widget_background"
|
android:background="@drawable/widget_background"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:padding="12dp">
|
android:padding="12dp"
|
||||||
|
android:gravity="center">
|
||||||
|
|
||||||
<!-- Header -->
|
<!-- Header with icon and "Weekly" text -->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
android:layout_marginBottom="12dp">
|
android:layout_marginBottom="12dp">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="24dp"
|
android:layout_width="28dp"
|
||||||
android:layout_height="24dp"
|
android:layout_height="28dp"
|
||||||
android:src="@drawable/ic_mountains"
|
android:src="@drawable/ic_mountains"
|
||||||
android:tint="@color/widget_primary"
|
android:tint="@color/widget_primary"
|
||||||
android:layout_marginEnd="8dp" />
|
android:layout_marginEnd="8dp"
|
||||||
|
android:contentDescription="@string/ascently_icon" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="0dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:text="@string/weekly"
|
||||||
android:text="Ascently"
|
android:textSize="18sp"
|
||||||
android:textSize="16sp"
|
android:textColor="@color/widget_text_primary" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<!-- Attempts Row -->
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:layout_marginBottom="12dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="32dp"
|
||||||
|
android:layout_height="32dp"
|
||||||
|
android:src="@drawable/ic_circle_filled"
|
||||||
|
android:tint="@color/widget_primary"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
|
android:contentDescription="Attempts icon" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/widget_attempts_value"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="0"
|
||||||
|
android:textSize="40sp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:textColor="@color/widget_text_primary" />
|
android:textColor="@color/widget_text_primary" />
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Climbing Stats"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:textColor="@color/widget_text_secondary" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<!-- Stats Grid -->
|
<!-- Sessions Row -->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:gravity="center">
|
|
||||||
|
|
||||||
<!-- Top Row -->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_marginBottom="8dp">
|
android:gravity="center_vertical">
|
||||||
|
|
||||||
<!-- Sessions Card -->
|
<ImageView
|
||||||
<LinearLayout
|
android:layout_width="32dp"
|
||||||
android:layout_width="0dp"
|
android:layout_height="32dp"
|
||||||
android:layout_height="match_parent"
|
android:src="@drawable/ic_play_arrow_24"
|
||||||
android:layout_weight="1"
|
android:tint="@color/widget_primary"
|
||||||
android:orientation="vertical"
|
android:layout_marginEnd="12dp"
|
||||||
android:gravity="center"
|
android:contentDescription="@string/sessions_icon" />
|
||||||
android:background="@drawable/widget_stat_card_background"
|
|
||||||
android:layout_marginEnd="4dp"
|
|
||||||
android:padding="12dp">
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/widget_total_sessions"
|
android:id="@+id/widget_sessions_value"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="0"
|
android:text="@string/_0"
|
||||||
android:textSize="22sp"
|
android:textSize="40sp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:textColor="@color/widget_primary" />
|
android:textColor="@color/widget_text_primary" />
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Sessions"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:textColor="@color/widget_text_secondary"
|
|
||||||
android:layout_marginTop="2dp" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<!-- Problems Card -->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:gravity="center"
|
|
||||||
android:background="@drawable/widget_stat_card_background"
|
|
||||||
android:layout_marginStart="4dp"
|
|
||||||
android:padding="12dp">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/widget_problems_completed"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="0"
|
|
||||||
android:textSize="22sp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:textColor="@color/widget_primary" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Completed"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:textColor="@color/widget_text_secondary"
|
|
||||||
android:layout_marginTop="2dp" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<!-- Bottom Row -->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="0dp"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="horizontal">
|
|
||||||
|
|
||||||
<!-- Success Rate Card -->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:gravity="center"
|
|
||||||
android:background="@drawable/widget_stat_card_background"
|
|
||||||
android:layout_marginEnd="4dp"
|
|
||||||
android:padding="12dp">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/widget_total_problems"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="0"
|
|
||||||
android:textSize="22sp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:textColor="@color/widget_secondary" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Problems"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:textColor="@color/widget_text_secondary"
|
|
||||||
android:layout_marginTop="2dp" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<!-- Favorite Gym Card -->
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:gravity="center"
|
|
||||||
android:background="@drawable/widget_stat_card_background"
|
|
||||||
android:layout_marginStart="4dp"
|
|
||||||
android:padding="12dp">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/widget_favorite_gym"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="No gyms"
|
|
||||||
android:textSize="13sp"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:textColor="@color/widget_accent"
|
|
||||||
android:gravity="center"
|
|
||||||
android:maxLines="2"
|
|
||||||
android:ellipsize="end" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Favorite"
|
|
||||||
android:textSize="12sp"
|
|
||||||
android:textColor="@color/widget_text_secondary"
|
|
||||||
android:layout_marginTop="2dp" />
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 550 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 730 B |
|
Before Width: | Height: | Size: 982 B After Width: | Height: | Size: 388 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 514 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 628 B |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 854 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 970 B |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 1.6 KiB |
@@ -12,5 +12,9 @@
|
|||||||
<string name="shortcut_end_session_disabled">No active session to end</string>
|
<string name="shortcut_end_session_disabled">No active session to end</string>
|
||||||
|
|
||||||
<!-- Widget -->
|
<!-- Widget -->
|
||||||
<string name="widget_description">View your climbing stats at a glance</string>
|
<string name="widget_description">View your weekly climbing stats</string>
|
||||||
|
<string name="ascently_icon">Ascently icon</string>
|
||||||
|
<string name="weekly">Weekly</string>
|
||||||
|
<string name="sessions_icon">Sessions icon</string>
|
||||||
|
<string name="_0">0</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<style name="Theme.Ascently.Splash" parent="Theme.Ascently">
|
<style name="Theme.Ascently.Splash" parent="Theme.Ascently">
|
||||||
<item name="android:windowSplashScreenBackground">@color/splash_background</item>
|
<item name="android:windowSplashScreenBackground">@color/splash_background</item>
|
||||||
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_mountains</item>
|
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_splash</item>
|
||||||
<item name="android:windowSplashScreenAnimationDuration">200</item>
|
<item name="android:windowSplashScreenAnimationDuration">200</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -3,15 +3,14 @@
|
|||||||
android:description="@string/widget_description"
|
android:description="@string/widget_description"
|
||||||
android:initialKeyguardLayout="@layout/widget_climb_stats"
|
android:initialKeyguardLayout="@layout/widget_climb_stats"
|
||||||
android:initialLayout="@layout/widget_climb_stats"
|
android:initialLayout="@layout/widget_climb_stats"
|
||||||
android:minWidth="250dp"
|
android:minWidth="110dp"
|
||||||
android:minHeight="180dp"
|
android:minHeight="110dp"
|
||||||
|
android:maxResizeWidth="110dp"
|
||||||
|
android:maxResizeHeight="110dp"
|
||||||
android:previewImage="@drawable/ic_mountains"
|
android:previewImage="@drawable/ic_mountains"
|
||||||
android:previewLayout="@layout/widget_climb_stats"
|
android:previewLayout="@layout/widget_climb_stats"
|
||||||
android:resizeMode="horizontal|vertical"
|
android:resizeMode="none"
|
||||||
android:targetCellWidth="4"
|
android:targetCellWidth="2"
|
||||||
android:targetCellHeight="2"
|
android:targetCellHeight="2"
|
||||||
android:updatePeriodMillis="1800000"
|
android:updatePeriodMillis="1800000"
|
||||||
android:widgetCategory="home_screen"
|
android:widgetCategory="home_screen" />
|
||||||
android:widgetFeatures="reconfigurable"
|
|
||||||
android:maxResizeWidth="320dp"
|
|
||||||
android:maxResizeHeight="240dp" />
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[versions]
|
[versions]
|
||||||
agp = "8.12.3"
|
agp = "8.12.3"
|
||||||
kotlin = "2.2.20"
|
kotlin = "2.2.21"
|
||||||
coreKtx = "1.17.0"
|
coreKtx = "1.17.0"
|
||||||
junit = "4.13.2"
|
junit = "4.13.2"
|
||||||
junitVersion = "1.3.0"
|
junitVersion = "1.3.0"
|
||||||
@@ -9,17 +9,17 @@ androidxTestCore = "1.7.0"
|
|||||||
androidxTestExt = "1.3.0"
|
androidxTestExt = "1.3.0"
|
||||||
androidxTestRunner = "1.7.0"
|
androidxTestRunner = "1.7.0"
|
||||||
androidxTestRules = "1.7.0"
|
androidxTestRules = "1.7.0"
|
||||||
lifecycleRuntimeKtx = "2.9.4"
|
lifecycleRuntimeKtx = "2.10.0"
|
||||||
activityCompose = "1.11.0"
|
activityCompose = "1.12.0"
|
||||||
composeBom = "2025.10.00"
|
composeBom = "2025.11.01"
|
||||||
room = "2.8.2"
|
room = "2.8.4"
|
||||||
navigation = "2.9.5"
|
navigation = "2.9.6"
|
||||||
viewmodel = "2.9.4"
|
viewmodel = "2.10.0"
|
||||||
kotlinxSerialization = "1.9.0"
|
kotlinxSerialization = "1.9.0"
|
||||||
kotlinxCoroutines = "1.10.2"
|
kotlinxCoroutines = "1.10.2"
|
||||||
coil = "2.7.0"
|
coil = "2.7.0"
|
||||||
ksp = "2.2.20-2.0.3"
|
ksp = "2.2.20-2.0.3"
|
||||||
exifinterface = "1.3.6"
|
exifinterface = "1.4.1"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
||||||
|
|||||||
3
branding/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
*.tmp
|
||||||
|
.DS_Store
|
||||||
|
*.log
|
||||||
394
branding/generate.py
Executable file
@@ -0,0 +1,394 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import xml.etree.ElementTree as ET
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import Callable, TypedDict
|
||||||
|
from PIL import Image, ImageDraw
|
||||||
|
|
||||||
|
|
||||||
|
class Polygon(TypedDict):
|
||||||
|
coords: list[tuple[float, float]]
|
||||||
|
fill: str
|
||||||
|
|
||||||
|
|
||||||
|
SCRIPT_DIR = Path(__file__).parent
|
||||||
|
PROJECT_ROOT = SCRIPT_DIR.parent
|
||||||
|
SOURCE_DIR = SCRIPT_DIR / "source"
|
||||||
|
LOGOS_DIR = SCRIPT_DIR / "logos"
|
||||||
|
|
||||||
|
|
||||||
|
def parse_svg_polygons(svg_path: Path) -> list[Polygon]:
|
||||||
|
tree = ET.parse(svg_path)
|
||||||
|
root = tree.getroot()
|
||||||
|
|
||||||
|
ns = {"svg": "http://www.w3.org/2000/svg"}
|
||||||
|
polygons = root.findall(".//svg:polygon", ns)
|
||||||
|
if not polygons:
|
||||||
|
polygons = root.findall(".//polygon")
|
||||||
|
|
||||||
|
result: list[Polygon] = []
|
||||||
|
for poly in polygons:
|
||||||
|
points_str = poly.get("points", "").strip()
|
||||||
|
fill = poly.get("fill", "#000000")
|
||||||
|
|
||||||
|
coords: list[tuple[float, float]] = []
|
||||||
|
for pair in points_str.split():
|
||||||
|
x, y = pair.split(",")
|
||||||
|
coords.append((float(x), float(y)))
|
||||||
|
|
||||||
|
result.append({"coords": coords, "fill": fill})
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
def get_bbox(polygons: list[Polygon]) -> dict[str, float]:
|
||||||
|
all_coords: list[tuple[float, float]] = []
|
||||||
|
for poly in polygons:
|
||||||
|
all_coords.extend(poly["coords"])
|
||||||
|
|
||||||
|
xs = [c[0] for c in all_coords]
|
||||||
|
ys = [c[1] for c in all_coords]
|
||||||
|
|
||||||
|
return {
|
||||||
|
"min_x": min(xs),
|
||||||
|
"max_x": max(xs),
|
||||||
|
"min_y": min(ys),
|
||||||
|
"max_y": max(ys),
|
||||||
|
"width": max(xs) - min(xs),
|
||||||
|
"height": max(ys) - min(ys),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def scale_and_center(
|
||||||
|
polygons: list[Polygon], viewbox_size: float, target_width: float
|
||||||
|
) -> list[Polygon]:
|
||||||
|
bbox = get_bbox(polygons)
|
||||||
|
|
||||||
|
scale = target_width / bbox["width"]
|
||||||
|
center = viewbox_size / 2
|
||||||
|
|
||||||
|
scaled_polys: list[Polygon] = []
|
||||||
|
for poly in polygons:
|
||||||
|
scaled_coords = [(x * scale, y * scale) for x, y in poly["coords"]]
|
||||||
|
scaled_polys.append({"coords": scaled_coords, "fill": poly["fill"]})
|
||||||
|
|
||||||
|
scaled_bbox = get_bbox(scaled_polys)
|
||||||
|
current_center_x = (scaled_bbox["min_x"] + scaled_bbox["max_x"]) / 2
|
||||||
|
current_center_y = (scaled_bbox["min_y"] + scaled_bbox["max_y"]) / 2
|
||||||
|
|
||||||
|
offset_x = center - current_center_x
|
||||||
|
offset_y = center - current_center_y
|
||||||
|
|
||||||
|
final_polys: list[Polygon] = []
|
||||||
|
for poly in scaled_polys:
|
||||||
|
final_coords = [(x + offset_x, y + offset_y) for x, y in poly["coords"]]
|
||||||
|
final_polys.append({"coords": final_coords, "fill": poly["fill"]})
|
||||||
|
|
||||||
|
return final_polys
|
||||||
|
|
||||||
|
|
||||||
|
def format_svg_points(coords: list[tuple[float, float]]) -> str:
|
||||||
|
return " ".join(f"{x:.3f},{y:.3f}" for x, y in coords)
|
||||||
|
|
||||||
|
|
||||||
|
def format_android_path(coords: list[tuple[float, float]]) -> str:
|
||||||
|
points = " ".join(f"{x:.3f},{y:.3f}" for x, y in coords)
|
||||||
|
pairs = points.split()
|
||||||
|
return f"M{pairs[0]} L{pairs[1]} L{pairs[2]} Z"
|
||||||
|
|
||||||
|
|
||||||
|
def generate_svg(polygons: list[Polygon], width: int, height: int) -> str:
|
||||||
|
lines = [
|
||||||
|
f'<svg width="{width}" height="{height}" viewBox="0 0 {width} {height}" xmlns="http://www.w3.org/2000/svg">'
|
||||||
|
]
|
||||||
|
for poly in polygons:
|
||||||
|
points = format_svg_points(poly["coords"])
|
||||||
|
lines.append(f' <polygon points="{points}" fill="{poly["fill"]}"/>')
|
||||||
|
lines.append("</svg>")
|
||||||
|
return "\n".join(lines)
|
||||||
|
|
||||||
|
|
||||||
|
def generate_android_vector(
|
||||||
|
polygons: list[Polygon], width: int, height: int, viewbox: int
|
||||||
|
) -> str:
|
||||||
|
lines = [
|
||||||
|
'<?xml version="1.0" encoding="utf-8"?>',
|
||||||
|
'<vector xmlns:android="http://schemas.android.com/apk/res/android"',
|
||||||
|
f' android:width="{width}dp"',
|
||||||
|
f' android:height="{height}dp"',
|
||||||
|
f' android:viewportWidth="{viewbox}"',
|
||||||
|
f' android:viewportHeight="{viewbox}">',
|
||||||
|
]
|
||||||
|
for poly in polygons:
|
||||||
|
path = format_android_path(poly["coords"])
|
||||||
|
lines.append(
|
||||||
|
f' <path android:fillColor="{poly["fill"]}" android:pathData="{path}" />'
|
||||||
|
)
|
||||||
|
lines.append("</vector>")
|
||||||
|
return "\n".join(lines)
|
||||||
|
|
||||||
|
|
||||||
|
def rasterize_svg(
|
||||||
|
svg_path: Path,
|
||||||
|
output_path: Path,
|
||||||
|
size: int,
|
||||||
|
bg_color: tuple[int, int, int, int] | None = None,
|
||||||
|
circular: bool = False,
|
||||||
|
) -> None:
|
||||||
|
from xml.dom import minidom
|
||||||
|
|
||||||
|
doc = minidom.parse(str(svg_path))
|
||||||
|
|
||||||
|
img = Image.new(
|
||||||
|
"RGBA", (size, size), (255, 255, 255, 0) if bg_color is None else bg_color
|
||||||
|
)
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
svg_elem = doc.getElementsByTagName("svg")[0]
|
||||||
|
viewbox = svg_elem.getAttribute("viewBox").split()
|
||||||
|
if viewbox:
|
||||||
|
vb_width = float(viewbox[2])
|
||||||
|
vb_height = float(viewbox[3])
|
||||||
|
scale_x = size / vb_width
|
||||||
|
scale_y = size / vb_height
|
||||||
|
else:
|
||||||
|
scale_x = scale_y = 1
|
||||||
|
|
||||||
|
def parse_transform(
|
||||||
|
transform_str: str,
|
||||||
|
) -> Callable[[float, float], tuple[float, float]]:
|
||||||
|
import re
|
||||||
|
|
||||||
|
if not transform_str:
|
||||||
|
return lambda x, y: (x, y)
|
||||||
|
|
||||||
|
transforms: list[tuple[str, list[float]]] = []
|
||||||
|
for match in re.finditer(r"(\w+)\(([^)]+)\)", transform_str):
|
||||||
|
func, args_str = match.groups()
|
||||||
|
args = [float(x) for x in args_str.replace(",", " ").split()]
|
||||||
|
transforms.append((func, args))
|
||||||
|
|
||||||
|
def apply_transforms(x: float, y: float) -> tuple[float, float]:
|
||||||
|
for func, args in transforms:
|
||||||
|
if func == "translate":
|
||||||
|
x += args[0]
|
||||||
|
y += args[1] if len(args) > 1 else args[0]
|
||||||
|
elif func == "scale":
|
||||||
|
x *= args[0]
|
||||||
|
y *= args[1] if len(args) > 1 else args[0]
|
||||||
|
return x, y
|
||||||
|
|
||||||
|
return apply_transforms
|
||||||
|
|
||||||
|
for g in doc.getElementsByTagName("g"):
|
||||||
|
transform = parse_transform(g.getAttribute("transform"))
|
||||||
|
|
||||||
|
for poly in g.getElementsByTagName("polygon"):
|
||||||
|
points_str = poly.getAttribute("points").strip()
|
||||||
|
fill = poly.getAttribute("fill")
|
||||||
|
if not fill:
|
||||||
|
fill = "#000000"
|
||||||
|
|
||||||
|
coords: list[tuple[float, float]] = []
|
||||||
|
for pair in points_str.split():
|
||||||
|
x, y = pair.split(",")
|
||||||
|
x, y = float(x), float(y)
|
||||||
|
x, y = transform(x, y)
|
||||||
|
coords.append((x * scale_x, y * scale_y))
|
||||||
|
|
||||||
|
draw.polygon(coords, fill=fill)
|
||||||
|
|
||||||
|
for poly in doc.getElementsByTagName("polygon"):
|
||||||
|
if poly.parentNode and getattr(poly.parentNode, "tagName", None) == "g":
|
||||||
|
continue
|
||||||
|
|
||||||
|
points_str = poly.getAttribute("points").strip()
|
||||||
|
fill = poly.getAttribute("fill")
|
||||||
|
if not fill:
|
||||||
|
fill = "#000000"
|
||||||
|
|
||||||
|
coords = []
|
||||||
|
for pair in points_str.split():
|
||||||
|
x, y = pair.split(",")
|
||||||
|
coords.append((float(x) * scale_x, float(y) * scale_y))
|
||||||
|
|
||||||
|
draw.polygon(coords, fill=fill)
|
||||||
|
|
||||||
|
if circular:
|
||||||
|
mask = Image.new("L", (size, size), 0)
|
||||||
|
mask_draw = ImageDraw.Draw(mask)
|
||||||
|
mask_draw.ellipse((0, 0, size, size), fill=255)
|
||||||
|
img.putalpha(mask)
|
||||||
|
|
||||||
|
img.save(output_path)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
print("Generating branding assets...")
|
||||||
|
|
||||||
|
logo_svg = SOURCE_DIR / "logo.svg"
|
||||||
|
icon_light = SOURCE_DIR / "icon-light.svg"
|
||||||
|
icon_dark = SOURCE_DIR / "icon-dark.svg"
|
||||||
|
icon_tinted = SOURCE_DIR / "icon-tinted.svg"
|
||||||
|
|
||||||
|
polygons = parse_svg_polygons(logo_svg)
|
||||||
|
|
||||||
|
print(" iOS...")
|
||||||
|
ios_assets = PROJECT_ROOT / "ios/Ascently/Assets.xcassets/AppIcon.appiconset"
|
||||||
|
|
||||||
|
for src, dst in [
|
||||||
|
(icon_light, ios_assets / "app_icon_light_template.svg"),
|
||||||
|
(icon_dark, ios_assets / "app_icon_dark_template.svg"),
|
||||||
|
(icon_tinted, ios_assets / "app_icon_tinted_template.svg"),
|
||||||
|
]:
|
||||||
|
with open(src) as f:
|
||||||
|
content = f.read()
|
||||||
|
with open(dst, "w") as f:
|
||||||
|
f.write(content)
|
||||||
|
|
||||||
|
img_light = Image.new("RGB", (1024, 1024), (255, 255, 255))
|
||||||
|
draw_light = ImageDraw.Draw(img_light)
|
||||||
|
scaled = scale_and_center(polygons, 1024, int(1024 * 0.7))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw_light.polygon(coords, fill=poly["fill"])
|
||||||
|
img_light.save(ios_assets / "app_icon_1024.png")
|
||||||
|
|
||||||
|
img_dark = Image.new("RGB", (1024, 1024), (26, 26, 26))
|
||||||
|
draw_dark = ImageDraw.Draw(img_dark)
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw_dark.polygon(coords, fill=poly["fill"])
|
||||||
|
img_dark.save(ios_assets / "app_icon_1024_dark.png")
|
||||||
|
|
||||||
|
img_tinted = Image.new("RGB", (1024, 1024), (0, 0, 0))
|
||||||
|
draw_tinted = ImageDraw.Draw(img_tinted)
|
||||||
|
for i, poly in enumerate(scaled):
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw_tinted.polygon(coords, fill=(0, 0, 0))
|
||||||
|
img_tinted.save(ios_assets / "app_icon_1024_tinted.png")
|
||||||
|
|
||||||
|
print(" Android...")
|
||||||
|
|
||||||
|
polys_108 = scale_and_center(polygons, 108, 60)
|
||||||
|
android_xml = generate_android_vector(polys_108, 108, 108, 108)
|
||||||
|
(
|
||||||
|
PROJECT_ROOT / "android/app/src/main/res/drawable/ic_launcher_foreground.xml"
|
||||||
|
).write_text(android_xml)
|
||||||
|
|
||||||
|
polys_24 = scale_and_center(polygons, 24, 20)
|
||||||
|
mountains_xml = generate_android_vector(polys_24, 24, 24, 24)
|
||||||
|
(PROJECT_ROOT / "android/app/src/main/res/drawable/ic_mountains.xml").write_text(
|
||||||
|
mountains_xml
|
||||||
|
)
|
||||||
|
|
||||||
|
for density, size in [
|
||||||
|
("mdpi", 48),
|
||||||
|
("hdpi", 72),
|
||||||
|
("xhdpi", 96),
|
||||||
|
("xxhdpi", 144),
|
||||||
|
("xxxhdpi", 192),
|
||||||
|
]:
|
||||||
|
mipmap_dir = PROJECT_ROOT / f"android/app/src/main/res/mipmap-{density}"
|
||||||
|
|
||||||
|
img = Image.new("RGBA", (size, size), (255, 255, 255, 255))
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
scaled = scale_and_center(polygons, size, int(size * 0.6))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
img.save(mipmap_dir / "ic_launcher.webp")
|
||||||
|
|
||||||
|
img_round = Image.new("RGBA", (size, size), (255, 255, 255, 255))
|
||||||
|
draw_round = ImageDraw.Draw(img_round)
|
||||||
|
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw_round.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
mask = Image.new("L", (size, size), 0)
|
||||||
|
mask_draw = ImageDraw.Draw(mask)
|
||||||
|
mask_draw.ellipse((0, 0, size, size), fill=255)
|
||||||
|
img_round.putalpha(mask)
|
||||||
|
|
||||||
|
img_round.save(mipmap_dir / "ic_launcher_round.webp")
|
||||||
|
|
||||||
|
print(" Docs...")
|
||||||
|
|
||||||
|
polys_32 = scale_and_center(polygons, 32, 26)
|
||||||
|
logo_svg_32 = generate_svg(polys_32, 32, 32)
|
||||||
|
(PROJECT_ROOT / "docs/src/assets/logo.svg").write_text(logo_svg_32)
|
||||||
|
(PROJECT_ROOT / "docs/src/assets/logo-dark.svg").write_text(logo_svg_32)
|
||||||
|
|
||||||
|
polys_256 = scale_and_center(polygons, 256, 208)
|
||||||
|
logo_svg_256 = generate_svg(polys_256, 256, 256)
|
||||||
|
(PROJECT_ROOT / "docs/src/assets/logo-highres.svg").write_text(logo_svg_256)
|
||||||
|
|
||||||
|
logo_32_path = PROJECT_ROOT / "docs/src/assets/logo.svg"
|
||||||
|
rasterize_svg(logo_32_path, PROJECT_ROOT / "docs/public/favicon.png", 32)
|
||||||
|
|
||||||
|
sizes = [16, 32, 48]
|
||||||
|
imgs = []
|
||||||
|
for size in sizes:
|
||||||
|
img = Image.new("RGBA", (size, size), (255, 255, 255, 0))
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
scaled = scale_and_center(polygons, size, int(size * 0.8))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
imgs.append(img)
|
||||||
|
|
||||||
|
imgs[0].save(
|
||||||
|
PROJECT_ROOT / "docs/public/favicon.ico",
|
||||||
|
format="ICO",
|
||||||
|
sizes=[(s, s) for s in sizes],
|
||||||
|
append_images=imgs[1:],
|
||||||
|
)
|
||||||
|
|
||||||
|
print(" Logos...")
|
||||||
|
|
||||||
|
LOGOS_DIR.mkdir(exist_ok=True)
|
||||||
|
|
||||||
|
sizes = [64, 128, 256, 512, 1024, 2048]
|
||||||
|
for size in sizes:
|
||||||
|
img = Image.new("RGBA", (size, size), (255, 255, 255, 0))
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
scaled = scale_and_center(polygons, size, int(size * 0.8))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
img.save(LOGOS_DIR / f"logo-{size}.png")
|
||||||
|
|
||||||
|
for size in sizes:
|
||||||
|
img = Image.new("RGBA", (size, size), (255, 255, 255, 255))
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
scaled = scale_and_center(polygons, size, int(size * 0.8))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
img.save(LOGOS_DIR / f"logo-{size}-white.png")
|
||||||
|
|
||||||
|
for size in sizes:
|
||||||
|
img = Image.new("RGBA", (size, size), (26, 26, 26, 255))
|
||||||
|
draw = ImageDraw.Draw(img)
|
||||||
|
|
||||||
|
scaled = scale_and_center(polygons, size, int(size * 0.8))
|
||||||
|
for poly in scaled:
|
||||||
|
coords = [(x, y) for x, y in poly["coords"]]
|
||||||
|
draw.polygon(coords, fill=poly["fill"])
|
||||||
|
|
||||||
|
img.save(LOGOS_DIR / f"logo-{size}-dark.png")
|
||||||
|
|
||||||
|
print("Done.")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
12
branding/generate.sh
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
|
if ! command -v python3 &> /dev/null; then
|
||||||
|
echo "Error: Python 3 required"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
python3 "$SCRIPT_DIR/generate.py"
|
||||||
BIN
branding/logos/logo-1024-dark.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
branding/logos/logo-1024-white.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
branding/logos/logo-1024.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
branding/logos/logo-128-dark.png
Normal file
|
After Width: | Height: | Size: 804 B |
BIN
branding/logos/logo-128-white.png
Normal file
|
After Width: | Height: | Size: 798 B |
BIN
branding/logos/logo-128.png
Normal file
|
After Width: | Height: | Size: 795 B |
BIN
branding/logos/logo-2048-dark.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
branding/logos/logo-2048-white.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
branding/logos/logo-2048.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
branding/logos/logo-256-dark.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
branding/logos/logo-256-white.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
branding/logos/logo-256.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
branding/logos/logo-512-dark.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
branding/logos/logo-512-white.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
branding/logos/logo-512.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
branding/logos/logo-64-dark.png
Normal file
|
After Width: | Height: | Size: 411 B |
BIN
branding/logos/logo-64-white.png
Normal file
|
After Width: | Height: | Size: 413 B |
BIN
branding/logos/logo-64.png
Normal file
|
After Width: | Height: | Size: 413 B |
8
branding/source/icon-dark.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="1024" height="1024" fill="#1A1A1A" rx="180" ry="180"/>
|
||||||
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
|
<polygon points="8,75 35,14.25 62,75" fill="#FFC107"/>
|
||||||
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#F44336"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 411 B |
8
branding/source/icon-light.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="1024" height="1024" fill="#FFFFFF" rx="180" ry="180"/>
|
||||||
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
|
<polygon points="8,75 35,14.25 62,75" fill="#FFC107"/>
|
||||||
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#F44336"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 411 B |
8
branding/source/icon-tinted.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="1024" height="1024" fill="transparent" rx="180" ry="180"/>
|
||||||
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
|
<polygon points="8,75 35,14.25 62,75" fill="#000000" opacity="0.8"/>
|
||||||
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#000000" opacity="0.9"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 443 B |
5
branding/source/logo.svg
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="108" height="108" viewBox="0 0 108 108" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<polygon points="8,75 35,14.25 62,75" fill="#FFC107"/>
|
||||||
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#F44336"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 254 B |
@@ -43,10 +43,6 @@ export default defineConfig({
|
|||||||
{ label: "API Reference", slug: "sync/api-reference" },
|
{ label: "API Reference", slug: "sync/api-reference" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: "Reference",
|
|
||||||
autogenerate: { directory: "reference" },
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Privacy",
|
label: "Privacy",
|
||||||
link: "/privacy/",
|
link: "/privacy/",
|
||||||
|
|||||||
@@ -25,9 +25,13 @@
|
|||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^9.5.0",
|
"@astrojs/node": "^9.5.1",
|
||||||
"@astrojs/starlight": "^0.36.1",
|
"@astrojs/starlight": "^0.36.2",
|
||||||
"astro": "^5.14.5",
|
"astro": "^5.16.0",
|
||||||
"sharp": "^0.34.4"
|
"qrcode": "^1.5.4",
|
||||||
|
"sharp": "^0.34.5"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/qrcode": "^1.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1369
docs/pnpm-lock.yaml
generated
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 166 B |
|
Before Width: | Height: | Size: 731 B After Width: | Height: | Size: 229 B |
|
Before Width: | Height: | Size: 96 KiB |
@@ -1,15 +1,4 @@
|
|||||||
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Left mountain (amber/yellow) -->
|
<polygon points="3.000,26.636 10.736,9.231 18.471,26.636" fill="#FFC107"/>
|
||||||
<polygon points="6,24 12,8 18,24"
|
<polygon points="9.661,26.636 19.331,5.364 29.000,26.636" fill="#F44336"/>
|
||||||
fill="#FFC107"
|
|
||||||
stroke="#FFFFFF"
|
|
||||||
stroke-width="1"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
|
|
||||||
<!-- Right mountain (red) -->
|
|
||||||
<polygon points="14,24 22,4 30,24"
|
|
||||||
fill="#F44336"
|
|
||||||
stroke="#FFFFFF"
|
|
||||||
stroke-width="1"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 475 B After Width: | Height: | Size: 244 B |
@@ -1,15 +1,4 @@
|
|||||||
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Left mountain (amber/yellow) -->
|
<polygon points="24.000,213.091 85.884,73.851 147.769,213.091" fill="#FFC107"/>
|
||||||
<polygon points="48,192 96,64 144,192"
|
<polygon points="77.289,213.091 154.645,42.909 232.000,213.091" fill="#F44336"/>
|
||||||
fill="#FFC107"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="4"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
|
|
||||||
<!-- Right mountain (red) -->
|
|
||||||
<polygon points="112,192 176,32 240,192"
|
|
||||||
fill="#F44336"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="4"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 259 B |
@@ -1,15 +1,4 @@
|
|||||||
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Left mountain (amber/yellow) -->
|
<polygon points="3.000,26.636 10.736,9.231 18.471,26.636" fill="#FFC107"/>
|
||||||
<polygon points="6,24 12,8 18,24"
|
<polygon points="9.661,26.636 19.331,5.364 29.000,26.636" fill="#F44336"/>
|
||||||
fill="#FFC107"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="1"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
|
|
||||||
<!-- Right mountain (red) -->
|
|
||||||
<polygon points="14,24 22,4 30,24"
|
|
||||||
fill="#F44336"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="1"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 475 B After Width: | Height: | Size: 244 B |
155
docs/src/components/DownloadButtons.astro
Normal file
@@ -0,0 +1,155 @@
|
|||||||
|
---
|
||||||
|
import { Tabs, TabItem } from "@astrojs/starlight/components";
|
||||||
|
import { Card, CardGrid } from "@astrojs/starlight/components";
|
||||||
|
import { LinkButton } from "@astrojs/starlight/components";
|
||||||
|
import { Badge } from "@astrojs/starlight/components";
|
||||||
|
import QRCode from "./QRCode.astro";
|
||||||
|
import { downloadLinks, requirements } from "../config";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
showQR?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { showQR = false } = Astro.props;
|
||||||
|
|
||||||
|
const hasLink = (link: string | undefined) => link && link.trim() !== "";
|
||||||
|
---
|
||||||
|
|
||||||
|
<Tabs syncKey="platform">
|
||||||
|
<TabItem label="Android" icon="star">
|
||||||
|
<CardGrid>
|
||||||
|
{
|
||||||
|
hasLink(downloadLinks.android.playStore) && (
|
||||||
|
<Card title="Google Play Store" icon="star">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<LinkButton
|
||||||
|
href={downloadLinks.android.playStore}
|
||||||
|
variant="primary"
|
||||||
|
icon="external"
|
||||||
|
>
|
||||||
|
Get on Play Store
|
||||||
|
</LinkButton>
|
||||||
|
</p>
|
||||||
|
{showQR && (
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<QRCode
|
||||||
|
data={downloadLinks.android.playStore}
|
||||||
|
size={200}
|
||||||
|
alt="QR code for Play Store"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
hasLink(downloadLinks.android.obtainium) && (
|
||||||
|
<Card title="Obtainium" icon="rocket">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<LinkButton
|
||||||
|
href={downloadLinks.android.obtainium}
|
||||||
|
variant="primary"
|
||||||
|
icon="external"
|
||||||
|
>
|
||||||
|
Get on Obtainium
|
||||||
|
</LinkButton>
|
||||||
|
</p>
|
||||||
|
{showQR && (
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<QRCode
|
||||||
|
data={downloadLinks.android.obtainium}
|
||||||
|
size={200}
|
||||||
|
alt="QR code for Obtainium"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
hasLink(downloadLinks.android.releases) && (
|
||||||
|
<Card title="Direct Download" icon="download">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<LinkButton
|
||||||
|
href={downloadLinks.android.releases}
|
||||||
|
variant="secondary"
|
||||||
|
icon="external"
|
||||||
|
>
|
||||||
|
Download APK
|
||||||
|
</LinkButton>
|
||||||
|
</p>
|
||||||
|
{showQR && (
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<QRCode
|
||||||
|
data={downloadLinks.android.releases}
|
||||||
|
size={200}
|
||||||
|
alt="QR code for APK download"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</CardGrid>
|
||||||
|
|
||||||
|
<p><strong>Requirements:</strong> {requirements.android}</p>
|
||||||
|
</TabItem>
|
||||||
|
|
||||||
|
<TabItem label="iOS" icon="apple">
|
||||||
|
<CardGrid>
|
||||||
|
{
|
||||||
|
hasLink(downloadLinks.ios.appStore) && (
|
||||||
|
<Card title="App Store" icon="rocket">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<LinkButton
|
||||||
|
href={downloadLinks.ios.appStore}
|
||||||
|
variant="primary"
|
||||||
|
icon="external"
|
||||||
|
>
|
||||||
|
Download on App Store
|
||||||
|
</LinkButton>
|
||||||
|
</p>
|
||||||
|
{showQR && (
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<QRCode
|
||||||
|
data={downloadLinks.ios.appStore}
|
||||||
|
size={200}
|
||||||
|
alt="QR code for App Store"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
hasLink(downloadLinks.ios.testFlight) && (
|
||||||
|
<Card title="TestFlight Beta" icon="warning">
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<LinkButton
|
||||||
|
href={downloadLinks.ios.testFlight}
|
||||||
|
variant="secondary"
|
||||||
|
icon="external"
|
||||||
|
>
|
||||||
|
Join TestFlight
|
||||||
|
</LinkButton>
|
||||||
|
</p>
|
||||||
|
{showQR && (
|
||||||
|
<p style="text-align: center;">
|
||||||
|
<QRCode
|
||||||
|
data={downloadLinks.ios.testFlight}
|
||||||
|
size={200}
|
||||||
|
alt="QR code for TestFlight"
|
||||||
|
/>
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</CardGrid>
|
||||||
|
|
||||||
|
<p><strong>Requirements:</strong> {requirements.ios}</p>
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
111
docs/src/components/QRCode.astro
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
---
|
||||||
|
import * as QR from "qrcode";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
data: string;
|
||||||
|
size?: number;
|
||||||
|
alt?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data, size = 200, alt = "QR Code" } = Astro.props;
|
||||||
|
|
||||||
|
// Generate QR code for dark mode
|
||||||
|
let darkModeQR = "";
|
||||||
|
try {
|
||||||
|
darkModeQR = await QR.toDataURL(data, {
|
||||||
|
width: size,
|
||||||
|
margin: 2,
|
||||||
|
color: {
|
||||||
|
dark: "#FFBF00",
|
||||||
|
light: "#17181C",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to generate dark mode QR code:", err);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate QR code for light mode
|
||||||
|
let lightModeQR = "";
|
||||||
|
try {
|
||||||
|
lightModeQR = await QR.toDataURL(data, {
|
||||||
|
width: size,
|
||||||
|
margin: 2,
|
||||||
|
color: {
|
||||||
|
dark: "#F24B3C",
|
||||||
|
light: "#FFFFFF",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to generate light mode QR code:", err);
|
||||||
|
}
|
||||||
|
|
||||||
|
const uniqueId = `qr-${Math.random().toString(36).substr(2, 9)}`;
|
||||||
|
---
|
||||||
|
|
||||||
|
{
|
||||||
|
(darkModeQR || lightModeQR) && (
|
||||||
|
<img
|
||||||
|
id={uniqueId}
|
||||||
|
alt={alt}
|
||||||
|
width={size}
|
||||||
|
height={size}
|
||||||
|
data-light-src={lightModeQR}
|
||||||
|
data-dark-src={darkModeQR}
|
||||||
|
style="margin: auto;"
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
<script is:inline define:vars={{ uniqueId, lightModeQR, darkModeQR }}>
|
||||||
|
(function () {
|
||||||
|
const img = document.getElementById(uniqueId);
|
||||||
|
if (!img) return;
|
||||||
|
|
||||||
|
const theme = document.documentElement.getAttribute("data-theme");
|
||||||
|
if (theme === "dark" && darkModeQR) {
|
||||||
|
img.setAttribute("src", darkModeQR);
|
||||||
|
} else if (lightModeQR) {
|
||||||
|
img.setAttribute("src", lightModeQR);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function updateQRCodes() {
|
||||||
|
const theme = document.documentElement.getAttribute("data-theme");
|
||||||
|
const qrImages = document.querySelectorAll(
|
||||||
|
"img[data-light-src][data-dark-src]",
|
||||||
|
);
|
||||||
|
|
||||||
|
qrImages.forEach((img) => {
|
||||||
|
const lightSrc = img.getAttribute("data-light-src");
|
||||||
|
const darkSrc = img.getAttribute("data-dark-src");
|
||||||
|
|
||||||
|
if (theme === "dark" && darkSrc) {
|
||||||
|
img.setAttribute("src", darkSrc);
|
||||||
|
} else if (lightSrc) {
|
||||||
|
img.setAttribute("src", lightSrc);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set initial theme on page load
|
||||||
|
updateQRCodes();
|
||||||
|
|
||||||
|
// Watch for theme changes
|
||||||
|
const observer = new MutationObserver((mutations) => {
|
||||||
|
mutations.forEach((mutation) => {
|
||||||
|
if (
|
||||||
|
mutation.type === "attributes" &&
|
||||||
|
mutation.attributeName === "data-theme"
|
||||||
|
) {
|
||||||
|
updateQRCodes();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.documentElement, {
|
||||||
|
attributes: true,
|
||||||
|
attributeFilter: ["data-theme"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
17
docs/src/config.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
export const requirements = {
|
||||||
|
android: "Android 12+",
|
||||||
|
ios: "iOS 17+",
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
export const downloadLinks = {
|
||||||
|
android: {
|
||||||
|
releases: "https://git.atri.dad/atridad/Ascently/releases",
|
||||||
|
obtainium:
|
||||||
|
"https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://git.atri.dad/atridad/Ascently/releases",
|
||||||
|
playStore: "",
|
||||||
|
},
|
||||||
|
ios: {
|
||||||
|
appStore: "https://apps.apple.com/ca/app/ascently/id6753959144",
|
||||||
|
testFlight: "https://testflight.apple.com/join/E2DYRGH8",
|
||||||
|
},
|
||||||
|
} as const;
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
title: Download
|
|
||||||
description: Get Ascently on your Android or iOS device
|
|
||||||
---
|
|
||||||
|
|
||||||
## Android
|
|
||||||
|
|
||||||
### Option 1: Direct APK Download
|
|
||||||
Download the latest APK from the [Releases page](https://git.atri.dad/atridad/Ascently/releases).
|
|
||||||
|
|
||||||
### Option 2: Obtainium
|
|
||||||
Use Obtainium for automatic updates:
|
|
||||||
|
|
||||||
[<img src="https://github.com/ImranR98/Obtainium/blob/main/assets/graphics/badge_obtainium.png?raw=true" alt="Obtainium" height="41">](https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22com.atridad.ascently%22%2C%22url%22%3A%22https%3A%2F%2Fgit.atri.dad%2Fatridad%2FAscently%2Freleases%22%2C%22author%22%3A%22git.atri.dad%22%2C%22name%22%3A%22Ascently%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22intermediateLink%5C%22%3A%5B%5D%2C%5C%22customLinkFilterRegex%5C%22%3A%5C%22%5C%22%2C%5C%22filterByLinkText%5C%22%3Afalse%2C%5C%22skipSort%5C%22%3Afalse%2C%5C%22reverseSort%5C%22%3Afalse%2C%5C%22sortByLastLinkSegment%5C%22%3Afalse%2C%5C%22versionExtractWholePage%5C%22%3Afalse%2C%5C%22requestHeader%5C%22%3A%5B%7B%5C%22requestHeader%5C%22%3A%5C%22User-Agent%3A%20Mozilla%2F5.0%20(Linux%3B%20Android%2010%3B%20K)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F114.0.0.0%20Mobile%20Safari%2F537.36%5C%22%7D%5D%2C%5C%22defaultPseudoVersioningMethod%5C%22%3A%5C%22partialAPKHash%5C%22%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22Ascently%5C%22%2C%5C%22appAuthor%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%2C%5C%22refreshBeforeDownload%5C%22%3Afalse%7D%22%2C%22overrideSource%22%3Anull%7D)
|
|
||||||
|
|
||||||
## iOS
|
|
||||||
|
|
||||||
### TestFlight Beta
|
|
||||||
Join the TestFlight beta: [https://testflight.apple.com/join/E2DYRGH8](https://testflight.apple.com/join/E2DYRGH8)
|
|
||||||
|
|
||||||
### App Store
|
|
||||||
App Store release coming soon.
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
- **Android 12+** or **iOS 17+**
|
|
||||||
10
docs/src/content/docs/download.mdx
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: Download
|
||||||
|
description: Get Ascently on your Android or iOS device
|
||||||
|
---
|
||||||
|
|
||||||
|
import DownloadButtons from '../../components/DownloadButtons.astro';
|
||||||
|
|
||||||
|
Get Ascently on your device and start tracking your climbs today!
|
||||||
|
|
||||||
|
<DownloadButtons showQR={true} />
|
||||||
@@ -40,21 +40,6 @@ Ascently is an **offline-first FOSS** app designed to help climbers track their
|
|||||||
</Card>
|
</Card>
|
||||||
</CardGrid>
|
</CardGrid>
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
- **Android:** Version 12+
|
|
||||||
- **iOS:** Version 17+
|
|
||||||
|
|
||||||
## Download
|
|
||||||
|
|
||||||
**Android:**
|
|
||||||
- Download the latest APK from the [Releases page](https://git.atri.dad/atridad/Ascently/releases)
|
|
||||||
- Use [Obtainium](https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22com.atridad.ascently%22%2C%22url%22%3A%22https%3A%2F%2Fgit.atri.dad%2Fatridad%2FAscently%2Freleases%22%2C%22author%22%3A%22git.atri.dad%22%2C%22name%22%3A%22Ascently%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22intermediateLink%5C%22%3A%5B%5D%2C%5C%22customLinkFilterRegex%5C%22%3A%5C%22%5C%22%2C%5C%22filterByLinkText%5C%22%3Afalse%2C%5C%22skipSort%5C%22%3Afalse%2C%5C%22reverseSort%5C%22%3Afalse%2C%5C%22sortByLastLinkSegment%5C%22%3Afalse%2C%5C%22versionExtractWholePage%5C%22%3Afalse%2C%5C%22requestHeader%5C%22%3A%5B%7B%5C%22requestHeader%5C%22%3A%5C%22User-Agent%3A%20Mozilla%2F5.0%20(Linux%3B%20Android%2010%3B%20K)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F114.0.0.0%20Mobile%20Safari%2F537.36%5C%22%7D%5D%2C%5C%22defaultPseudoVersioningMethod%5C%22%3A%5C%22partialAPKHash%5C%22%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22Ascently%5C%22%2C%5C%22appAuthor%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%2C%5C%22refreshBeforeDownload%5C%22%3Afalse%7D%22%2C%22overrideSource%22%3Anull%7D) for automatic updates
|
|
||||||
|
|
||||||
**iOS:**
|
|
||||||
- Join the [TestFlight Beta](https://testflight.apple.com/join/E2DYRGH8)
|
|
||||||
- App Store release coming soon
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
*Built with ❤️ by Atridad Lahiji*
|
*Built with ❤️ by Atridad Lahiji*
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ description: Ascently's Privacy Policy
|
|||||||
|
|
||||||
**Last updated: September 29, 2025**
|
**Last updated: September 29, 2025**
|
||||||
|
|
||||||
This Privacy Policy describes our policies and procedures regarding the collection, use, and disclosure of your information when you use my software.
|
This Privacy Policy describes my policies and procedures regarding the collection, use, and disclosure of your information when you use my software.
|
||||||
|
|
||||||
## No Data Collection
|
## No Data Collection
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ You may optionally integrate with Apple Health or Android Health Connect to impo
|
|||||||
|
|
||||||
This software does not use cookies, tracking pixels, or any other analytics or tracking mechanisms. Your usage of the software is completely private.
|
This software does not use cookies, tracking pixels, or any other analytics or tracking mechanisms. Your usage of the software is completely private.
|
||||||
|
|
||||||
## Contact Us
|
## Contact
|
||||||
|
|
||||||
If you have any questions about this Privacy Policy, you can contact me:
|
If you have any questions about this Privacy Policy, you can contact me:
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ final class LiveActivityManager {
|
|||||||
pushType: nil
|
pushType: nil
|
||||||
)
|
)
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to start live activity: \(error)")
|
AppLogger.error("Failed to start live activity: \(error)", tag: "LegacyLiveActivityManager")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -465,7 +465,7 @@
|
|||||||
CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 32;
|
||||||
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
||||||
DRIVERKIT_DEPLOYMENT_TARGET = 24.6;
|
DRIVERKIT_DEPLOYMENT_TARGET = 24.6;
|
||||||
ENABLE_PREVIEWS = YES;
|
ENABLE_PREVIEWS = YES;
|
||||||
@@ -487,7 +487,7 @@
|
|||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
MACOSX_DEPLOYMENT_TARGET = 15.6;
|
MACOSX_DEPLOYMENT_TARGET = 15.6;
|
||||||
MARKETING_VERSION = 2.1.0;
|
MARKETING_VERSION = 2.3.0;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently;
|
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
@@ -513,7 +513,7 @@
|
|||||||
CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Ascently/Ascently.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 32;
|
||||||
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
||||||
DRIVERKIT_DEPLOYMENT_TARGET = 24.6;
|
DRIVERKIT_DEPLOYMENT_TARGET = 24.6;
|
||||||
ENABLE_PREVIEWS = YES;
|
ENABLE_PREVIEWS = YES;
|
||||||
@@ -535,7 +535,7 @@
|
|||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
MACOSX_DEPLOYMENT_TARGET = 15.6;
|
MACOSX_DEPLOYMENT_TARGET = 15.6;
|
||||||
MARKETING_VERSION = 2.1.0;
|
MARKETING_VERSION = 2.3.0;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently;
|
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
@@ -602,7 +602,7 @@
|
|||||||
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
||||||
CODE_SIGN_ENTITLEMENTS = SessionStatusLiveExtension.entitlements;
|
CODE_SIGN_ENTITLEMENTS = SessionStatusLiveExtension.entitlements;
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 32;
|
||||||
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
||||||
GENERATE_INFOPLIST_FILE = YES;
|
GENERATE_INFOPLIST_FILE = YES;
|
||||||
INFOPLIST_FILE = SessionStatusLive/Info.plist;
|
INFOPLIST_FILE = SessionStatusLive/Info.plist;
|
||||||
@@ -613,7 +613,7 @@
|
|||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
"@executable_path/../../Frameworks",
|
"@executable_path/../../Frameworks",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 2.1.0;
|
MARKETING_VERSION = 2.3.0;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently.SessionStatusLive;
|
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently.SessionStatusLive;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
@@ -632,7 +632,7 @@
|
|||||||
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
|
||||||
CODE_SIGN_ENTITLEMENTS = SessionStatusLiveExtension.entitlements;
|
CODE_SIGN_ENTITLEMENTS = SessionStatusLiveExtension.entitlements;
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 27;
|
CURRENT_PROJECT_VERSION = 32;
|
||||||
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
DEVELOPMENT_TEAM = 4BC9Y2LL4B;
|
||||||
GENERATE_INFOPLIST_FILE = YES;
|
GENERATE_INFOPLIST_FILE = YES;
|
||||||
INFOPLIST_FILE = SessionStatusLive/Info.plist;
|
INFOPLIST_FILE = SessionStatusLive/Info.plist;
|
||||||
@@ -643,7 +643,7 @@
|
|||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
"@executable_path/../../Frameworks",
|
"@executable_path/../../Frameworks",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 2.1.0;
|
MARKETING_VERSION = 2.3.0;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently.SessionStatusLive;
|
PRODUCT_BUNDLE_IDENTIFIER = com.atridad.Ascently.SessionStatusLive;
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
|||||||
33
ios/Ascently/AppIntents/AscentlyShortcuts.swift
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import AppIntents
|
||||||
|
|
||||||
|
/// Provides a curated list of the most useful Ascently shortcuts for Siri and the Shortcuts app.
|
||||||
|
/// Surfaces intents that users can trigger hands-free to manage their climbing sessions.
|
||||||
|
struct AscentlyShortcuts: AppShortcutsProvider {
|
||||||
|
|
||||||
|
static var shortcutTileColor: ShortcutTileColor {
|
||||||
|
.teal
|
||||||
|
}
|
||||||
|
|
||||||
|
static var appShortcuts: [AppShortcut] {
|
||||||
|
return [
|
||||||
|
AppShortcut(
|
||||||
|
intent: StartLastGymSessionIntent(),
|
||||||
|
phrases: [
|
||||||
|
"Start my climb in \(.applicationName)",
|
||||||
|
"Begin my last gym session in \(.applicationName)",
|
||||||
|
],
|
||||||
|
shortTitle: "Start Climb",
|
||||||
|
systemImageName: "figure.climbing"
|
||||||
|
),
|
||||||
|
AppShortcut(
|
||||||
|
intent: EndActiveSessionIntent(),
|
||||||
|
phrases: [
|
||||||
|
"Finish my climb in \(.applicationName)",
|
||||||
|
"End my session in \(.applicationName)",
|
||||||
|
],
|
||||||
|
shortTitle: "End Climb",
|
||||||
|
systemImageName: "flag.checkered"
|
||||||
|
),
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
40
ios/Ascently/AppIntents/EndActiveSessionIntent.swift
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
import AppIntents
|
||||||
|
import Foundation
|
||||||
|
|
||||||
|
/// Ends the currently active climbing session so logging stays in sync across devices.
|
||||||
|
/// Exposed to Shortcuts so users can wrap up a session without opening the app.
|
||||||
|
struct EndActiveSessionIntent: AppIntent {
|
||||||
|
|
||||||
|
static var title: LocalizedStringResource {
|
||||||
|
"End Active Session"
|
||||||
|
}
|
||||||
|
|
||||||
|
static var description: IntentDescription {
|
||||||
|
IntentDescription(
|
||||||
|
"Stop the active climbing session and save its progress in Ascently."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
static var openAppWhenRun: Bool {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
func perform() async throws -> some IntentResult & ProvidesDialog {
|
||||||
|
do {
|
||||||
|
let summary = try await SessionIntentController().endActiveSession()
|
||||||
|
let dialog = IntentDialog("Session at \(summary.gymName) ended. Nice work!")
|
||||||
|
return .result(dialog: dialog)
|
||||||
|
} catch SessionIntentError.noActiveSession {
|
||||||
|
// No active session is fine - just return a friendly message
|
||||||
|
let dialog = IntentDialog("No active session to end.")
|
||||||
|
return .result(dialog: dialog)
|
||||||
|
} catch {
|
||||||
|
// Re-throw other errors
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static var parameterSummary: some ParameterSummary {
|
||||||
|
Summary("End my current climbing session")
|
||||||
|
}
|
||||||
|
}
|
||||||
95
ios/Ascently/AppIntents/SessionIntentSupport.swift
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
import Foundation
|
||||||
|
|
||||||
|
/// User-visible errors that can arise while handling session-related intents.
|
||||||
|
enum SessionIntentError: LocalizedError {
|
||||||
|
case noRecentGym
|
||||||
|
case noActiveSession
|
||||||
|
case failedToStartSession
|
||||||
|
case failedToEndSession
|
||||||
|
|
||||||
|
var errorDescription: String? {
|
||||||
|
switch self {
|
||||||
|
case .noRecentGym:
|
||||||
|
return "There's no recent gym to start a session with."
|
||||||
|
case .noActiveSession:
|
||||||
|
return "There isn't an active session to end right now."
|
||||||
|
case .failedToStartSession:
|
||||||
|
return "Ascently couldn't start a new session."
|
||||||
|
case .failedToEndSession:
|
||||||
|
return "Ascently couldn't finish the active session."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct SessionIntentSummary: Sendable {
|
||||||
|
let sessionId: UUID
|
||||||
|
let gymName: String
|
||||||
|
let status: SessionStatus
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Central controller that exposes the minimal climbing session operations used by App Intents and shortcuts.
|
||||||
|
@MainActor
|
||||||
|
final class SessionIntentController {
|
||||||
|
|
||||||
|
private let dataManager: ClimbingDataManager
|
||||||
|
|
||||||
|
init(dataManager: ClimbingDataManager = .shared) {
|
||||||
|
self.dataManager = dataManager
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Starts a new session using the most recently visited gym.
|
||||||
|
func startSessionWithLastUsedGym() async throws -> SessionIntentSummary {
|
||||||
|
// Give a moment for data to be ready if app just launched
|
||||||
|
if dataManager.gyms.isEmpty {
|
||||||
|
try? await Task.sleep(nanoseconds: 500_000_000) // 0.5 seconds
|
||||||
|
}
|
||||||
|
|
||||||
|
guard let lastGym = dataManager.getLastUsedGym() else {
|
||||||
|
logFailure(.noRecentGym, context: "No recorded sessions available")
|
||||||
|
throw SessionIntentError.noRecentGym
|
||||||
|
}
|
||||||
|
|
||||||
|
guard let startedSession = await dataManager.startSessionAsync(gymId: lastGym.id) else {
|
||||||
|
logFailure(.failedToStartSession, context: "Data manager failed to create new session")
|
||||||
|
throw SessionIntentError.failedToStartSession
|
||||||
|
}
|
||||||
|
|
||||||
|
return SessionIntentSummary(
|
||||||
|
sessionId: startedSession.id,
|
||||||
|
gymName: lastGym.name,
|
||||||
|
status: startedSession.status
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Ends the currently active climbing session, if one exists.
|
||||||
|
func endActiveSession() async throws -> SessionIntentSummary {
|
||||||
|
guard let activeSession = dataManager.activeSession else {
|
||||||
|
logFailure(.noActiveSession, context: "No active session stored in data manager")
|
||||||
|
throw SessionIntentError.noActiveSession
|
||||||
|
}
|
||||||
|
|
||||||
|
guard let completedSession = await dataManager.endSessionAsync(activeSession.id) else {
|
||||||
|
logFailure(
|
||||||
|
.failedToEndSession, context: "Data manager failed to complete active session")
|
||||||
|
throw SessionIntentError.failedToEndSession
|
||||||
|
}
|
||||||
|
|
||||||
|
guard let gym = dataManager.gym(withId: completedSession.gymId) else {
|
||||||
|
logFailure(
|
||||||
|
.failedToEndSession,
|
||||||
|
context: "Gym missing for completed session \(completedSession.id)")
|
||||||
|
throw SessionIntentError.failedToEndSession
|
||||||
|
}
|
||||||
|
|
||||||
|
return SessionIntentSummary(
|
||||||
|
sessionId: completedSession.id,
|
||||||
|
gymName: gym.name,
|
||||||
|
status: completedSession.status
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logFailure(_ error: SessionIntentError, context: String) {
|
||||||
|
// Logging from intent context - errors are visible to user via dialog
|
||||||
|
print("SessionIntentError: \(error). Context: \(context)")
|
||||||
|
}
|
||||||
|
}
|
||||||
43
ios/Ascently/AppIntents/StartLastGymSessionIntent.swift
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
import AppIntents
|
||||||
|
import Foundation
|
||||||
|
|
||||||
|
/// Starts a climbing session at the most recently visited gym.
|
||||||
|
/// Exposed to Shortcuts so users can begin logging without opening the app.
|
||||||
|
struct StartLastGymSessionIntent: AppIntent {
|
||||||
|
|
||||||
|
static var title: LocalizedStringResource {
|
||||||
|
"Start Last Gym Session"
|
||||||
|
}
|
||||||
|
|
||||||
|
static var description: IntentDescription {
|
||||||
|
IntentDescription(
|
||||||
|
"Begin a new climbing session using the most recent gym you visited in Ascently."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
static var openAppWhenRun: Bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
func perform() async throws -> some IntentResult & ProvidesDialog {
|
||||||
|
// Delay to ensure app has time to fully initialize if just launched
|
||||||
|
try? await Task.sleep(nanoseconds: 1_000_000_000) // 1 second
|
||||||
|
|
||||||
|
let summary = try await SessionIntentController().startSessionWithLastUsedGym()
|
||||||
|
|
||||||
|
// Give Live Activity extra time to start
|
||||||
|
try? await Task.sleep(nanoseconds: 500_000_000) // 0.5 seconds
|
||||||
|
|
||||||
|
return .result(
|
||||||
|
dialog: Self.successDialog(for: summary.gymName)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private static func successDialog(for gymName: String) -> IntentDialog {
|
||||||
|
IntentDialog("Session started at \(gymName). Have an awesome climb!")
|
||||||
|
}
|
||||||
|
|
||||||
|
static var parameterSummary: some ParameterSummary {
|
||||||
|
Summary("Start a session at my last gym")
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,19 @@
|
|||||||
import SwiftUI
|
import SwiftUI
|
||||||
|
|
||||||
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
||||||
|
func application(
|
||||||
|
_ application: UIApplication,
|
||||||
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
||||||
|
) -> Bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@main
|
@main
|
||||||
struct AscentlyApp: App {
|
struct AscentlyApp: App {
|
||||||
|
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
||||||
|
@Environment(\.scenePhase) private var scenePhase
|
||||||
|
|
||||||
var body: some Scene {
|
var body: some Scene {
|
||||||
WindowGroup {
|
WindowGroup {
|
||||||
ContentView()
|
ContentView()
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,22 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://schemas.android.com/2000/svg">
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Dark background with rounded corners for iOS -->
|
|
||||||
<rect width="1024" height="1024" fill="#1A1A1A" rx="180" ry="180"/>
|
<rect width="1024" height="1024" fill="#1A1A1A" rx="180" ry="180"/>
|
||||||
|
|
||||||
<!-- Transform to match Android layout exactly -->
|
|
||||||
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
<!-- Left mountain (yellow/amber) - matches Android coordinates with white border -->
|
<polygon points="8,75 35,14.25 62,75" fill="#FFC107"/>
|
||||||
<polygon points="15,70 35,25 55,70"
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#F44336"/>
|
||||||
fill="#FFC107"
|
|
||||||
stroke="#FFFFFF"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
|
|
||||||
<!-- Right mountain (red) - matches Android coordinates with white border -->
|
|
||||||
<polygon points="40,70 65,15 90,70"
|
|
||||||
fill="#F44336"
|
|
||||||
stroke="#FFFFFF"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 913 B After Width: | Height: | Size: 411 B |
@@ -1,22 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://schemas.android.com/2000/svg">
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- White background with rounded corners for iOS -->
|
|
||||||
<rect width="1024" height="1024" fill="#FFFFFF" rx="180" ry="180"/>
|
<rect width="1024" height="1024" fill="#FFFFFF" rx="180" ry="180"/>
|
||||||
|
|
||||||
<!-- Transform to match Android layout exactly -->
|
|
||||||
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
<!-- Left mountain (yellow/amber) - matches Android coordinates -->
|
<polygon points="8,75 35,14.25 62,75" fill="#FFC107"/>
|
||||||
<polygon points="15,70 35,25 55,70"
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#F44336"/>
|
||||||
fill="#FFC107"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
|
|
||||||
<!-- Right mountain (red) - matches Android coordinates -->
|
|
||||||
<polygon points="40,70 65,15 90,70"
|
|
||||||
fill="#F44336"
|
|
||||||
stroke="#1C1C1C"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"/>
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 878 B After Width: | Height: | Size: 411 B |
@@ -1,24 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://schemas.android.com/2000/svg">
|
<svg width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
|
||||||
<!-- Transparent background with rounded corners for iOS tinted mode -->
|
|
||||||
<rect width="1024" height="1024" fill="transparent" rx="180" ry="180"/>
|
<rect width="1024" height="1024" fill="transparent" rx="180" ry="180"/>
|
||||||
|
|
||||||
<!-- Transform to match Android layout exactly -->
|
|
||||||
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
<g transform="translate(512, 512) scale(4.75) translate(-54, -42.5)">
|
||||||
<!-- Left mountain - matches Android coordinates, black fill for tinting -->
|
<polygon points="8,75 35,14.25 62,75" fill="#000000" opacity="0.8"/>
|
||||||
<polygon points="15,70 35,25 55,70"
|
<polygon points="31.25,75 65,0.75 98.75,75" fill="#000000" opacity="0.9"/>
|
||||||
fill="#000000"
|
|
||||||
stroke="#000000"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
opacity="0.8"/>
|
|
||||||
|
|
||||||
<!-- Right mountain - matches Android coordinates, black fill for tinting -->
|
|
||||||
<polygon points="40,70 65,15 90,70"
|
|
||||||
fill="#000000"
|
|
||||||
stroke="#000000"
|
|
||||||
stroke-width="3"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
opacity="0.9"/>
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 981 B After Width: | Height: | Size: 443 B |
@@ -1,7 +1,7 @@
|
|||||||
import SwiftUI
|
import SwiftUI
|
||||||
|
|
||||||
struct ContentView: View {
|
struct ContentView: View {
|
||||||
@StateObject private var dataManager = ClimbingDataManager()
|
@StateObject private var dataManager = ClimbingDataManager.shared
|
||||||
@State private var selectedTab = 0
|
@State private var selectedTab = 0
|
||||||
@Environment(\.scenePhase) private var scenePhase
|
@Environment(\.scenePhase) private var scenePhase
|
||||||
@State private var notificationObservers: [NSObjectProtocol] = []
|
@State private var notificationObservers: [NSObjectProtocol] = []
|
||||||
@@ -91,11 +91,12 @@ struct ContentView: View {
|
|||||||
object: nil,
|
object: nil,
|
||||||
queue: .main
|
queue: .main
|
||||||
) { _ in
|
) { _ in
|
||||||
print("App will enter foreground - preparing Live Activity check")
|
Task { @MainActor in
|
||||||
Task {
|
AppLogger.info(
|
||||||
|
"App will enter foreground - preparing Live Activity check", tag: "Lifecycle")
|
||||||
// Small delay to ensure app is fully active
|
// Small delay to ensure app is fully active
|
||||||
try? await Task.sleep(nanoseconds: 800_000_000) // 0.8 seconds
|
try? await Task.sleep(nanoseconds: 800_000_000) // 0.8 seconds
|
||||||
await dataManager.onAppBecomeActive()
|
dataManager.onAppBecomeActive()
|
||||||
// Re-verify health integration when returning from background
|
// Re-verify health integration when returning from background
|
||||||
await dataManager.healthKitService.verifyAndRestoreIntegration()
|
await dataManager.healthKitService.verifyAndRestoreIntegration()
|
||||||
}
|
}
|
||||||
@@ -107,10 +108,11 @@ struct ContentView: View {
|
|||||||
object: nil,
|
object: nil,
|
||||||
queue: .main
|
queue: .main
|
||||||
) { _ in
|
) { _ in
|
||||||
print("App did become active - checking Live Activity status")
|
Task { @MainActor in
|
||||||
Task {
|
AppLogger.info(
|
||||||
|
"App did become active - checking Live Activity status", tag: "Lifecycle")
|
||||||
try? await Task.sleep(nanoseconds: 300_000_000) // 0.3 seconds
|
try? await Task.sleep(nanoseconds: 300_000_000) // 0.3 seconds
|
||||||
await dataManager.onAppBecomeActive()
|
dataManager.onAppBecomeActive()
|
||||||
await dataManager.healthKitService.verifyAndRestoreIntegration()
|
await dataManager.healthKitService.verifyAndRestoreIntegration()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>NSSupportsLiveActivities</key>
|
<key>NSSupportsLiveActivities</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
|
||||||
<key>NSPhotoLibraryUsageDescription</key>
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
<string>This app needs access to your photo library to add photos to climbing problems.</string>
|
<string>This app needs access to your photo library to add photos to climbing problems.</string>
|
||||||
<key>NSCameraUsageDescription</key>
|
<key>NSCameraUsageDescription</key>
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ class HealthKitService: ObservableObject {
|
|||||||
{
|
{
|
||||||
currentWorkoutStartDate = startDate
|
currentWorkoutStartDate = startDate
|
||||||
currentWorkoutSessionId = sessionId
|
currentWorkoutSessionId = sessionId
|
||||||
print("HealthKit: Restored active workout from \(startDate)")
|
AppLogger.info("HealthKit: Restored active workout from \(startDate)", tag: "HealthKit")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -56,31 +56,34 @@ class HealthKitService: ObservableObject {
|
|||||||
guard isEnabled else { return }
|
guard isEnabled else { return }
|
||||||
|
|
||||||
guard HKHealthStore.isHealthDataAvailable() else {
|
guard HKHealthStore.isHealthDataAvailable() else {
|
||||||
print("HealthKit: Device does not support HealthKit")
|
AppLogger.warning("HealthKit: Device does not support HealthKit", tag: "HealthKit")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
checkAuthorization()
|
checkAuthorization()
|
||||||
|
|
||||||
if !isAuthorized {
|
if !isAuthorized {
|
||||||
print(
|
AppLogger.warning(
|
||||||
"HealthKit: Integration was enabled but authorization lost, attempting to restore..."
|
"HealthKit: Integration was enabled but authorization lost, attempting to restore...",
|
||||||
)
|
tag: "HealthKit")
|
||||||
|
|
||||||
do {
|
do {
|
||||||
try await requestAuthorization()
|
try await requestAuthorization()
|
||||||
print("HealthKit: Authorization restored successfully")
|
AppLogger.info("HealthKit: Authorization restored successfully", tag: "HealthKit")
|
||||||
} catch {
|
} catch {
|
||||||
print("HealthKit: Failed to restore authorization: \(error.localizedDescription)")
|
AppLogger.error(
|
||||||
|
"HealthKit: Failed to restore authorization: \(error.localizedDescription)",
|
||||||
|
tag: "HealthKit")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print("HealthKit: Integration verified - authorization is valid")
|
AppLogger.info(
|
||||||
|
"HealthKit: Integration verified - authorization is valid", tag: "HealthKit")
|
||||||
}
|
}
|
||||||
|
|
||||||
if hasActiveWorkout() {
|
if hasActiveWorkout() {
|
||||||
print(
|
AppLogger.info(
|
||||||
"HealthKit: Active workout restored - started at \(currentWorkoutStartDate!)"
|
"HealthKit: Active workout restored - started at \(currentWorkoutStartDate!)",
|
||||||
)
|
tag: "HealthKit")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,7 +133,7 @@ class HealthKitService: ObservableObject {
|
|||||||
currentWorkoutStartDate = startDate
|
currentWorkoutStartDate = startDate
|
||||||
currentWorkoutSessionId = sessionId
|
currentWorkoutSessionId = sessionId
|
||||||
persistActiveWorkout()
|
persistActiveWorkout()
|
||||||
print("HealthKit: Started workout for session \(sessionId)")
|
AppLogger.info("HealthKit: Started workout for session \(sessionId)", tag: "HealthKit")
|
||||||
}
|
}
|
||||||
|
|
||||||
func endWorkout(endDate: Date) async throws {
|
func endWorkout(endDate: Date) async throws {
|
||||||
@@ -178,15 +181,17 @@ class HealthKitService: ObservableObject {
|
|||||||
try await builder.endCollection(at: endDate)
|
try await builder.endCollection(at: endDate)
|
||||||
let workout = try await builder.finishWorkout()
|
let workout = try await builder.finishWorkout()
|
||||||
|
|
||||||
print(
|
AppLogger.info(
|
||||||
"HealthKit: Workout saved successfully with id: \(workout?.uuid.uuidString ?? "unknown")"
|
"HealthKit: Workout saved successfully with id: \(workout?.uuid.uuidString ?? "unknown")",
|
||||||
)
|
tag: "HealthKit")
|
||||||
|
|
||||||
currentWorkoutStartDate = nil
|
currentWorkoutStartDate = nil
|
||||||
currentWorkoutSessionId = nil
|
currentWorkoutSessionId = nil
|
||||||
persistActiveWorkout()
|
persistActiveWorkout()
|
||||||
} catch {
|
} catch {
|
||||||
print("HealthKit: Failed to save workout: \(error.localizedDescription)")
|
AppLogger.error(
|
||||||
|
"HealthKit: Failed to save workout: \(error.localizedDescription)", tag: "HealthKit"
|
||||||
|
)
|
||||||
currentWorkoutStartDate = nil
|
currentWorkoutStartDate = nil
|
||||||
currentWorkoutSessionId = nil
|
currentWorkoutSessionId = nil
|
||||||
persistActiveWorkout()
|
persistActiveWorkout()
|
||||||
@@ -199,7 +204,7 @@ class HealthKitService: ObservableObject {
|
|||||||
currentWorkoutStartDate = nil
|
currentWorkoutStartDate = nil
|
||||||
currentWorkoutSessionId = nil
|
currentWorkoutSessionId = nil
|
||||||
persistActiveWorkout()
|
persistActiveWorkout()
|
||||||
print("HealthKit: Workout cancelled")
|
AppLogger.info("HealthKit: Workout cancelled", tag: "HealthKit")
|
||||||
}
|
}
|
||||||
|
|
||||||
func hasActiveWorkout() -> Bool {
|
func hasActiveWorkout() -> Bool {
|
||||||
|
|||||||
@@ -12,10 +12,27 @@ class SyncService: ObservableObject {
|
|||||||
@Published var isOfflineMode = false
|
@Published var isOfflineMode = false
|
||||||
|
|
||||||
private let userDefaults = UserDefaults.standard
|
private let userDefaults = UserDefaults.standard
|
||||||
|
private let logTag = "SyncService"
|
||||||
private var syncTask: Task<Void, Never>?
|
private var syncTask: Task<Void, Never>?
|
||||||
private var pendingChanges = false
|
private var pendingChanges = false
|
||||||
private let syncDebounceDelay: TimeInterval = 2.0
|
private let syncDebounceDelay: TimeInterval = 2.0
|
||||||
|
|
||||||
|
private func logDebug(_ message: @autoclosure () -> String) {
|
||||||
|
AppLogger.debug(message(), tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logInfo(_ message: @autoclosure () -> String) {
|
||||||
|
AppLogger.info(message(), tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logWarning(_ message: @autoclosure () -> String) {
|
||||||
|
AppLogger.warning(message(), tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logError(_ message: @autoclosure () -> String) {
|
||||||
|
AppLogger.error(message(), tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
private enum Keys {
|
private enum Keys {
|
||||||
static let serverURL = "sync_server_url"
|
static let serverURL = "sync_server_url"
|
||||||
static let authToken = "sync_auth_token"
|
static let authToken = "sync_auth_token"
|
||||||
@@ -158,7 +175,7 @@ class SyncService: ObservableObject {
|
|||||||
let modifiedProblems = dataManager.problems.filter { problem in
|
let modifiedProblems = dataManager.problems.filter { problem in
|
||||||
problem.updatedAt > lastSync
|
problem.updatedAt > lastSync
|
||||||
}.map { problem -> BackupProblem in
|
}.map { problem -> BackupProblem in
|
||||||
var backupProblem = BackupProblem(from: problem)
|
let backupProblem = BackupProblem(from: problem)
|
||||||
if !problem.imagePaths.isEmpty {
|
if !problem.imagePaths.isEmpty {
|
||||||
let normalizedPaths = problem.imagePaths.enumerated().map { index, _ in
|
let normalizedPaths = problem.imagePaths.enumerated().map { index, _ in
|
||||||
ImageNamingUtils.generateImageFilename(
|
ImageNamingUtils.generateImageFilename(
|
||||||
@@ -201,7 +218,7 @@ class SyncService: ObservableObject {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
print(
|
logInfo(
|
||||||
"iOS DELTA SYNC: Sending gyms=\(modifiedGyms.count), problems=\(modifiedProblems.count), sessions=\(modifiedSessions.count), attempts=\(modifiedAttempts.count), deletions=\(modifiedDeletions.count)"
|
"iOS DELTA SYNC: Sending gyms=\(modifiedGyms.count), problems=\(modifiedProblems.count), sessions=\(modifiedSessions.count), attempts=\(modifiedAttempts.count), deletions=\(modifiedDeletions.count)"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -244,7 +261,7 @@ class SyncService: ObservableObject {
|
|||||||
let decoder = JSONDecoder()
|
let decoder = JSONDecoder()
|
||||||
let deltaResponse = try decoder.decode(DeltaSyncResponse.self, from: data)
|
let deltaResponse = try decoder.decode(DeltaSyncResponse.self, from: data)
|
||||||
|
|
||||||
print(
|
logInfo(
|
||||||
"iOS DELTA SYNC: Received gyms=\(deltaResponse.gyms.count), problems=\(deltaResponse.problems.count), sessions=\(deltaResponse.sessions.count), attempts=\(deltaResponse.attempts.count), deletions=\(deltaResponse.deletedItems.count)"
|
"iOS DELTA SYNC: Received gyms=\(deltaResponse.gyms.count), problems=\(deltaResponse.problems.count), sessions=\(deltaResponse.sessions.count), attempts=\(deltaResponse.attempts.count), deletions=\(deltaResponse.deletedItems.count)"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -266,9 +283,25 @@ class SyncService: ObservableObject {
|
|||||||
{
|
{
|
||||||
let formatter = ISO8601DateFormatter()
|
let formatter = ISO8601DateFormatter()
|
||||||
|
|
||||||
|
// Merge and apply deletions first to prevent resurrection
|
||||||
|
let allDeletions = dataManager.getDeletedItems() + response.deletedItems
|
||||||
|
let uniqueDeletions = Array(Set(allDeletions))
|
||||||
|
|
||||||
|
logInfo(
|
||||||
|
"iOS DELTA SYNC: Applying \(uniqueDeletions.count) deletion records before merging data"
|
||||||
|
)
|
||||||
|
applyDeletionsToDataManager(deletions: uniqueDeletions, dataManager: dataManager)
|
||||||
|
|
||||||
|
// Build deleted item lookup map
|
||||||
|
let deletedItemSet = Set(uniqueDeletions.map { $0.type + ":" + $0.id })
|
||||||
|
|
||||||
// Download images for new/modified problems from server
|
// Download images for new/modified problems from server
|
||||||
var imagePathMapping: [String: String] = [:]
|
var imagePathMapping: [String: String] = [:]
|
||||||
for problem in response.problems {
|
for problem in response.problems {
|
||||||
|
if deletedItemSet.contains("problem:" + problem.id) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
guard let imagePaths = problem.imagePaths, !imagePaths.isEmpty else { continue }
|
guard let imagePaths = problem.imagePaths, !imagePaths.isEmpty else { continue }
|
||||||
|
|
||||||
for (index, imagePath) in imagePaths.enumerated() {
|
for (index, imagePath) in imagePaths.enumerated() {
|
||||||
@@ -282,10 +315,10 @@ class SyncService: ObservableObject {
|
|||||||
_ = try imageManager.saveImportedImage(imageData, filename: consistentFilename)
|
_ = try imageManager.saveImportedImage(imageData, filename: consistentFilename)
|
||||||
imagePathMapping[serverFilename] = consistentFilename
|
imagePathMapping[serverFilename] = consistentFilename
|
||||||
} catch SyncError.imageNotFound {
|
} catch SyncError.imageNotFound {
|
||||||
print("Image not found on server: \(serverFilename)")
|
logInfo("Image not found on server: \(serverFilename)")
|
||||||
continue
|
continue
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to download image \(serverFilename): \(error)")
|
logInfo("Failed to download image \(serverFilename): \(error)")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -293,6 +326,10 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// Merge gyms
|
// Merge gyms
|
||||||
for backupGym in response.gyms {
|
for backupGym in response.gyms {
|
||||||
|
if deletedItemSet.contains("gym:" + backupGym.id) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if let index = dataManager.gyms.firstIndex(where: { $0.id.uuidString == backupGym.id })
|
if let index = dataManager.gyms.firstIndex(where: { $0.id.uuidString == backupGym.id })
|
||||||
{
|
{
|
||||||
let existing = dataManager.gyms[index]
|
let existing = dataManager.gyms[index]
|
||||||
@@ -306,6 +343,10 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// Merge problems
|
// Merge problems
|
||||||
for backupProblem in response.problems {
|
for backupProblem in response.problems {
|
||||||
|
if deletedItemSet.contains("problem:" + backupProblem.id) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
var problemToMerge = backupProblem
|
var problemToMerge = backupProblem
|
||||||
if !imagePathMapping.isEmpty, let imagePaths = backupProblem.imagePaths {
|
if !imagePathMapping.isEmpty, let imagePaths = backupProblem.imagePaths {
|
||||||
let updatedPaths = imagePaths.compactMap { imagePathMapping[$0] ?? $0 }
|
let updatedPaths = imagePaths.compactMap { imagePathMapping[$0] ?? $0 }
|
||||||
@@ -341,6 +382,10 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// Merge sessions
|
// Merge sessions
|
||||||
for backupSession in response.sessions {
|
for backupSession in response.sessions {
|
||||||
|
if deletedItemSet.contains("session:" + backupSession.id) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if let index = dataManager.sessions.firstIndex(where: {
|
if let index = dataManager.sessions.firstIndex(where: {
|
||||||
$0.id.uuidString == backupSession.id
|
$0.id.uuidString == backupSession.id
|
||||||
}) {
|
}) {
|
||||||
@@ -355,6 +400,10 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// Merge attempts
|
// Merge attempts
|
||||||
for backupAttempt in response.attempts {
|
for backupAttempt in response.attempts {
|
||||||
|
if deletedItemSet.contains("attempt:" + backupAttempt.id) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if let index = dataManager.attempts.firstIndex(where: {
|
if let index = dataManager.attempts.firstIndex(where: {
|
||||||
$0.id.uuidString == backupAttempt.id
|
$0.id.uuidString == backupAttempt.id
|
||||||
}) {
|
}) {
|
||||||
@@ -367,9 +416,7 @@ class SyncService: ObservableObject {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply deletions
|
// Apply deletions again for safety
|
||||||
let allDeletions = dataManager.getDeletedItems() + response.deletedItems
|
|
||||||
let uniqueDeletions = Array(Set(allDeletions))
|
|
||||||
applyDeletionsToDataManager(deletions: uniqueDeletions, dataManager: dataManager)
|
applyDeletionsToDataManager(deletions: uniqueDeletions, dataManager: dataManager)
|
||||||
|
|
||||||
// Save all changes
|
// Save all changes
|
||||||
@@ -406,7 +453,7 @@ class SyncService: ObservableObject {
|
|||||||
) async throws {
|
) async throws {
|
||||||
guard !modifiedProblems.isEmpty else { return }
|
guard !modifiedProblems.isEmpty else { return }
|
||||||
|
|
||||||
print("iOS DELTA SYNC: Syncing images for \(modifiedProblems.count) modified problems")
|
logInfo("iOS DELTA SYNC: Syncing images for \(modifiedProblems.count) modified problems")
|
||||||
|
|
||||||
for backupProblem in modifiedProblems {
|
for backupProblem in modifiedProblems {
|
||||||
guard
|
guard
|
||||||
@@ -435,9 +482,9 @@ class SyncService: ObservableObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try await uploadImage(filename: consistentFilename, imageData: imageData)
|
try await uploadImage(filename: consistentFilename, imageData: imageData)
|
||||||
print("Uploaded modified problem image: \(consistentFilename)")
|
logInfo("Uploaded modified problem image: \(consistentFilename)")
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to upload image \(consistentFilename): \(error)")
|
logInfo("Failed to upload image \(consistentFilename): \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -519,7 +566,7 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
func syncWithServer(dataManager: ClimbingDataManager) async throws {
|
func syncWithServer(dataManager: ClimbingDataManager) async throws {
|
||||||
if isOfflineMode {
|
if isOfflineMode {
|
||||||
print("Sync skipped: Offline mode is enabled.")
|
logInfo("Sync skipped: Offline mode is enabled.")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -556,7 +603,7 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// If both client and server have been synced before, use delta sync
|
// If both client and server have been synced before, use delta sync
|
||||||
if hasLocalData && hasServerData && lastSyncTime != nil {
|
if hasLocalData && hasServerData && lastSyncTime != nil {
|
||||||
print("iOS SYNC: Using delta sync for incremental updates")
|
logInfo("iOS SYNC: Using delta sync for incremental updates")
|
||||||
try await performDeltaSync(dataManager: dataManager)
|
try await performDeltaSync(dataManager: dataManager)
|
||||||
|
|
||||||
// Update last sync time
|
// Update last sync time
|
||||||
@@ -567,32 +614,32 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
if !hasLocalData && hasServerData {
|
if !hasLocalData && hasServerData {
|
||||||
// Case 1: No local data - do full restore from server
|
// Case 1: No local data - do full restore from server
|
||||||
print("iOS SYNC: Case 1 - No local data, performing full restore from server")
|
logInfo("iOS SYNC: Case 1 - No local data, performing full restore from server")
|
||||||
print("Syncing images from server first...")
|
logInfo("Syncing images from server first...")
|
||||||
let imagePathMapping = try await syncImagesFromServer(
|
let imagePathMapping = try await syncImagesFromServer(
|
||||||
backup: serverBackup, dataManager: dataManager)
|
backup: serverBackup, dataManager: dataManager)
|
||||||
print("Importing data after images...")
|
logInfo("Importing data after images...")
|
||||||
try importBackupToDataManager(
|
try importBackupToDataManager(
|
||||||
serverBackup, dataManager: dataManager, imagePathMapping: imagePathMapping)
|
serverBackup, dataManager: dataManager, imagePathMapping: imagePathMapping)
|
||||||
print("Full restore completed")
|
logInfo("Full restore completed")
|
||||||
} else if hasLocalData && !hasServerData {
|
} else if hasLocalData && !hasServerData {
|
||||||
// Case 2: No server data - upload local data to server
|
// Case 2: No server data - upload local data to server
|
||||||
print("iOS SYNC: Case 2 - No server data, uploading local data to server")
|
logInfo("iOS SYNC: Case 2 - No server data, uploading local data to server")
|
||||||
let currentBackup = createBackupFromDataManager(dataManager)
|
let currentBackup = createBackupFromDataManager(dataManager)
|
||||||
_ = try await uploadData(currentBackup)
|
_ = try await uploadData(currentBackup)
|
||||||
print("Uploading local images to server...")
|
logInfo("Uploading local images to server...")
|
||||||
try await syncImagesToServer(dataManager: dataManager)
|
try await syncImagesToServer(dataManager: dataManager)
|
||||||
print("Initial upload completed")
|
logInfo("Initial upload completed")
|
||||||
} else if hasLocalData && hasServerData {
|
} else if hasLocalData && hasServerData {
|
||||||
// Case 3: Both have data - use safe merge strategy
|
// Case 3: Both have data - use safe merge strategy
|
||||||
print("iOS SYNC: Case 3 - Merging local and server data safely")
|
logInfo("iOS SYNC: Case 3 - Merging local and server data safely")
|
||||||
try await mergeDataSafely(
|
try await mergeDataSafely(
|
||||||
localBackup: localBackup,
|
localBackup: localBackup,
|
||||||
serverBackup: serverBackup,
|
serverBackup: serverBackup,
|
||||||
dataManager: dataManager)
|
dataManager: dataManager)
|
||||||
print("Safe merge completed")
|
logInfo("Safe merge completed")
|
||||||
} else {
|
} else {
|
||||||
print("No data to sync")
|
logInfo("No data to sync")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update last sync time
|
// Update last sync time
|
||||||
@@ -610,7 +657,7 @@ class SyncService: ObservableObject {
|
|||||||
if let date = formatter.date(from: timestamp) {
|
if let date = formatter.date(from: timestamp) {
|
||||||
return Int64(date.timeIntervalSince1970 * 1000)
|
return Int64(date.timeIntervalSince1970 * 1000)
|
||||||
}
|
}
|
||||||
print("Failed to parse timestamp: \(timestamp), using 0")
|
logInfo("Failed to parse timestamp: \(timestamp), using 0")
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -636,12 +683,12 @@ class SyncService: ObservableObject {
|
|||||||
imageData, filename: consistentFilename)
|
imageData, filename: consistentFilename)
|
||||||
|
|
||||||
imagePathMapping[serverFilename] = consistentFilename
|
imagePathMapping[serverFilename] = consistentFilename
|
||||||
print("Downloaded and mapped image: \(serverFilename) -> \(consistentFilename)")
|
logInfo("Downloaded and mapped image: \(serverFilename) -> \(consistentFilename)")
|
||||||
} catch SyncError.imageNotFound {
|
} catch SyncError.imageNotFound {
|
||||||
print("Image not found on server: \(serverFilename)")
|
logInfo("Image not found on server: \(serverFilename)")
|
||||||
continue
|
continue
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to download image \(serverFilename): \(error)")
|
logInfo("Failed to download image \(serverFilename): \(error)")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -674,18 +721,18 @@ class SyncService: ObservableObject {
|
|||||||
).path
|
).path
|
||||||
do {
|
do {
|
||||||
try FileManager.default.moveItem(atPath: fullPath, toPath: newPath)
|
try FileManager.default.moveItem(atPath: fullPath, toPath: newPath)
|
||||||
print("Renamed local image: \(filename) -> \(consistentFilename)")
|
logInfo("Renamed local image: \(filename) -> \(consistentFilename)")
|
||||||
|
|
||||||
// Update problem's image path in memory for consistency
|
// Update problem's image path in memory for consistency
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to rename local image, using original: \(error)")
|
logInfo("Failed to rename local image, using original: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
try await uploadImage(filename: consistentFilename, imageData: imageData)
|
try await uploadImage(filename: consistentFilename, imageData: imageData)
|
||||||
print("Successfully uploaded image: \(consistentFilename)")
|
logInfo("Successfully uploaded image: \(consistentFilename)")
|
||||||
} catch {
|
} catch {
|
||||||
print("Failed to upload image \(consistentFilename): \(error)")
|
logInfo("Failed to upload image \(consistentFilename): \(error)")
|
||||||
// Continue with other images even if one fails
|
// Continue with other images even if one fails
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -703,7 +750,7 @@ class SyncService: ObservableObject {
|
|||||||
!activeSessionIds.contains($0.sessionId)
|
!activeSessionIds.contains($0.sessionId)
|
||||||
}
|
}
|
||||||
|
|
||||||
print(
|
logInfo(
|
||||||
"iOS SYNC: Excluding \(dataManager.sessions.count - completedSessions.count) active sessions and \(dataManager.attempts.count - completedAttempts.count) active session attempts from sync"
|
"iOS SYNC: Excluding \(dataManager.sessions.count - completedSessions.count) active sessions and \(dataManager.attempts.count - completedAttempts.count) active session attempts from sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -778,26 +825,26 @@ class SyncService: ObservableObject {
|
|||||||
let allDeletions = localDeletions + serverBackup.deletedItems
|
let allDeletions = localDeletions + serverBackup.deletedItems
|
||||||
let uniqueDeletions = Array(Set(allDeletions))
|
let uniqueDeletions = Array(Set(allDeletions))
|
||||||
|
|
||||||
print("Merging gyms...")
|
logInfo("Merging gyms...")
|
||||||
let mergedGyms = mergeGyms(
|
let mergedGyms = mergeGyms(
|
||||||
local: dataManager.gyms,
|
local: dataManager.gyms,
|
||||||
server: serverBackup.gyms,
|
server: serverBackup.gyms,
|
||||||
deletedItems: uniqueDeletions)
|
deletedItems: uniqueDeletions)
|
||||||
|
|
||||||
print("Merging problems...")
|
logInfo("Merging problems...")
|
||||||
let mergedProblems = try mergeProblems(
|
let mergedProblems = try mergeProblems(
|
||||||
local: dataManager.problems,
|
local: dataManager.problems,
|
||||||
server: serverBackup.problems,
|
server: serverBackup.problems,
|
||||||
imagePathMapping: imagePathMapping,
|
imagePathMapping: imagePathMapping,
|
||||||
deletedItems: uniqueDeletions)
|
deletedItems: uniqueDeletions)
|
||||||
|
|
||||||
print("Merging sessions...")
|
logInfo("Merging sessions...")
|
||||||
let mergedSessions = try mergeSessions(
|
let mergedSessions = try mergeSessions(
|
||||||
local: dataManager.sessions,
|
local: dataManager.sessions,
|
||||||
server: serverBackup.sessions,
|
server: serverBackup.sessions,
|
||||||
deletedItems: uniqueDeletions)
|
deletedItems: uniqueDeletions)
|
||||||
|
|
||||||
print("Merging attempts...")
|
logInfo("Merging attempts...")
|
||||||
let mergedAttempts = try mergeAttempts(
|
let mergedAttempts = try mergeAttempts(
|
||||||
local: dataManager.attempts,
|
local: dataManager.attempts,
|
||||||
server: serverBackup.attempts,
|
server: serverBackup.attempts,
|
||||||
@@ -857,7 +904,7 @@ class SyncService: ObservableObject {
|
|||||||
&& !allDeletedAttemptIds.contains($0.id.uuidString)
|
&& !allDeletedAttemptIds.contains($0.id.uuidString)
|
||||||
}
|
}
|
||||||
|
|
||||||
print(
|
logInfo(
|
||||||
"iOS IMPORT: Preserving \(activeSessions.count) active sessions and \(activeAttempts.count) active attempts during import"
|
"iOS IMPORT: Preserving \(activeSessions.count) active sessions and \(activeAttempts.count) active attempts during import"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -947,7 +994,7 @@ class SyncService: ObservableObject {
|
|||||||
|
|
||||||
// Restore active sessions and their attempts after import
|
// Restore active sessions and their attempts after import
|
||||||
for session in activeSessions {
|
for session in activeSessions {
|
||||||
print("iOS IMPORT: Restoring active session: \(session.id)")
|
logInfo("iOS IMPORT: Restoring active session: \(session.id)")
|
||||||
dataManager.sessions.append(session)
|
dataManager.sessions.append(session)
|
||||||
if session.id == dataManager.activeSession?.id {
|
if session.id == dataManager.activeSession?.id {
|
||||||
dataManager.activeSession = session
|
dataManager.activeSession = session
|
||||||
@@ -967,12 +1014,12 @@ class SyncService: ObservableObject {
|
|||||||
dataManager.clearDeletedItems()
|
dataManager.clearDeletedItems()
|
||||||
if let data = try? JSONEncoder().encode(backup.deletedItems) {
|
if let data = try? JSONEncoder().encode(backup.deletedItems) {
|
||||||
UserDefaults.standard.set(data, forKey: "ascently_deleted_items")
|
UserDefaults.standard.set(data, forKey: "ascently_deleted_items")
|
||||||
print("iOS IMPORT: Imported \(backup.deletedItems.count) deletion records")
|
logInfo("iOS IMPORT: Imported \(backup.deletedItems.count) deletion records")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update local data state to match imported data timestamp
|
// Update local data state to match imported data timestamp
|
||||||
DataStateManager.shared.setLastModified(backup.exportedAt)
|
DataStateManager.shared.setLastModified(backup.exportedAt)
|
||||||
print("Data state synchronized to imported timestamp: \(backup.exportedAt)")
|
logInfo("Data state synchronized to imported timestamp: \(backup.exportedAt)")
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
throw SyncError.importFailed(error)
|
throw SyncError.importFailed(error)
|
||||||
|
|||||||
46
ios/Ascently/Utils/AppLogger.swift
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
import Foundation
|
||||||
|
|
||||||
|
/// Centralized logging utility for the iOS app.
|
||||||
|
///
|
||||||
|
/// All log output is automatically compiled out in non-debug builds to avoid leaking
|
||||||
|
/// sensitive information. Use this instead of calling `print` directly.
|
||||||
|
enum AppLogger {
|
||||||
|
|
||||||
|
enum LogLevel: String {
|
||||||
|
case debug = "DEBUG"
|
||||||
|
case info = "INFO"
|
||||||
|
case warning = "WARN"
|
||||||
|
case error = "ERROR"
|
||||||
|
}
|
||||||
|
|
||||||
|
static func debug(_ message: @autoclosure () -> String, tag: String = #fileID) {
|
||||||
|
log(level: .debug, tag: tag, message: message())
|
||||||
|
}
|
||||||
|
|
||||||
|
static func info(_ message: @autoclosure () -> String, tag: String = #fileID) {
|
||||||
|
log(level: .info, tag: tag, message: message())
|
||||||
|
}
|
||||||
|
|
||||||
|
static func warning(_ message: @autoclosure () -> String, tag: String = #fileID) {
|
||||||
|
log(level: .warning, tag: tag, message: message())
|
||||||
|
}
|
||||||
|
|
||||||
|
static func error(_ message: @autoclosure () -> String, tag: String = #fileID) {
|
||||||
|
log(level: .error, tag: tag, message: message())
|
||||||
|
}
|
||||||
|
|
||||||
|
static func log(level: LogLevel, tag: String, message: @autoclosure () -> String) {
|
||||||
|
#if DEBUG
|
||||||
|
let lastPath = (tag as NSString).lastPathComponent
|
||||||
|
let resolvedTag = lastPath.isEmpty ? tag : lastPath
|
||||||
|
Swift.print("[\(level.rawValue)][\(resolvedTag)] \(message())")
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum LogTag {
|
||||||
|
static let climbingData = "ClimbingData"
|
||||||
|
static let dataManagement = "DataManagementSection"
|
||||||
|
static let exportData = "ExportDataView"
|
||||||
|
static let syncSection = "SyncSection"
|
||||||
|
}
|
||||||
@@ -18,14 +18,17 @@ class DataStateManager {
|
|||||||
private init() {
|
private init() {
|
||||||
// Initialize with current timestamp if this is the first time
|
// Initialize with current timestamp if this is the first time
|
||||||
if !isInitialized() {
|
if !isInitialized() {
|
||||||
print("DataStateManager: First time initialization")
|
AppLogger.info("DataStateManager: First time initialization", tag: "DataState")
|
||||||
// Set initial timestamp to a very old date so server data will be considered newer
|
// Set initial timestamp to a very old date so server data will be considered newer
|
||||||
let epochTime = "1970-01-01T00:00:00.000Z"
|
let epochTime = "1970-01-01T00:00:00.000Z"
|
||||||
userDefaults.set(epochTime, forKey: Keys.lastModified)
|
userDefaults.set(epochTime, forKey: Keys.lastModified)
|
||||||
markAsInitialized()
|
markAsInitialized()
|
||||||
print("DataStateManager initialized with epoch timestamp: \(epochTime)")
|
AppLogger.info(
|
||||||
|
"DataStateManager initialized with epoch timestamp: \(epochTime)", tag: "DataState")
|
||||||
} else {
|
} else {
|
||||||
print("DataStateManager: Already initialized, current timestamp: \(getLastModified())")
|
AppLogger.info(
|
||||||
|
"DataStateManager: Already initialized, current timestamp: \(getLastModified())",
|
||||||
|
tag: "DataState")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,29 +37,32 @@ class DataStateManager {
|
|||||||
func updateDataState() {
|
func updateDataState() {
|
||||||
let now = ISO8601DateFormatter().string(from: Date())
|
let now = ISO8601DateFormatter().string(from: Date())
|
||||||
userDefaults.set(now, forKey: Keys.lastModified)
|
userDefaults.set(now, forKey: Keys.lastModified)
|
||||||
print("iOS Data state updated to: \(now)")
|
AppLogger.info("iOS Data state updated to: \(now)", tag: "DataState")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getLastModified() -> String {
|
func getLastModified() -> String {
|
||||||
if let storedTimestamp = userDefaults.string(forKey: Keys.lastModified) {
|
if let storedTimestamp = userDefaults.string(forKey: Keys.lastModified) {
|
||||||
print("iOS DataStateManager returning stored timestamp: \(storedTimestamp)")
|
AppLogger.debug(
|
||||||
|
"iOS DataStateManager returning stored timestamp: \(storedTimestamp)",
|
||||||
|
tag: "DataState")
|
||||||
return storedTimestamp
|
return storedTimestamp
|
||||||
}
|
}
|
||||||
|
|
||||||
let epochTime = "1970-01-01T00:00:00.000Z"
|
let epochTime = "1970-01-01T00:00:00.000Z"
|
||||||
print("No data state timestamp found - returning epoch time: \(epochTime)")
|
AppLogger.warning(
|
||||||
|
"No data state timestamp found - returning epoch time: \(epochTime)", tag: "DataState")
|
||||||
return epochTime
|
return epochTime
|
||||||
}
|
}
|
||||||
|
|
||||||
func setLastModified(_ timestamp: String) {
|
func setLastModified(_ timestamp: String) {
|
||||||
userDefaults.set(timestamp, forKey: Keys.lastModified)
|
userDefaults.set(timestamp, forKey: Keys.lastModified)
|
||||||
print("Data state set to: \(timestamp)")
|
AppLogger.info("Data state set to: \(timestamp)", tag: "DataState")
|
||||||
}
|
}
|
||||||
|
|
||||||
func reset() {
|
func reset() {
|
||||||
userDefaults.removeObject(forKey: Keys.lastModified)
|
userDefaults.removeObject(forKey: Keys.lastModified)
|
||||||
userDefaults.removeObject(forKey: Keys.initialized)
|
userDefaults.removeObject(forKey: Keys.initialized)
|
||||||
print("Data state reset")
|
AppLogger.info("Data state reset", tag: "DataState")
|
||||||
}
|
}
|
||||||
|
|
||||||
private func isInitialized() -> Bool {
|
private func isInitialized() -> Bool {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import UIKit
|
|||||||
|
|
||||||
class ImageManager {
|
class ImageManager {
|
||||||
static let shared = ImageManager()
|
static let shared = ImageManager()
|
||||||
|
private let logTag = "ImageManager"
|
||||||
|
|
||||||
private let thumbnailCache = NSCache<NSString, UIImage>()
|
private let thumbnailCache = NSCache<NSString, UIImage>()
|
||||||
private let fileManager = FileManager.default
|
private let fileManager = FileManager.default
|
||||||
@@ -30,7 +31,7 @@ class ImageManager {
|
|||||||
|
|
||||||
// Final integrity check
|
// Final integrity check
|
||||||
if !validateStorageIntegrity() {
|
if !validateStorageIntegrity() {
|
||||||
print("CRITICAL: Storage integrity compromised - attempting emergency recovery")
|
logError("CRITICAL: Storage integrity compromised - attempting emergency recovery")
|
||||||
emergencyImageRestore()
|
emergencyImageRestore()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,7 +84,7 @@ class ImageManager {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
print("🔄 Migrating images from OpenClimb to Ascently directory...")
|
logInfo("🔄 Migrating images from OpenClimb to Ascently directory...")
|
||||||
|
|
||||||
do {
|
do {
|
||||||
// Create parent directory if needed
|
// Create parent directory if needed
|
||||||
@@ -94,16 +95,16 @@ class ImageManager {
|
|||||||
|
|
||||||
// Move the entire directory
|
// Move the entire directory
|
||||||
try fileManager.moveItem(at: legacyDir, to: appSupportDirectory)
|
try fileManager.moveItem(at: legacyDir, to: appSupportDirectory)
|
||||||
print("Successfully migrated image directory from OpenClimb to Ascently")
|
logInfo("Successfully migrated image directory from OpenClimb to Ascently")
|
||||||
} catch {
|
} catch {
|
||||||
print("❌ Failed to migrate image directory: \(error)")
|
logError("Failed to migrate image directory: \(error)")
|
||||||
// If move fails, try to copy instead
|
// If move fails, try to copy instead
|
||||||
do {
|
do {
|
||||||
try fileManager.copyItem(at: legacyDir, to: appSupportDirectory)
|
try fileManager.copyItem(at: legacyDir, to: appSupportDirectory)
|
||||||
print("Successfully copied image directory from OpenClimb to Ascently")
|
logInfo("Successfully copied image directory from OpenClimb to Ascently")
|
||||||
// Don't remove the old directory in case of issues
|
// Don't remove the old directory in case of issues
|
||||||
} catch {
|
} catch {
|
||||||
print("❌ Failed to copy image directory: \(error)")
|
logError("Failed to copy image directory: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -122,9 +123,9 @@ class ImageManager {
|
|||||||
attributes: [
|
attributes: [
|
||||||
.protectionKey: FileProtectionType.completeUntilFirstUserAuthentication
|
.protectionKey: FileProtectionType.completeUntilFirstUserAuthentication
|
||||||
])
|
])
|
||||||
print("Created directory: \(directory.path)")
|
logInfo("Created directory: \(directory.path)")
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to create directory \(directory.path): \(error)")
|
logError("ERROR: Failed to create directory \(directory.path): \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -141,9 +142,9 @@ class ImageManager {
|
|||||||
var backupURL = backupDirectory
|
var backupURL = backupDirectory
|
||||||
try imagesURL.setResourceValues(resourceValues)
|
try imagesURL.setResourceValues(resourceValues)
|
||||||
try backupURL.setResourceValues(resourceValues)
|
try backupURL.setResourceValues(resourceValues)
|
||||||
print("Excluded image directories from iCloud backup")
|
logInfo("Excluded image directories from iCloud backup")
|
||||||
} catch {
|
} catch {
|
||||||
print("WARNING: Failed to exclude from iCloud backup: \(error)")
|
logWarning("WARNING: Failed to exclude from iCloud backup: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,11 +168,11 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private func performRobustMigration() {
|
private func performRobustMigration() {
|
||||||
print("Starting robust image migration system...")
|
logInfo("Starting robust image migration system...")
|
||||||
|
|
||||||
// Check for interrupted migration
|
// Check for interrupted migration
|
||||||
if let incompleteState = loadMigrationState() {
|
if let incompleteState = loadMigrationState() {
|
||||||
print("Detected interrupted migration, resuming...")
|
logInfo("Detected interrupted migration, resuming...")
|
||||||
resumeMigration(from: incompleteState)
|
resumeMigration(from: incompleteState)
|
||||||
} else {
|
} else {
|
||||||
// Start fresh migration
|
// Start fresh migration
|
||||||
@@ -188,7 +189,7 @@ class ImageManager {
|
|||||||
private func startNewMigration() {
|
private func startNewMigration() {
|
||||||
// First check for images in previous Application Support directories
|
// First check for images in previous Application Support directories
|
||||||
if let previousAppSupportImages = findPreviousAppSupportImages() {
|
if let previousAppSupportImages = findPreviousAppSupportImages() {
|
||||||
print("Found images in previous Application Support directory")
|
logInfo("Found images in previous Application Support directory")
|
||||||
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -198,7 +199,7 @@ class ImageManager {
|
|||||||
let hasLegacyImportImages = fileManager.fileExists(atPath: legacyImportImagesDirectory.path)
|
let hasLegacyImportImages = fileManager.fileExists(atPath: legacyImportImagesDirectory.path)
|
||||||
|
|
||||||
guard hasLegacyImages || hasLegacyImportImages else {
|
guard hasLegacyImages || hasLegacyImportImages else {
|
||||||
print("No legacy images to migrate")
|
logInfo("No legacy images to migrate")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -213,7 +214,7 @@ class ImageManager {
|
|||||||
let legacyFiles = try fileManager.contentsOfDirectory(
|
let legacyFiles = try fileManager.contentsOfDirectory(
|
||||||
atPath: legacyImagesDirectory.path)
|
atPath: legacyImagesDirectory.path)
|
||||||
allLegacyFiles.append(contentsOf: legacyFiles)
|
allLegacyFiles.append(contentsOf: legacyFiles)
|
||||||
print("Found \(legacyFiles.count) images in OpenClimbImages")
|
logInfo("Found \(legacyFiles.count) images in OpenClimbImages")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect files from Documents/images directory
|
// Collect files from Documents/images directory
|
||||||
@@ -221,10 +222,10 @@ class ImageManager {
|
|||||||
let importFiles = try fileManager.contentsOfDirectory(
|
let importFiles = try fileManager.contentsOfDirectory(
|
||||||
atPath: legacyImportImagesDirectory.path)
|
atPath: legacyImportImagesDirectory.path)
|
||||||
allLegacyFiles.append(contentsOf: importFiles)
|
allLegacyFiles.append(contentsOf: importFiles)
|
||||||
print("Found \(importFiles.count) images in Documents/images")
|
logInfo("Found \(importFiles.count) images in Documents/images")
|
||||||
}
|
}
|
||||||
|
|
||||||
print("Total legacy images to migrate: \(allLegacyFiles.count)")
|
logInfo("Total legacy images to migrate: \(allLegacyFiles.count)")
|
||||||
|
|
||||||
let initialState = MigrationState(
|
let initialState = MigrationState(
|
||||||
version: MigrationState.currentVersion,
|
version: MigrationState.currentVersion,
|
||||||
@@ -239,24 +240,24 @@ class ImageManager {
|
|||||||
performMigrationWithCheckpoints(files: allLegacyFiles, currentState: initialState)
|
performMigrationWithCheckpoints(files: allLegacyFiles, currentState: initialState)
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to start migration: \(error)")
|
logError("ERROR: Failed to start migration: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private func resumeMigration(from state: MigrationState) {
|
private func resumeMigration(from state: MigrationState) {
|
||||||
print("Resuming migration from checkpoint...")
|
logInfo("Resuming migration from checkpoint...")
|
||||||
print("Progress: \(state.completedFiles.count)/\(state.totalFiles)")
|
logInfo("Progress: \(state.completedFiles.count)/\(state.totalFiles)")
|
||||||
|
|
||||||
do {
|
do {
|
||||||
let legacyFiles = try fileManager.contentsOfDirectory(
|
let legacyFiles = try fileManager.contentsOfDirectory(
|
||||||
atPath: legacyImagesDirectory.path)
|
atPath: legacyImagesDirectory.path)
|
||||||
let remainingFiles = legacyFiles.filter { !state.completedFiles.contains($0) }
|
let remainingFiles = legacyFiles.filter { !state.completedFiles.contains($0) }
|
||||||
|
|
||||||
print("Resuming with \(remainingFiles.count) remaining files")
|
logInfo("Resuming with \(remainingFiles.count) remaining files")
|
||||||
performMigrationWithCheckpoints(files: remainingFiles, currentState: state)
|
performMigrationWithCheckpoints(files: remainingFiles, currentState: state)
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to resume migration: \(error)")
|
logError("ERROR: Failed to resume migration: \(error)")
|
||||||
// Fallback: start fresh
|
// Fallback: start fresh
|
||||||
removeMigrationState()
|
removeMigrationState()
|
||||||
startNewMigration()
|
startNewMigration()
|
||||||
@@ -323,11 +324,11 @@ class ImageManager {
|
|||||||
completedFiles.append(fileName)
|
completedFiles.append(fileName)
|
||||||
migratedCount += 1
|
migratedCount += 1
|
||||||
|
|
||||||
print("Migrated: \(fileName) (\(migratedCount)/\(currentState.totalFiles))")
|
logInfo("Migrated: \(fileName) (\(migratedCount)/\(currentState.totalFiles))")
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
failedCount += 1
|
failedCount += 1
|
||||||
print("ERROR: Failed to migrate \(fileName): \(error)")
|
logError("ERROR: Failed to migrate \(fileName): \(error)")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save checkpoint every 5 files or if interrupted
|
// Save checkpoint every 5 files or if interrupted
|
||||||
@@ -341,7 +342,7 @@ class ImageManager {
|
|||||||
lastCheckpoint: Date()
|
lastCheckpoint: Date()
|
||||||
)
|
)
|
||||||
saveMigrationState(checkpointState)
|
saveMigrationState(checkpointState)
|
||||||
print("Checkpoint saved: \(completedFiles.count)/\(currentState.totalFiles)")
|
logInfo("Checkpoint saved: \(completedFiles.count)/\(currentState.totalFiles)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -357,7 +358,7 @@ class ImageManager {
|
|||||||
)
|
)
|
||||||
saveMigrationState(finalState)
|
saveMigrationState(finalState)
|
||||||
|
|
||||||
print("Migration complete: \(migratedCount) migrated, \(failedCount) failed")
|
logInfo("Migration complete: \(migratedCount) migrated, \(failedCount) failed")
|
||||||
|
|
||||||
// Clean up legacy directory if no failures
|
// Clean up legacy directory if no failures
|
||||||
if failedCount == 0 {
|
if failedCount == 0 {
|
||||||
@@ -366,7 +367,7 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private func verifyMigrationIntegrity() {
|
private func verifyMigrationIntegrity() {
|
||||||
print("Verifying migration integrity...")
|
logInfo("Verifying migration integrity...")
|
||||||
|
|
||||||
var allLegacyFiles = Set<String>()
|
var allLegacyFiles = Set<String>()
|
||||||
|
|
||||||
@@ -384,12 +385,12 @@ class ImageManager {
|
|||||||
allLegacyFiles.formUnion(importFiles)
|
allLegacyFiles.formUnion(importFiles)
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to read legacy directories: \(error)")
|
logError("ERROR: Failed to read legacy directories: \(error)")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
guard !allLegacyFiles.isEmpty else {
|
guard !allLegacyFiles.isEmpty else {
|
||||||
print("No legacy directories to verify against")
|
logInfo("No legacy directories to verify against")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -400,10 +401,10 @@ class ImageManager {
|
|||||||
let missingFiles = allLegacyFiles.subtracting(migratedFiles)
|
let missingFiles = allLegacyFiles.subtracting(migratedFiles)
|
||||||
|
|
||||||
if missingFiles.isEmpty {
|
if missingFiles.isEmpty {
|
||||||
print("Migration integrity verified - all files present")
|
logInfo("Migration integrity verified - all files present")
|
||||||
cleanupLegacyDirectory()
|
cleanupLegacyDirectory()
|
||||||
} else {
|
} else {
|
||||||
print("WARNING: Missing \(missingFiles.count) files, re-triggering migration")
|
logWarning("WARNING: Missing \(missingFiles.count) files, re-triggering migration")
|
||||||
// Re-trigger migration for missing files
|
// Re-trigger migration for missing files
|
||||||
performMigrationWithCheckpoints(
|
performMigrationWithCheckpoints(
|
||||||
files: Array(missingFiles),
|
files: Array(missingFiles),
|
||||||
@@ -417,16 +418,16 @@ class ImageManager {
|
|||||||
))
|
))
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to verify migration integrity: \(error)")
|
logError("ERROR: Failed to verify migration integrity: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private func cleanupLegacyDirectory() {
|
private func cleanupLegacyDirectory() {
|
||||||
do {
|
do {
|
||||||
try fileManager.removeItem(at: legacyImagesDirectory)
|
try fileManager.removeItem(at: legacyImagesDirectory)
|
||||||
print("Cleaned up legacy directory")
|
logInfo("Cleaned up legacy directory")
|
||||||
} catch {
|
} catch {
|
||||||
print("WARNING: Failed to clean up legacy directory: \(error)")
|
logWarning("WARNING: Failed to clean up legacy directory: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -446,16 +447,16 @@ class ImageManager {
|
|||||||
let data = try Data(contentsOf: migrationStateURL)
|
let data = try Data(contentsOf: migrationStateURL)
|
||||||
let state = try JSONDecoder().decode(MigrationState.self, from: data)
|
let state = try JSONDecoder().decode(MigrationState.self, from: data)
|
||||||
|
|
||||||
// Check if state is too old (more than 1 hour)
|
// Check if state is too old
|
||||||
if Date().timeIntervalSince(state.lastCheckpoint) > 3600 {
|
if Date().timeIntervalSince(state.lastCheckpoint) > 3600 {
|
||||||
print("WARNING: Migration state is stale, starting fresh")
|
logWarning("WARNING: Migration state is stale, starting fresh")
|
||||||
removeMigrationState()
|
removeMigrationState()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return state.isComplete ? nil : state
|
return state.isComplete ? nil : state
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to load migration state: \(error)")
|
logError("ERROR: Failed to load migration state: \(error)")
|
||||||
removeMigrationState()
|
removeMigrationState()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@@ -466,7 +467,7 @@ class ImageManager {
|
|||||||
let data = try JSONEncoder().encode(state)
|
let data = try JSONEncoder().encode(state)
|
||||||
try data.write(to: migrationStateURL)
|
try data.write(to: migrationStateURL)
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to save migration state: \(error)")
|
logError("ERROR: Failed to save migration state: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -482,7 +483,7 @@ class ImageManager {
|
|||||||
private func cleanupMigrationState() {
|
private func cleanupMigrationState() {
|
||||||
try? fileManager.removeItem(at: migrationStateURL)
|
try? fileManager.removeItem(at: migrationStateURL)
|
||||||
try? fileManager.removeItem(at: migrationLockURL)
|
try? fileManager.removeItem(at: migrationLockURL)
|
||||||
print("Cleaned up migration state files")
|
logInfo("Cleaned up migration state files")
|
||||||
}
|
}
|
||||||
|
|
||||||
func saveImageData(_ data: Data, withName name: String? = nil) -> String? {
|
func saveImageData(_ data: Data, withName name: String? = nil) -> String? {
|
||||||
@@ -497,10 +498,10 @@ class ImageManager {
|
|||||||
// Create backup copy
|
// Create backup copy
|
||||||
try data.write(to: backupPath)
|
try data.write(to: backupPath)
|
||||||
|
|
||||||
print("Saved image with backup: \(fileName)")
|
logInfo("Saved image with backup: \(fileName)")
|
||||||
return fileName
|
return fileName
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to save image \(fileName): \(error)")
|
logError("ERROR: Failed to save image \(fileName): \(error)")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -520,7 +521,7 @@ class ImageManager {
|
|||||||
if fileManager.fileExists(atPath: backupPath.path),
|
if fileManager.fileExists(atPath: backupPath.path),
|
||||||
let data = try? Data(contentsOf: backupPath)
|
let data = try? Data(contentsOf: backupPath)
|
||||||
{
|
{
|
||||||
print("Restored image from backup: \(path)")
|
logInfo("Restored image from backup: \(path)")
|
||||||
|
|
||||||
// Restore to primary location
|
// Restore to primary location
|
||||||
try? data.write(to: URL(fileURLWithPath: primaryPath))
|
try? data.write(to: URL(fileURLWithPath: primaryPath))
|
||||||
@@ -595,7 +596,7 @@ class ImageManager {
|
|||||||
do {
|
do {
|
||||||
try fileManager.removeItem(atPath: primaryPath)
|
try fileManager.removeItem(atPath: primaryPath)
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to delete primary image at \(primaryPath): \(error)")
|
logError("ERROR: Failed to delete primary image at \(primaryPath): \(error)")
|
||||||
success = false
|
success = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -605,7 +606,7 @@ class ImageManager {
|
|||||||
do {
|
do {
|
||||||
try fileManager.removeItem(at: backupPath)
|
try fileManager.removeItem(at: backupPath)
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to delete backup image at \(backupPath.path): \(error)")
|
logError("ERROR: Failed to delete backup image at \(backupPath.path): \(error)")
|
||||||
success = false
|
success = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -642,7 +643,7 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func performMaintenance() {
|
func performMaintenance() {
|
||||||
print("Starting image maintenance...")
|
logInfo("Starting image maintenance...")
|
||||||
|
|
||||||
syncBackups()
|
syncBackups()
|
||||||
validateImageIntegrity()
|
validateImageIntegrity()
|
||||||
@@ -660,11 +661,11 @@ class ImageManager {
|
|||||||
let backupPath = backupDirectory.appendingPathComponent(fileName)
|
let backupPath = backupDirectory.appendingPathComponent(fileName)
|
||||||
|
|
||||||
try? fileManager.copyItem(at: primaryPath, to: backupPath)
|
try? fileManager.copyItem(at: primaryPath, to: backupPath)
|
||||||
print("Created missing backup for: \(fileName)")
|
logInfo("Created missing backup for: \(fileName)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to sync backups: \(error)")
|
logError("ERROR: Failed to sync backups: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -683,14 +684,14 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
print("Validated \(validFiles) of \(files.count) image files")
|
logInfo("Validated \(validFiles) of \(files.count) image files")
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to validate images: \(error)")
|
logError("ERROR: Failed to validate images: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private func cleanupOrphanedFiles() {
|
private func cleanupOrphanedFiles() {
|
||||||
print("Cleanup would require coordination with data manager")
|
logInfo("Cleanup would require coordination with data manager")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getStorageInfo() -> (primaryCount: Int, backupCount: Int, totalSize: Int64) {
|
func getStorageInfo() -> (primaryCount: Int, backupCount: Int, totalSize: Int64) {
|
||||||
@@ -718,7 +719,7 @@ class ImageManager {
|
|||||||
private func logDirectoryInfo() {
|
private func logDirectoryInfo() {
|
||||||
let info = getStorageInfo()
|
let info = getStorageInfo()
|
||||||
let previousDir = findPreviousAppSupportImages()
|
let previousDir = findPreviousAppSupportImages()
|
||||||
print(
|
logInfo(
|
||||||
"""
|
"""
|
||||||
Ascently Image Storage:
|
Ascently Image Storage:
|
||||||
- App Support: \(appSupportDirectory.path)
|
- App Support: \(appSupportDirectory.path)
|
||||||
@@ -732,7 +733,7 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func forceRecoveryMigration() {
|
func forceRecoveryMigration() {
|
||||||
print("FORCE RECOVERY: Starting manual migration recovery...")
|
logInfo("FORCE RECOVERY: Starting manual migration recovery...")
|
||||||
|
|
||||||
// Remove any stale state
|
// Remove any stale state
|
||||||
removeMigrationState()
|
removeMigrationState()
|
||||||
@@ -741,7 +742,7 @@ class ImageManager {
|
|||||||
// Force fresh migration
|
// Force fresh migration
|
||||||
startNewMigration()
|
startNewMigration()
|
||||||
|
|
||||||
print("FORCE RECOVERY: Migration recovery completed")
|
logInfo("FORCE RECOVERY: Migration recovery completed")
|
||||||
}
|
}
|
||||||
|
|
||||||
func saveImportedImage(_ imageData: Data, filename: String) throws -> String {
|
func saveImportedImage(_ imageData: Data, filename: String) throws -> String {
|
||||||
@@ -754,12 +755,12 @@ class ImageManager {
|
|||||||
// Create backup
|
// Create backup
|
||||||
try? imageData.write(to: backupPath)
|
try? imageData.write(to: backupPath)
|
||||||
|
|
||||||
print("Imported image: \(filename)")
|
logInfo("Imported image: \(filename)")
|
||||||
return filename
|
return filename
|
||||||
}
|
}
|
||||||
|
|
||||||
func emergencyImageRestore() {
|
func emergencyImageRestore() {
|
||||||
print("EMERGENCY: Attempting image restoration...")
|
logError("EMERGENCY: Attempting image restoration...")
|
||||||
|
|
||||||
// Try to restore from backup directory
|
// Try to restore from backup directory
|
||||||
do {
|
do {
|
||||||
@@ -777,14 +778,14 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
print("EMERGENCY: Restored \(restoredCount) images from backup")
|
logError("EMERGENCY: Restored \(restoredCount) images from backup")
|
||||||
} catch {
|
} catch {
|
||||||
print("EMERGENCY: Failed to restore from backup: \(error)")
|
logError("EMERGENCY: Failed to restore from backup: \(error)")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try previous Application Support directories first
|
// Try previous Application Support directories first
|
||||||
if let previousAppSupportImages = findPreviousAppSupportImages() {
|
if let previousAppSupportImages = findPreviousAppSupportImages() {
|
||||||
print("EMERGENCY: Found previous Application Support images, migrating...")
|
logError("EMERGENCY: Found previous Application Support images, migrating...")
|
||||||
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -793,23 +794,21 @@ class ImageManager {
|
|||||||
if fileManager.fileExists(atPath: legacyImagesDirectory.path)
|
if fileManager.fileExists(atPath: legacyImagesDirectory.path)
|
||||||
|| fileManager.fileExists(atPath: legacyImportImagesDirectory.path)
|
|| fileManager.fileExists(atPath: legacyImportImagesDirectory.path)
|
||||||
{
|
{
|
||||||
print("EMERGENCY: Attempting legacy migration as fallback...")
|
logError("EMERGENCY: Attempting legacy migration as fallback...")
|
||||||
forceRecoveryMigration()
|
forceRecoveryMigration()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func debugSafeInitialization() -> Bool {
|
func debugSafeInitialization() -> Bool {
|
||||||
print("DEBUG SAFE: Performing debug-safe initialization check...")
|
logDebug("DEBUG SAFE: Performing debug-safe initialization check...")
|
||||||
|
|
||||||
// Check if we're in a debug environment
|
// Check if we're in a debug environment
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
print("DEBUG SAFE: Debug environment detected")
|
logDebug("DEBUG SAFE: Debug environment detected")
|
||||||
|
|
||||||
// Check for interrupted migration more aggressively
|
|
||||||
if fileManager.fileExists(atPath: migrationLockURL.path) {
|
if fileManager.fileExists(atPath: migrationLockURL.path) {
|
||||||
print("DEBUG SAFE: Found migration lock - likely debug interruption")
|
logDebug("DEBUG SAFE: Found migration lock - likely debug interruption")
|
||||||
|
|
||||||
// Give extra time for file system to stabilize
|
|
||||||
Thread.sleep(forTimeInterval: 1.0)
|
Thread.sleep(forTimeInterval: 1.0)
|
||||||
|
|
||||||
// Try emergency recovery
|
// Try emergency recovery
|
||||||
@@ -829,14 +828,14 @@ class ImageManager {
|
|||||||
((try? fileManager.contentsOfDirectory(atPath: backupDirectory.path)) ?? []).count > 0
|
((try? fileManager.contentsOfDirectory(atPath: backupDirectory.path)) ?? []).count > 0
|
||||||
|
|
||||||
if primaryEmpty && backupHasFiles {
|
if primaryEmpty && backupHasFiles {
|
||||||
print("DEBUG SAFE: Primary empty but backup exists - restoring")
|
logDebug("DEBUG SAFE: Primary empty but backup exists - restoring")
|
||||||
emergencyImageRestore()
|
emergencyImageRestore()
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if primary storage is empty but previous Application Support images exist
|
// Check if primary storage is empty but previous Application Support images exist
|
||||||
if primaryEmpty, let previousAppSupportImages = findPreviousAppSupportImages() {
|
if primaryEmpty, let previousAppSupportImages = findPreviousAppSupportImages() {
|
||||||
print("DEBUG SAFE: Primary empty but found previous Application Support images")
|
logDebug("DEBUG SAFE: Primary empty but found previous Application Support images")
|
||||||
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
migratePreviousAppSupportImages(from: previousAppSupportImages)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
@@ -852,7 +851,7 @@ class ImageManager {
|
|||||||
|
|
||||||
// Check if we have more backups than primary files (sign of corruption)
|
// Check if we have more backups than primary files (sign of corruption)
|
||||||
if backupFiles.count > primaryFiles.count + 5 {
|
if backupFiles.count > primaryFiles.count + 5 {
|
||||||
print(
|
logInfo(
|
||||||
"WARNING INTEGRITY: Backup count significantly exceeds primary - potential corruption"
|
"WARNING INTEGRITY: Backup count significantly exceeds primary - potential corruption"
|
||||||
)
|
)
|
||||||
return false
|
return false
|
||||||
@@ -860,7 +859,7 @@ class ImageManager {
|
|||||||
|
|
||||||
// Check if primary is completely empty but we have data elsewhere
|
// Check if primary is completely empty but we have data elsewhere
|
||||||
if primaryFiles.isEmpty && !backupFiles.isEmpty {
|
if primaryFiles.isEmpty && !backupFiles.isEmpty {
|
||||||
print("WARNING INTEGRITY: Primary storage empty but backups exist")
|
logWarning("WARNING INTEGRITY: Primary storage empty but backups exist")
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -874,7 +873,7 @@ class ImageManager {
|
|||||||
for: .applicationSupportDirectory, in: .userDomainMask
|
for: .applicationSupportDirectory, in: .userDomainMask
|
||||||
).first
|
).first
|
||||||
else {
|
else {
|
||||||
print("ERROR: Could not access Application Support directory")
|
logError("ERROR: Could not access Application Support directory")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -908,13 +907,13 @@ class ImageManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Error scanning for previous Application Support directories: \(error)")
|
logError("ERROR: Error scanning for previous Application Support directories: \(error)")
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
private func migratePreviousAppSupportImages(from sourceDirectory: URL) {
|
private func migratePreviousAppSupportImages(from sourceDirectory: URL) {
|
||||||
print("Migrating images from previous Application Support directory")
|
logInfo("Migrating images from previous Application Support directory")
|
||||||
|
|
||||||
do {
|
do {
|
||||||
let imageFiles = try fileManager.contentsOfDirectory(atPath: sourceDirectory.path)
|
let imageFiles = try fileManager.contentsOfDirectory(atPath: sourceDirectory.path)
|
||||||
@@ -937,18 +936,33 @@ class ImageManager {
|
|||||||
// Create backup
|
// Create backup
|
||||||
try? fileManager.copyItem(at: sourcePath, to: backupPath)
|
try? fileManager.copyItem(at: sourcePath, to: backupPath)
|
||||||
|
|
||||||
print("Migrated: \(fileName)")
|
logInfo("Migrated: \(fileName)")
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to migrate \(fileName): \(error)")
|
logError("ERROR: Failed to migrate \(fileName): \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
print("Completed migration from previous Application Support directory")
|
logInfo("Completed migration from previous Application Support directory")
|
||||||
|
|
||||||
} catch {
|
} catch {
|
||||||
print("ERROR: Failed to migrate from previous Application Support: \(error)")
|
logError("ERROR: Failed to migrate from previous Application Support: \(error)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private func logInfo(_ message: String) {
|
||||||
|
AppLogger.info(message, tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logWarning(_ message: String) {
|
||||||
|
AppLogger.warning(message, tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logError(_ message: String) {
|
||||||
|
AppLogger.error(message, tag: logTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
private func logDebug(_ message: String) {
|
||||||
|
AppLogger.debug(message, tag: logTag)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ struct OrientationAwareImage: View {
|
|||||||
.onAppear {
|
.onAppear {
|
||||||
loadImageWithCorrectOrientation()
|
loadImageWithCorrectOrientation()
|
||||||
}
|
}
|
||||||
.onChange(of: imagePath) { _ in
|
.onChange(of: imagePath) { _, _ in
|
||||||
loadImageWithCorrectOrientation()
|
loadImageWithCorrectOrientation()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||