|
@@ -10,11 +10,16 @@ import com.framework.app.base.IRepository
|
|
|
import com.framework.app.http.FileDownloadInfo
|
|
|
import com.framework.app.http.FileInfo
|
|
|
import com.framework.app.http.FileUploadInfo
|
|
|
+import com.framework.app.tools.md5
|
|
|
import com.framework.mvvm.model.data.*
|
|
|
import com.framework.mvvm.model.db.AdmDatabase
|
|
|
+import com.framework.mvvm.model.db.entity.ProjectEntity
|
|
|
+import com.framework.mvvm.model.db.entity.UserEntity
|
|
|
import com.framework.mvvm.model.db.entity.dict.*
|
|
|
import com.framework.mvvm.model.db.entity.task.*
|
|
|
import com.framework.mvvm.model.vo.*
|
|
|
+import kotlinx.coroutines.Dispatchers
|
|
|
+import kotlinx.coroutines.withContext
|
|
|
import okhttp3.RequestBody
|
|
|
|
|
|
class AdmRepository(
|
|
@@ -280,12 +285,8 @@ class AdmRepository(
|
|
|
request(
|
|
|
from = { api.getFrame(request) },
|
|
|
to = { frame ->
|
|
|
- val projects = frame.projects
|
|
|
val objects = frame.buildingsAndFloors
|
|
|
try {
|
|
|
- if (projects != null) {
|
|
|
- db.projectDao().insProject(projects)
|
|
|
- }
|
|
|
objects.forEach { it.state = 2 }.let { db.objectDao().insObjects(objects) }
|
|
|
} catch (e: Exception) {
|
|
|
Log.d("IRepository:${AdmRepository::class.simpleName}", "$e")
|
|
@@ -573,9 +574,108 @@ class AdmRepository(
|
|
|
/**
|
|
|
* 获取 Client
|
|
|
*/
|
|
|
- suspend fun getClient(user: User) {
|
|
|
- val model = api.getClient(user)
|
|
|
- val client = model.data
|
|
|
- sp.edit { putString(CLIENT_ID, client.clientId) }
|
|
|
+ suspend fun getClient(client: Client) {
|
|
|
+ val model = api.getClient(client)
|
|
|
+ sp.edit { putString(CLIENT_ID, model.data.clientId) }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 登录
|
|
|
+ */
|
|
|
+ suspend fun login(login: Login): List<Long> {
|
|
|
+ val json =
|
|
|
+ """{"loginDevice":"${login.device}","loginName":"${login.userName}","password":"${login.password}"}"""
|
|
|
+ var result = listOf<Long>()
|
|
|
+ withContext(Dispatchers.IO) {
|
|
|
+ request(
|
|
|
+ from = { api.login(json) },
|
|
|
+ to = {
|
|
|
+ val one = it[0]
|
|
|
+ val user = UserEntity(
|
|
|
+ userId = one.userId,
|
|
|
+ username = one.userName,
|
|
|
+ password = login.password.md5(),
|
|
|
+ pd = one.pd,
|
|
|
+ device = one.loginDevice,
|
|
|
+ isAdmin = one.isAdmin,
|
|
|
+ mail = one.person_mail,
|
|
|
+ phone = one.phone_num,
|
|
|
+ from = one.userFrom,
|
|
|
+ state = 1
|
|
|
+ )
|
|
|
+
|
|
|
+ val userDao = db.userDao()
|
|
|
+ val users = userDao.getUsers().onEach { u -> u.state = 0 }
|
|
|
+ users.add(user)
|
|
|
+ result = userDao.insUsers(users)
|
|
|
+ },
|
|
|
+ error = {
|
|
|
+ println("login error :$it")
|
|
|
+ }
|
|
|
+ )
|
|
|
+ }
|
|
|
+ return result
|
|
|
+ }
|
|
|
+
|
|
|
+ suspend fun getProjects(user: UserEntity) {
|
|
|
+ val json =
|
|
|
+ """{"puser":{"userId":"${user.userId}","loginDevice":"${user.device}","pd":"${user.pd}"}}"""
|
|
|
+ withContext(Dispatchers.IO) {
|
|
|
+ request(
|
|
|
+ from = { api.getProjects(json) },
|
|
|
+ to = { results ->
|
|
|
+ println("results: $results")
|
|
|
+ results.forEach {
|
|
|
+ it.projects.forEach { p ->
|
|
|
+ val project = ProjectEntity(
|
|
|
+ projectId = p.projectId,
|
|
|
+ projectName = p.projectName,
|
|
|
+ groupCode = p.groupCode,
|
|
|
+ latitude = p.latitude,
|
|
|
+ longitude = p.longitude,
|
|
|
+ detailAddress = p.detailAddress,
|
|
|
+ projectLocalID = p.projectLocalID,
|
|
|
+ projectLocalName = p.projectLocalName,
|
|
|
+ functionType = p.functionType,
|
|
|
+ liveStatus = p.liveStatus,
|
|
|
+ userId = it.userId
|
|
|
+ )
|
|
|
+ val projectDao = db.projectDao()
|
|
|
+ projectDao.insProject(project)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ error = {
|
|
|
+ println("getProjects error: $it")
|
|
|
+ }
|
|
|
+ )
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
+ suspend fun getProjectsFromDB(): List<ProjectEntity> {
|
|
|
+ return withContext(Dispatchers.IO) {
|
|
|
+ db.projectDao().getProjects()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ suspend fun getUser(username: String, password: String): UserEntity? {
|
|
|
+ return withContext(Dispatchers.IO) {
|
|
|
+ db.userDao().getUser(username, password.md5())
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 获取数据库用户
|
|
|
+ suspend fun getUsers(): List<UserEntity> {
|
|
|
+ return withContext(Dispatchers.IO) {
|
|
|
+ db.userDao().getUsers()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 根据登录状态获取User
|
|
|
+ suspend fun getUserByState(state: Int): UserEntity {
|
|
|
+ return withContext(Dispatchers.IO) {
|
|
|
+ db.userDao().getUserByState(state)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|