Compare commits
26 Commits
dev
...
dev-withou
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fbce8cad63 | ||
|
|
ef620371f3 | ||
|
|
3fd36080ec | ||
|
|
1f8f2010ca | ||
|
|
c4ca1b7169 | ||
|
|
904c0fd2ad | ||
|
|
d7ef2b7ef9 | ||
|
|
efe9d83e2b | ||
|
|
74d8479aab | ||
|
|
b9a5b1c763 | ||
|
|
748af4155f | ||
|
|
0445e28fc1 | ||
|
|
aa4cf1b7c3 | ||
|
|
0c155ae131 | ||
|
|
4b60188582 | ||
|
|
f258cc3440 | ||
|
|
c91082ee6d | ||
|
|
e78ae3a29e | ||
|
|
e112035756 | ||
|
|
1031551bca | ||
|
|
9c4a4290bb | ||
|
|
f578c17b5f | ||
|
|
fdb63d808d | ||
|
|
dd2e115995 | ||
|
|
70f703199a | ||
|
|
d5955507b8 |
@@ -138,6 +138,7 @@ dependencies {
|
||||
implementation "androidx.room:room-ktx:2.6.1"
|
||||
implementation "androidx.room:room-runtime:2.6.1"
|
||||
kapt ("androidx.room:room-compiler:2.6.1")
|
||||
implementation "net.zetetic:android-database-sqlcipher:4.4.0"
|
||||
|
||||
//image
|
||||
implementation 'com.github.bumptech.glide:glide:4.13.2'
|
||||
@@ -167,5 +168,6 @@ dependencies {
|
||||
|
||||
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
||||
implementation 'io.nats:jnats:2.11.4'
|
||||
implementation 'org.apache.commons:commons-math3:3.6.1'
|
||||
|
||||
}
|
||||
@@ -23,6 +23,7 @@ import com.example.hpostesting.data.model.updates.CheckUpdateResponse
|
||||
import com.example.hpostesting.data.model.updates.DeviceUpdateRequest
|
||||
import okhttp3.MultipartBody
|
||||
import okhttp3.ResponseBody
|
||||
import retrofit2.Response
|
||||
import retrofit2.http.Body
|
||||
import retrofit2.http.GET
|
||||
import retrofit2.http.Multipart
|
||||
@@ -45,7 +46,7 @@ interface MolbioResultApi {
|
||||
@POST("deviceService/device/getUpdate")
|
||||
suspend fun deviceUpdate(
|
||||
@Body deviceUpdateRequest: DeviceUpdateRequest,
|
||||
): ResponseBody
|
||||
): Response<ResponseBody>
|
||||
|
||||
@GET("deviceService/device/getClientCertificate")
|
||||
suspend fun downloadClientCertificate(
|
||||
|
||||
@@ -16,12 +16,13 @@ package com.example.hpostesting.data.constant
|
||||
object Constants {
|
||||
const val ACTION_USB_PERMISSION = "shanmukha.in.sickle_cell.USB_PERMISSION"
|
||||
const val HEMOCUBE_USB_PERMISSION = "shanmukha.in.sickle_cell_homocube.USB_PERMISSION"
|
||||
|
||||
const val passphrase = "smi_#@sql"
|
||||
const val BASE_URL = "www.google.com"
|
||||
const val DOCUMENT_ID_FOR_UPDATE ="2o71vBKLqdgEKYtFG8Lb"
|
||||
const val ABHA_APP_PACKAGE = "in.ndhm.phr"
|
||||
|
||||
const val MOLBIO_INTEGRATION = true
|
||||
const val FIREBASE_INTEGRATION = false
|
||||
const val deviceProvisionEmail = "HPOS_provisioner@bigtec.co.in"
|
||||
const val deviceProvisionPassword = "f2ab0e7f9d69"
|
||||
const val DEVICE_ID_API = "deviceIDAPI"
|
||||
@@ -1244,7 +1245,7 @@ object Constants {
|
||||
const val PQ_MODE = true
|
||||
const val READINGS_PER_SAMPLE = 1
|
||||
|
||||
const val MINIMUM_BATTERY_LEVEL = 0
|
||||
const val MINIMUM_BATTERY_LEVEL = 40F
|
||||
|
||||
val BUFFER_INTENSITY_THRESHOLDS: Map<String, List<List<Int>>> = mapOf<String, List<List<Int>>>(
|
||||
"HCV-000-3001" to listOf(
|
||||
|
||||
@@ -38,6 +38,7 @@ object DataHolder {
|
||||
var hemoCubeTestData: HemoCubeTestData? = null
|
||||
var kitSerial: String = ""
|
||||
var location: UserData.Location? = null
|
||||
var ipAddress: String = "0.0"
|
||||
var testExp: Boolean = true
|
||||
var hemocubeResult: Double? = null
|
||||
}
|
||||
@@ -50,7 +50,8 @@ interface HemoCubeDao {
|
||||
@Query("UPDATE hemo_cube_test_table SET isCSVCreated = :newValue WHERE _id = :id")
|
||||
suspend fun updateCSVFieldById(id: String, newValue: Boolean)
|
||||
|
||||
@Query("SELECT * from hemo_cube_test_table WHERE localFlag = 0")
|
||||
@Query("SELECT * from hemo_cube_test_table WHERE molbioFlag = 0")
|
||||
fun getPendingUser(): LiveData<List<HemoCubeTestData>>
|
||||
|
||||
@Update
|
||||
suspend fun updateTest(hemoCubeTestData: HemoCubeTestData)
|
||||
}
|
||||
@@ -19,11 +19,12 @@ import androidx.room.TypeConverters
|
||||
import com.example.hpostesting.data.model.patient.BufferCheckData
|
||||
import com.example.hpostesting.data.model.patient.DeviceData
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.data.model.patient.MolbioHemocubeData
|
||||
import com.example.hpostesting.data.model.patient.UserData
|
||||
|
||||
@Database(
|
||||
entities = [UserData::class, HemoCubeTestData::class, DeviceData::class, BufferCheckData::class],
|
||||
version = 32,
|
||||
entities = [UserData::class, HemoCubeTestData::class, DeviceData::class, BufferCheckData::class,MolbioHemocubeData::class],
|
||||
version = 34,
|
||||
exportSchema = false
|
||||
)
|
||||
@TypeConverters(Converters::class)
|
||||
@@ -31,4 +32,5 @@ abstract class MyDatabase : RoomDatabase() {
|
||||
abstract fun userDao(): UserDao
|
||||
abstract fun hemoCubeDao(): HemoCubeDao
|
||||
abstract fun hemoCubeBufferDao(): HemoCubeBufferDao
|
||||
|
||||
}
|
||||
@@ -14,15 +14,16 @@
|
||||
package com.example.hpostesting.data.model.molbioresult
|
||||
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.data.model.patient.MolbioHemocubeData
|
||||
|
||||
data class MolbioV2Result(
|
||||
val age: Int? = 31,
|
||||
// val age: Int? = 31,
|
||||
val analysisDate: String? = "2024-02-08 16:33:56",
|
||||
val analysisId: String? = "",
|
||||
val analysisStatus: String? = "",
|
||||
val analysisType: String? = "HPOS",
|
||||
val analysisTypeMethod: String? = "",
|
||||
val bloodGroup: String? = "",
|
||||
// val bloodGroup: String? = "",
|
||||
val coefficients: List<Int>? = listOf(22, 22),
|
||||
val collectionLocation: List<Any>? = listOf(),
|
||||
val collectionTime: String? = "2024-02-08 16:33:56",
|
||||
@@ -30,12 +31,12 @@ data class MolbioV2Result(
|
||||
val curveFitting: String? = "Linear",
|
||||
val deviceName: String? = "HPOS",
|
||||
val expiryTime: String? = "2024-02-08 16:33:56",
|
||||
val gender: String? = "",
|
||||
// val gender: String? = "",
|
||||
val interpretation: String? = "",
|
||||
val `operator`: String? = "",
|
||||
val patientId: Int? = 4545,
|
||||
val pregnancy: Boolean? = false,
|
||||
val rawData: HemoCubeTestData? = HemoCubeTestData(),
|
||||
val rawData: MolbioHemocubeData? = HemoCubeTestData().MolbioHemocubeData(),
|
||||
val recommendation: String? = "NA",
|
||||
val sampleId: String? = "",
|
||||
val sampleType: String? = "",
|
||||
|
||||
@@ -14,14 +14,15 @@
|
||||
package com.example.hpostesting.data.model.molbioresult
|
||||
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.data.model.patient.MolbioHemocubeData
|
||||
|
||||
data class MolbioV2ResultData(
|
||||
val age: Int? = 0,
|
||||
// val age: Int? = 0,
|
||||
val analysisDate: String? = "2024-02-08 16:33:56",
|
||||
val analysisStatus: String? = "",
|
||||
val analysisType: String? = "",
|
||||
val analysisTypeMethod: String? = "",
|
||||
val bloodGroup: String? = "",
|
||||
// val bloodGroup: String? = "",
|
||||
val coefficients: List<Int>? = listOf(),
|
||||
val collectionLocation: List<Any>? = listOf(),
|
||||
val collectionTime: String? = "2024-02-08 16:33:56",
|
||||
@@ -31,13 +32,13 @@ data class MolbioV2ResultData(
|
||||
val curveFitting: String? = "",
|
||||
val deviceId: Int? = 0,
|
||||
val expiryTime: String? = "2024-02-08 16:33:56",
|
||||
val gender: String? = "",
|
||||
// val gender: String? = "",
|
||||
val id: Int? = 0,
|
||||
val interpretation: String? = "",
|
||||
val `operator`: String? = "",
|
||||
val patientId: Int? = 0,
|
||||
val pregnancy: Boolean? = false,
|
||||
val rawData: HemoCubeTestData? = HemoCubeTestData(),
|
||||
val rawData: MolbioHemocubeData? = HemoCubeTestData().MolbioHemocubeData(),
|
||||
val recommendation: String? = "",
|
||||
val sampleId: String? = "",
|
||||
val sampleType: String? = "",
|
||||
|
||||
@@ -108,3 +108,89 @@ data class HemoCubeTestData(
|
||||
var isCSVCreated: Boolean = false,
|
||||
var labName: String? = ""
|
||||
)
|
||||
|
||||
fun HemoCubeTestData.MolbioHemocubeData() = MolbioHemocubeData(
|
||||
sampleid = sampleid,
|
||||
_id = _id,
|
||||
name = name,
|
||||
incubationTime = incubationTime,
|
||||
state = state,
|
||||
location = location,
|
||||
reportUploadTime = reportUploadTime,
|
||||
testType = testType,
|
||||
testTime = testTime,
|
||||
testStatus = testStatus,
|
||||
localFlag = localFlag,
|
||||
deviceId = deviceId,
|
||||
appVersion = appVersion,
|
||||
deviceSerialNumber = deviceSerialNumber,
|
||||
deviceType = deviceType,
|
||||
kitSerial = kitSerial,
|
||||
resultData = resultData,
|
||||
led1Buffer = led1Buffer,
|
||||
led2Buffer = led2Buffer,
|
||||
led3Buffer = led3Buffer,
|
||||
led4Buffer = led4Buffer,
|
||||
led1Sample = led1Sample,
|
||||
led2Sample = led2Sample,
|
||||
led3Sample = led3Sample,
|
||||
led4Sample = led4Sample,
|
||||
led1Average = led1Average,
|
||||
led2Average = led2Average,
|
||||
led3Average = led3Average,
|
||||
led4Average = led4Average,
|
||||
abs1 = abs1,
|
||||
abs2 = abs2,
|
||||
abs3 = abs3,
|
||||
abs4 = abs4,
|
||||
hb3 = hb3,
|
||||
hb4 = hb4,
|
||||
led1Gain1 = led1Gain1,
|
||||
led2Gain1 = led2Gain1,
|
||||
led3Gain1 = led3Gain1,
|
||||
led4Gain1 = led4Gain1,
|
||||
led1Gain2 = led1Gain2,
|
||||
led2Gain2 = led2Gain2,
|
||||
led3Gain2 = led3Gain2,
|
||||
led4Gain2 = led4Gain2,
|
||||
led1Gain3 = led1Gain3,
|
||||
led2Gain3 = led2Gain3,
|
||||
led3Gain3 = led3Gain3,
|
||||
led4Gain3 = led4Gain3,
|
||||
led1Gain4 = led1Gain4,
|
||||
led2Gain4 = led2Gain4,
|
||||
led3Gain4 = led3Gain4,
|
||||
led4Gain4 = led4Gain4,
|
||||
led1Air1 = led1Air1,
|
||||
led2Air1 = led2Air1,
|
||||
led3Air1 = led3Air1,
|
||||
led4Air1 = led4Air1,
|
||||
led1Air2 = led1Air2,
|
||||
led2Air2 = led2Air2,
|
||||
led3Air2 = led3Air2,
|
||||
led4Air2 = led4Air2,
|
||||
deviceRatio = deviceRatio,
|
||||
calculatedRatio = calculatedRatio,
|
||||
predictedDenovixRatio = predictedDenovixRatio,
|
||||
slopeRatio = slopeRatio,
|
||||
coefficients = coefficients,
|
||||
classificationResult = classificationResult,
|
||||
prdClassification = prdClassification,
|
||||
deviceRatioClass = deviceRatioClass,
|
||||
slopeRatioClass = slopeRatioClass,
|
||||
borderlineMethod2Class = borderlineMethod2Class,
|
||||
errorMessages = errorMessages,
|
||||
batteryLevel = batteryLevel,
|
||||
batteryCapacity = batteryCapacity,
|
||||
batteryMaxCapacity = batteryMaxCapacity,
|
||||
batteryTemperature = batteryTemperature,
|
||||
batteryVoltage = batteryVoltage,
|
||||
molbioFlag = molbioFlag,
|
||||
quickCapture = quickCapture,
|
||||
solution = solution,
|
||||
concentration = concentration,
|
||||
filter = filter,
|
||||
volume = volume,
|
||||
isCSVCreated = isCSVCreated,
|
||||
labName = labName
|
||||
)
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
package com.example.hpostesting.data.model.patient
|
||||
|
||||
import androidx.room.Entity
|
||||
import androidx.room.PrimaryKey
|
||||
|
||||
@Entity(tableName = "molbio_hemo_cube_test_table")
|
||||
data class MolbioHemocubeData(
|
||||
@PrimaryKey(autoGenerate = true)
|
||||
var sampleid: Int = 0,
|
||||
var _id: String = "",
|
||||
var name: String = "",
|
||||
var incubationTime: String = "",
|
||||
var state: String = "",
|
||||
var location: UserData.Location? = null,
|
||||
var reportUploadTime: String? = "",
|
||||
var testType: String? = "HEMOCUBE",
|
||||
var testTime: String? = "",
|
||||
var testStatus: Boolean? = false,
|
||||
var localFlag: Boolean = false,
|
||||
var deviceId: String? = "",
|
||||
var appVersion: String? = "",
|
||||
var deviceSerialNumber: String = "",
|
||||
var deviceType: String = "HEMOCUBE",
|
||||
var kitSerial: String = "",
|
||||
var resultData: String = "",
|
||||
var led1Buffer: Double? = null,
|
||||
var led2Buffer: Double? = null,
|
||||
var led3Buffer: Double? = null,
|
||||
var led4Buffer: Double? = null,
|
||||
var led1Sample: Double? = null,
|
||||
var led2Sample: Double? = null,
|
||||
var led3Sample: Double? = null,
|
||||
var led4Sample: Double? = null,
|
||||
var led1Average: Double? = null,
|
||||
var led2Average: Double? = null,
|
||||
var led3Average: Double? = null,
|
||||
var led4Average: Double? = null,
|
||||
var abs1: Double? = null,
|
||||
var abs2: Double? = null,
|
||||
var abs3: Double? = null,
|
||||
var abs4: Double? = null,
|
||||
var hb3: Double? = null,
|
||||
var hb4: Double? = null,
|
||||
var led1Gain1: Double? = null,
|
||||
var led2Gain1: Double? = null,
|
||||
var led3Gain1: Double? = null,
|
||||
var led4Gain1: Double? = null,
|
||||
var led1Gain2: Double? = null,
|
||||
var led2Gain2: Double? = null,
|
||||
var led3Gain2: Double? = null,
|
||||
var led4Gain2: Double? = null,
|
||||
var led1Gain3: Double? = null,
|
||||
var led2Gain3: Double? = null,
|
||||
var led3Gain3: Double? = null,
|
||||
var led4Gain3: Double? = null,
|
||||
var led1Gain4: Double? = null,
|
||||
var led2Gain4: Double? = null,
|
||||
var led3Gain4: Double? = null,
|
||||
var led4Gain4: Double? = null,
|
||||
var led1Air1: Double? = null,
|
||||
var led2Air1: Double? = null,
|
||||
var led3Air1: Double? = null,
|
||||
var led4Air1: Double? = null,
|
||||
var led1Air2: Double? = null,
|
||||
var led2Air2: Double? = null,
|
||||
var led3Air2: Double? = null,
|
||||
var led4Air2: Double? = null,
|
||||
var deviceRatio: Double? = null,
|
||||
var calculatedRatio: Double? = null,
|
||||
var predictedDenovixRatio: Double? = null,
|
||||
var slopeRatio: Double? = null,
|
||||
var coefficients: String? = "",
|
||||
var classificationResult: String = "",
|
||||
var prdClassification: String = "",
|
||||
var deviceRatioClass: String = "",
|
||||
var slopeRatioClass: String = "",
|
||||
var borderlineMethod2Class: String = "",
|
||||
var errorMessages: String = "",
|
||||
var batteryLevel: String = "",
|
||||
var batteryCapacity: String = "",
|
||||
var batteryMaxCapacity: String = "",
|
||||
var batteryTemperature: String = "",
|
||||
var batteryVoltage: String = "",
|
||||
var molbioFlag: Boolean = false,
|
||||
var quickCapture: Boolean = false,
|
||||
var solution: String? = "",
|
||||
var concentration: String? = "",
|
||||
var filter: String? = "",
|
||||
var volume: String? = "",
|
||||
var isCSVCreated: Boolean = false,
|
||||
var labName: String? = ""
|
||||
)
|
||||
|
||||
@@ -43,6 +43,7 @@ data class UserData(
|
||||
var result: TestRightResultType? = null,
|
||||
var resultRatio: Double? = null,
|
||||
var prdClassification: String = "",
|
||||
var sampleid: Int = 0
|
||||
) {
|
||||
enum class Gender {
|
||||
MALE,
|
||||
@@ -60,6 +61,8 @@ fun UserData.toHemoCubeTestData() = HemoCubeTestData(
|
||||
_id = _id,
|
||||
name = name,
|
||||
bloodGroup = bloodGroup,
|
||||
sampleid = sampleid,
|
||||
incubationTime = incubationTime,
|
||||
birthYear = birthYear,
|
||||
gender = gender,
|
||||
state = state,
|
||||
|
||||
@@ -45,6 +45,7 @@ import com.google.firebase.storage.ktx.storage
|
||||
import kotlinx.coroutines.tasks.await
|
||||
import okhttp3.MultipartBody
|
||||
import okhttp3.ResponseBody
|
||||
import retrofit2.HttpException
|
||||
import java.io.File
|
||||
import java.net.ConnectException
|
||||
import java.net.SocketTimeoutException
|
||||
@@ -52,6 +53,7 @@ import javax.inject.Inject
|
||||
import javax.inject.Named
|
||||
|
||||
class NetworkException(message: String, cause: Throwable) : Exception(message, cause)
|
||||
class ValidationException(message: String) : Exception(message)
|
||||
class DatabaseRepository @Inject constructor(
|
||||
@Named("Auth") private val molbioAuthApi: MolbioAuthApi,
|
||||
private val molbioResultApi: MolbioResultApi,
|
||||
@@ -64,6 +66,8 @@ class DatabaseRepository @Inject constructor(
|
||||
return try {
|
||||
val response = apiCall.invoke()
|
||||
Result.Success(response)
|
||||
}catch (e: HttpException) {
|
||||
Result.Error(ValidationException("Device Already Registered /"+e.message))
|
||||
} catch (e: SocketTimeoutException) {
|
||||
Result.Error(NetworkException("Network timeout", e))
|
||||
} catch (e: ConnectException) {
|
||||
@@ -89,8 +93,8 @@ class DatabaseRepository @Inject constructor(
|
||||
return safeApiCall { molbioResultApi.checkUpdate(checkUpdateRequest) }
|
||||
}
|
||||
|
||||
override suspend fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest): Result<ResponseBody> {
|
||||
return safeApiCall { molbioResultApi.deviceUpdate(deviceUpdateRequest) }
|
||||
override suspend fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest): retrofit2.Response<ResponseBody> {
|
||||
return molbioResultApi.deviceUpdate(deviceUpdateRequest)
|
||||
}
|
||||
|
||||
override suspend fun deviceDiagnostics(deviceDiagnosticsRequest: DeviceDiagnosticsRequest): Result<DeviceDiagnosticsResponse> {
|
||||
|
||||
@@ -64,7 +64,7 @@ interface Repository {
|
||||
|
||||
suspend fun checkUpdate(checkUpdateRequest: CheckUpdateRequest): Result<CheckUpdateResponse>
|
||||
|
||||
suspend fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest): Result<ResponseBody>
|
||||
suspend fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest): retrofit2.Response<ResponseBody>
|
||||
suspend fun deviceDiagnostics(deviceDiagnosticsRequest: DeviceDiagnosticsRequest): Result<DeviceDiagnosticsResponse>
|
||||
suspend fun downloadClientCertificate(): Result<ResponseBody>
|
||||
suspend fun uploadLogs(logFile: MultipartBody.Part): Result<UploadLogsResponse>
|
||||
|
||||
@@ -20,7 +20,7 @@ import android.content.res.AssetManager
|
||||
import androidx.room.Room
|
||||
import com.example.hpostesting.data.api.MolbioAuthApi
|
||||
import com.example.hpostesting.data.api.MolbioResultApi
|
||||
import com.example.hpostesting.util.PropertyProvider
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.dao.HemoCubeBufferDao
|
||||
import com.example.hpostesting.data.dao.HemoCubeDao
|
||||
import com.example.hpostesting.data.dao.MyDatabase
|
||||
@@ -37,12 +37,15 @@ import com.example.hpostesting.domain.SaveRawData
|
||||
import com.example.hpostesting.domain.SaveRawDataTest
|
||||
import com.example.hpostesting.presentation.utils.UsbServiceListener
|
||||
import com.example.hpostesting.presentation.utils.UsbServiceListenerImpl
|
||||
import com.example.hpostesting.util.PropertyProvider
|
||||
import com.example.hpostesting.util.PropertyProviderImpl
|
||||
import dagger.Module
|
||||
import dagger.Provides
|
||||
import dagger.hilt.InstallIn
|
||||
import dagger.hilt.android.qualifiers.ApplicationContext
|
||||
import dagger.hilt.components.SingletonComponent
|
||||
import net.sqlcipher.database.SQLiteDatabase
|
||||
import net.sqlcipher.database.SupportFactory
|
||||
import okhttp3.OkHttpClient
|
||||
import retrofit2.Retrofit
|
||||
import retrofit2.converter.gson.GsonConverterFactory
|
||||
@@ -50,6 +53,7 @@ import java.util.concurrent.TimeUnit
|
||||
import javax.inject.Named
|
||||
import javax.inject.Singleton
|
||||
|
||||
|
||||
@Module
|
||||
@InstallIn(SingletonComponent::class)
|
||||
object AppModule {
|
||||
@@ -57,9 +61,12 @@ object AppModule {
|
||||
@Provides
|
||||
@Singleton
|
||||
fun provideMyDatabase(@ApplicationContext context: Context): MyDatabase {
|
||||
val passphraseBytes: ByteArray = SQLiteDatabase.getBytes(Constants.passphrase.toCharArray())
|
||||
val factory = SupportFactory(passphraseBytes)
|
||||
|
||||
return Room.databaseBuilder(
|
||||
context, MyDatabase::class.java, "my_database"
|
||||
).fallbackToDestructiveMigration().build()
|
||||
).openHelperFactory(factory).fallbackToDestructiveMigration().build()
|
||||
}
|
||||
|
||||
@Provides
|
||||
|
||||
@@ -171,6 +171,12 @@ class KitScanActivity : AppCompatActivity(), IDcsSdkApiDelegate {
|
||||
binding.btnGo.setOnClickListener {
|
||||
val serialNumber = binding.nameEditText.text.toString().trim()
|
||||
if (serialNumber.isNotEmpty() && isSerialValid(serialNumber)) {
|
||||
|
||||
Toast.makeText(
|
||||
applicationContext,
|
||||
R.string.kit_update,
|
||||
Toast.LENGTH_LONG
|
||||
).show()
|
||||
if (DataHolder.selectedTest == null) {
|
||||
with(sharedPreference.edit()) {
|
||||
putString(
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
package com.example.hpostesting.presentation
|
||||
|
||||
import android.Manifest
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.content.pm.PackageManager
|
||||
@@ -33,6 +34,7 @@ import com.example.hpostesting.util.MyUtils
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import `in`.sminnovations.hpostesting.databinding.ActivitySplashBinding
|
||||
|
||||
@SuppressLint("CustomSplashScreen")
|
||||
class SplashActivity : AppCompatActivity() {
|
||||
|
||||
private lateinit var binding: ActivitySplashBinding
|
||||
@@ -64,6 +66,7 @@ class SplashActivity : AppCompatActivity() {
|
||||
requestPermissions()
|
||||
}
|
||||
|
||||
@SuppressLint("HardwareIds")
|
||||
private fun setupStaticConstants() {
|
||||
DataHolder.mobileUniqueId =
|
||||
Settings.Secure.getString(
|
||||
|
||||
@@ -15,7 +15,10 @@ package com.example.hpostesting.presentation.adapter
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.content.IntentFilter
|
||||
import android.content.res.Resources
|
||||
import android.os.BatteryManager
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
@@ -35,7 +38,7 @@ import java.util.Calendar
|
||||
import java.util.Date
|
||||
import java.util.Locale
|
||||
|
||||
class OfflineUserListAdapter(private val view: View, private val batLevel: Int) :
|
||||
class OfflineUserListAdapter(private val view: View, private val batLevel: Int, private val fromWhere:String) :
|
||||
RecyclerView.Adapter<OfflineUserListAdapter.OfflineUserListViewHolder>() {
|
||||
|
||||
inner class OfflineUserListViewHolder(val binding: OfflineUserListViewBinding) :
|
||||
@@ -88,58 +91,63 @@ class OfflineUserListAdapter(private val view: View, private val batLevel: Int)
|
||||
} else {
|
||||
teststatus.text = view.context.getString(R.string.test_pending)
|
||||
}
|
||||
|
||||
userCard.setOnClickListener {
|
||||
if (false) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.low_battery_warning),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
return@setOnClickListener
|
||||
}
|
||||
if (userList.testStatus != null) {
|
||||
if (userList.testStatus!!) {
|
||||
if(fromWhere == "Home"){
|
||||
userCard.setOnClickListener {
|
||||
var batLevel = 50F
|
||||
batLevel = getBatteryLevel()!!.toFloat()
|
||||
if (batLevel < Constants.MINIMUM_BATTERY_LEVEL) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.test_already_conducted),
|
||||
view.context.getString(R.string.low_battery_warning),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else {
|
||||
if (userList.incubationTime != "") {
|
||||
if (isBetween15And30Minutes(userList.incubationTime) < Constants.INCUBATION_TIME_MIN) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_not_completed),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else
|
||||
if (isBetween15And30Minutes(userList.incubationTime) > Constants.INCUBATION_TIME_MAX) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_crossed_30_minutes),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else {
|
||||
DataHolder.selectedTest = UserData(
|
||||
_id = userList._id,
|
||||
bloodGroup = userList.bloodGroup,
|
||||
incubationTime = userList.incubationTime
|
||||
)
|
||||
view.findNavController()
|
||||
.navigate(R.id.action_nav_home_to_mainActivity)
|
||||
}
|
||||
} else {
|
||||
return@setOnClickListener
|
||||
}
|
||||
if (userList.testStatus != null) {
|
||||
if (userList.testStatus!!) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_not_started),
|
||||
view.context.getString(R.string.test_already_conducted),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else {
|
||||
if (userList.incubationTime != "") {
|
||||
if (isBetween15And30Minutes(userList.incubationTime) < Constants.INCUBATION_TIME_MIN) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_not_completed),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else
|
||||
if (isBetween15And30Minutes(userList.incubationTime) > Constants.INCUBATION_TIME_MAX) {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_crossed_30_minutes),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
} else {
|
||||
DataHolder.selectedTest = UserData(
|
||||
sampleid = userList.sampleid,
|
||||
_id = userList._id,
|
||||
bloodGroup = userList.bloodGroup,
|
||||
incubationTime = userList.incubationTime
|
||||
)
|
||||
view.findNavController()
|
||||
.navigate(R.id.action_nav_home_to_mainActivity)
|
||||
}
|
||||
} else {
|
||||
Toast.makeText(
|
||||
view.context,
|
||||
view.context.getString(R.string.incubation_not_started),
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -169,4 +177,25 @@ class OfflineUserListAdapter(private val view: View, private val batLevel: Int)
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
fun getBatteryLevel(): Float? {
|
||||
val batteryPct: Float? = batteryStatus?.let { intent ->
|
||||
val level: Int =
|
||||
intent.getIntExtra(
|
||||
BatteryManager.EXTRA_LEVEL,
|
||||
-1
|
||||
)
|
||||
val scale: Int =
|
||||
intent.getIntExtra(
|
||||
BatteryManager.EXTRA_SCALE,
|
||||
-1
|
||||
)
|
||||
level * 100 / scale.toFloat()
|
||||
}
|
||||
|
||||
return batteryPct
|
||||
}
|
||||
private val batteryStatus: Intent? =
|
||||
IntentFilter(Intent.ACTION_BATTERY_CHANGED).let { ifilter ->
|
||||
view.context.registerReceiver(null, ifilter)
|
||||
}
|
||||
}
|
||||
@@ -13,27 +13,14 @@
|
||||
|
||||
package com.example.hpostesting.presentation.dashboard
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.os.BatteryManager
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import androidx.fragment.app.activityViewModels
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.constant.DataHolder
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.presentation.adapter.OfflineUserListAdapter
|
||||
import com.example.hpostesting.presentation.adapter.UserListAdapter
|
||||
import com.example.hpostesting.presentation.hemocube.HemoCubeViewModel
|
||||
import com.example.hpostesting.presentation.testRight.TestRightViewModel
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import androidx.fragment.app.Fragment
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentAboutBinding
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentActivitiesBinding
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentHomeBinding
|
||||
|
||||
class AboutFragment : Fragment() {
|
||||
private lateinit var binding: FragmentAboutBinding
|
||||
@@ -48,7 +35,12 @@ class AboutFragment : Fragment() {
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
|
||||
|
||||
// binding.linkClick.setOnClickListener {
|
||||
// val url = "https://sminnovations.in/"
|
||||
// val intent = Intent(Intent.ACTION_VIEW)
|
||||
// intent.data = Uri.parse(url)
|
||||
// startActivity(intent)
|
||||
// }
|
||||
}
|
||||
|
||||
}
|
||||
@@ -14,25 +14,17 @@
|
||||
package com.example.hpostesting.presentation.dashboard
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.os.BatteryManager
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.activityViewModels
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.constant.DataHolder
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.presentation.adapter.OfflineUserListAdapter
|
||||
import com.example.hpostesting.presentation.adapter.UserListAdapter
|
||||
import com.example.hpostesting.presentation.hemocube.HemoCubeViewModel
|
||||
import com.example.hpostesting.presentation.testRight.TestRightViewModel
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentActivitiesBinding
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentHomeBinding
|
||||
|
||||
class ActivitiesFragment : Fragment() {
|
||||
private lateinit var binding: FragmentActivitiesBinding
|
||||
@@ -58,7 +50,7 @@ class ActivitiesFragment : Fragment() {
|
||||
val bm =
|
||||
requireContext().getSystemService(Context.BATTERY_SERVICE) as BatteryManager
|
||||
val batLevel: Int = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
adapter = OfflineUserListAdapter(binding.root, batLevel)
|
||||
adapter = OfflineUserListAdapter(binding.root, batLevel,"Activities")
|
||||
adapter.differ.submitList(userData)
|
||||
binding.rvOrderOffline.adapter = adapter
|
||||
}else{
|
||||
|
||||
@@ -35,7 +35,9 @@ import androidx.navigation.ui.setupActionBarWithNavController
|
||||
import androidx.navigation.ui.setupWithNavController
|
||||
import com.example.hpostesting.util.Result
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.constant.DataHolder
|
||||
import com.example.hpostesting.data.constant.LanguageManager
|
||||
import com.example.hpostesting.data.model.login.LoginRequest
|
||||
import com.example.hpostesting.data.model.updates.DeviceUpdateRequest
|
||||
import com.example.hpostesting.presentation.utils.NatsManager
|
||||
import com.example.hpostesting.presentation.hemocube.HemoCubeViewModel
|
||||
@@ -49,6 +51,7 @@ import `in`.sminnovations.hpostesting.BuildConfig
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import `in`.sminnovations.hpostesting.databinding.ActivityDashboardBinding
|
||||
import java.io.File
|
||||
import java.security.MessageDigest
|
||||
|
||||
interface NatsMessageCallback {
|
||||
fun onMessageReceived(topic: String, message: String)
|
||||
@@ -106,43 +109,34 @@ class DashboardActivity : AppCompatActivity(), IDataCollector {
|
||||
nats.sub("server.hpos.${deviceId}.ping")
|
||||
nats.pub("server.hpos.${deviceId}.ping", "THIS IS A TEST MSG")
|
||||
|
||||
hemocubeViewModel.deviceUpdate.observe(this) { result ->
|
||||
when (result) {
|
||||
is Result.Success -> {
|
||||
// Handle success
|
||||
val apk = result.data
|
||||
val file = File(getExternalFilesDir("Updates"), "update.apk")
|
||||
file.setReadable(true, false) // Ensure the file is readable
|
||||
apk.byteStream().use { input ->
|
||||
file.outputStream().use { output ->
|
||||
input.copyTo(output)
|
||||
}
|
||||
}
|
||||
Log.d("Responsebodyformat", "Responsebodyformat: ")
|
||||
installApk(file)
|
||||
Log.e("ApI", "APK URL: $apk")
|
||||
Toast.makeText(
|
||||
this,
|
||||
"${result.data}",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
hemocubeViewModel.deviceUpdate.observe(this) {
|
||||
Log.d("DashboardLogs",it.toString())
|
||||
|
||||
is Result.Error -> {
|
||||
result.exception.let { message ->
|
||||
Toast.makeText(this, "An error occurred On Updating App: $message", Toast.LENGTH_LONG)
|
||||
.show()
|
||||
}
|
||||
}
|
||||
var apk = it
|
||||
val file = File(getExternalFilesDir("Downloads"), "update.apk")
|
||||
file.setReadable(true, false)
|
||||
|
||||
is Result.Loading -> {
|
||||
}
|
||||
|
||||
else -> {
|
||||
// Write APK to file
|
||||
apk.byteStream().use { input ->
|
||||
file.outputStream().use { output ->
|
||||
input.copyTo(output)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
hemocubeViewModel.deviceUpdateheader.observe(this){
|
||||
val apkFile = File(getExternalFilesDir("Downloads"), "update.apk")
|
||||
val expectedChecksum = it.get("Checksum") // Provide your expected checksum here
|
||||
val algorithm = "SHA-256" // Choose the algorithm you want to use (e.g., MD5, SHA-1, SHA-256)
|
||||
|
||||
val isIntegrityVerified = verifyChecksum(apkFile, expectedChecksum!!, algorithm)
|
||||
if (isIntegrityVerified) {
|
||||
println("APK integrity verified: The file has not been tampered with.")
|
||||
installApk(apkFile)
|
||||
} else {
|
||||
println("APK integrity check failed: The file may have been tampered with.")
|
||||
}
|
||||
}
|
||||
|
||||
val drawerLayout: DrawerLayout = binding.drawerLayout
|
||||
val navView: NavigationView = binding.navView
|
||||
@@ -175,7 +169,24 @@ class DashboardActivity : AppCompatActivity(), IDataCollector {
|
||||
return navController.navigateUp(appBarConfiguration) || super.onSupportNavigateUp()
|
||||
}
|
||||
|
||||
fun calculateChecksum(file: File, algorithm: String): String {
|
||||
val digest = MessageDigest.getInstance(algorithm)
|
||||
val inputStream = file.inputStream()
|
||||
val buffer = ByteArray(8192)
|
||||
var bytesRead = inputStream.read(buffer)
|
||||
while (bytesRead != -1) {
|
||||
digest.update(buffer, 0, bytesRead)
|
||||
bytesRead = inputStream.read(buffer)
|
||||
}
|
||||
val checksumBytes = digest.digest()
|
||||
return checksumBytes.joinToString("") { "%02x".format(it) }
|
||||
}
|
||||
|
||||
// Function to verify checksum
|
||||
fun verifyChecksum(file: File, expectedChecksum: String, algorithm: String): Boolean {
|
||||
val actualChecksum = calculateChecksum(file, algorithm)
|
||||
return actualChecksum.equals(expectedChecksum, ignoreCase = true)
|
||||
}
|
||||
private fun installApk(file: File) {
|
||||
val pInfo = baseContext.packageManager.getPackageInfo(baseContext.packageName, 0)
|
||||
val uri: Uri = FileProvider.getUriForFile(
|
||||
@@ -284,4 +295,6 @@ class DashboardActivity : AppCompatActivity(), IDataCollector {
|
||||
"N/A"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -90,7 +90,7 @@ class GalleryFragment : Fragment() {
|
||||
binding.btnDeviceProvision.visibility = View.GONE
|
||||
binding.btnAutoDac.visibility = View.GONE
|
||||
binding.btnDeviceProvision.visibility = View.GONE
|
||||
binding.btnDiagnostics.visibility = View.GONE
|
||||
binding.btnDiagnostics.visibility = View.VISIBLE
|
||||
binding.btnFiles.visibility = View.GONE
|
||||
binding.btnFirefox.visibility = View.GONE
|
||||
binding.btnCalibration.visibility = View.GONE
|
||||
|
||||
@@ -24,6 +24,7 @@ import android.content.DialogInterface
|
||||
import android.content.Intent
|
||||
import android.content.IntentFilter
|
||||
import android.content.SharedPreferences
|
||||
import android.health.connect.datatypes.units.Length
|
||||
import android.net.Uri
|
||||
import android.os.BatteryManager
|
||||
import android.os.Build
|
||||
@@ -54,33 +55,33 @@ import com.example.hpostesting.data.model.updates.DeviceUpdateRequest
|
||||
import com.example.hpostesting.encryption.Encryption
|
||||
import com.example.hpostesting.presentation.KitScanActivity
|
||||
import com.example.hpostesting.presentation.adapter.OfflineUserListAdapter
|
||||
import com.example.hpostesting.presentation.adapter.UserListAdapter
|
||||
import com.example.hpostesting.presentation.assurance.AssuranceControlsActivity
|
||||
import com.example.hpostesting.presentation.hemocube.HemoCubeViewModel
|
||||
import com.example.hpostesting.presentation.testRight.TestRightViewModel
|
||||
import com.example.hpostesting.presentation.utils.DeviceCommunicationHandler
|
||||
import com.example.hpostesting.presentation.utils.UsbServiceListener
|
||||
import com.example.hpostesting.util.Result
|
||||
import com.firebase.ui.firestore.FirestoreRecyclerOptions
|
||||
import com.google.firebase.crashlytics.ktx.crashlytics
|
||||
import com.google.firebase.firestore.Query
|
||||
import com.google.firebase.firestore.ktx.firestore
|
||||
import com.google.firebase.ktx.Firebase
|
||||
import com.google.firebase.perf.ktx.performance
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentHomeBinding
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.launch
|
||||
import okhttp3.ResponseBody
|
||||
import org.json.JSONObject
|
||||
import java.io.BufferedOutputStream
|
||||
import java.io.File
|
||||
import java.io.FileInputStream
|
||||
import java.io.FileOutputStream
|
||||
import java.net.HttpURLConnection
|
||||
import java.net.URL
|
||||
import java.nio.charset.Charset
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Calendar
|
||||
import java.util.Date
|
||||
import java.util.Locale
|
||||
import java.util.Scanner
|
||||
import java.util.zip.ZipEntry
|
||||
import java.util.zip.ZipInputStream
|
||||
import kotlin.properties.Delegates
|
||||
@@ -93,9 +94,8 @@ class HomeFragment : Fragment() {
|
||||
private lateinit var binding: FragmentHomeBinding
|
||||
private val viewModel: TestRightViewModel by activityViewModels()
|
||||
private val hemoCubeViewModel: HemoCubeViewModel by activityViewModels()
|
||||
private lateinit var rvAdapter: UserListAdapter
|
||||
private var batLevel: Int =
|
||||
0 // Initialize with a default value, or obtain the actual battery level
|
||||
// private lateinit var rvAdapter: UserListAdapter
|
||||
private var batLevel: Int = 0 // Initialize with a default value, or obtain the actual battery level
|
||||
private lateinit var adapter: OfflineUserListAdapter
|
||||
private val homeViewModel: HemoCubeViewModel by activityViewModels()
|
||||
private var isTokenAvailable by Delegates.notNull<Boolean>()
|
||||
@@ -126,7 +126,7 @@ class HomeFragment : Fragment() {
|
||||
|
||||
getDeviceId()
|
||||
checkUnprocessedCSVData()
|
||||
checkForUpdate()
|
||||
// checkForUpdate()
|
||||
viewModel.allUserData.observe(viewLifecycleOwner) { userData ->
|
||||
deleteIncompleteRegistrations(userData)
|
||||
}
|
||||
@@ -143,7 +143,7 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
val bm = requireContext().getSystemService(BATTERY_SERVICE) as BatteryManager
|
||||
val batLevel: Int = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
adapter = OfflineUserListAdapter(binding.root, batLevel)
|
||||
adapter = OfflineUserListAdapter(binding.root, batLevel,"Home")
|
||||
adapter.differ.submitList(userList)
|
||||
binding.rvOrderOffline.adapter = adapter
|
||||
}
|
||||
@@ -210,7 +210,7 @@ class HomeFragment : Fragment() {
|
||||
apply()
|
||||
}
|
||||
startActivity(Intent(requireContext(), KitScanActivity::class.java))
|
||||
requireActivity().finish()
|
||||
// requireActivity().finish()
|
||||
}
|
||||
|
||||
|
||||
@@ -221,7 +221,7 @@ class HomeFragment : Fragment() {
|
||||
apply()
|
||||
}
|
||||
startActivity(Intent(requireContext(), KitScanActivity::class.java))
|
||||
requireActivity().finish()
|
||||
// requireActivity().finish()
|
||||
}
|
||||
binding.btnQuickCapture.setOnClickListener {
|
||||
DataHolder.hemoCubeTestData = HemoCubeTestData()
|
||||
@@ -249,9 +249,10 @@ class HomeFragment : Fragment() {
|
||||
binding.internetAvailableCL.visibility = View.VISIBLE
|
||||
binding.internetNotAvailableCL.visibility = View.GONE
|
||||
binding.pendingTest.visibility = View.VISIBLE
|
||||
loadUserData()
|
||||
setSearch()
|
||||
// loadUserData()
|
||||
//setSearch()
|
||||
checkForLocalDBData()
|
||||
|
||||
if (Constants.MOLBIO_INTEGRATION) {
|
||||
checkForTokenAndUpdate()
|
||||
}
|
||||
@@ -321,12 +322,14 @@ class HomeFragment : Fragment() {
|
||||
|
||||
}*/
|
||||
hemoCubeViewModel.sendDataToMolbio()
|
||||
hemoCubeViewModel.sendDataToFirebase()
|
||||
|
||||
if(Constants.FIREBASE_INTEGRATION){
|
||||
hemoCubeViewModel.sendDataToFirebase()
|
||||
}
|
||||
} else {
|
||||
binding.internetAvailableCL.visibility = View.GONE
|
||||
binding.pendingTest.visibility = View.GONE
|
||||
binding.internetNotAvailableCL.visibility = View.VISIBLE
|
||||
Toast.makeText(requireContext(),R.string.internet_not_available_please_enter_the_user_id_manually,Toast.LENGTH_LONG).show()
|
||||
setUserId()
|
||||
}
|
||||
wasConnected = isConnected
|
||||
@@ -355,7 +358,9 @@ class HomeFragment : Fragment() {
|
||||
Log.d("istoken", isTokenAvailable.toString())
|
||||
if (!isTokenAvailable) {
|
||||
Log.d("istoken1", isTokenAvailable.toString())
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
callLogin(userID, password)
|
||||
|
||||
|
||||
|
||||
//isTokenAvailable = true
|
||||
|
||||
@@ -363,7 +368,8 @@ class HomeFragment : Fragment() {
|
||||
Log.d("istoken7", isTokenAvailable.toString())
|
||||
if (isTokenExpired(accessToken)) {
|
||||
Log.d("istoken8", isTokenAvailable.toString())
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
callLogin(userID, password)
|
||||
// hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
//hemoCubeViewModel.startPeriodicCheckUpdate()
|
||||
}else{
|
||||
hemoCubeViewModel.checkUpdate(createCheckUpdateRequestData())
|
||||
@@ -371,24 +377,33 @@ class HomeFragment : Fragment() {
|
||||
//isTokenAvailable = true
|
||||
// hemoCubeViewModel.startPeriodicCheckUpdate()
|
||||
}
|
||||
} else if (userID == "deviceIDAPI" && password == "devicePasswordAPI" && deviceId.isNotEmpty()) {
|
||||
} else if (userID == "" && password == "" && deviceId.isNotEmpty()) {
|
||||
fetchDeviceCredentials()
|
||||
} else if (file.exists()) {
|
||||
val encryptedString = file.readText()
|
||||
val encryptionKey =
|
||||
Settings.Secure.getString(context?.contentResolver, Settings.Secure.ANDROID_ID)
|
||||
// val decryptedMessage: String = Encryption.decrypt(encryptedString, encryptionKey)
|
||||
// val credentials = decryptedMessage.split("\n")
|
||||
// userID = credentials[0]
|
||||
// password = credentials[1]
|
||||
val decryptedMessage: String = Encryption.decrypt(encryptedString, encryptionKey)
|
||||
val credentials = decryptedMessage.split("\n")
|
||||
userID = credentials[0]
|
||||
password = credentials[1]
|
||||
deviceId = credentials[0]
|
||||
|
||||
with(sharedPreference.edit()) {
|
||||
putString(Constants.DEVICE_ID_API, credentials[0])
|
||||
putString(Constants.DEVICE_PASSWORD_API, credentials[1])
|
||||
apply()
|
||||
}
|
||||
// Toast.makeText(context, "DECRYPTED: $credentials", Toast.LENGTH_SHORT).show()
|
||||
if (!isTokenAvailable) {
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
callLogin(userID, password)
|
||||
//hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
}
|
||||
else if (isTokenAvailable) {
|
||||
//hemoCubeViewModel.startPeriodicCheckUpdate()
|
||||
if (isTokenExpired(accessToken)) {
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
callLogin(userID, password)
|
||||
// hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
}else{
|
||||
hemoCubeViewModel.checkUpdate(createCheckUpdateRequestData())
|
||||
}
|
||||
@@ -500,6 +515,10 @@ class HomeFragment : Fragment() {
|
||||
when (response) {
|
||||
is Result.Success -> {
|
||||
val updatedversion = response.data.data?.version.toString()
|
||||
with(sharedPreference.edit()) {
|
||||
putString("version", response.data.data?.version)
|
||||
apply()
|
||||
}
|
||||
val currentversion =
|
||||
context?.let { ctx ->
|
||||
val packageInfo = ctx.packageManager.getPackageInfo(ctx.packageName, 0)
|
||||
@@ -529,6 +548,7 @@ class HomeFragment : Fragment() {
|
||||
Toast.LENGTH_LONG
|
||||
)
|
||||
.show()
|
||||
|
||||
} else {
|
||||
Toast.makeText(
|
||||
activity,
|
||||
@@ -559,6 +579,8 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
|
||||
hemoCubeViewModel.downloadcertificate.observe(viewLifecycleOwner) { response ->
|
||||
// Check if more than a year has passed since the last download (365 days * 24 hours * 60 minutes * 60 seconds * 1000 milliseconds)
|
||||
|
||||
when (response) {
|
||||
is Result.Success -> {
|
||||
val url = response.data
|
||||
@@ -567,7 +589,6 @@ class HomeFragment : Fragment() {
|
||||
val fileName = "nats_certificate.zip"
|
||||
val unzipDirectoryPath =
|
||||
requireContext().getExternalFilesDir(null)?.absolutePath + "/$downloadDirectory"
|
||||
|
||||
// Check if the directory with extracted files exists.
|
||||
val directory = File(unzipDirectoryPath)
|
||||
if (directory.exists() && directory.isDirectory) {
|
||||
@@ -580,9 +601,23 @@ class HomeFragment : Fragment() {
|
||||
).show()
|
||||
return@observe
|
||||
}
|
||||
val file = downloadFile(url, requireContext(), fileName, downloadDirectory)
|
||||
val sharedPreferences = requireContext().getSharedPreferences("NATSCertificatePrefs", Context.MODE_PRIVATE)
|
||||
val lastDownloadTime = sharedPreferences.getLong("lastDownloadTime", 0)
|
||||
val currentTime = System.currentTimeMillis()
|
||||
|
||||
if (currentTime - lastDownloadTime < 365L * 24 * 60 * 60 * 1000) {
|
||||
Toast.makeText(requireContext(), "NATS certificate download is not required yet.", Toast.LENGTH_SHORT).show()
|
||||
return@observe
|
||||
}else{
|
||||
val file = downloadFile(url, requireContext(), fileName, downloadDirectory)
|
||||
unzip(file.absolutePath, unzipDirectoryPath)
|
||||
val sharedPreferences = requireContext().getSharedPreferences("NATSCertificatePrefs", Context.MODE_PRIVATE)
|
||||
sharedPreferences.edit().apply {
|
||||
putLong("lastDownloadTime", System.currentTimeMillis())
|
||||
apply()
|
||||
}
|
||||
}
|
||||
|
||||
unzip(file.absolutePath, unzipDirectoryPath)
|
||||
}
|
||||
|
||||
is Result.Error -> {
|
||||
@@ -607,6 +642,19 @@ class HomeFragment : Fragment() {
|
||||
|
||||
}
|
||||
|
||||
private fun callLogin(userID: String, password: String) {
|
||||
if(DataHolder.ipAddress == "0.0"){
|
||||
getPublicIpAddr { ipAddress ->
|
||||
if(ipAddress != "fail"){
|
||||
DataHolder.ipAddress = ipAddress
|
||||
}
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
}
|
||||
}else{
|
||||
hemoCubeViewModel.login(createLoginRequestData(userID, password))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private fun isTokenExpired(token: String): Boolean {
|
||||
if (token.isNotEmpty()) {
|
||||
@@ -640,13 +688,14 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
|
||||
private fun createLoginRequestData(userID: String, password: String): LoginRequest {
|
||||
|
||||
val pInfo = requireActivity().packageManager.getPackageInfo(
|
||||
requireActivity().packageName, 0
|
||||
)
|
||||
val version = pInfo.versionName
|
||||
var labname = sharedPreference.getString(Constants.LABNAME,"")
|
||||
return LoginRequest(
|
||||
password = password, serialNumber = userID, username = userID, version = version, lab = labname
|
||||
password = password, serialNumber = userID, username = userID, version = version, lab = labname,location = DataHolder.ipAddress.toString()
|
||||
)
|
||||
}//latitude = DataHolder.location!!.latitude.toString(), longitude = DataHolder.location!!.longitude.toString(), location = DataHolder.location.toString()
|
||||
|
||||
@@ -662,7 +711,7 @@ class HomeFragment : Fragment() {
|
||||
|
||||
private fun createDeviceUpdateRequestData(): DeviceUpdateRequest {
|
||||
return DeviceUpdateRequest(
|
||||
serial_no = sharedPreference.getString(Constants.DEVICE_ID, "")
|
||||
serial_no = deviceId
|
||||
)
|
||||
}
|
||||
|
||||
@@ -782,7 +831,8 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
if (!isTokenAvailable) {
|
||||
Log.d("istoken0", isTokenAvailable.toString())
|
||||
hemoCubeViewModel.login(createLoginRequestData(username, password))
|
||||
callLogin(username, password)
|
||||
//hemoCubeViewModel.login(createLoginRequestData(username, password))
|
||||
}
|
||||
|
||||
} ?: Log.e("fetchDeviceCredentials", "Failed to parse device data.")
|
||||
@@ -799,46 +849,46 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
|
||||
|
||||
private fun loadUserData() {
|
||||
try {
|
||||
val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
val currentDate = Date()
|
||||
val formattedDate = dateFormat.format(currentDate)
|
||||
val query = Firebase.firestore.collection("patientData")
|
||||
.whereGreaterThanOrEqualTo("createdAt", formattedDate)
|
||||
.orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
// val query = Firebase.firestore.collection("patientData").whereEqualTo("testStatus", false)
|
||||
query.get().addOnSuccessListener {
|
||||
if (it.documents.isEmpty()) {
|
||||
binding.pendingTest.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.pendingTest.visibility = View.GONE
|
||||
}
|
||||
}
|
||||
val recyclerViewOptions =
|
||||
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
.build()
|
||||
|
||||
val bm = requireContext().getSystemService(BATTERY_SERVICE) as BatteryManager
|
||||
val batLevel: Int = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
|
||||
rvAdapter = view?.let {
|
||||
UserListAdapter(
|
||||
requireContext(),
|
||||
hemoCubeViewModel,
|
||||
recyclerViewOptions,
|
||||
it,
|
||||
batLevel,
|
||||
requireActivity()
|
||||
)
|
||||
}!!
|
||||
binding.rvOrder.adapter = rvAdapter
|
||||
|
||||
rvAdapter.startListening()
|
||||
} catch (e: Exception) {
|
||||
Firebase.crashlytics.recordException(e)
|
||||
}
|
||||
}
|
||||
// private fun loadUserData() {
|
||||
// try {
|
||||
// val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
// val currentDate = Date()
|
||||
// val formattedDate = dateFormat.format(currentDate)
|
||||
// val query = Firebase.firestore.collection("patientData")
|
||||
// .whereGreaterThanOrEqualTo("createdAt", formattedDate)
|
||||
// .orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
//// val query = Firebase.firestore.collection("patientData").whereEqualTo("testStatus", false)
|
||||
// query.get().addOnSuccessListener {
|
||||
// if (it.documents.isEmpty()) {
|
||||
// binding.pendingTest.visibility = View.VISIBLE
|
||||
// } else {
|
||||
// binding.pendingTest.visibility = View.GONE
|
||||
// }
|
||||
// }
|
||||
// val recyclerViewOptions =
|
||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
// .build()
|
||||
//
|
||||
// val bm = requireContext().getSystemService(BATTERY_SERVICE) as BatteryManager
|
||||
// val batLevel: Int = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
//
|
||||
// rvAdapter = view?.let {
|
||||
// UserListAdapter(
|
||||
// requireContext(),
|
||||
// hemoCubeViewModel,
|
||||
// recyclerViewOptions,
|
||||
// it,
|
||||
// batLevel,
|
||||
// requireActivity()
|
||||
// )
|
||||
// }!!
|
||||
// binding.rvOrder.adapter = rvAdapter
|
||||
//
|
||||
// rvAdapter.startListening()
|
||||
// } catch (e: Exception) {
|
||||
// Firebase.crashlytics.recordException(e)
|
||||
// }
|
||||
// }
|
||||
|
||||
private fun saveUserId(userId: String) {
|
||||
with(sharedPreference.edit()) {
|
||||
@@ -864,87 +914,87 @@ class HomeFragment : Fragment() {
|
||||
dialog.show()
|
||||
}
|
||||
|
||||
private fun getData(search: String?, field: String) {
|
||||
val userSearchTrace = Firebase.performance.newTrace("user_search_trace")
|
||||
userSearchTrace.start()
|
||||
// private fun getData(search: String?, field: String) {
|
||||
// val userSearchTrace = Firebase.performance.newTrace("user_search_trace")
|
||||
// userSearchTrace.start()
|
||||
//
|
||||
// search?.replaceFirstChar {
|
||||
// if (search.lowercase()
|
||||
// .startsWith(it.lowercase())
|
||||
// ) it.titlecase(Locale.getDefault()) else it.toString()
|
||||
//
|
||||
// }
|
||||
// val currentDate = Date()
|
||||
// val dateFormat = SimpleDateFormat("yyyyMMdd")
|
||||
// val partition = dateFormat.format(currentDate)
|
||||
// val searchTerm = partition + search
|
||||
// val searchField = field + "Search"
|
||||
// val query =
|
||||
// Firebase.firestore.collection("patientData").orderBy(searchField).startAt(searchTerm)
|
||||
// .endAt(searchTerm + "\uf8ff")
|
||||
// query.get().addOnSuccessListener {
|
||||
// userSearchTrace.stop()
|
||||
// }
|
||||
// val recyclerViewOptions =
|
||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
// .build()
|
||||
// val bm = requireContext().getSystemService(BATTERY_SERVICE) as BatteryManager
|
||||
// batLevel = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
//
|
||||
// rvAdapter = view?.let {
|
||||
// UserListAdapter(
|
||||
// requireContext(),
|
||||
// hemoCubeViewModel,
|
||||
// recyclerViewOptions,
|
||||
// it,
|
||||
// batLevel,
|
||||
// requireActivity()
|
||||
// )
|
||||
// }!!
|
||||
// binding.rvOrder.adapter = rvAdapter
|
||||
// rvAdapter.startListening()
|
||||
//
|
||||
// userSearchTrace.stop()
|
||||
// }
|
||||
|
||||
search?.replaceFirstChar {
|
||||
if (search.lowercase()
|
||||
.startsWith(it.lowercase())
|
||||
) it.titlecase(Locale.getDefault()) else it.toString()
|
||||
|
||||
}
|
||||
val currentDate = Date()
|
||||
val dateFormat = SimpleDateFormat("yyyyMMdd")
|
||||
val partition = dateFormat.format(currentDate)
|
||||
val searchTerm = partition + search
|
||||
val searchField = field + "Search"
|
||||
val query =
|
||||
Firebase.firestore.collection("patientData").orderBy(searchField).startAt(searchTerm)
|
||||
.endAt(searchTerm + "\uf8ff")
|
||||
query.get().addOnSuccessListener {
|
||||
userSearchTrace.stop()
|
||||
}
|
||||
val recyclerViewOptions =
|
||||
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
.build()
|
||||
val bm = requireContext().getSystemService(BATTERY_SERVICE) as BatteryManager
|
||||
batLevel = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
|
||||
rvAdapter = view?.let {
|
||||
UserListAdapter(
|
||||
requireContext(),
|
||||
hemoCubeViewModel,
|
||||
recyclerViewOptions,
|
||||
it,
|
||||
batLevel,
|
||||
requireActivity()
|
||||
)
|
||||
}!!
|
||||
binding.rvOrder.adapter = rvAdapter
|
||||
rvAdapter.startListening()
|
||||
|
||||
userSearchTrace.stop()
|
||||
}
|
||||
|
||||
private fun setSearch() {
|
||||
binding.searchProduct.setOnQueryTextListener(object :
|
||||
androidx.appcompat.widget.SearchView.OnQueryTextListener {
|
||||
override fun onQueryTextSubmit(query: String?): Boolean {
|
||||
return if (!query.isNullOrEmpty()) {
|
||||
val field = when {
|
||||
binding.userIdRadioButton.isChecked -> "_id"
|
||||
binding.abhaIdRadioButton.isChecked -> "abhaId"
|
||||
binding.aadharIdRadioButton.isChecked -> "aadharId"
|
||||
else -> null
|
||||
}
|
||||
|
||||
field?.let { getData(query, it) }
|
||||
false
|
||||
|
||||
} else {
|
||||
loadUserData()
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
override fun onQueryTextChange(query: String?): Boolean {
|
||||
return if (!query.isNullOrEmpty()) {
|
||||
val field = when {
|
||||
binding.userIdRadioButton.isChecked -> "_id"
|
||||
binding.abhaIdRadioButton.isChecked -> "abhaId"
|
||||
binding.aadharIdRadioButton.isChecked -> "aadharId"
|
||||
else -> null
|
||||
}
|
||||
field?.let { getData(query, it) }
|
||||
false
|
||||
} else {
|
||||
loadUserData()
|
||||
false
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
// private fun setSearch() {
|
||||
// binding.searchProduct.setOnQueryTextListener(object :
|
||||
// androidx.appcompat.widget.SearchView.OnQueryTextListener {
|
||||
// override fun onQueryTextSubmit(query: String?): Boolean {
|
||||
// return if (!query.isNullOrEmpty()) {
|
||||
// val field = when {
|
||||
// binding.userIdRadioButton.isChecked -> "_id"
|
||||
// binding.abhaIdRadioButton.isChecked -> "abhaId"
|
||||
// binding.aadharIdRadioButton.isChecked -> "aadharId"
|
||||
// else -> null
|
||||
// }
|
||||
//
|
||||
// field?.let { getData(query, it) }
|
||||
// false
|
||||
//
|
||||
// } else {
|
||||
// // loadUserData()
|
||||
// false
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// override fun onQueryTextChange(query: String?): Boolean {
|
||||
// return if (!query.isNullOrEmpty()) {
|
||||
// val field = when {
|
||||
// binding.userIdRadioButton.isChecked -> "_id"
|
||||
// binding.abhaIdRadioButton.isChecked -> "abhaId"
|
||||
// binding.aadharIdRadioButton.isChecked -> "aadharId"
|
||||
// else -> null
|
||||
// }
|
||||
// field?.let { getData(query, it) }
|
||||
// false
|
||||
// } else {
|
||||
// // loadUserData()
|
||||
// false
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
private fun checkForLocalDBData() {
|
||||
// viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
||||
@@ -1473,6 +1523,33 @@ class HomeFragment : Fragment() {
|
||||
super.onDestroy()
|
||||
|
||||
}
|
||||
private fun getPublicIpAddr(callback: (String) -> Unit) {
|
||||
try {
|
||||
GlobalScope.launch(Dispatchers.IO) {
|
||||
val url = URL("https://api.ipify.org")
|
||||
val conn = url.openConnection() as HttpURLConnection
|
||||
try {
|
||||
conn.connect()
|
||||
if (conn.responseCode == HttpURLConnection.HTTP_OK) {
|
||||
val scanner = Scanner(conn.inputStream)
|
||||
scanner.useDelimiter("\\A")
|
||||
if (scanner.hasNext()) {
|
||||
val ipAddress = scanner.next()
|
||||
Log.d("ipaddress",DataHolder.ipAddress)
|
||||
callback(ipAddress)
|
||||
}else{
|
||||
callback("fail")
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
conn.disconnect()
|
||||
}
|
||||
}
|
||||
}catch (e: Exception){
|
||||
Log.e("home",e.toString())
|
||||
callback("fail")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -15,13 +15,9 @@ package com.example.hpostesting.presentation.dashboard.ui
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.content.Context.WIFI_SERVICE
|
||||
import android.content.SharedPreferences
|
||||
import android.location.Location
|
||||
import android.location.LocationListener
|
||||
import android.location.LocationManager
|
||||
import android.net.ConnectivityManager
|
||||
import android.net.wifi.WifiManager
|
||||
import android.net.NetworkCapabilities
|
||||
import android.os.Build
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
@@ -30,10 +26,13 @@ import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.Toast
|
||||
import androidx.annotation.RequiresApi
|
||||
import androidx.core.content.ContextCompat.getSystemService
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.activityViewModels
|
||||
import androidx.navigation.fragment.findNavController
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.constant.DataHolder
|
||||
import com.example.hpostesting.data.model.login.LoginRequest
|
||||
import com.example.hpostesting.presentation.hemocube.HemoCubeViewModel
|
||||
import `in`.sminnovations.hpostesting.R
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentLoginBinding
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
@@ -45,12 +44,15 @@ import java.util.Scanner
|
||||
|
||||
|
||||
class LoginFragment : Fragment() {
|
||||
var latitude = 0.0
|
||||
var longitude = 0.0
|
||||
private val LOCATION_PERMISSION_REQUEST_CODE = 1001
|
||||
// private lateinit var locationManager: LocationManager
|
||||
// var latitude = 0.0
|
||||
// var longitude = 0.0
|
||||
var TAG = "LoginFragmentCheck"
|
||||
private var _binding: FragmentLoginBinding? = null
|
||||
private val binding get() = _binding!!
|
||||
private lateinit var sharedPreference: SharedPreferences
|
||||
private val hemoCubeViewModel: HemoCubeViewModel by activityViewModels()
|
||||
override fun onCreateView(
|
||||
inflater: LayoutInflater, container: ViewGroup?,
|
||||
savedInstanceState: Bundle?,
|
||||
@@ -65,8 +67,42 @@ class LoginFragment : Fragment() {
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
init()
|
||||
checkLocation()
|
||||
if(isInternetAvailable()){
|
||||
getPublicIpAddr { ipAddress ->
|
||||
DataHolder.ipAddress = ipAddress
|
||||
}
|
||||
Log.d("ipaddress",DataHolder.ipAddress)
|
||||
}
|
||||
|
||||
// getPublicIpAddr { ipAddress ->
|
||||
// DataHolder.ipAddress = ipAddress
|
||||
// }
|
||||
// locationManager = requireActivity().getSystemService(Context.LOCATION_SERVICE) as LocationManager
|
||||
|
||||
// // Check for location permission
|
||||
// if (ContextCompat.checkSelfPermission(requireContext(),
|
||||
// Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED && ContextCompat.checkSelfPermission(requireContext(),
|
||||
// Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
|
||||
// // Permission is not granted, request it
|
||||
// ActivityCompat.requestPermissions(requireActivity(),
|
||||
// arrayOf(Manifest.permission.ACCESS_COARSE_LOCATION,Manifest.permission.ACCESS_FINE_LOCATION),
|
||||
// LOCATION_PERMISSION_REQUEST_CODE)
|
||||
// } else {
|
||||
// // Permission is granted, fetch location
|
||||
// checkLocation()
|
||||
// }
|
||||
//
|
||||
// if (isNetworkProviderAvailable()) {
|
||||
// Toast.makeText(requireContext(), "Network provider is available", Toast.LENGTH_SHORT).show()
|
||||
// } else {
|
||||
// Toast.makeText(requireContext(), "Network provider is not available", Toast.LENGTH_SHORT).show()
|
||||
// }
|
||||
}
|
||||
|
||||
// private fun isNetworkProviderAvailable(): Boolean {
|
||||
//
|
||||
// return locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)
|
||||
// }
|
||||
private fun init() {
|
||||
if (isUserLoggedIn()) {
|
||||
navigateToHomeFragment()
|
||||
@@ -81,6 +117,9 @@ class LoginFragment : Fragment() {
|
||||
|
||||
if (loginId.isNotBlank() && password.isNotBlank()) {
|
||||
performLogin(loginId, password)
|
||||
var Password = sharedPreference.getString(Constants.DEVICE_PASSWORD_API, "").toString()
|
||||
var UserID = sharedPreference.getString(Constants.DEVICE_ID_API, "").toString()
|
||||
hemoCubeViewModel.login(createLoginRequestData(UserID, Password))
|
||||
} else {
|
||||
if (loginId.isBlank()) {
|
||||
binding.loginId.error = R.string.enter_proper_login_id.toString()
|
||||
@@ -91,7 +130,17 @@ class LoginFragment : Fragment() {
|
||||
}
|
||||
}
|
||||
}
|
||||
private fun createLoginRequestData(userID: String, password: String): LoginRequest {
|
||||
|
||||
val pInfo = requireActivity().packageManager.getPackageInfo(
|
||||
requireActivity().packageName, 0
|
||||
)
|
||||
val version = pInfo.versionName
|
||||
var labname = sharedPreference.getString(Constants.LABNAME,"")
|
||||
return LoginRequest(
|
||||
password = password, serialNumber = userID, username = userID, version = version, lab = labname,location = DataHolder.ipAddress.toString()
|
||||
)
|
||||
}
|
||||
private fun isUserLoggedIn(): Boolean {
|
||||
return sharedPreference.getString(Constants.USER_ID, "")?.isNotBlank() == true
|
||||
}
|
||||
@@ -127,124 +176,156 @@ class LoginFragment : Fragment() {
|
||||
}
|
||||
|
||||
/** Check if we can get our location */
|
||||
@SuppressLint("MissingPermission")
|
||||
fun checkLocation() {
|
||||
// Get the location manager
|
||||
val locationManager = requireActivity().getSystemService(Context.LOCATION_SERVICE) as LocationManager
|
||||
val locationProviderWifi = LocationManager.NETWORK_PROVIDER
|
||||
val locationProviderGPS = LocationManager.GPS_PROVIDER
|
||||
val locationListenerNetwork: LocationListener
|
||||
val locationListenerGPS: LocationListener
|
||||
var gps_enabled = false
|
||||
var network_enabled = false
|
||||
|
||||
//check wifi
|
||||
val connectivityManager = requireActivity().getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
|
||||
val mWifi = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI)
|
||||
if (mWifi!!.isConnected) {
|
||||
Log.d(TAG, "Wifi connected")
|
||||
}
|
||||
|
||||
//check gps and wifi availability
|
||||
try {
|
||||
gps_enabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)
|
||||
} catch (ex: Exception) {
|
||||
}
|
||||
try {
|
||||
network_enabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)
|
||||
} catch (ex: Exception) {
|
||||
}
|
||||
if (!gps_enabled) {
|
||||
Log.d(TAG, "GPS: Missing")
|
||||
}else{
|
||||
// getPublicIpAddr { ipAddress ->
|
||||
// // Do something with the ipAddress
|
||||
// Log.d(TAG, "GPS: PRESENT"+ipAddress)
|
||||
// }
|
||||
}
|
||||
if (!network_enabled) {
|
||||
Log.d(TAG, "Network: Missing")
|
||||
}
|
||||
|
||||
/* Location change listeners */try {
|
||||
Log.d(TAG, "GPS: PRESENT TRy")
|
||||
// Define a listener that responds to gps location updates
|
||||
locationListenerGPS = object : LocationListener {
|
||||
override fun onLocationChanged(location: Location) {
|
||||
Log.d(TAG, "GPS: PRESENT loc")
|
||||
Log.d(
|
||||
TAG,
|
||||
"GPS: Latitude: " + location.latitude + ", Longitude = " + location.longitude
|
||||
)
|
||||
}
|
||||
|
||||
override fun onStatusChanged(provider: String, status: Int, extras: Bundle) {
|
||||
Log.d(TAG, "GP location found 1")
|
||||
}
|
||||
|
||||
override fun onProviderEnabled(provider: String) {
|
||||
Log.d(TAG, "GP location found 2")
|
||||
}
|
||||
|
||||
override fun onProviderDisabled(provider: String) {
|
||||
Log.d(TAG, "GP location found 3")
|
||||
}
|
||||
}
|
||||
locationManager.requestLocationUpdates(locationProviderGPS, 0, 0f, locationListenerGPS)
|
||||
Log.d(TAG, "GPS: PRESENT Req")
|
||||
} catch (e: Exception) {
|
||||
Log.e(TAG, "Location Exception: " + e.message)
|
||||
}
|
||||
try {
|
||||
// Define a listener that responds to wifi location updates
|
||||
locationListenerNetwork = object : LocationListener {
|
||||
override fun onLocationChanged(location: Location) {
|
||||
Log.d(
|
||||
TAG,
|
||||
"NW: Latitude: " + location.latitude + ", Longitude = " + location.longitude
|
||||
)
|
||||
}
|
||||
|
||||
override fun onStatusChanged(provider: String, status: Int, extras: Bundle) {
|
||||
Log.d(TAG, "location found 1")
|
||||
}
|
||||
|
||||
override fun onProviderEnabled(provider: String) {
|
||||
Log.d(TAG, "location found 2")
|
||||
}
|
||||
|
||||
override fun onProviderDisabled(provider: String) {
|
||||
Log.d(TAG, "location found 3")
|
||||
}
|
||||
}
|
||||
locationManager.requestLocationUpdates(
|
||||
locationProviderWifi,
|
||||
0,
|
||||
0f,
|
||||
locationListenerNetwork
|
||||
)
|
||||
} catch (e: Exception) {
|
||||
Log.e(TAG, "NW Location Exception: " + e.message)
|
||||
}
|
||||
}
|
||||
// fun getPublicIpAddr(callback: (String) -> Unit) {
|
||||
// GlobalScope.launch(Dispatchers.IO) {
|
||||
// val url = URL("https://api.ipify.org")
|
||||
// val conn = url.openConnection() as HttpURLConnection
|
||||
// try {
|
||||
// conn.connect()
|
||||
// if (conn.responseCode == HttpURLConnection.HTTP_OK) {
|
||||
// val scanner = Scanner(conn.inputStream)
|
||||
// scanner.useDelimiter("\\A")
|
||||
// if (scanner.hasNext()) {
|
||||
// val ipAddress = scanner.next()
|
||||
// callback(ipAddress)
|
||||
// }
|
||||
// @SuppressLint("MissingPermission")
|
||||
// fun checkLocation() {
|
||||
//
|
||||
// val locationManager = requireActivity().getSystemService(Context.LOCATION_SERVICE) as LocationManager
|
||||
// val locationProviderWifi = LocationManager.NETWORK_PROVIDER
|
||||
// val locationProviderGPS = LocationManager.FUSED_PROVIDER
|
||||
// val locationListenerNetwork: LocationListener
|
||||
// val locationListenerGPS: LocationListener
|
||||
// var gps_enabled = false
|
||||
// var network_enabled = false
|
||||
// Log.d(TAG,"PRoveider"+locationManager.allProviders.toString())
|
||||
// //check wifi
|
||||
//
|
||||
// //check wifi
|
||||
// val connectivityManager = requireActivity().getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
|
||||
// val mWifi = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI)
|
||||
//
|
||||
// if (mWifi!!.isConnected) {
|
||||
// Log.d(TAG, "Wifi connected")
|
||||
// }
|
||||
//
|
||||
// //check gps and wifi availability
|
||||
//
|
||||
// //check gps and wifi availability
|
||||
// try {
|
||||
// gps_enabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)
|
||||
// } catch (ex: java.lang.Exception) {
|
||||
// }
|
||||
//
|
||||
// try {
|
||||
// network_enabled =
|
||||
// locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)
|
||||
// } catch (ex: java.lang.Exception) {
|
||||
// }
|
||||
//
|
||||
// if (!gps_enabled) {
|
||||
// Log.d(TAG, "GPS: Missing")
|
||||
// }
|
||||
// if (!network_enabled) {
|
||||
// Log.d(TAG, "Network: Missing")
|
||||
// }
|
||||
//
|
||||
// /* Location change listeners */
|
||||
//
|
||||
// /* Location change listeners */try {
|
||||
// // Define a listener that responds to gps location updates
|
||||
// locationListenerGPS = object : LocationListener {
|
||||
// override fun onLocationChanged(location: Location) {
|
||||
// Log.d(
|
||||
// TAG,
|
||||
// "GPS: Latitude: " + location.latitude + ", Longitude = " + location.longitude
|
||||
// )
|
||||
// }
|
||||
// } finally {
|
||||
// conn.disconnect()
|
||||
//
|
||||
// override fun onStatusChanged(provider: String, status: Int, extras: Bundle) {
|
||||
// Log.d(TAG, "GPS location found 1")
|
||||
// }
|
||||
//
|
||||
// override fun onProviderEnabled(provider: String) {
|
||||
// Log.d(TAG, "GPS location found 2")
|
||||
// }
|
||||
//
|
||||
// override fun onProviderDisabled(provider: String) {
|
||||
// Log.d(TAG, "GPS location found 3")
|
||||
// }
|
||||
// }
|
||||
// locationManager.requestLocationUpdates(
|
||||
// locationProviderGPS,
|
||||
// 0,
|
||||
// 0f,
|
||||
// locationListenerGPS
|
||||
// )
|
||||
// } catch (e: java.lang.Exception) {
|
||||
// Log.e(TAG, "Location Exception GPS: " + e.message)
|
||||
// }
|
||||
//
|
||||
// try {
|
||||
// // Define a listener that responds to wifi location updates
|
||||
// locationListenerNetwork = object : LocationListener {
|
||||
// override fun onLocationChanged(location: Location) {
|
||||
// Log.d(
|
||||
// TAG,
|
||||
// "NW: Latitude: " + location.latitude + ", Longitude = " + location.longitude
|
||||
// )
|
||||
// }
|
||||
//
|
||||
// override fun onStatusChanged(provider: String, status: Int, extras: Bundle) {
|
||||
// Log.d(TAG, "location found 1")
|
||||
// }
|
||||
//
|
||||
// override fun onProviderEnabled(provider: String) {
|
||||
// Log.d(TAG, "location found 2")
|
||||
// }
|
||||
//
|
||||
// override fun onProviderDisabled(provider: String) {
|
||||
// Log.d(TAG, "location found 3")
|
||||
// }
|
||||
// }
|
||||
// locationManager.requestLocationUpdates(
|
||||
// locationProviderWifi,
|
||||
// 0,
|
||||
// 0f,
|
||||
// locationListenerNetwork
|
||||
// )
|
||||
// } catch (e: java.lang.Exception) {
|
||||
// Log.e(TAG, "Location Exception: " + e.message)
|
||||
// }
|
||||
//
|
||||
// }
|
||||
|
||||
// override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray) {
|
||||
// super.onRequestPermissionsResult(requestCode, permissions, grantResults)
|
||||
// if (requestCode == LOCATION_PERMISSION_REQUEST_CODE) {
|
||||
// if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||
// // Permission granted, fetch location
|
||||
// checkLocation()
|
||||
// } else {
|
||||
// // Permission denied
|
||||
// Toast.makeText(requireContext(), "Location permission denied", Toast.LENGTH_SHORT).show()
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
private fun getPublicIpAddr(callback: (String) -> Unit) {
|
||||
try {
|
||||
GlobalScope.launch(Dispatchers.IO) {
|
||||
val url = URL("https://api.ipify.org")
|
||||
val conn = url.openConnection() as HttpURLConnection
|
||||
try {
|
||||
conn.connect()
|
||||
if (conn.responseCode == HttpURLConnection.HTTP_OK) {
|
||||
val scanner = Scanner(conn.inputStream)
|
||||
scanner.useDelimiter("\\A")
|
||||
if (scanner.hasNext()) {
|
||||
val ipAddress = scanner.next()
|
||||
callback(ipAddress)
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
conn.disconnect()
|
||||
}
|
||||
}
|
||||
}catch (e: Exception){
|
||||
Log.e(TAG,e.toString())
|
||||
}
|
||||
}
|
||||
@SuppressLint("NewApi")
|
||||
private fun isInternetAvailable(): Boolean {
|
||||
val connectivityManager = requireActivity().getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
|
||||
val network = connectivityManager.activeNetwork ?: return false
|
||||
val networkCapabilities = connectivityManager.getNetworkCapabilities(network) ?: return false
|
||||
return networkCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,10 +161,11 @@ class DeviceProvisionFragment : Fragment() {
|
||||
}
|
||||
|
||||
is Result.Error -> {
|
||||
Log.d("deviceProvisionResponse", response.exception.toString())
|
||||
response.exception.let { message ->
|
||||
Toast.makeText(
|
||||
activity,
|
||||
"An error occurred in device provision: $message",
|
||||
"An error occurred in device provision: ${message.message}",
|
||||
Toast.LENGTH_LONG
|
||||
).show()
|
||||
}
|
||||
|
||||
@@ -18,6 +18,8 @@ import android.content.Intent
|
||||
import android.content.IntentFilter
|
||||
import android.content.SharedPreferences
|
||||
import android.os.Bundle
|
||||
import android.os.Handler
|
||||
import android.text.method.ScrollingMovementMethod
|
||||
import android.util.Log
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
@@ -26,30 +28,43 @@ import android.widget.Toast
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.activityViewModels
|
||||
import androidx.lifecycle.MutableLiveData
|
||||
import com.example.hpostesting.util.Result
|
||||
import com.example.hpostesting.util.Result.Success
|
||||
import com.example.hpostesting.data.constant.Constants
|
||||
import com.example.hpostesting.data.constant.HemoCubeCommands
|
||||
import com.example.hpostesting.data.constant.TestStatus
|
||||
import com.example.hpostesting.data.model.devicediagnostics.AdditionalDetails
|
||||
import com.example.hpostesting.data.model.devicediagnostics.DeviceDiagnosticsRequest
|
||||
import com.example.hpostesting.data.model.diagnostics.DiagnosticsData
|
||||
import com.example.hpostesting.data.model.patient.DeviceData
|
||||
import com.example.hpostesting.presentation.autodac.AutoDacActivity
|
||||
import com.example.hpostesting.presentation.hemocube.HemocubeActivity
|
||||
import com.example.hpostesting.presentation.utils.UsbServiceListener
|
||||
import com.example.hpostesting.util.Result
|
||||
import com.example.hpostesting.util.Result.Success
|
||||
import com.google.firebase.crashlytics.ktx.crashlytics
|
||||
import com.google.firebase.ktx.Firebase
|
||||
import `in`.sminnovations.hpostesting.databinding.FragmentDiagnosticsBinding
|
||||
import org.apache.commons.math3.stat.regression.SimpleRegression
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Calendar
|
||||
import java.util.Locale
|
||||
|
||||
class DiagnosticsFragment : Fragment() {
|
||||
|
||||
class DiagnosticsFragment : Fragment() {
|
||||
// Initialize variables to store LED DAC values
|
||||
var led1Dac: Int? = null
|
||||
var led2Dac: Int? = null
|
||||
var led3Dac: Int? = null
|
||||
var led4Dac: Int? = null
|
||||
private var currentProgress = 0
|
||||
private val targetProgress = 95 // Target progress value
|
||||
private val delayBetweenIncrements = 1500
|
||||
private var testStatusCode = 0.0
|
||||
private lateinit var binding: FragmentDiagnosticsBinding
|
||||
private val diagnosticsViewModel: DiagnosticsViewModel by activityViewModels()
|
||||
private lateinit var sharedPreferences: SharedPreferences
|
||||
private var currentDeviceData: DeviceData? = null
|
||||
private var resultData: String = ""
|
||||
private val messages = MutableLiveData<String>()
|
||||
private var currentResultData: String = ""
|
||||
private var startListening = MutableLiveData(false)
|
||||
private val batteryStatus: Intent? =
|
||||
IntentFilter(Intent.ACTION_BATTERY_CHANGED).let { ifilter ->
|
||||
@@ -73,9 +88,14 @@ class DiagnosticsFragment : Fragment() {
|
||||
|
||||
private fun initViews() {
|
||||
binding.btnSubmit.visibility = View.GONE
|
||||
binding.tvSubtitle4.movementMethod = ScrollingMovementMethod()
|
||||
listenToHemoCube()
|
||||
getDeviceId()
|
||||
|
||||
binding.btnSubmit.setOnClickListener {
|
||||
diagnosticsViewModel.messages.postValue("Processing diagnostics... Please wait.")
|
||||
binding.progressBarHor.visibility = View.VISIBLE
|
||||
incrementProgress()
|
||||
binding.btnSubmit.visibility = View.GONE
|
||||
runDeviceDiagnostics()
|
||||
val batteryLevel = "" //diagnosticsViewModel.getBatteryLevel().toString()
|
||||
@@ -91,12 +111,12 @@ class DiagnosticsFragment : Fragment() {
|
||||
batteryTemperature = batteryTemperature,
|
||||
batteryVoltage = batteryVoltage!!
|
||||
)
|
||||
diagnosticsViewModel.deviceDiagnostics(
|
||||
DeviceDiagnosticsRequest(additionalDetails = additionalDetails)
|
||||
)
|
||||
if(Constants.MOLBIO_INTEGRATION){
|
||||
diagnosticsViewModel.deviceDiagnostics(
|
||||
DeviceDiagnosticsRequest(additionalDetails = additionalDetails)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -106,7 +126,7 @@ class DiagnosticsFragment : Fragment() {
|
||||
currentDeviceData = it
|
||||
}
|
||||
|
||||
messages.observe(viewLifecycleOwner) {
|
||||
diagnosticsViewModel.messages.observe(viewLifecycleOwner) {
|
||||
binding.tvSubtitle4.text = it
|
||||
Log.e("diagnostics", binding.tvSubtitle4.text.toString())
|
||||
}
|
||||
@@ -153,6 +173,8 @@ class DiagnosticsFragment : Fragment() {
|
||||
}
|
||||
is Result.Loading -> {
|
||||
}
|
||||
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -165,11 +187,11 @@ class DiagnosticsFragment : Fragment() {
|
||||
HemoCubeCommands.DEVICE_CONFIGURATION_COMMAND,
|
||||
object : UsbServiceListener {
|
||||
override fun onUsbRead(data: ByteArray?) {
|
||||
data?.let {
|
||||
val stringData = String(it)
|
||||
diagnosticsViewModel.messages.postValue(stringData)
|
||||
binding.tvSubtitle4.text = stringData
|
||||
}
|
||||
// data?.let {
|
||||
// val stringData = String(it)
|
||||
// diagnosticsViewModel.messages.postValue(stringData)
|
||||
// binding.tvSubtitle4.text = stringData
|
||||
// }
|
||||
}
|
||||
|
||||
override fun onUsbError(e: Exception?) {
|
||||
@@ -191,10 +213,35 @@ class DiagnosticsFragment : Fragment() {
|
||||
}
|
||||
})
|
||||
}
|
||||
private fun readCurrentDACValuesCommand() {
|
||||
diagnosticsViewModel.progressBar.postValue(true)
|
||||
(activity as DiagnosticsActivity).mService.sendAndListenToHemoCube(
|
||||
HemoCubeCommands.READ_DAC_COMMAND,
|
||||
object : UsbServiceListener {
|
||||
override fun onUsbRead(data: ByteArray?) {
|
||||
}
|
||||
|
||||
override fun onUsbError(e: Exception?) {
|
||||
diagnosticsViewModel.progressBar.postValue(false)
|
||||
}
|
||||
})
|
||||
}
|
||||
private fun loadDACValues() {
|
||||
diagnosticsViewModel.progressBar.postValue(true)
|
||||
(activity as DiagnosticsActivity).mService.sendAndListenToHemoCube(
|
||||
HemoCubeCommands.LOAD_DAC_VALUES,
|
||||
object : UsbServiceListener {
|
||||
override fun onUsbRead(data: ByteArray?) {
|
||||
}
|
||||
|
||||
override fun onUsbError(e: Exception?) {
|
||||
diagnosticsViewModel.progressBar.postValue(false)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
private fun listenToHemoCube() {
|
||||
|
||||
diagnosticsViewModel.messages.postValue("Place cuvette filled with buffer\n and click on start")
|
||||
val fullReadOutput = StringBuilder()
|
||||
startListening.postValue(true)
|
||||
|
||||
@@ -204,23 +251,24 @@ class DiagnosticsFragment : Fragment() {
|
||||
override fun onUsbRead(data: ByteArray?) {
|
||||
data?.let {
|
||||
val stringData = String(it)
|
||||
diagnosticsViewModel.messages.postValue(stringData)
|
||||
fullReadOutput.append(stringData)
|
||||
resultData += stringData
|
||||
binding.tvSubtitle4.text = resultData
|
||||
if (stringData.contains("SN")) {
|
||||
val slData = stringData.split(" ")
|
||||
if (slData.size > 1) {
|
||||
val hardwareId = slData[1].trim()
|
||||
with(sharedPreferences.edit()) {
|
||||
putString(Constants.DEVICE_ID, hardwareId)
|
||||
apply()
|
||||
}
|
||||
}
|
||||
activity?.runOnUiThread {
|
||||
binding.btnSubmit.visibility = View.VISIBLE
|
||||
}
|
||||
}
|
||||
handleUsbData(stringData)
|
||||
|
||||
// binding.tvSubtitle4.text = resultData
|
||||
|
||||
// if (stringData.contains("SN")) {
|
||||
// val slData = stringData.split(" ")
|
||||
// if (slData.size > 1) {
|
||||
// val hardwareId = slData[1].trim()
|
||||
// with(sharedPreferences.edit()) {
|
||||
// putString(Constants.DEVICE_ID, hardwareId)
|
||||
// apply()
|
||||
// }
|
||||
// }
|
||||
// activity?.runOnUiThread {
|
||||
// binding.btnSubmit.visibility = View.VISIBLE
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
if (resultData.contains("END") || fullReadOutput.contains("END")) {
|
||||
@@ -268,6 +316,159 @@ class DiagnosticsFragment : Fragment() {
|
||||
}
|
||||
}
|
||||
|
||||
private fun handleUsbData(stringData: String) {
|
||||
resultData += stringData
|
||||
if (sharedPreferences.getString(Constants.USER_ID, "").toString() == "ADMIN") {
|
||||
currentResultData += stringData
|
||||
}
|
||||
|
||||
when {
|
||||
(resultData.contains("SNE") && this.testStatusCode < 1.0) -> {
|
||||
this.testStatusCode = 1.1
|
||||
val slData = stringData.split(" ")
|
||||
if (slData.size > 1) {
|
||||
val hardwareId = slData[1].trim()
|
||||
with(sharedPreferences.edit()) {
|
||||
putString(Constants.DEVICE_ID, hardwareId)
|
||||
apply()
|
||||
}
|
||||
}
|
||||
activity?.runOnUiThread {
|
||||
binding.btnSubmit.visibility = View.VISIBLE
|
||||
}
|
||||
}
|
||||
(resultData.contains("#DC") && this.testStatusCode < 1.4) -> {
|
||||
this.testStatusCode = 1.5
|
||||
activity?.runOnUiThread {
|
||||
setProgress(96)
|
||||
loadDACValues()
|
||||
}
|
||||
}
|
||||
(resultData.contains("#EC") && this.testStatusCode < 1.6) -> {
|
||||
this.testStatusCode = 1.7
|
||||
activity?.runOnUiThread {
|
||||
setProgress(98)
|
||||
readCurrentDACValuesCommand()
|
||||
}
|
||||
}
|
||||
(resultData.contains("#RC") && this.testStatusCode < 1.8) -> {
|
||||
this.testStatusCode = 1.9
|
||||
activity?.runOnUiThread {
|
||||
finalCalculation()
|
||||
setProgress(100)
|
||||
binding.progressBarHor.visibility = View.GONE
|
||||
currentResultData += "\nIf you are facing any issues while using the device \n Contact us for help at support@sminnovations.in"
|
||||
diagnosticsViewModel.messages.postValue(currentResultData)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun finalCalculation() {
|
||||
val pattern = Regex("(LED:\\d+)__DAC:(\\d+)__ADC:(\\d+)")
|
||||
|
||||
// Find all matches in the string
|
||||
val matches = pattern.findAll(resultData)
|
||||
|
||||
// Initialize lists for x and y values for each LED
|
||||
val ledDataMap = mutableMapOf<String, MutableList<Pair<Double, Double>>>()
|
||||
|
||||
// Extract LED name, x, and y values from each match and add to the corresponding lists
|
||||
for (match in matches) {
|
||||
val ledName = match.groupValues[1]
|
||||
val xValue = match.groupValues[2].toDouble()
|
||||
val yValue = match.groupValues[3].toDouble()
|
||||
|
||||
// Add x and y values to the corresponding lists based on the LED name
|
||||
if (!ledDataMap.containsKey(ledName)) {
|
||||
ledDataMap[ledName] = mutableListOf()
|
||||
}
|
||||
if ((ledDataMap[ledName]?.size ?: 0) < 6) {
|
||||
ledDataMap[ledName]?.add(xValue to yValue)
|
||||
}
|
||||
// ledDataMap[ledName]?.add(xValue to yValue)
|
||||
}
|
||||
|
||||
// String array to store pass or fail messages for each LED
|
||||
val results = mutableListOf<String>()
|
||||
|
||||
// Print the extracted x and y values for each LED
|
||||
|
||||
|
||||
// Regular expression to match LED DAC values
|
||||
val regex = Regex("LED(\\d) DAC : (\\d+)")
|
||||
|
||||
// Find LED DAC values using regex
|
||||
regex.findAll(resultData).forEach {
|
||||
val (led, dac) = it.destructured
|
||||
val dacValue = dac.toInt()
|
||||
|
||||
when (led.toInt()) {
|
||||
1 -> led1Dac = dacValue
|
||||
2 -> led2Dac = dacValue
|
||||
3 -> led3Dac = dacValue
|
||||
4 -> led4Dac = dacValue
|
||||
}
|
||||
}
|
||||
println("$led1Dac")
|
||||
println("LED2 DAC: $led2Dac")
|
||||
println("LED3 DAC: $led3Dac")
|
||||
println("LED4 DAC: $led4Dac")
|
||||
|
||||
for ((ledName, data) in ledDataMap) {
|
||||
// println("$ledName x-values: ${data.map { it.first }}")
|
||||
// println("$ledName y-values: ${data.map { it.second }}")
|
||||
val message = calculateRegressionAndDAC(ledName, data)
|
||||
results.add(message)
|
||||
}
|
||||
|
||||
// Print the pass or fail messages for each LED
|
||||
results.forEach {
|
||||
currentResultData += it
|
||||
diagnosticsViewModel.messages.postValue(currentResultData)
|
||||
println(it)
|
||||
}
|
||||
}
|
||||
private fun calculateRegressionAndDAC(ledName: String, data: List<Pair<Double, Double>>): String {
|
||||
val regression = SimpleRegression()
|
||||
data.forEach { (x, y) -> regression.addData(x, y) }
|
||||
val slope = regression.slope
|
||||
val constant = regression.intercept
|
||||
val rSquared = regression.rSquare
|
||||
|
||||
// Check R-squared value and generate pass or fail message
|
||||
val message = if (rSquared > 0.98) {
|
||||
"$ledName linearity PASS (✓)\n"
|
||||
} else {
|
||||
"$ledName linearity FAIL (✗)\n"
|
||||
}
|
||||
|
||||
// Calculation for ADC value
|
||||
val adcValue = when (ledName) {
|
||||
"LED:1" -> 22000.0
|
||||
"LED:2", "LED:3" -> 18000.0
|
||||
"LED:4" -> 22000.0
|
||||
else -> 0.0
|
||||
}
|
||||
val dacValue = calculateDAC(adcValue, slope, constant)
|
||||
val resultDAC = dacValue - led1Dac!!
|
||||
if(resultDAC < 200){
|
||||
currentResultData += "$ledName DAC LEVEL PASS (✓)\n"
|
||||
println("$ledName DAC LEVEL PASS")
|
||||
}else{
|
||||
currentResultData += "$ledName DAC LEVEL FAIL (✗)\n"
|
||||
println("$ledName DAC LEVEL FAIL")
|
||||
}
|
||||
|
||||
|
||||
return message
|
||||
}
|
||||
|
||||
fun calculateDAC(adc: Double, slope: Double, constant: Double): Double {
|
||||
return (adc - constant) / slope
|
||||
}
|
||||
|
||||
|
||||
fun parseData(inputData: List<String>): List<Pair<String, String>> {
|
||||
val pattern = Regex("([A-Z]+)\\s(\\d+)")
|
||||
val parsedData = mutableListOf<Pair<String, String>>()
|
||||
@@ -286,4 +487,19 @@ class DiagnosticsFragment : Fragment() {
|
||||
private fun showToast(message: String) {
|
||||
Toast.makeText(requireContext(), message, Toast.LENGTH_SHORT).show()
|
||||
}
|
||||
private fun setProgress(progress: Int) {
|
||||
binding.progressBarHor.progress = progress
|
||||
}
|
||||
private fun incrementProgress() {
|
||||
val handler = Handler()
|
||||
handler.postDelayed(object : Runnable {
|
||||
override fun run() {
|
||||
if (currentProgress <= targetProgress) {
|
||||
binding.progressBarHor.progress = currentProgress
|
||||
currentProgress++
|
||||
handler.postDelayed(this, delayBetweenIncrements.toLong())
|
||||
}
|
||||
}
|
||||
}, delayBetweenIncrements.toLong())
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,10 @@
|
||||
|
||||
package com.example.hpostesting.presentation.diagnostics
|
||||
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.content.IntentFilter
|
||||
import android.os.BatteryManager
|
||||
import androidx.lifecycle.MutableLiveData
|
||||
import androidx.lifecycle.ViewModel
|
||||
import androidx.lifecycle.viewModelScope
|
||||
@@ -30,7 +34,7 @@ import javax.inject.Inject
|
||||
@HiltViewModel
|
||||
class DiagnosticsViewModel @Inject constructor(
|
||||
private val repository: Repository,
|
||||
// context: Context,
|
||||
context: Context,
|
||||
) : ViewModel() {
|
||||
var isServiceConnected = false
|
||||
val progressBar = MutableLiveData(false)
|
||||
@@ -39,10 +43,10 @@ class DiagnosticsViewModel @Inject constructor(
|
||||
val deviceData = MutableLiveData<DeviceData?>()
|
||||
val fireBaseUpload = MutableLiveData<String>()
|
||||
val deviceDiagnosticsResponse = MutableLiveData<Result<DeviceDiagnosticsResponse>>()
|
||||
// private val batteryStatus: Intent? =
|
||||
// IntentFilter(Intent.ACTION_BATTERY_CHANGED).let { ifilter ->
|
||||
// context.registerReceiver(null, ifilter)
|
||||
// }
|
||||
private val batteryStatus: Intent? =
|
||||
IntentFilter(Intent.ACTION_BATTERY_CHANGED).let { ifilter ->
|
||||
context.registerReceiver(null, ifilter)
|
||||
}
|
||||
fun addDiagnosticsDataToDb(data: DiagnosticsData) {
|
||||
viewModelScope.launch {
|
||||
try {
|
||||
@@ -75,71 +79,71 @@ class DiagnosticsViewModel @Inject constructor(
|
||||
}
|
||||
|
||||
|
||||
// fun getBatteryLevel(): Float? {
|
||||
// val batteryPct: Float? = batteryStatus?.let { intent ->
|
||||
// val level: Int =
|
||||
// intent.getIntExtra(
|
||||
// BatteryManager.EXTRA_LEVEL,
|
||||
// -1
|
||||
// )
|
||||
// val scale: Int =
|
||||
// intent.getIntExtra(
|
||||
// BatteryManager.EXTRA_SCALE,
|
||||
// -1
|
||||
// )
|
||||
// level * 100 / scale.toFloat()
|
||||
// }
|
||||
//
|
||||
// return batteryPct
|
||||
// }
|
||||
//
|
||||
// fun getBatteryTemperature(): Float? {
|
||||
// val batteryTemp: Float? = batteryStatus?.let { intent ->
|
||||
// val temperature = intent.getIntExtra(
|
||||
// BatteryManager.EXTRA_TEMPERATURE,
|
||||
// 0
|
||||
// )
|
||||
// temperature.toFloat() / 10
|
||||
// }
|
||||
//
|
||||
// return batteryTemp
|
||||
// }
|
||||
//
|
||||
// fun getBatteryVoltage(context: Context): Float {
|
||||
// val batteryIntent =
|
||||
// context.registerReceiver(
|
||||
// null,
|
||||
// IntentFilter(Intent.ACTION_BATTERY_CHANGED)
|
||||
// )
|
||||
// val voltage = batteryIntent?.getIntExtra(
|
||||
// BatteryManager.EXTRA_VOLTAGE,
|
||||
// 0
|
||||
// ) ?: 0
|
||||
//
|
||||
// // milli-volts to volts
|
||||
// return voltage.toFloat() / 1000
|
||||
// }
|
||||
//
|
||||
//
|
||||
// fun getBatteryCapacity(context: Context): Int {
|
||||
// val batteryManager =
|
||||
// context.getSystemService(Context.BATTERY_SERVICE) as BatteryManager
|
||||
// val currentCapacity =
|
||||
// batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)
|
||||
//
|
||||
// return currentCapacity
|
||||
// }
|
||||
//
|
||||
// fun getBatteryMaxCapacity(context: Context): Float {
|
||||
// val batteryManager = context.getSystemService(Context.BATTERY_SERVICE) as BatteryManager
|
||||
// val designCapacity =
|
||||
// batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
// val currentCapacity =
|
||||
// batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)
|
||||
//
|
||||
// // Calculate the estimated maximum battery capacity in mAh
|
||||
// val maxCapacity = currentCapacity.toFloat() / designCapacity.toFloat() * 100
|
||||
//
|
||||
// return maxCapacity
|
||||
// }
|
||||
fun getBatteryLevel(): Float? {
|
||||
val batteryPct: Float? = batteryStatus?.let { intent ->
|
||||
val level: Int =
|
||||
intent.getIntExtra(
|
||||
BatteryManager.EXTRA_LEVEL,
|
||||
-1
|
||||
)
|
||||
val scale: Int =
|
||||
intent.getIntExtra(
|
||||
BatteryManager.EXTRA_SCALE,
|
||||
-1
|
||||
)
|
||||
level * 100 / scale.toFloat()
|
||||
}
|
||||
|
||||
return batteryPct
|
||||
}
|
||||
|
||||
fun getBatteryTemperature(): Float? {
|
||||
val batteryTemp: Float? = batteryStatus?.let { intent ->
|
||||
val temperature = intent.getIntExtra(
|
||||
BatteryManager.EXTRA_TEMPERATURE,
|
||||
0
|
||||
)
|
||||
temperature.toFloat() / 10
|
||||
}
|
||||
|
||||
return batteryTemp
|
||||
}
|
||||
|
||||
fun getBatteryVoltage(context: Context): Float {
|
||||
val batteryIntent =
|
||||
context.registerReceiver(
|
||||
null,
|
||||
IntentFilter(Intent.ACTION_BATTERY_CHANGED)
|
||||
)
|
||||
val voltage = batteryIntent?.getIntExtra(
|
||||
BatteryManager.EXTRA_VOLTAGE,
|
||||
0
|
||||
) ?: 0
|
||||
|
||||
// milli-volts to volts
|
||||
return voltage.toFloat() / 1000
|
||||
}
|
||||
|
||||
|
||||
fun getBatteryCapacity(context: Context): Int {
|
||||
val batteryManager =
|
||||
context.getSystemService(Context.BATTERY_SERVICE) as BatteryManager
|
||||
val currentCapacity =
|
||||
batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)
|
||||
|
||||
return currentCapacity
|
||||
}
|
||||
|
||||
fun getBatteryMaxCapacity(context: Context): Float {
|
||||
val batteryManager = context.getSystemService(Context.BATTERY_SERVICE) as BatteryManager
|
||||
val designCapacity =
|
||||
batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY)
|
||||
val currentCapacity =
|
||||
batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)
|
||||
|
||||
// Calculate the estimated maximum battery capacity in mAh
|
||||
val maxCapacity = currentCapacity.toFloat() / designCapacity.toFloat() * 100
|
||||
|
||||
return maxCapacity
|
||||
}
|
||||
}
|
||||
@@ -138,7 +138,7 @@ class HemoCubeFragment : Fragment() {
|
||||
if (isBufferValueAvailable()){
|
||||
binding.btnPlacebuffer.apply {
|
||||
setBackgroundColor(Color.GREEN) // Set button background color to green
|
||||
text = "Fresh Buffer" // Change button text to "Buffer Exists"
|
||||
text = "Refresh Buffer" // Change button text to "Buffer Exists"
|
||||
}
|
||||
}else{
|
||||
binding.btnPlacebuffer.apply {
|
||||
@@ -195,50 +195,83 @@ class HemoCubeFragment : Fragment() {
|
||||
}
|
||||
|
||||
private fun observeViewModel() {
|
||||
if (Constants.MOLBIO_INTEGRATION) {
|
||||
hemoCubeViewModel.resultUpload.observe(viewLifecycleOwner) {
|
||||
when (it) {
|
||||
is Result.Success -> {
|
||||
uploadedToMolbio = true
|
||||
it.data.data?.get(0)?.rawData?.let { it1 ->
|
||||
hemoCubeViewModel.updateMolbioFlag(
|
||||
it1._id
|
||||
)
|
||||
}
|
||||
if(!Constants.FIREBASE_INTEGRATION) {
|
||||
Toast.makeText(
|
||||
requireContext(),
|
||||
testDetails?._id + ": id details stored successfully",
|
||||
Toast.LENGTH_LONG
|
||||
).show()
|
||||
}
|
||||
handleReadingFinish()
|
||||
hemoCubeViewModel.uploadLogs()
|
||||
val sharedPreferences = requireContext().getSharedPreferences("NATSCertificatePrefs", Context.MODE_PRIVATE)
|
||||
val lastDownloadTime = sharedPreferences.getLong("lastDownloadTime", 0)
|
||||
val currentTime = System.currentTimeMillis()
|
||||
if (currentTime - lastDownloadTime < 365L * 24 * 60 * 60 * 1000) {
|
||||
Toast.makeText(requireContext(), "NATS certificate download is not required yet.", Toast.LENGTH_SHORT).show()
|
||||
return@observe
|
||||
}else{
|
||||
hemoCubeViewModel.downloadClientCertificate()
|
||||
}
|
||||
activity?.runOnUiThread {
|
||||
binding.btnSubmit.visibility = View.GONE
|
||||
val i = Intent(
|
||||
requireContext().applicationContext, DashboardActivity::class.java
|
||||
)
|
||||
startActivity(i)
|
||||
}
|
||||
}
|
||||
|
||||
is Result.Error -> {
|
||||
binding.btnSubmit.visibility = View.VISIBLE
|
||||
//Remove this line of code while deploying to IOCL
|
||||
it.exception.let { message ->
|
||||
Toast.makeText(
|
||||
activity,
|
||||
"$message",
|
||||
Toast.LENGTH_LONG
|
||||
)
|
||||
.show()
|
||||
Log.d("resultuploadfail1", message.toString())
|
||||
}
|
||||
handleReadingFinish()
|
||||
activity?.runOnUiThread {
|
||||
binding.btnSubmit.visibility = View.GONE
|
||||
val i = Intent(
|
||||
requireContext().applicationContext, DashboardActivity::class.java
|
||||
)
|
||||
startActivity(i)
|
||||
}
|
||||
}
|
||||
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
handleReadingFinish()
|
||||
}
|
||||
hemoCubeViewModel.fireBaseUpload.observe(viewLifecycleOwner) { result ->
|
||||
if (result == "Success") {
|
||||
uploadedToCloud = true
|
||||
var accessToken = sharedPreferences.getString(Constants.ACCESS_TOKEN, "").toString()
|
||||
showToast(R.string.test_upload)
|
||||
if (Constants.MOLBIO_INTEGRATION) {
|
||||
hemoCubeViewModel.resultUpload.observe(viewLifecycleOwner) {
|
||||
when (it) {
|
||||
is Result.Success -> {
|
||||
uploadedToMolbio = true
|
||||
it.data.data?.get(0)?.rawData?.let { it1 ->
|
||||
hemoCubeViewModel.updateMolbioFlag(
|
||||
it1._id
|
||||
)
|
||||
}
|
||||
handleReadingFinish()
|
||||
hemoCubeViewModel.uploadLogs()
|
||||
hemoCubeViewModel.downloadClientCertificate()
|
||||
}
|
||||
// showToast( R.string.test_upload)
|
||||
Toast.makeText(requireContext(), testDetails?._id +": id details stored successfully",Toast.LENGTH_LONG).show()
|
||||
|
||||
is Result.Error -> {
|
||||
binding.btnSubmit.visibility = View.VISIBLE
|
||||
//Remove this line of code while deploying to IOCL
|
||||
it.exception.let { message ->
|
||||
Toast.makeText(
|
||||
activity,
|
||||
"$message",
|
||||
Toast.LENGTH_LONG
|
||||
)
|
||||
.show()
|
||||
Log.d("resultuploadfail1", message.toString())
|
||||
}
|
||||
handleReadingFinish()
|
||||
}
|
||||
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
handleReadingFinish()
|
||||
}
|
||||
}
|
||||
if (result == "Local") {
|
||||
showToast(R.string.internt_not_local)
|
||||
// showToast(R.string.internt_not_local)
|
||||
Toast.makeText(requireContext(), testDetails?._id +": id details stored locally, Internet is not Available",Toast.LENGTH_LONG).show()
|
||||
startActivity(Intent(requireActivity(), DashboardActivity::class.java))
|
||||
}
|
||||
if (result == "Error") {
|
||||
|
||||
@@ -43,6 +43,7 @@ import com.example.hpostesting.data.model.molbioresult.MolbioV2ResultResponse
|
||||
import com.example.hpostesting.data.model.patient.BufferCheckData
|
||||
import com.example.hpostesting.data.model.patient.DeviceData
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.data.model.patient.MolbioHemocubeData
|
||||
import com.example.hpostesting.data.model.patient.toHemoCubeTestData
|
||||
import com.example.hpostesting.data.model.updates.CheckUpdateRequest
|
||||
import com.example.hpostesting.data.model.updates.CheckUpdateResponse
|
||||
@@ -51,8 +52,10 @@ import com.example.hpostesting.data.repository.Repository
|
||||
import com.example.hpostesting.domain.CheckUpdateWorker
|
||||
import com.example.hpostesting.domain.LogFileManager
|
||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||
import kotlinx.coroutines.CoroutineExceptionHandler
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.launch
|
||||
import okhttp3.Headers
|
||||
import okhttp3.MediaType.Companion.toMediaTypeOrNull
|
||||
import okhttp3.MultipartBody
|
||||
import okhttp3.RequestBody.Companion.asRequestBody
|
||||
@@ -76,6 +79,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
var isServiceConnected = false
|
||||
val progressBar = MutableLiveData(false)
|
||||
private val testDetails = DataHolder.selectedTest?.toHemoCubeTestData()
|
||||
private val testDetailsmolbio = DataHolder.hemoCubeTestData?.MolbioHemocubeData()
|
||||
val messages = MutableLiveData<String>()
|
||||
private val sharedPreference =
|
||||
context.getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
|
||||
@@ -92,7 +96,8 @@ class HemoCubeViewModel @Inject constructor(
|
||||
|
||||
val checkUpdate = MutableLiveData<Result<CheckUpdateResponse>>()
|
||||
|
||||
val deviceUpdate = MutableLiveData<Result<ResponseBody>>()
|
||||
val deviceUpdate = MutableLiveData<ResponseBody>()
|
||||
val deviceUpdateheader = MutableLiveData<Headers>()
|
||||
val downloadcertificate = MutableLiveData<Result<ResponseBody>>()
|
||||
|
||||
val uploadLogs = MutableLiveData<Result<UploadLogsResponse>?>()
|
||||
@@ -136,7 +141,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
testDetails?.testTime = SimpleDateFormat(
|
||||
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
|
||||
).format(Calendar.getInstance().time)
|
||||
hemoCubeDao.insertAll(testDetails!!)
|
||||
hemoCubeDao.updateTest(testDetails!!)
|
||||
fireBaseUpload.postValue("Local")
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
@@ -167,7 +172,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
}
|
||||
|
||||
|
||||
fun sendDataToMolbio() = viewModelScope.launch(Dispatchers.IO) {
|
||||
fun sendDataToMolbio() = viewModelScope.launch(Dispatchers.IO + coroutineExceptionHandler) {
|
||||
|
||||
Log.d("molbio","getting in sendMolbio")
|
||||
val resultList = MolbioV2ResultRequest(mutableListOf())
|
||||
@@ -184,7 +189,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
?: "defaultThreshold" // Handle possible nulls safely
|
||||
resultList.results?.add(
|
||||
MolbioV2Result(
|
||||
rawData = userData,
|
||||
rawData = userData.MolbioHemocubeData(),
|
||||
analysisId = userData._id,
|
||||
analysisDate = currentTimeFormatted,
|
||||
analysisStatus = userData.classificationResult
|
||||
@@ -235,7 +240,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
}
|
||||
|
||||
|
||||
fun sendDataToFirebase() = viewModelScope.launch ( Dispatchers.IO ) {
|
||||
fun sendDataToFirebase() = viewModelScope.launch ( Dispatchers.IO + coroutineExceptionHandler ) {
|
||||
val pendingData = hemoCubeDao.getFirebasePending()
|
||||
pendingData.forEach{
|
||||
userData ->
|
||||
@@ -258,9 +263,11 @@ class HemoCubeViewModel @Inject constructor(
|
||||
}
|
||||
|
||||
fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest) = viewModelScope.launch {
|
||||
deviceUpdate.postValue(Result.Loading())
|
||||
//deviceUpdate.postValue(Result.Loading())
|
||||
repository.deviceUpdate(deviceUpdateRequest).let {
|
||||
deviceUpdate.postValue(it)
|
||||
deviceUpdate.postValue(it.body())
|
||||
deviceUpdateheader.postValue(it.headers())
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -423,7 +430,11 @@ class HemoCubeViewModel @Inject constructor(
|
||||
testDetails!!.reportUploadTime = SimpleDateFormat(
|
||||
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
|
||||
).format(Calendar.getInstance().time)
|
||||
|
||||
val currentTimeFormatted = SimpleDateFormat(
|
||||
"yyyy-MM-dd'T'HH:mm:ssZZZZZ",
|
||||
Locale.getDefault()
|
||||
).format(Calendar.getInstance().time)
|
||||
if(Constants.FIREBASE_INTEGRATION) {
|
||||
when (val response = repository.addTestToDatabase(testDetails)) {
|
||||
is Response.Success -> {
|
||||
val kitCount = sharedPreference.getInt(Constants.KIT_COUNT, 0)
|
||||
@@ -434,41 +445,49 @@ class HemoCubeViewModel @Inject constructor(
|
||||
Log.i("Testdb", "Data uploaded to Firestore successfully")
|
||||
fireBaseUpload.postValue("Success")
|
||||
testDetails.localFlag = true
|
||||
if (Constants.MOLBIO_INTEGRATION) {
|
||||
// Sanitize testDetails before using it in the API call
|
||||
val sanitizedTestDetails = sanitizeDoubleValues(testDetails)
|
||||
|
||||
// Now, use sanitizedTestDetails for the API call
|
||||
uploadResult(
|
||||
MolbioV2ResultRequest(
|
||||
mutableListOf(
|
||||
MolbioV2Result(
|
||||
rawData = sanitizedTestDetails,
|
||||
analysisId = sanitizedTestDetails._id,
|
||||
analysisDate = sanitizedTestDetails.testTime,
|
||||
analysisStatus = sanitizedTestDetails.classificationResult,
|
||||
thresholds = Constants.BUFFER_INTENSITY_THRESHOLDS[sanitizedTestDetails.deviceId]?.toString(),
|
||||
interpretation = sanitizedTestDetails.classificationResult,
|
||||
testId = sanitizedTestDetails._id,
|
||||
testTime = sanitizedTestDetails.testTime,
|
||||
collectionTime = sanitizedTestDetails.testTime,
|
||||
expiryTime = sanitizedTestDetails.testTime,
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
hemoCubeDao.insertAll(testDetails)
|
||||
hemoCubeDao.updateTest(testDetails)
|
||||
}
|
||||
|
||||
is Response.Error -> {
|
||||
Log.e("Testdb", "Error uploading data to Firestore: $response")
|
||||
fireBaseUpload.postValue("Error")
|
||||
hemoCubeDao.insertAll(testDetails)
|
||||
hemoCubeDao.updateTest(testDetails)
|
||||
}
|
||||
|
||||
else -> {}
|
||||
}
|
||||
}
|
||||
if (Constants.MOLBIO_INTEGRATION) {
|
||||
val kitCount = sharedPreference.getInt(Constants.KIT_COUNT, 0)
|
||||
with(sharedPreference.edit()) {
|
||||
putInt(Constants.KIT_COUNT, kitCount.plus(1))
|
||||
apply()
|
||||
}
|
||||
// Sanitize testDetails before using it in the API call
|
||||
val sanitizedTestDetails = testDetailsmolbio?.let { sanitizeDoubleValues(it) }
|
||||
|
||||
// Now, use sanitizedTestDetails for the API call
|
||||
uploadResult(
|
||||
MolbioV2ResultRequest(
|
||||
mutableListOf(
|
||||
MolbioV2Result(
|
||||
rawData = sanitizedTestDetails,
|
||||
analysisId = sanitizedTestDetails!!._id,
|
||||
analysisDate = currentTimeFormatted,
|
||||
analysisStatus = sanitizedTestDetails.classificationResult,
|
||||
thresholds = Constants.BUFFER_INTENSITY_THRESHOLDS[sanitizedTestDetails.deviceId]?.toString(),
|
||||
interpretation = sanitizedTestDetails.classificationResult,
|
||||
testId = sanitizedTestDetails._id,
|
||||
testTime = currentTimeFormatted,
|
||||
collectionTime = currentTimeFormatted,
|
||||
expiryTime = currentTimeFormatted,
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
hemoCubeDao.updateTest(testDetails)
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
Log.e("Testdb", "Exception during data upload: ${e.message}")
|
||||
fireBaseUpload.postValue("Error")
|
||||
@@ -494,17 +513,17 @@ class HemoCubeViewModel @Inject constructor(
|
||||
}
|
||||
}
|
||||
|
||||
fun sanitizeDoubleValues(hemoCubeTestData: HemoCubeTestData): HemoCubeTestData {
|
||||
hemoCubeTestData::class.java.declaredFields.forEach { field ->
|
||||
fun sanitizeDoubleValues(molbiohemocubeData: MolbioHemocubeData): MolbioHemocubeData {
|
||||
molbiohemocubeData::class.java.declaredFields.forEach { field ->
|
||||
if (field.type == Double::class.javaObjectType || field.type == Double::class.javaPrimitiveType) {
|
||||
field.isAccessible = true
|
||||
val value = field.get(hemoCubeTestData) as Double?
|
||||
val value = field.get(molbiohemocubeData) as Double?
|
||||
if (value != null && (value.isInfinite() || value.isNaN())) {
|
||||
field.set(hemoCubeTestData, 0.0) // Replace with a suitable default value
|
||||
field.set(molbiohemocubeData, 0.0) // Replace with a suitable default value
|
||||
}
|
||||
}
|
||||
}
|
||||
return hemoCubeTestData
|
||||
return molbiohemocubeData
|
||||
}
|
||||
|
||||
private fun updateLocalFlag(userId: String) = viewModelScope.launch {
|
||||
@@ -519,6 +538,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
hemoCubeDao.insertAll(userData)
|
||||
}
|
||||
|
||||
|
||||
fun deleteById(userId: String) = viewModelScope.launch {
|
||||
hemoCubeDao.deleteById(id = userId)
|
||||
}
|
||||
@@ -674,4 +694,7 @@ class HemoCubeViewModel @Inject constructor(
|
||||
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
|
||||
).format(Calendar.getInstance().time)
|
||||
}
|
||||
val coroutineExceptionHandler = CoroutineExceptionHandler{_, throwable ->
|
||||
throwable.printStackTrace()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -43,6 +43,7 @@ import com.example.hpostesting.data.model.molbioresult.MolbioV2ResultResponse
|
||||
import com.example.hpostesting.data.model.patient.BufferCheckData
|
||||
import com.example.hpostesting.data.model.patient.DeviceData
|
||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
||||
import com.example.hpostesting.data.model.patient.MolbioHemocubeData
|
||||
import com.example.hpostesting.data.model.patient.toHemoCubeTestData
|
||||
import com.example.hpostesting.data.model.updates.CheckUpdateRequest
|
||||
import com.example.hpostesting.data.model.updates.CheckUpdateResponse
|
||||
@@ -75,6 +76,7 @@ class TrueHemeViewModel @Inject constructor(
|
||||
var isServiceConnected = false
|
||||
val progressBar = MutableLiveData(false)
|
||||
private val testDetails = DataHolder.selectedTest?.toHemoCubeTestData()
|
||||
private val testDetailsmolbio = DataHolder.hemoCubeTestData?.MolbioHemocubeData()
|
||||
val messages = MutableLiveData<String>()
|
||||
private val sharedPreference =
|
||||
context.getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
|
||||
@@ -162,7 +164,7 @@ class TrueHemeViewModel @Inject constructor(
|
||||
fun deviceUpdate(deviceUpdateRequest: DeviceUpdateRequest) = viewModelScope.launch {
|
||||
deviceUpdate.postValue(Result.Loading())
|
||||
repository.deviceUpdate(deviceUpdateRequest).let {
|
||||
deviceUpdate.postValue(it)
|
||||
// deviceUpdate.postValue(it)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -321,12 +323,12 @@ class TrueHemeViewModel @Inject constructor(
|
||||
}
|
||||
Log.i("Testdb", "Data uploaded to Firestore successfully")
|
||||
fireBaseUpload.postValue("Success")
|
||||
testDetails.localFlag = true
|
||||
testDetailsmolbio!!.localFlag = true
|
||||
uploadResult(
|
||||
MolbioV2ResultRequest(
|
||||
mutableListOf(
|
||||
MolbioV2Result(
|
||||
rawData = testDetails,
|
||||
rawData = testDetailsmolbio,
|
||||
analysisId = testDetails._id,
|
||||
analysisDate = testDetails.testTime,
|
||||
analysisStatus = testDetails.classificationResult,
|
||||
|
||||
@@ -11,23 +11,47 @@
|
||||
~ // is strictly forbidden unless prior written permission is obtained
|
||||
~ // from ShanMukha Innovations Pvt. Ltd.
|
||||
-->
|
||||
|
||||
<RelativeLayout
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="150dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="20dp"
|
||||
android:src="@drawable/smi_logo"
|
||||
android:contentDescription="@string/smi" />
|
||||
<TextView
|
||||
android:id="@+id/titleText"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:gravity="center"
|
||||
android:text="Shanmukha Innovations"
|
||||
android:layout_marginTop="5dp"
|
||||
android:textSize="21sp"
|
||||
android:text="@string/smi_desp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:textSize="18sp"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
<TextView
|
||||
android:id="@+id/link_click"
|
||||
android:clickable="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/learn_more"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:textSize="18sp"
|
||||
android:textColor="@color/red"
|
||||
android:focusable="true" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
@@ -59,17 +59,28 @@
|
||||
android:id="@+id/tv_subtitle4"
|
||||
style="@style/title1_1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="380dp"
|
||||
android:layout_height="450dp"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:gravity="center"
|
||||
android:text="Start"
|
||||
android:scrollbars="vertical"
|
||||
android:textColor="@color/red"
|
||||
android:textSize="22sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_subtitle3" />
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBarHor"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="16dp"
|
||||
android:visibility="gone"
|
||||
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_subtitle4"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_submit"
|
||||
|
||||
@@ -295,4 +295,7 @@
|
||||
<string name="lab_name">Lab Name</string>
|
||||
<string name="menu_about">About</string>
|
||||
<string name="action_about">About</string>
|
||||
<string name="smi_desp">ShanMukha Innovations is a spin-off from Indian Institute of Science, Bangalore. Incorporated in 2016, the company has been delivering innovative Made in India first of its kind deep technology-based products in healthcare.\n\nNotable solutions include Mobile Infection Testing and Reporting Labs (MITR Labs), portable thermal cycler (PolyCube).\n\nThe company launched Sicklecert ®, India’s first CDSCO approved indigenous diagnostic test for sickle-cell anemia.\n\nOur customers include government, non-profit and private sector companies. Leading research institutes such as IISc, IIT Tirupati have engaged us for unique projects. We take pride in supporting Indian and global customers with world-class products.</string>
|
||||
<string name="smi">SMI</string>
|
||||
<string name="learn_more">Visit to learn more: <u>sminnovations.in</u></string>
|
||||
</resources>
|
||||
@@ -294,6 +294,9 @@
|
||||
<string name="menu_about">About</string>
|
||||
<string name="action_about">About</string>
|
||||
<string name="lab_name">Lab Name</string>
|
||||
<string name="smi_desp">ShanMukha Innovations is a spin-off from Indian Institute of Science, Bangalore. Incorporated in 2016, the company has been delivering innovative Made in India first of its kind deep technology-based products in healthcare.\n\nNotable solutions include Mobile Infection Testing and Reporting Labs (MITR Labs), portable thermal cycler (PolyCube).\n\nThe company launched Sicklecert ®, India’s first CDSCO approved indigenous diagnostic test for sickle-cell anemia.\n\nOur customers include government, non-profit and private sector companies. Leading research institutes such as IISc, IIT Tirupati have engaged us for unique projects. We take pride in supporting Indian and global customers with world-class products.</string>
|
||||
<string name="smi">SMI</string>
|
||||
<string name="learn_more">Visit to learn more: <u>sminnovations.in</u></string>
|
||||
<!-- Add translations for other strings -->
|
||||
|
||||
</resources>
|
||||
@@ -218,7 +218,7 @@
|
||||
<string name="all_registered_user_are_tested_successfully">All registered user are tested successfully</string>
|
||||
<string name="start_incubation">Incubate</string>
|
||||
<string name="check_buffer">Check Buffer</string>
|
||||
<string name="low_battery_warning">Battery level is low than 40%, please charge the device to continue testing</string>
|
||||
<string name="low_battery_warning">Battery level is lower than 40%, please charge the device to continue testing</string>
|
||||
<string name="test_already_conducted">Test has been already conducted for this user</string>
|
||||
<string name="incubation_not_completed">Incubation has not completed 15 minutes</string>
|
||||
<string name="incubation_crossed_30_minutes">Incubation crossed 30 minutes, need to repeat the incubation</string>
|
||||
@@ -249,6 +249,7 @@
|
||||
<string name="do_log_out">Do you want to LogOut the Application?</string>
|
||||
<string name="cancelled_unable_scan">Cancelled: Unable to scan, Try Again!!</string>
|
||||
<string name="kit_updated">Kit number is updated, Please Select user before starting test</string>
|
||||
<string name="kit_update">Kit number is updated.</string>
|
||||
<string name="select_patient">Please Select patient before starting test</string>
|
||||
<string name="enable_location">Please enable location services</string>
|
||||
<string name="location_denied">Fine location permission denied</string>
|
||||
@@ -289,10 +290,13 @@
|
||||
<string name="action_activity">Activities</string>
|
||||
<string name="check_cuvette">Checking cuvette presence</string>
|
||||
<string name="cuvette_present">Cuvette present , you can start the test</string>
|
||||
<string name="cuvette_absent">Cuvette is absent , please place the cuvette and retry again</string>
|
||||
<string name="cuvette_absent">cuvette is not present, please put the cuvette and retry again</string>
|
||||
<string name="retry">Retry again</string>
|
||||
<string name="usb_terminal">Usb Terminal</string>
|
||||
<string name="menu_about">About</string>
|
||||
<string name="action_about">About</string>
|
||||
<string name="lab_name">Lab Name</string>
|
||||
<string name="smi_desp"><b>ShanMukha Innovations</b> is a spin-off from Indian Institute of Science, Bangalore. Incorporated in 2016, the company has been delivering innovative Made in India first of its kind deep technology-based products in healthcare.\n\nNotable solutions include Mobile Infection Testing and Reporting Labs (MITR Labs), portable thermal cycler (PolyCube).\n\nThe company launched Sicklecert ®, India’s first CDSCO approved indigenous diagnostic test for sickle-cell anemia.\n\nOur customers include government, non-profit and private sector companies. Leading research institutes such as IISc, IIT Tirupati have engaged us for unique projects. We take pride in supporting Indian and global customers with world-class products.</string>
|
||||
<string name="smi">SMI</string>
|
||||
<string name="learn_more">Visit to learn more: <u>sminnovations.in</u></string>
|
||||
</resources>
|
||||
@@ -13,11 +13,13 @@
|
||||
|
||||
package com.example.hpostesting
|
||||
|
||||
import android.content.Context
|
||||
import androidx.arch.core.executor.testing.InstantTaskExecutorRule
|
||||
import androidx.lifecycle.Observer
|
||||
import com.example.hpostesting.data.model.Response
|
||||
import com.example.hpostesting.data.model.diagnostics.DiagnosticsData
|
||||
import com.example.hpostesting.data.repository.Repository
|
||||
import com.example.hpostesting.presentation.diagnostics.DiagnosticsActivity
|
||||
import com.example.hpostesting.presentation.diagnostics.DiagnosticsViewModel
|
||||
import io.mockk.coEvery
|
||||
import io.mockk.mockk
|
||||
@@ -49,7 +51,8 @@ class DiagnosticsViewModelTest {
|
||||
|
||||
// Mock Repository
|
||||
private val mockRepository = mockk<Repository>()
|
||||
|
||||
@Mock
|
||||
private lateinit var context: Context
|
||||
// Mock Observer for LiveData
|
||||
@Mock
|
||||
private lateinit var mockObserver: Observer<String>
|
||||
@@ -63,7 +66,7 @@ class DiagnosticsViewModelTest {
|
||||
MockitoAnnotations.openMocks(this)
|
||||
|
||||
// Create the ViewModel with the mock repository and set the coroutine dispatcher
|
||||
diagnosticsViewModel = DiagnosticsViewModel(repository = mockRepository)
|
||||
diagnosticsViewModel = DiagnosticsViewModel(repository = mockRepository, context = context)
|
||||
// diagnosticsViewModel.viewModelScope = testCoroutineScope
|
||||
|
||||
// Observe the LiveData
|
||||
|
||||
@@ -360,7 +360,7 @@ class HemoCubeFragmentTest {
|
||||
|
||||
@Test
|
||||
fun testDeviceRatioClassificationSickleCellDiseaseLowerBound() {
|
||||
val ratio = 0.361
|
||||
val ratio = 0.391
|
||||
val result = hemoCubeFragment.deviceRatioClassification(ratio)
|
||||
assertEquals("Sickle Cell Disease", result)
|
||||
}
|
||||
@@ -398,7 +398,7 @@ class HemoCubeFragmentTest {
|
||||
val result = hemoCubeFragment.findResultWithAdditionalMethods(
|
||||
0.5,
|
||||
"Positive for Sickle Cell. HPLC for Confirmation",
|
||||
1.35
|
||||
1.4
|
||||
)
|
||||
assertEquals("Borderline. Sickle Cell Trait", result)
|
||||
}
|
||||
@@ -441,7 +441,7 @@ class HemoCubeFragmentTest {
|
||||
val result = hemoCubeFragment.findResultWithAdditionalMethods(
|
||||
0.5,
|
||||
"Positive for Sickle Cell. HPLC for Confirmation",
|
||||
1.35
|
||||
1.4
|
||||
)
|
||||
assertEquals("Borderline. Sickle Cell Trait", result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user