init commit

This commit is contained in:
2025-09-25 16:08:36 +09:00
commit 46ce31ba6a
64 changed files with 2980 additions and 0 deletions

1
app/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

1
app/API desc Normal file

File diff suppressed because one or more lines are too long

80
app/build.gradle.kts Normal file
View File

@@ -0,0 +1,80 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.compose)
}
android {
namespace = "com.example.womansafe"
compileSdk = 36
defaultConfig {
applicationId = "com.example.womansafe"
minSdk = 24
targetSdk = 36
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
buildFeatures {
compose = true
}
}
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.activity.compose)
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.ui)
implementation(libs.androidx.compose.ui.graphics)
implementation(libs.androidx.compose.ui.tooling.preview)
implementation(libs.androidx.compose.material3)
// Networking
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
// JSON
implementation("com.google.code.gson:gson:2.10.1")
// Navigation
implementation("androidx.navigation:navigation-compose:2.7.6")
// ViewModel
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0")
// Coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
// DataStore for preferences
implementation("androidx.datastore:datastore-preferences:1.0.0")
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.compose.ui.test.junit4)
debugImplementation(libs.androidx.compose.ui.tooling)
debugImplementation(libs.androidx.compose.ui.test.manifest)
}

21
app/proguard-rules.pro vendored Normal file
View File

@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@@ -0,0 +1,24 @@
package com.example.womansafe
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.example.womansafe", appContext.packageName)
}
}

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- Internet permissions for API calls -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.WomanSafe"
android:usesCleartextTraffic="true">
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.WomanSafe">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@@ -0,0 +1,38 @@
package com.example.womansafe
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Scaffold
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import com.example.womansafe.ui.screens.ApiTestScreen
import com.example.womansafe.ui.theme.WomanSafeTheme
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()
setContent {
WomanSafeTheme {
Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding ->
ApiTestScreen(
modifier = Modifier.padding(innerPadding)
)
}
}
}
}
}
@Preview(showBackground = true)
@Composable
fun GreetingPreview() {
WomanSafeTheme {
ApiTestScreen()
}
}

View File

@@ -0,0 +1,204 @@
package com.example.womansafe.data.api
import com.example.womansafe.data.model.*
import retrofit2.Response
import retrofit2.http.*
interface WomanSafeApi {
// Authentication endpoints
@POST("api/v1/auth/login")
suspend fun login(@Body request: ApiRequestBody): Response<Token>
@POST("api/v1/auth/register")
suspend fun register(@Body request: ApiRequestBody): Response<UserResponse>
// User endpoints
@GET("api/v1/users/me")
suspend fun getCurrentUser(@Body request: ApiRequestBody = ApiRequestBody()): Response<UserResponse>
@PUT("api/v1/users/me")
suspend fun updateCurrentUser(@Body request: ApiRequestBody): Response<UserResponse>
@PATCH("api/v1/users/me")
suspend fun patchCurrentUser(@Body request: ApiRequestBody): Response<UserResponse>
@POST("api/v1/users/me/change-password")
suspend fun changePassword(@Body request: ApiRequestBody): Response<Unit>
@GET("api/v1/users/dashboard")
suspend fun getDashboard(@Body request: ApiRequestBody = ApiRequestBody()): Response<Any>
// Profile endpoints
@GET("api/v1/profile")
suspend fun getProfile(@Body request: ApiRequestBody = ApiRequestBody()): Response<UserResponse>
@PUT("api/v1/profile")
suspend fun updateProfile(@Body request: ApiRequestBody): Response<UserResponse>
// Emergency Contacts endpoints
@GET("api/v1/users/me/emergency-contacts")
suspend fun getEmergencyContacts(@Body request: ApiRequestBody = ApiRequestBody()): Response<List<EmergencyContactResponse>>
@POST("api/v1/users/me/emergency-contacts")
suspend fun createEmergencyContact(@Body request: ApiRequestBody): Response<EmergencyContactResponse>
@GET("api/v1/users/me/emergency-contacts/{contact_id}")
suspend fun getEmergencyContact(
@Path("contact_id") contactId: String,
@Body request: ApiRequestBody = ApiRequestBody()
): Response<EmergencyContactResponse>
@PATCH("api/v1/users/me/emergency-contacts/{contact_id}")
suspend fun updateEmergencyContact(
@Path("contact_id") contactId: String,
@Body request: ApiRequestBody
): Response<EmergencyContactResponse>
@DELETE("api/v1/users/me/emergency-contacts/{contact_id}")
suspend fun deleteEmergencyContact(
@Path("contact_id") contactId: String,
@Body request: ApiRequestBody = ApiRequestBody()
): Response<Unit>
// Emergency endpoints
@GET("api/v1/emergency/reports")
suspend fun getEmergencyReports(): Response<Any>
@POST("api/v1/emergency/reports")
suspend fun createEmergencyReport(): Response<Any>
@GET("api/v1/emergency/reports/nearby")
suspend fun getNearbyEmergencyReports(): Response<Any>
@GET("api/v1/emergency/reports/{report_id}")
suspend fun getEmergencyReport(@Path("report_id") reportId: String): Response<Any>
@PATCH("api/v1/emergency/reports/{report_id}")
suspend fun updateEmergencyReport(@Path("report_id") reportId: String): Response<Any>
@DELETE("api/v1/emergency/reports/{report_id}")
suspend fun deleteEmergencyReport(@Path("report_id") reportId: String): Response<Any>
// Emergency Alerts endpoints
@GET("api/v1/emergency/alerts")
suspend fun getEmergencyAlerts(): Response<Any>
@POST("api/v1/emergency/alerts")
suspend fun createEmergencyAlert(): Response<Any>
@GET("api/v1/emergency/alerts/my")
suspend fun getMyEmergencyAlerts(): Response<Any>
@GET("api/v1/emergency/alerts/nearby")
suspend fun getNearbyEmergencyAlerts(): Response<Any>
@GET("api/v1/emergency/alerts/{alert_id}")
suspend fun getEmergencyAlert(@Path("alert_id") alertId: String): Response<Any>
@PATCH("api/v1/emergency/alerts/{alert_id}")
suspend fun updateEmergencyAlert(@Path("alert_id") alertId: String): Response<Any>
@DELETE("api/v1/emergency/alerts/{alert_id}")
suspend fun deleteEmergencyAlert(@Path("alert_id") alertId: String): Response<Any>
@PATCH("api/v1/emergency/alerts/{alert_id}/cancel")
suspend fun cancelEmergencyAlert(@Path("alert_id") alertId: String): Response<Any>
// Location endpoints
@POST("api/v1/locations/update")
suspend fun updateLocation(): Response<Any>
@GET("api/v1/locations/last")
suspend fun getLastLocation(): Response<Any>
@GET("api/v1/locations/history")
suspend fun getLocationHistory(): Response<Any>
@GET("api/v1/locations/users/nearby")
suspend fun getNearbyUsers(): Response<Any>
@GET("api/v1/locations/safe-places")
suspend fun getSafePlaces(): Response<Any>
@POST("api/v1/locations/safe-places")
suspend fun createSafePlace(): Response<Any>
@GET("api/v1/locations/safe-places/{place_id}")
suspend fun getSafePlace(@Path("place_id") placeId: String): Response<Any>
@PATCH("api/v1/locations/safe-places/{place_id}")
suspend fun updateSafePlace(@Path("place_id") placeId: String): Response<Any>
@DELETE("api/v1/locations/safe-places/{place_id}")
suspend fun deleteSafePlace(@Path("place_id") placeId: String): Response<Any>
// Calendar endpoints
@GET("api/v1/calendar/entries")
suspend fun getCalendarEntries(): Response<Any>
@POST("api/v1/calendar/entries")
suspend fun createCalendarEntry(): Response<Any>
@GET("api/v1/calendar/entries/{entry_id}")
suspend fun getCalendarEntry(@Path("entry_id") entryId: String): Response<Any>
@PUT("api/v1/calendar/entries/{entry_id}")
suspend fun updateCalendarEntry(@Path("entry_id") entryId: String): Response<Any>
@DELETE("api/v1/calendar/entries/{entry_id}")
suspend fun deleteCalendarEntry(@Path("entry_id") entryId: String): Response<Any>
@GET("api/v1/calendar/cycle-overview")
suspend fun getCycleOverview(): Response<Any>
@GET("api/v1/calendar/insights")
suspend fun getCalendarInsights(): Response<Any>
@GET("api/v1/calendar/reminders")
suspend fun getCalendarReminders(): Response<Any>
@POST("api/v1/calendar/reminders")
suspend fun createCalendarReminder(): Response<Any>
@GET("api/v1/calendar/settings")
suspend fun getCalendarSettings(): Response<Any>
@PUT("api/v1/calendar/settings")
suspend fun updateCalendarSettings(): Response<Any>
// Notification endpoints
@GET("api/v1/notifications/devices")
suspend fun getNotificationDevices(): Response<Any>
@POST("api/v1/notifications/devices")
suspend fun createNotificationDevice(): Response<Any>
@GET("api/v1/notifications/devices/{device_id}")
suspend fun getNotificationDevice(@Path("device_id") deviceId: String): Response<Any>
@DELETE("api/v1/notifications/devices/{device_id}")
suspend fun deleteNotificationDevice(@Path("device_id") deviceId: String): Response<Any>
@GET("api/v1/notifications/preferences")
suspend fun getNotificationPreferences(): Response<Any>
@POST("api/v1/notifications/preferences")
suspend fun updateNotificationPreferences(): Response<Any>
@POST("api/v1/notifications/test")
suspend fun testNotification(): Response<Any>
@GET("api/v1/notifications/history")
suspend fun getNotificationHistory(): Response<Any>
// Health check endpoints
@GET("api/v1/health")
suspend fun getHealth(): Response<Any>
@GET("api/v1/services-status")
suspend fun getServicesStatus(): Response<Any>
@GET("")
suspend fun getRoot(): Response<Any>
}

View File

@@ -0,0 +1,157 @@
package com.example.womansafe.data.model
import com.google.gson.annotations.SerializedName
// Authentication models
data class UserLogin(
val email: String? = null,
val username: String? = null,
val password: String
)
data class UserCreate(
val email: String,
val username: String? = null,
val phone: String? = null,
@SerializedName("phone_number")
val phoneNumber: String? = null,
@SerializedName("first_name")
val firstName: String? = "",
@SerializedName("last_name")
val lastName: String? = "",
@SerializedName("full_name")
val fullName: String? = null,
@SerializedName("date_of_birth")
val dateOfBirth: String? = null,
val bio: String? = null,
val password: String
)
data class UserUpdate(
@SerializedName("first_name")
val firstName: String? = null,
@SerializedName("last_name")
val lastName: String? = null,
val phone: String? = null,
@SerializedName("date_of_birth")
val dateOfBirth: String? = null,
val bio: String? = null,
@SerializedName("avatar_url")
val avatarUrl: String? = null,
@SerializedName("emergency_contact_1_name")
val emergencyContact1Name: String? = null,
@SerializedName("emergency_contact_1_phone")
val emergencyContact1Phone: String? = null,
@SerializedName("emergency_contact_2_name")
val emergencyContact2Name: String? = null,
@SerializedName("emergency_contact_2_phone")
val emergencyContact2Phone: String? = null,
@SerializedName("location_sharing_enabled")
val locationSharingEnabled: Boolean? = null,
@SerializedName("emergency_notifications_enabled")
val emergencyNotificationsEnabled: Boolean? = null,
@SerializedName("push_notifications_enabled")
val pushNotificationsEnabled: Boolean? = null
)
data class UserResponse(
val email: String,
val username: String? = null,
val phone: String? = null,
@SerializedName("phone_number")
val phoneNumber: String? = null,
@SerializedName("first_name")
val firstName: String? = "",
@SerializedName("last_name")
val lastName: String? = "",
@SerializedName("full_name")
val fullName: String? = null,
@SerializedName("date_of_birth")
val dateOfBirth: String? = null,
val bio: String? = null,
val id: Int,
val uuid: String,
@SerializedName("avatar_url")
val avatarUrl: String? = null,
@SerializedName("emergency_contact_1_name")
val emergencyContact1Name: String? = null,
@SerializedName("emergency_contact_1_phone")
val emergencyContact1Phone: String? = null,
@SerializedName("emergency_contact_2_name")
val emergencyContact2Name: String? = null,
@SerializedName("emergency_contact_2_phone")
val emergencyContact2Phone: String? = null,
@SerializedName("location_sharing_enabled")
val locationSharingEnabled: Boolean,
@SerializedName("emergency_notifications_enabled")
val emergencyNotificationsEnabled: Boolean,
@SerializedName("push_notifications_enabled")
val pushNotificationsEnabled: Boolean,
@SerializedName("email_verified")
val emailVerified: Boolean,
@SerializedName("phone_verified")
val phoneVerified: Boolean,
@SerializedName("is_active")
val isActive: Boolean
)
data class Token(
@SerializedName("access_token")
val accessToken: String,
@SerializedName("token_type")
val tokenType: String
)
// Emergency Contact models
data class EmergencyContactCreate(
val name: String,
@SerializedName("phone_number")
val phoneNumber: String,
val relationship: String? = null,
val notes: String? = null
)
data class EmergencyContactUpdate(
val name: String? = null,
@SerializedName("phone_number")
val phoneNumber: String? = null,
val relationship: String? = null,
val notes: String? = null
)
data class EmergencyContactResponse(
val name: String,
@SerializedName("phone_number")
val phoneNumber: String,
val relationship: String? = null,
val notes: String? = null,
val id: Int,
val uuid: String,
@SerializedName("user_id")
val userId: Int
)
// API Request body wrapper
data class ApiRequestBody(
@SerializedName("user_create")
val userCreate: UserCreate? = null,
@SerializedName("user_login")
val userLogin: UserLogin? = null,
@SerializedName("user_update")
val userUpdate: UserUpdate? = null,
@SerializedName("emergency_contact_create")
val emergencyContactCreate: EmergencyContactCreate? = null,
@SerializedName("emergency_contact_update")
val emergencyContactUpdate: EmergencyContactUpdate? = null
)
// Error models
data class ValidationError(
val loc: List<String>,
val msg: String,
val type: String
)
data class HTTPValidationError(
val detail: List<ValidationError>
)

View File

@@ -0,0 +1,51 @@
package com.example.womansafe.data.network
import com.google.gson.GsonBuilder
import okhttp3.Interceptor
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import java.util.concurrent.TimeUnit
object NetworkClient {
private const val BASE_URL = "http://10.0.2.2:8000/" // For Android Emulator
// For real device, use: "http://YOUR_IP:8000/"
private var authToken: String? = null
fun setAuthToken(token: String?) {
authToken = token
}
private val authInterceptor = Interceptor { chain ->
val request = chain.request().newBuilder()
authToken?.let { token ->
request.addHeader("Authorization", "Bearer $token")
}
request.addHeader("Content-Type", "application/json")
chain.proceed(request.build())
}
private val loggingInterceptor = HttpLoggingInterceptor().apply {
level = HttpLoggingInterceptor.Level.BODY
}
private val okHttpClient = OkHttpClient.Builder()
.addInterceptor(authInterceptor)
.addInterceptor(loggingInterceptor)
.connectTimeout(30, TimeUnit.SECONDS)
.readTimeout(30, TimeUnit.SECONDS)
.writeTimeout(30, TimeUnit.SECONDS)
.build()
private val gson = GsonBuilder()
.setLenient()
.create()
val retrofit: Retrofit = Retrofit.Builder()
.baseUrl(BASE_URL)
.client(okHttpClient)
.addConverterFactory(GsonConverterFactory.create(gson))
.build()
}

View File

@@ -0,0 +1,277 @@
package com.example.womansafe.data.repository
import com.example.womansafe.data.api.WomanSafeApi
import com.example.womansafe.data.model.*
import com.example.womansafe.data.network.NetworkClient
import retrofit2.Response
class ApiRepository {
private val api = NetworkClient.retrofit.create(WomanSafeApi::class.java)
// Authentication methods
suspend fun login(email: String?, username: String?, password: String): Response<Token> {
val loginData = UserLogin(email = email, username = username, password = password)
val requestBody = ApiRequestBody(userLogin = loginData)
return api.login(requestBody)
}
suspend fun register(
email: String,
username: String?,
password: String,
fullName: String?,
phoneNumber: String?
): Response<UserResponse> {
val userData = UserCreate(
email = email,
username = username,
password = password,
fullName = fullName,
phoneNumber = phoneNumber
)
val requestBody = ApiRequestBody(userCreate = userData)
return api.register(requestBody)
}
// User methods
suspend fun getCurrentUser(): Response<UserResponse> {
return api.getCurrentUser()
}
suspend fun updateUser(userUpdate: UserUpdate): Response<UserResponse> {
val requestBody = ApiRequestBody(userUpdate = userUpdate)
return api.updateCurrentUser(requestBody)
}
suspend fun patchUser(userUpdate: UserUpdate): Response<UserResponse> {
val requestBody = ApiRequestBody(userUpdate = userUpdate)
return api.patchCurrentUser(requestBody)
}
suspend fun changePassword(): Response<Unit> {
return api.changePassword(ApiRequestBody())
}
suspend fun getDashboard(): Response<Any> {
return api.getDashboard()
}
// Profile methods
suspend fun getProfile(): Response<UserResponse> {
return api.getProfile()
}
suspend fun updateProfile(userUpdate: UserUpdate): Response<UserResponse> {
val requestBody = ApiRequestBody(userUpdate = userUpdate)
return api.updateProfile(requestBody)
}
// Emergency Contacts methods
suspend fun getEmergencyContacts(): Response<List<EmergencyContactResponse>> {
return api.getEmergencyContacts()
}
suspend fun createEmergencyContact(contact: EmergencyContactCreate): Response<EmergencyContactResponse> {
val requestBody = ApiRequestBody(emergencyContactCreate = contact)
return api.createEmergencyContact(requestBody)
}
suspend fun getEmergencyContact(contactId: String): Response<EmergencyContactResponse> {
return api.getEmergencyContact(contactId)
}
suspend fun updateEmergencyContact(contactId: String, contact: EmergencyContactUpdate): Response<EmergencyContactResponse> {
val requestBody = ApiRequestBody(emergencyContactUpdate = contact)
return api.updateEmergencyContact(contactId, requestBody)
}
suspend fun deleteEmergencyContact(contactId: String): Response<Unit> {
return api.deleteEmergencyContact(contactId)
}
// Emergency methods
suspend fun getEmergencyReports(): Response<Any> {
return api.getEmergencyReports()
}
suspend fun createEmergencyReport(): Response<Any> {
return api.createEmergencyReport()
}
suspend fun getNearbyEmergencyReports(): Response<Any> {
return api.getNearbyEmergencyReports()
}
suspend fun getEmergencyReport(reportId: String): Response<Any> {
return api.getEmergencyReport(reportId)
}
suspend fun updateEmergencyReport(reportId: String): Response<Any> {
return api.updateEmergencyReport(reportId)
}
suspend fun deleteEmergencyReport(reportId: String): Response<Any> {
return api.deleteEmergencyReport(reportId)
}
// Emergency Alerts methods
suspend fun getEmergencyAlerts(): Response<Any> {
return api.getEmergencyAlerts()
}
suspend fun createEmergencyAlert(): Response<Any> {
return api.createEmergencyAlert()
}
suspend fun getMyEmergencyAlerts(): Response<Any> {
return api.getMyEmergencyAlerts()
}
suspend fun getNearbyEmergencyAlerts(): Response<Any> {
return api.getNearbyEmergencyAlerts()
}
suspend fun getEmergencyAlert(alertId: String): Response<Any> {
return api.getEmergencyAlert(alertId)
}
suspend fun updateEmergencyAlert(alertId: String): Response<Any> {
return api.updateEmergencyAlert(alertId)
}
suspend fun deleteEmergencyAlert(alertId: String): Response<Any> {
return api.deleteEmergencyAlert(alertId)
}
suspend fun cancelEmergencyAlert(alertId: String): Response<Any> {
return api.cancelEmergencyAlert(alertId)
}
// Location methods
suspend fun updateLocation(): Response<Any> {
return api.updateLocation()
}
suspend fun getLastLocation(): Response<Any> {
return api.getLastLocation()
}
suspend fun getLocationHistory(): Response<Any> {
return api.getLocationHistory()
}
suspend fun getNearbyUsers(): Response<Any> {
return api.getNearbyUsers()
}
suspend fun getSafePlaces(): Response<Any> {
return api.getSafePlaces()
}
suspend fun createSafePlace(): Response<Any> {
return api.createSafePlace()
}
suspend fun getSafePlace(placeId: String): Response<Any> {
return api.getSafePlace(placeId)
}
suspend fun updateSafePlace(placeId: String): Response<Any> {
return api.updateSafePlace(placeId)
}
suspend fun deleteSafePlace(placeId: String): Response<Any> {
return api.deleteSafePlace(placeId)
}
// Calendar methods
suspend fun getCalendarEntries(): Response<Any> {
return api.getCalendarEntries()
}
suspend fun createCalendarEntry(): Response<Any> {
return api.createCalendarEntry()
}
suspend fun getCalendarEntry(entryId: String): Response<Any> {
return api.getCalendarEntry(entryId)
}
suspend fun updateCalendarEntry(entryId: String): Response<Any> {
return api.updateCalendarEntry(entryId)
}
suspend fun deleteCalendarEntry(entryId: String): Response<Any> {
return api.deleteCalendarEntry(entryId)
}
suspend fun getCycleOverview(): Response<Any> {
return api.getCycleOverview()
}
suspend fun getCalendarInsights(): Response<Any> {
return api.getCalendarInsights()
}
suspend fun getCalendarReminders(): Response<Any> {
return api.getCalendarReminders()
}
suspend fun createCalendarReminder(): Response<Any> {
return api.createCalendarReminder()
}
suspend fun getCalendarSettings(): Response<Any> {
return api.getCalendarSettings()
}
suspend fun updateCalendarSettings(): Response<Any> {
return api.updateCalendarSettings()
}
// Notification methods
suspend fun getNotificationDevices(): Response<Any> {
return api.getNotificationDevices()
}
suspend fun createNotificationDevice(): Response<Any> {
return api.createNotificationDevice()
}
suspend fun getNotificationDevice(deviceId: String): Response<Any> {
return api.getNotificationDevice(deviceId)
}
suspend fun deleteNotificationDevice(deviceId: String): Response<Any> {
return api.deleteNotificationDevice(deviceId)
}
suspend fun getNotificationPreferences(): Response<Any> {
return api.getNotificationPreferences()
}
suspend fun updateNotificationPreferences(): Response<Any> {
return api.updateNotificationPreferences()
}
suspend fun testNotification(): Response<Any> {
return api.testNotification()
}
suspend fun getNotificationHistory(): Response<Any> {
return api.getNotificationHistory()
}
// Health check methods
suspend fun getHealth(): Response<Any> {
return api.getHealth()
}
suspend fun getServicesStatus(): Response<Any> {
return api.getServicesStatus()
}
suspend fun getRoot(): Response<Any> {
return api.getRoot()
}
}

View File

@@ -0,0 +1,567 @@
package com.example.womansafe.ui.components
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.input.KeyboardType
import androidx.compose.ui.text.input.PasswordVisualTransformation
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.example.womansafe.data.model.EmergencyContactResponse
import com.example.womansafe.data.model.UserResponse
import com.example.womansafe.ui.viewmodel.ApiTestViewModel
@Composable
fun AuthTab(
email: String,
onEmailChange: (String) -> Unit,
username: String,
onUsernameChange: (String) -> Unit,
password: String,
onPasswordChange: (String) -> Unit,
fullName: String,
onFullNameChange: (String) -> Unit,
phoneNumber: String,
onPhoneNumberChange: (String) -> Unit,
viewModel: ApiTestViewModel,
isLoading: Boolean
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
Card(
modifier = Modifier.fillMaxWidth()
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "🔐 Аутентификация",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(16.dp))
OutlinedTextField(
value = email,
onValueChange = onEmailChange,
label = { Text("Email") },
modifier = Modifier.fillMaxWidth(),
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email)
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = username,
onValueChange = onUsernameChange,
label = { Text("Username (опционально)") },
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = password,
onValueChange = onPasswordChange,
label = { Text("Пароль") },
modifier = Modifier.fillMaxWidth(),
visualTransformation = PasswordVisualTransformation(),
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Password)
)
Spacer(modifier = Modifier.height(16.dp))
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Button(
onClick = {
viewModel.login(
email = if (email.isNotBlank()) email else null,
username = if (username.isNotBlank()) username else null,
password = password
)
},
modifier = Modifier.weight(1f),
enabled = !isLoading && password.isNotBlank()
) {
if (isLoading) {
CircularProgressIndicator(modifier = Modifier.size(16.dp))
} else {
Text("Войти")
}
}
OutlinedButton(
onClick = { viewModel.clearAuth() },
modifier = Modifier.weight(1f)
) {
Text("Выйти")
}
}
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Регистрация",
style = MaterialTheme.typography.titleSmall,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = fullName,
onValueChange = onFullNameChange,
label = { Text("Полное имя") },
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = phoneNumber,
onValueChange = onPhoneNumberChange,
label = { Text("Номер телефона") },
modifier = Modifier.fillMaxWidth(),
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Phone)
)
Spacer(modifier = Modifier.height(16.dp))
Button(
onClick = {
viewModel.register(
email = email,
username = if (username.isNotBlank()) username else null,
password = password,
fullName = if (fullName.isNotBlank()) fullName else null,
phoneNumber = if (phoneNumber.isNotBlank()) phoneNumber else null
)
},
modifier = Modifier.fillMaxWidth(),
enabled = !isLoading && email.isNotBlank() && password.isNotBlank()
) {
Text("Зарегистрироваться")
}
}
}
}
}
@Composable
fun UserTab(
viewModel: ApiTestViewModel,
currentUser: UserResponse?,
isLoading: Boolean
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
Card(
modifier = Modifier.fillMaxWidth()
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "👤 Профиль пользователя",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(16.dp))
Button(
onClick = { viewModel.getCurrentUser() },
modifier = Modifier.fillMaxWidth(),
enabled = !isLoading
) {
Text("Получить профиль")
}
Spacer(modifier = Modifier.height(8.dp))
Button(
onClick = { viewModel.getDashboard() },
modifier = Modifier.fillMaxWidth(),
enabled = !isLoading
) {
Text("Получить дашборд")
}
if (currentUser != null) {
Spacer(modifier = Modifier.height(16.dp))
Card(
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surfaceVariant)
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "Информация о пользователе:",
fontWeight = FontWeight.Bold
)
Text("ID: ${currentUser.id}")
Text("UUID: ${currentUser.uuid}")
Text("Email: ${currentUser.email}")
currentUser.fullName?.let { Text("Имя: $it") }
currentUser.phoneNumber?.let { Text("Телефон: $it") }
Text("Email подтвержден: ${if (currentUser.emailVerified) "Да" else "Нет"}")
Text("Активен: ${if (currentUser.isActive) "Да" else "Нет"}")
}
}
}
}
}
}
}
@Composable
fun ContactsTab(
contactName: String,
onContactNameChange: (String) -> Unit,
contactPhone: String,
onContactPhoneChange: (String) -> Unit,
contactRelationship: String,
onContactRelationshipChange: (String) -> Unit,
contactNotes: String,
onContactNotesChange: (String) -> Unit,
viewModel: ApiTestViewModel,
contacts: List<EmergencyContactResponse>,
isLoading: Boolean
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
Card(
modifier = Modifier.fillMaxWidth()
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "🚨 Экстренные контакты",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(16.dp))
Button(
onClick = { viewModel.getEmergencyContacts() },
modifier = Modifier.fillMaxWidth(),
enabled = !isLoading
) {
Text("Получить список контактов")
}
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Добавить новый контакт:",
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = contactName,
onValueChange = onContactNameChange,
label = { Text("Имя контакта") },
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = contactPhone,
onValueChange = onContactPhoneChange,
label = { Text("Номер телефона") },
modifier = Modifier.fillMaxWidth(),
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Phone)
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = contactRelationship,
onValueChange = onContactRelationshipChange,
label = { Text("Отношение (опционально)") },
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.height(8.dp))
OutlinedTextField(
value = contactNotes,
onValueChange = onContactNotesChange,
label = { Text("Заметки (опционально)") },
modifier = Modifier.fillMaxWidth(),
maxLines = 3
)
Spacer(modifier = Modifier.height(16.dp))
Button(
onClick = {
viewModel.createEmergencyContact(
name = contactName,
phoneNumber = contactPhone,
relationship = if (contactRelationship.isNotBlank()) contactRelationship else null,
notes = if (contactNotes.isNotBlank()) contactNotes else null
)
},
modifier = Modifier.fillMaxWidth(),
enabled = !isLoading && contactName.isNotBlank() && contactPhone.isNotBlank()
) {
Text("Создать контакт")
}
if (contacts.isNotEmpty()) {
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Существующие контакты:",
fontWeight = FontWeight.Bold
)
contacts.forEach { contact ->
Card(
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 4.dp),
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.surfaceVariant)
) {
Column(
modifier = Modifier.padding(12.dp)
) {
Text("${contact.name} - ${contact.phoneNumber}")
contact.relationship?.let { Text("Отношение: $it", fontSize = 12.sp) }
contact.notes?.let { Text("Заметки: $it", fontSize = 12.sp) }
Text("ID: ${contact.id}", fontSize = 10.sp, color = Color.Gray)
}
}
}
}
}
}
}
}
@Composable
fun ApiTestsTab(
viewModel: ApiTestViewModel,
isLoading: Boolean
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
Card(
modifier = Modifier.fillMaxWidth()
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "🧪 API Тесты",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(16.dp))
val endpoints = listOf(
"Health Check" to "/api/v1/health",
"Services Status" to "/api/v1/services-status",
"Root" to "/",
"Emergency Reports" to "/api/v1/emergency/reports",
"Emergency Alerts" to "/api/v1/emergency/alerts",
"Last Location" to "/api/v1/locations/last",
"Location History" to "/api/v1/locations/history",
"Calendar Entries" to "/api/v1/calendar/entries",
"Notification Preferences" to "/api/v1/notifications/preferences"
)
endpoints.forEach { (name, endpoint) ->
Button(
onClick = { viewModel.testGenericEndpoint(endpoint, "GET") },
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 2.dp),
enabled = !isLoading
) {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically
) {
Text(name)
Text(
text = endpoint,
fontSize = 10.sp,
color = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.7f)
)
}
}
}
}
}
}
}
@Composable
fun SettingsTab(
baseUrl: String,
onBaseUrlChange: (String) -> Unit,
viewModel: ApiTestViewModel
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
) {
Card(
modifier = Modifier.fillMaxWidth()
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "⚙️ Настройки",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Spacer(modifier = Modifier.height(16.dp))
OutlinedTextField(
value = baseUrl,
onValueChange = onBaseUrlChange,
label = { Text("Base URL API") },
modifier = Modifier.fillMaxWidth(),
supportingText = {
Text("Для эмулятора: http://10.0.2.2:8000/\nДля реального устройства: http://YOUR_IP:8000/")
}
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Примеры URL:",
fontWeight = FontWeight.Bold
)
val exampleUrls = listOf(
"Эмулятор" to "http://10.0.2.2:8000/",
"Localhost" to "http://127.0.0.1:8000/",
"Удаленный сервер" to "https://api.womansafe.com/"
)
exampleUrls.forEach { (name, url) ->
OutlinedButton(
onClick = { onBaseUrlChange(url) },
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 2.dp)
) {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween
) {
Text(name)
Text(url, fontSize = 12.sp)
}
}
}
}
}
}
}
@Composable
fun ResultsSection(
endpoint: String,
response: String,
error: String,
onClear: () -> Unit
) {
Card(
modifier = Modifier.fillMaxWidth(),
colors = CardDefaults.cardColors(
containerColor = if (error.isNotEmpty())
MaterialTheme.colorScheme.errorContainer
else
MaterialTheme.colorScheme.surfaceVariant
)
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically
) {
Text(
text = "📡 Результат: $endpoint",
fontWeight = FontWeight.Bold,
modifier = Modifier.weight(1f)
)
TextButton(onClick = onClear) {
Text("Очистить")
}
}
Spacer(modifier = Modifier.height(8.dp))
if (error.isNotEmpty()) {
Text(
text = "❌ Ошибка:",
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.error
)
Text(
text = error,
fontFamily = FontFamily.Monospace,
fontSize = 12.sp,
color = MaterialTheme.colorScheme.error
)
}
if (response.isNotEmpty()) {
Text(
text = "✅ Ответ:",
fontWeight = FontWeight.Bold,
color = if (error.isEmpty()) Color(0xFF4CAF50) else MaterialTheme.colorScheme.onSurface
)
Text(
text = response,
fontFamily = FontFamily.Monospace,
fontSize = 12.sp,
modifier = Modifier.padding(top = 4.dp)
)
}
}
}
}

View File

@@ -0,0 +1,159 @@
package com.example.womansafe.ui.screens
import androidx.compose.foundation.layout.*
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import androidx.lifecycle.viewmodel.compose.viewModel
import com.example.womansafe.ui.viewmodel.ApiTestViewModel
import com.example.womansafe.ui.components.*
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun ApiTestScreen(
modifier: Modifier = Modifier,
viewModel: ApiTestViewModel = viewModel()
) {
val state by viewModel.state.collectAsState()
var email by remember { mutableStateOf("user@example.com") }
var username by remember { mutableStateOf("user123") }
var password by remember { mutableStateOf("Password123!") }
var fullName by remember { mutableStateOf("John Doe") }
var phoneNumber by remember { mutableStateOf("+7123456789") }
var baseUrl by remember { mutableStateOf(state.baseUrl) }
var contactName by remember { mutableStateOf("Emergency Contact") }
var contactPhone by remember { mutableStateOf("+7987654321") }
var contactRelationship by remember { mutableStateOf("Friend") }
var contactNotes by remember { mutableStateOf("Test contact") }
var selectedTab by remember { mutableStateOf(0) }
val tabs = listOf("Аутентификация", "Пользователь", "Контакты", "API Тесты", "Настройки")
LaunchedEffect(baseUrl) {
viewModel.updateBaseUrl(baseUrl)
}
Column(
modifier = Modifier
.fillMaxSize()
.padding(16.dp)
) {
// Header
Card(
modifier = Modifier.fillMaxWidth(),
colors = CardDefaults.cardColors(containerColor = MaterialTheme.colorScheme.primaryContainer)
) {
Column(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "Women's Safety API Tester",
style = MaterialTheme.typography.headlineSmall,
fontWeight = FontWeight.Bold
)
if (state.isAuthenticated) {
Text(
text = "✅ Авторизован",
color = Color(0xFF4CAF50),
fontSize = 14.sp
)
} else {
Text(
text = "Не авторизован",
color = Color(0xFFF44336),
fontSize = 14.sp
)
}
Text(
text = "API: $baseUrl",
fontSize = 12.sp,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
Spacer(modifier = Modifier.height(8.dp))
// Tabs
ScrollableTabRow(selectedTabIndex = selectedTab) {
tabs.forEachIndexed { index, title ->
Tab(
selected = selectedTab == index,
onClick = { selectedTab = index },
text = { Text(title) }
)
}
}
Spacer(modifier = Modifier.height(8.dp))
// Content based on selected tab
when (selectedTab) {
0 -> AuthTab(
email = email,
onEmailChange = { email = it },
username = username,
onUsernameChange = { username = it },
password = password,
onPasswordChange = { password = it },
fullName = fullName,
onFullNameChange = { fullName = it },
phoneNumber = phoneNumber,
onPhoneNumberChange = { phoneNumber = it },
viewModel = viewModel,
isLoading = state.isLoading
)
1 -> UserTab(
viewModel = viewModel,
currentUser = state.currentUser,
isLoading = state.isLoading
)
2 -> ContactsTab(
contactName = contactName,
onContactNameChange = { contactName = it },
contactPhone = contactPhone,
onContactPhoneChange = { contactPhone = it },
contactRelationship = contactRelationship,
onContactRelationshipChange = { contactRelationship = it },
contactNotes = contactNotes,
onContactNotesChange = { contactNotes = it },
viewModel = viewModel,
contacts = state.emergencyContacts,
isLoading = state.isLoading
)
3 -> ApiTestsTab(
viewModel = viewModel,
isLoading = state.isLoading
)
4 -> SettingsTab(
baseUrl = baseUrl,
onBaseUrlChange = { baseUrl = it },
viewModel = viewModel
)
}
Spacer(modifier = Modifier.height(16.dp))
// Results section
if (state.selectedEndpoint.isNotEmpty()) {
ResultsSection(
endpoint = state.selectedEndpoint,
response = state.lastApiResponse,
error = state.lastApiError,
onClear = { viewModel.clearResults() }
)
}
}
}

View File

@@ -0,0 +1,11 @@
package com.example.womansafe.ui.theme
import androidx.compose.ui.graphics.Color
val Purple80 = Color(0xFFD0BCFF)
val PurpleGrey80 = Color(0xFFCCC2DC)
val Pink80 = Color(0xFFEFB8C8)
val Purple40 = Color(0xFF6650a4)
val PurpleGrey40 = Color(0xFF625b71)
val Pink40 = Color(0xFF7D5260)

View File

@@ -0,0 +1,58 @@
package com.example.womansafe.ui.theme
import android.app.Activity
import android.os.Build
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.darkColorScheme
import androidx.compose.material3.dynamicDarkColorScheme
import androidx.compose.material3.dynamicLightColorScheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalContext
private val DarkColorScheme = darkColorScheme(
primary = Purple80,
secondary = PurpleGrey80,
tertiary = Pink80
)
private val LightColorScheme = lightColorScheme(
primary = Purple40,
secondary = PurpleGrey40,
tertiary = Pink40
/* Other default colors to override
background = Color(0xFFFFFBFE),
surface = Color(0xFFFFFBFE),
onPrimary = Color.White,
onSecondary = Color.White,
onTertiary = Color.White,
onBackground = Color(0xFF1C1B1F),
onSurface = Color(0xFF1C1B1F),
*/
)
@Composable
fun WomanSafeTheme(
darkTheme: Boolean = isSystemInDarkTheme(),
// Dynamic color is available on Android 12+
dynamicColor: Boolean = true,
content: @Composable () -> Unit
) {
val colorScheme = when {
dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
val context = LocalContext.current
if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)
}
darkTheme -> DarkColorScheme
else -> LightColorScheme
}
MaterialTheme(
colorScheme = colorScheme,
typography = Typography,
content = content
)
}

View File

@@ -0,0 +1,34 @@
package com.example.womansafe.ui.theme
import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp
// Set of Material typography styles to start with
val Typography = Typography(
bodyLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp
)
/* Other default text styles to override
titleLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 22.sp,
lineHeight = 28.sp,
letterSpacing = 0.sp
),
labelSmall = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 11.sp,
lineHeight = 16.sp,
letterSpacing = 0.5.sp
)
*/
)

View File

@@ -0,0 +1,328 @@
package com.example.womansafe.ui.viewmodel
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.example.womansafe.data.model.*
import com.example.womansafe.data.network.NetworkClient
import com.example.womansafe.data.repository.ApiRepository
import com.google.gson.Gson
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.launch
data class ApiTestState(
val isLoading: Boolean = false,
val currentUser: UserResponse? = null,
val authToken: String? = null,
val isAuthenticated: Boolean = false,
val emergencyContacts: List<EmergencyContactResponse> = emptyList(),
val lastApiResponse: String = "",
val lastApiError: String = "",
val selectedEndpoint: String = "",
val baseUrl: String = "http://10.0.2.2:8000/"
)
class ApiTestViewModel : ViewModel() {
private val repository = ApiRepository()
private val gson = Gson()
private val _state = MutableStateFlow(ApiTestState())
val state: StateFlow<ApiTestState> = _state.asStateFlow()
fun updateBaseUrl(url: String) {
_state.value = _state.value.copy(baseUrl = url)
}
fun login(email: String?, username: String?, password: String) {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "POST /api/v1/auth/login",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = repository.login(email, username, password)
if (response.isSuccessful) {
val token = response.body()
token?.let {
NetworkClient.setAuthToken(it.accessToken)
_state.value = _state.value.copy(
authToken = it.accessToken,
isAuthenticated = true,
lastApiResponse = "Login successful! Token: ${it.accessToken.take(20)}...",
isLoading = false
)
}
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun register(email: String, username: String?, password: String, fullName: String?, phoneNumber: String?) {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "POST /api/v1/auth/register",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = repository.register(email, username, password, fullName, phoneNumber)
if (response.isSuccessful) {
val user = response.body()
_state.value = _state.value.copy(
currentUser = user,
lastApiResponse = gson.toJson(user),
isLoading = false
)
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun getCurrentUser() {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "GET /api/v1/users/me",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = repository.getCurrentUser()
if (response.isSuccessful) {
val user = response.body()
_state.value = _state.value.copy(
currentUser = user,
lastApiResponse = gson.toJson(user),
isLoading = false
)
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun getDashboard() {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "GET /api/v1/users/dashboard",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = repository.getDashboard()
if (response.isSuccessful) {
val dashboard = response.body()
_state.value = _state.value.copy(
lastApiResponse = gson.toJson(dashboard),
isLoading = false
)
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun getEmergencyContacts() {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "GET /api/v1/users/me/emergency-contacts",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = repository.getEmergencyContacts()
if (response.isSuccessful) {
val contacts = response.body() ?: emptyList()
_state.value = _state.value.copy(
emergencyContacts = contacts,
lastApiResponse = gson.toJson(contacts),
isLoading = false
)
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun createEmergencyContact(name: String, phoneNumber: String, relationship: String?, notes: String?) {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "POST /api/v1/users/me/emergency-contacts",
lastApiError = "",
lastApiResponse = ""
)
try {
val contact = EmergencyContactCreate(name, phoneNumber, relationship, notes)
val response = repository.createEmergencyContact(contact)
if (response.isSuccessful) {
val createdContact = response.body()
_state.value = _state.value.copy(
lastApiResponse = gson.toJson(createdContact),
isLoading = false
)
// Refresh the contacts list
getEmergencyContacts()
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun testGenericEndpoint(endpoint: String, method: String) {
viewModelScope.launch {
_state.value = _state.value.copy(
isLoading = true,
selectedEndpoint = "$method $endpoint",
lastApiError = "",
lastApiResponse = ""
)
try {
val response = when (endpoint.lowercase()) {
"/api/v1/health" -> repository.getHealth()
"/api/v1/services-status" -> repository.getServicesStatus()
"/" -> repository.getRoot()
"/api/v1/users/dashboard" -> repository.getDashboard()
"/api/v1/emergency/reports" -> repository.getEmergencyReports()
"/api/v1/emergency/alerts" -> repository.getEmergencyAlerts()
"/api/v1/locations/last" -> repository.getLastLocation()
"/api/v1/locations/history" -> repository.getLocationHistory()
"/api/v1/calendar/entries" -> repository.getCalendarEntries()
"/api/v1/notifications/preferences" -> repository.getNotificationPreferences()
else -> {
_state.value = _state.value.copy(
lastApiError = "Endpoint not implemented in this test app",
isLoading = false
)
return@launch
}
}
if (response.isSuccessful) {
val body = response.body()
_state.value = _state.value.copy(
lastApiResponse = gson.toJson(body),
isLoading = false
)
} else {
val errorBody = response.errorBody()?.string() ?: "Unknown error"
_state.value = _state.value.copy(
lastApiError = "Error ${response.code()}: $errorBody",
lastApiResponse = "",
isLoading = false
)
}
} catch (e: Exception) {
_state.value = _state.value.copy(
lastApiError = "Network error: ${e.message}",
lastApiResponse = "",
isLoading = false
)
}
}
}
fun clearAuth() {
NetworkClient.setAuthToken(null)
_state.value = _state.value.copy(
authToken = null,
isAuthenticated = false,
currentUser = null
)
}
fun clearResults() {
_state.value = _state.value.copy(
lastApiResponse = "",
lastApiError = "",
selectedEndpoint = ""
)
}
}

View File

@@ -0,0 +1,170 @@
<?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="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

View File

@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@@ -0,0 +1,3 @@
<resources>
<string name="app_name">Woman Safe</string>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.WomanSafe" parent="android:Theme.Material.Light.NoActionBar" />
</resources>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older than API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

View File

@@ -0,0 +1,17 @@
package com.example.womansafe
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}