forked from melod1n/fast-messenger
Compare commits
1 Commits
26a0630393
..
0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 82fb78e9ea |
@@ -1,56 +0,0 @@
|
|||||||
name: Android CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
env:
|
|
||||||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
|
||||||
RELEASE_SIGN_KEY_ALIAS: ${{ secrets.RELEASE_SIGN_KEY_ALIAS }}
|
|
||||||
RELEASE_SIGN_KEY_PASSWORD: ${{ secrets.RELEASE_SIGN_KEY_PASSWORD }}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
android:
|
|
||||||
runs-on: android-jdk21
|
|
||||||
name: Build artifacts
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Make Gradle executable
|
|
||||||
run: chmod +x ./gradlew
|
|
||||||
|
|
||||||
- name: Build and sign release APK
|
|
||||||
run: ./gradlew assembleRelease
|
|
||||||
|
|
||||||
- name: Find generated release APK name
|
|
||||||
id: find_apk_release
|
|
||||||
run: |
|
|
||||||
APK_PATH=$(find app/build/outputs/apk/release -name "*.apk" | head -n 1)
|
|
||||||
echo "APK_PATH=$APK_PATH" >> $GITEA_ENV
|
|
||||||
echo "APK_NAME=$(basename $APK_PATH)" >> $GITEA_ENV
|
|
||||||
|
|
||||||
- name: Upload APK with original name
|
|
||||||
uses: christopherhx/gitea-upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ${{ env.APK_NAME }}
|
|
||||||
path: ${{ env.APK_PATH }}
|
|
||||||
|
|
||||||
- name: Build and sign debug APK
|
|
||||||
run: ./gradlew assembleDebug
|
|
||||||
|
|
||||||
- name: Find generated debug APK name
|
|
||||||
id: find_apk_debug
|
|
||||||
run: |
|
|
||||||
APK_PATH=$(find app/build/outputs/apk/debug -name "*.apk" | head -n 1)
|
|
||||||
echo "APK_PATH=$APK_PATH" >> $GITEA_ENV
|
|
||||||
echo "APK_NAME=$(basename $APK_PATH)" >> $GITEA_ENV
|
|
||||||
|
|
||||||
- name: Upload APK with original name
|
|
||||||
uses: christopherhx/gitea-upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ${{ env.APK_NAME }}
|
|
||||||
path: ${{ env.APK_PATH }}
|
|
||||||
+20
-34
@@ -1,10 +1,10 @@
|
|||||||
name: Android CI Build
|
name: Android CI Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
push:
|
||||||
|
branches: [ "dev", "release/*", "hotfix/*" ]
|
||||||
permissions:
|
pull_request:
|
||||||
contents: read
|
branches: [ "dev", "release/*", "hotfix/*" ]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
||||||
@@ -12,15 +12,15 @@ env:
|
|||||||
RELEASE_SIGN_KEY_PASSWORD: ${{ secrets.RELEASE_SIGN_KEY_PASSWORD }}
|
RELEASE_SIGN_KEY_PASSWORD: ${{ secrets.RELEASE_SIGN_KEY_PASSWORD }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_apks:
|
build_apk_aab:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
name: Build artifacts
|
name: Build artifacts
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: set up JDK 21
|
- name: set up JDK 21
|
||||||
uses: actions/setup-java@v5
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
@@ -29,34 +29,20 @@ jobs:
|
|||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
|
|
||||||
- name: Build and sign release APK
|
|
||||||
run: ./gradlew assembleRelease
|
|
||||||
|
|
||||||
- name: Find generated release APK name
|
|
||||||
id: find_apk_release
|
|
||||||
run: |
|
|
||||||
APK_PATH=$(find app/build/outputs/apk/release -name "*.apk" | head -n 1)
|
|
||||||
echo "APK_PATH=$APK_PATH" >> $GITHUB_ENV
|
|
||||||
echo "APK_NAME=$(basename $APK_PATH)" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Upload APK with original name
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
|
||||||
name: ${{ env.APK_NAME }}
|
|
||||||
path: ${{ env.APK_PATH }}
|
|
||||||
|
|
||||||
- name: Build and sign debug APK
|
- name: Build and sign debug APK
|
||||||
run: ./gradlew assembleDebug
|
run: ./gradlew assembleDebug
|
||||||
|
|
||||||
- name: Find generated debug APK name
|
- name: Upload debug APK
|
||||||
id: find_apk_debug
|
uses: actions/upload-artifact@v4
|
||||||
run: |
|
|
||||||
APK_PATH=$(find app/build/outputs/apk/debug -name "*.apk" | head -n 1)
|
|
||||||
echo "APK_PATH=$APK_PATH" >> $GITHUB_ENV
|
|
||||||
echo "APK_NAME=$(basename $APK_PATH)" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Upload APK with original name
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
with:
|
||||||
name: ${{ env.APK_NAME }}
|
name: app-debug.apk
|
||||||
path: ${{ env.APK_PATH }}
|
path: app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
||||||
|
- name: Build and sign release APK
|
||||||
|
run: ./gradlew assembleRelease
|
||||||
|
|
||||||
|
- name: Upload release APK
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: app-release.apk
|
||||||
|
path: app/build/outputs/apk/release/app-release.apk
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
name: Android CI Release
|
name: Android CI Release
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
pull_request:
|
||||||
push:
|
branches: [ "master" ]
|
||||||
branches: [ "release/*"]
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
||||||
@@ -18,10 +15,10 @@ jobs:
|
|||||||
name: Build artifacts
|
name: Build artifacts
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: set up JDK 21
|
- name: set up JDK 21
|
||||||
uses: actions/setup-java@v5
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
@@ -30,20 +27,38 @@ jobs:
|
|||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
|
|
||||||
|
- name: Build and sign debug APK
|
||||||
|
run: ./gradlew assembleDebug
|
||||||
|
|
||||||
|
- name: Upload debug APK
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: app-debug.apk
|
||||||
|
path: app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
||||||
- name: Build and sign release APK
|
- name: Build and sign release APK
|
||||||
run: ./gradlew assembleRelease
|
run: ./gradlew assembleRelease
|
||||||
|
|
||||||
- name: Upload release APK
|
- name: Upload release APK
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: app-release.apk
|
name: app-release.apk
|
||||||
path: app/build/outputs/apk/release/app-release.apk
|
path: app/build/outputs/apk/release/app-release.apk
|
||||||
|
|
||||||
|
- name: Build and sign debug Bundle
|
||||||
|
run: ./gradlew bundleDebug
|
||||||
|
|
||||||
|
- name: Upload debug Bundle
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: app-debug.aab
|
||||||
|
path: app/build/outputs/bundle/debug/app-debug.aab
|
||||||
|
|
||||||
- name: Build and sign release Bundle
|
- name: Build and sign release Bundle
|
||||||
run: ./gradlew bundleRelease
|
run: ./gradlew bundleRelease
|
||||||
|
|
||||||
- name: Upload release Bundle
|
- name: Upload release Bundle
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: app-release.aab
|
name: app-release.aab
|
||||||
path: app/build/outputs/bundle/release/app-release.aab
|
path: app/build/outputs/bundle/release/app-release.aab
|
||||||
|
|||||||
@@ -15,4 +15,3 @@ build/
|
|||||||
local.properties
|
local.properties
|
||||||
.idea
|
.idea
|
||||||
/.kotlin
|
/.kotlin
|
||||||
.hotswan/
|
|
||||||
|
|||||||
@@ -7,17 +7,15 @@ Unofficial messenger for russian social network VKontakte
|
|||||||
- [x] 2FA support
|
- [x] 2FA support
|
||||||
- [x] Resend otp
|
- [x] Resend otp
|
||||||
- [x] Captcha support
|
- [x] Captcha support
|
||||||
- [x] Support for new authorization with service and refresh tokens
|
- [ ] Support for new authorization with service and refresh tokens
|
||||||
- [ ] Handle token expiration
|
|
||||||
- [x] Ability to export/import tokens
|
|
||||||
- [x] Conversations list
|
- [x] Conversations list
|
||||||
- [x] Pagination
|
- [x] Pagination
|
||||||
- [x] Manual refresh
|
- [x] Manual refresh
|
||||||
- [x] Pin & unpin conversations
|
- [x] Pin & unpin conversations
|
||||||
- [x] Delete conversations
|
- [x] Delete conversations
|
||||||
- [x] Archive
|
- [ ] Archive
|
||||||
- [x] View archived conversations
|
- [ ] View archived conversations
|
||||||
- [x] Archive & unarchive conversations
|
- [ ] Archive & unarchive conversations
|
||||||
- [x] Friends list
|
- [x] Friends list
|
||||||
- [x] Sort alphabetically, by priority or random
|
- [x] Sort alphabetically, by priority or random
|
||||||
- [x] Separate tab with only friends who are online
|
- [x] Separate tab with only friends who are online
|
||||||
@@ -32,25 +30,17 @@ Unofficial messenger for russian social network VKontakte
|
|||||||
- [x] Read status
|
- [x] Read status
|
||||||
- [x] Edit status
|
- [x] Edit status
|
||||||
- [x] Sending status
|
- [x] Sending status
|
||||||
- [x] Message's attachments
|
- [ ] Message's attachments
|
||||||
- [x] Photo
|
- [ ] Photo
|
||||||
- [x] Video
|
- [ ] Video
|
||||||
- [x] Audio
|
- [ ] Audio
|
||||||
- [x] File
|
- [ ] File
|
||||||
- [x] Link
|
- [ ] Link
|
||||||
- [x] Sticker
|
|
||||||
- [x] Reply
|
|
||||||
- [ ] Forwarded messages
|
|
||||||
- [ ] Wall post
|
|
||||||
- [ ] Comment in wall post
|
|
||||||
- [ ] Comment in channel
|
|
||||||
- [ ] Poll
|
|
||||||
- [ ] TODO
|
- [ ] TODO
|
||||||
- [x] Send messages
|
- [x] Send messages
|
||||||
- [x] Pinned message
|
- [x] Pinned message
|
||||||
- [x] Pin & unpin messages
|
- [x] Pin & unpin messages
|
||||||
- [x] Reply to message
|
- [ ] Reply to message
|
||||||
- [x] Swipe to reply to message
|
|
||||||
- [x] Delete message
|
- [x] Delete message
|
||||||
- [x] Select multiple messages
|
- [x] Select multiple messages
|
||||||
- [x] Delete
|
- [x] Delete
|
||||||
@@ -65,7 +55,7 @@ Unofficial messenger for russian social network VKontakte
|
|||||||
- [x] View attachments
|
- [x] View attachments
|
||||||
- [x] Open photo
|
- [x] Open photo
|
||||||
- [x] Internal viewer
|
- [x] Internal viewer
|
||||||
- [x] External viewer
|
- [ ] External viewer
|
||||||
- [ ] Open video in external player
|
- [ ] Open video in external player
|
||||||
- [ ] TODO
|
- [ ] TODO
|
||||||
- [ ] Caching
|
- [ ] Caching
|
||||||
|
|||||||
+4
-17
@@ -1,4 +1,3 @@
|
|||||||
import com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
||||||
import java.util.Properties
|
import java.util.Properties
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
@@ -13,8 +12,8 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "dev.meloda.fastvk"
|
applicationId = "dev.meloda.fastvk"
|
||||||
|
|
||||||
versionCode = 11
|
versionCode = libs.versions.versionCode.get().toInt()
|
||||||
versionName = "0.2.3"
|
versionName = libs.versions.versionName.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
@@ -47,7 +46,7 @@ android {
|
|||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
}
|
}
|
||||||
named("release") {
|
named("release") {
|
||||||
signingConfig = signingConfigs.getByName("debugSigning")
|
signingConfig = signingConfigs.getByName("release")
|
||||||
|
|
||||||
isMinifyEnabled = true
|
isMinifyEnabled = true
|
||||||
isShrinkResources = true
|
isShrinkResources = true
|
||||||
@@ -59,18 +58,6 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// applicationVariants.all {
|
|
||||||
// outputs.all {
|
|
||||||
// val date = System.currentTimeMillis() / 1000
|
|
||||||
// val buildType = buildType.name
|
|
||||||
// val appVersion = versionName
|
|
||||||
// val appVersionCode = versionCode
|
|
||||||
//
|
|
||||||
// val newApkName = "app-$buildType-v$appVersion($appVersionCode)-$date.apk"
|
|
||||||
// (this as? BaseVariantOutputImpl)?.outputFileName = newApkName
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
packaging {
|
packaging {
|
||||||
resources {
|
resources {
|
||||||
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
||||||
@@ -82,7 +69,7 @@ dependencies {
|
|||||||
implementation(projects.feature.auth)
|
implementation(projects.feature.auth)
|
||||||
|
|
||||||
implementation(projects.feature.chatmaterials)
|
implementation(projects.feature.chatmaterials)
|
||||||
implementation(projects.feature.convos)
|
implementation(projects.feature.conversations)
|
||||||
implementation(projects.feature.languagepicker)
|
implementation(projects.feature.languagepicker)
|
||||||
implementation(projects.feature.messageshistory)
|
implementation(projects.feature.messageshistory)
|
||||||
implementation(projects.feature.photoviewer)
|
implementation(projects.feature.photoviewer)
|
||||||
|
|||||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
@@ -37,12 +37,6 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="dev.meloda.fast.presentation.CrashActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:process=":error_handler"
|
|
||||||
android:theme="@style/CrashDialogTheme" />
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="dev.meloda.fast.service.longpolling.LongPollingService"
|
android:name="dev.meloda.fast.service.longpolling.LongPollingService"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
|
|||||||
@@ -1,23 +1,15 @@
|
|||||||
package dev.meloda.fast.common
|
package dev.meloda.fast.common
|
||||||
|
|
||||||
import android.app.Application
|
import android.app.Application
|
||||||
import android.content.Intent
|
|
||||||
import android.net.Uri
|
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import coil.ImageLoader
|
import coil.ImageLoader
|
||||||
import coil.ImageLoaderFactory
|
import coil.ImageLoaderFactory
|
||||||
import com.skydoves.compose.stability.runtime.ComposeStabilityAnalyzer
|
|
||||||
import dev.meloda.fast.auth.BuildConfig
|
|
||||||
import dev.meloda.fast.common.di.applicationModule
|
import dev.meloda.fast.common.di.applicationModule
|
||||||
import dev.meloda.fast.datastore.AppSettings
|
import dev.meloda.fast.datastore.AppSettings
|
||||||
import dev.meloda.fast.presentation.CrashActivity
|
|
||||||
import org.koin.android.ext.android.get
|
import org.koin.android.ext.android.get
|
||||||
import org.koin.android.ext.koin.androidContext
|
import org.koin.android.ext.koin.androidContext
|
||||||
import org.koin.android.ext.koin.androidLogger
|
import org.koin.android.ext.koin.androidLogger
|
||||||
import org.koin.core.context.GlobalContext.startKoin
|
import org.koin.core.context.GlobalContext.startKoin
|
||||||
import java.io.File
|
|
||||||
import java.io.FileOutputStream
|
|
||||||
import kotlin.system.exitProcess
|
|
||||||
|
|
||||||
class AppGlobal : Application(), ImageLoaderFactory {
|
class AppGlobal : Application(), ImageLoaderFactory {
|
||||||
|
|
||||||
@@ -26,14 +18,10 @@ class AppGlobal : Application(), ImageLoaderFactory {
|
|||||||
|
|
||||||
val preferences = PreferenceManager.getDefaultSharedPreferences(this)
|
val preferences = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
AppSettings.init(preferences)
|
AppSettings.init(preferences)
|
||||||
ComposeStabilityAnalyzer.setEnabled(BuildConfig.DEBUG)
|
|
||||||
|
|
||||||
initKoin()
|
initKoin()
|
||||||
initCrashHandler()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun newImageLoader(): ImageLoader = get()
|
|
||||||
|
|
||||||
private fun initKoin() {
|
private fun initKoin() {
|
||||||
startKoin {
|
startKoin {
|
||||||
androidLogger()
|
androidLogger()
|
||||||
@@ -42,37 +30,5 @@ class AppGlobal : Application(), ImageLoaderFactory {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun initCrashHandler() {
|
override fun newImageLoader(): ImageLoader = get()
|
||||||
val defaultExceptionHandler = Thread.getDefaultUncaughtExceptionHandler()
|
|
||||||
Thread.setDefaultUncaughtExceptionHandler { thread, throwable ->
|
|
||||||
val crashLogsDirectory = File(filesDir.absolutePath + "/crashlogs")
|
|
||||||
if (!crashLogsDirectory.exists()) {
|
|
||||||
crashLogsDirectory.mkdirs()
|
|
||||||
}
|
|
||||||
|
|
||||||
val crashLogFileName = "crash_" + System.currentTimeMillis() + ".txt"
|
|
||||||
val crashLogFile = File(crashLogsDirectory.absolutePath + "/" + crashLogFileName)
|
|
||||||
|
|
||||||
FileOutputStream(crashLogFile).use { stream ->
|
|
||||||
stream.write(throwable.stackTraceToString().toByteArray())
|
|
||||||
}
|
|
||||||
|
|
||||||
if (AppSettings.Debug.showAlertAfterCrash) {
|
|
||||||
try {
|
|
||||||
val intent = Intent(this, CrashActivity::class.java)
|
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
|
|
||||||
intent.putExtra("CRASH_LOG_FILE_URI", Uri.fromFile(crashLogFile))
|
|
||||||
startActivity(intent)
|
|
||||||
|
|
||||||
exitProcess(0)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
if (e !is RuntimeException) {
|
|
||||||
defaultExceptionHandler?.uncaughtException(thread, throwable)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
defaultExceptionHandler?.uncaughtException(thread, throwable)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,17 +5,18 @@ import android.content.res.Resources
|
|||||||
import android.os.PowerManager
|
import android.os.PowerManager
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import coil.ImageLoader
|
import coil.ImageLoader
|
||||||
import coil.annotation.ExperimentalCoilApi
|
|
||||||
import dev.meloda.fast.MainViewModelImpl
|
import dev.meloda.fast.MainViewModelImpl
|
||||||
import dev.meloda.fast.auth.authModule
|
import dev.meloda.fast.auth.captcha.di.captchaModule
|
||||||
|
import dev.meloda.fast.auth.login.di.loginModule
|
||||||
|
import dev.meloda.fast.auth.validation.di.validationModule
|
||||||
import dev.meloda.fast.chatmaterials.di.chatMaterialsModule
|
import dev.meloda.fast.chatmaterials.di.chatMaterialsModule
|
||||||
import dev.meloda.fast.common.LongPollController
|
import dev.meloda.fast.common.LongPollController
|
||||||
import dev.meloda.fast.common.LongPollControllerImpl
|
import dev.meloda.fast.common.LongPollControllerImpl
|
||||||
import dev.meloda.fast.common.provider.Provider
|
import dev.meloda.fast.common.provider.Provider
|
||||||
import dev.meloda.fast.common.provider.ResourceProvider
|
import dev.meloda.fast.common.provider.ResourceProvider
|
||||||
import dev.meloda.fast.common.provider.ResourceProviderImpl
|
import dev.meloda.fast.common.provider.ResourceProviderImpl
|
||||||
import dev.meloda.fast.convos.di.convosModule
|
import dev.meloda.fast.conversations.di.conversationsModule
|
||||||
import dev.meloda.fast.convos.di.createChatModule
|
import dev.meloda.fast.conversations.di.createChatModule
|
||||||
import dev.meloda.fast.domain.di.domainModule
|
import dev.meloda.fast.domain.di.domainModule
|
||||||
import dev.meloda.fast.friends.di.friendsModule
|
import dev.meloda.fast.friends.di.friendsModule
|
||||||
import dev.meloda.fast.languagepicker.di.languagePickerModule
|
import dev.meloda.fast.languagepicker.di.languagePickerModule
|
||||||
@@ -32,12 +33,13 @@ import org.koin.core.qualifier.qualifier
|
|||||||
import org.koin.dsl.bind
|
import org.koin.dsl.bind
|
||||||
import org.koin.dsl.module
|
import org.koin.dsl.module
|
||||||
|
|
||||||
@OptIn(ExperimentalCoilApi::class)
|
|
||||||
val applicationModule = module {
|
val applicationModule = module {
|
||||||
includes(domainModule)
|
includes(domainModule)
|
||||||
includes(
|
includes(
|
||||||
authModule,
|
loginModule,
|
||||||
convosModule,
|
validationModule,
|
||||||
|
captchaModule,
|
||||||
|
conversationsModule,
|
||||||
settingsModule,
|
settingsModule,
|
||||||
messagesHistoryModule,
|
messagesHistoryModule,
|
||||||
photoViewModule,
|
photoViewModule,
|
||||||
@@ -64,7 +66,6 @@ val applicationModule = module {
|
|||||||
ImageLoader.Builder(get())
|
ImageLoader.Builder(get())
|
||||||
.crossfade(true)
|
.crossfade(true)
|
||||||
.build()
|
.build()
|
||||||
.also { it.diskCache?.directory?.toFile()?.listFiles() }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
singleOf(::LongPollControllerImpl) bind LongPollController::class
|
singleOf(::LongPollControllerImpl) bind LongPollController::class
|
||||||
|
|||||||
@@ -2,15 +2,15 @@ package dev.meloda.fast.navigation
|
|||||||
|
|
||||||
import androidx.navigation.NavGraphBuilder
|
import androidx.navigation.NavGraphBuilder
|
||||||
import androidx.navigation.compose.composable
|
import androidx.navigation.compose.composable
|
||||||
import dev.meloda.fast.convos.navigation.ConvoGraph
|
import dev.meloda.fast.conversations.navigation.ConversationsGraph
|
||||||
import dev.meloda.fast.friends.navigation.Friends
|
import dev.meloda.fast.friends.navigation.Friends
|
||||||
import dev.meloda.fast.model.BaseError
|
import dev.meloda.fast.model.BaseError
|
||||||
import dev.meloda.fast.model.BottomNavigationItem
|
import dev.meloda.fast.model.BottomNavigationItem
|
||||||
import dev.meloda.fast.presentation.MainScreen
|
import dev.meloda.fast.presentation.MainScreen
|
||||||
import dev.meloda.fast.profile.navigation.Profile
|
import dev.meloda.fast.profile.navigation.Profile
|
||||||
import dev.meloda.fast.ui.R
|
|
||||||
import dev.meloda.fast.ui.util.ImmutableList
|
import dev.meloda.fast.ui.util.ImmutableList
|
||||||
import kotlinx.serialization.Serializable
|
import kotlinx.serialization.Serializable
|
||||||
|
import dev.meloda.fast.ui.R as UiR
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
object MainGraph
|
object MainGraph
|
||||||
@@ -21,28 +21,28 @@ object Main
|
|||||||
fun NavGraphBuilder.mainScreen(
|
fun NavGraphBuilder.mainScreen(
|
||||||
onError: (BaseError) -> Unit,
|
onError: (BaseError) -> Unit,
|
||||||
onSettingsButtonClicked: () -> Unit,
|
onSettingsButtonClicked: () -> Unit,
|
||||||
onNavigateToMessagesHistory: (convoId: Long) -> Unit,
|
onNavigateToMessagesHistory: (conversationId: Long) -> Unit,
|
||||||
onPhotoClicked: (url: String) -> Unit,
|
onPhotoClicked: (url: String) -> Unit,
|
||||||
onMessageClicked: (userid: Long) -> Unit,
|
onMessageClicked: (userid: Long) -> Unit,
|
||||||
onNavigateToCreateChat: () -> Unit
|
onNavigateToCreateChat: () -> Unit
|
||||||
) {
|
) {
|
||||||
val navigationItems = ImmutableList.of(
|
val navigationItems = ImmutableList.of(
|
||||||
BottomNavigationItem(
|
BottomNavigationItem(
|
||||||
titleResId = R.string.title_friends,
|
titleResId = UiR.string.title_friends,
|
||||||
selectedIconResId = R.drawable.ic_group_fill_round_24,
|
selectedIconResId = UiR.drawable.baseline_people_alt_24,
|
||||||
unselectedIconResId = R.drawable.ic_group_round_24,
|
unselectedIconResId = UiR.drawable.outline_people_alt_24,
|
||||||
route = Friends,
|
route = Friends,
|
||||||
),
|
),
|
||||||
BottomNavigationItem(
|
BottomNavigationItem(
|
||||||
titleResId = R.string.title_convos,
|
titleResId = UiR.string.title_conversations,
|
||||||
selectedIconResId = R.drawable.ic_mail_fill_round_24,
|
selectedIconResId = UiR.drawable.baseline_chat_24,
|
||||||
unselectedIconResId = R.drawable.ic_mail_round_24,
|
unselectedIconResId = UiR.drawable.outline_chat_24,
|
||||||
route = ConvoGraph
|
route = ConversationsGraph
|
||||||
),
|
),
|
||||||
BottomNavigationItem(
|
BottomNavigationItem(
|
||||||
titleResId = R.string.title_profile,
|
titleResId = UiR.string.title_profile,
|
||||||
selectedIconResId = R.drawable.ic_account_circle_fill_round_24,
|
selectedIconResId = UiR.drawable.baseline_account_circle_24,
|
||||||
unselectedIconResId = R.drawable.ic_account_circle_round_24,
|
unselectedIconResId = UiR.drawable.outline_account_circle_24,
|
||||||
route = Profile
|
route = Profile
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
package dev.meloda.fast.presentation
|
|
||||||
|
|
||||||
import androidx.compose.runtime.Composable
|
|
||||||
import androidx.compose.runtime.getValue
|
|
||||||
import androidx.compose.runtime.mutableStateOf
|
|
||||||
import androidx.compose.runtime.saveable.rememberSaveable
|
|
||||||
import androidx.compose.runtime.setValue
|
|
||||||
import androidx.compose.ui.Modifier
|
|
||||||
import androidx.compose.ui.res.stringResource
|
|
||||||
import androidx.compose.ui.window.DialogProperties
|
|
||||||
import dev.meloda.fast.ui.R
|
|
||||||
import dev.meloda.fast.ui.components.MaterialDialog
|
|
||||||
|
|
||||||
@Composable
|
|
||||||
fun AppCrashedDialog(
|
|
||||||
stacktrace: String,
|
|
||||||
onDismiss: () -> Unit,
|
|
||||||
onShare: () -> Unit,
|
|
||||||
modifier: Modifier = Modifier,
|
|
||||||
) {
|
|
||||||
var showTrace by rememberSaveable { mutableStateOf(false) }
|
|
||||||
|
|
||||||
MaterialDialog(
|
|
||||||
modifier = modifier,
|
|
||||||
onDismissRequest = onDismiss,
|
|
||||||
title = stringResource(R.string.title_error),
|
|
||||||
text = if (showTrace) stacktrace else stringResource(R.string.error_occurred),
|
|
||||||
confirmText = stringResource(R.string.action_share),
|
|
||||||
confirmAction = onShare,
|
|
||||||
cancelText = stringResource(if (showTrace) R.string.action_hide_stacktrace else R.string.action_show_stacktrace),
|
|
||||||
cancelAction = { showTrace = !showTrace },
|
|
||||||
neutralText = stringResource(R.string.action_close),
|
|
||||||
properties = DialogProperties(dismissOnBackPress = false, dismissOnClickOutside = false)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
package dev.meloda.fast.presentation
|
|
||||||
|
|
||||||
import android.content.ClipData
|
|
||||||
import android.content.Intent
|
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Bundle
|
|
||||||
import androidx.activity.ComponentActivity
|
|
||||||
import androidx.activity.compose.setContent
|
|
||||||
import androidx.compose.runtime.collectAsState
|
|
||||||
import androidx.core.content.FileProvider
|
|
||||||
import androidx.core.net.toFile
|
|
||||||
import dev.meloda.fast.datastore.UserSettings
|
|
||||||
import dev.meloda.fast.ui.theme.AppTheme
|
|
||||||
import dev.meloda.fast.ui.util.isNeedToEnableDarkMode
|
|
||||||
import org.koin.compose.koinInject
|
|
||||||
import java.io.File
|
|
||||||
|
|
||||||
class CrashActivity : ComponentActivity() {
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
|
|
||||||
|
|
||||||
val crashLogFileUri = intent.getParcelableExtra<Uri>("CRASH_LOG_FILE_URI") ?: run {
|
|
||||||
finish()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
val crashLogFile = crashLogFileUri.toFile().takeIf(File::exists) ?: run {
|
|
||||||
finish()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val stacktrace = crashLogFile.bufferedReader().readText()
|
|
||||||
|
|
||||||
setContent {
|
|
||||||
val userSettings: UserSettings = koinInject()
|
|
||||||
|
|
||||||
AppTheme(
|
|
||||||
useDarkTheme = isNeedToEnableDarkMode(darkMode = userSettings.darkMode.collectAsState().value),
|
|
||||||
useDynamicColors = userSettings.enableDynamicColors.collectAsState().value,
|
|
||||||
selectedColorScheme = 0,
|
|
||||||
useAmoledBackground = userSettings.enableAmoledDark.collectAsState().value,
|
|
||||||
useSystemFont = userSettings.useSystemFont.collectAsState().value
|
|
||||||
) {
|
|
||||||
AppCrashedDialog(
|
|
||||||
stacktrace = stacktrace,
|
|
||||||
onDismiss = { finish() },
|
|
||||||
onShare = {
|
|
||||||
val uri = FileProvider.getUriForFile(
|
|
||||||
this,
|
|
||||||
"$packageName.provider",
|
|
||||||
crashLogFile
|
|
||||||
)
|
|
||||||
|
|
||||||
val sendIntent = Intent().apply {
|
|
||||||
action = Intent.ACTION_SEND
|
|
||||||
type = "text/plain"
|
|
||||||
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
|
||||||
putExtra(Intent.EXTRA_STREAM, uri)
|
|
||||||
clipData = ClipData.newRawUri(null, uri)
|
|
||||||
}
|
|
||||||
|
|
||||||
val chooserIntent = Intent.createChooser(sendIntent, null)
|
|
||||||
chooserIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
|
||||||
startActivity(chooserIntent)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,6 +4,7 @@ import android.Manifest
|
|||||||
import android.annotation.SuppressLint
|
import android.annotation.SuppressLint
|
||||||
import android.app.NotificationChannel
|
import android.app.NotificationChannel
|
||||||
import android.app.NotificationManager
|
import android.app.NotificationManager
|
||||||
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.res.Configuration
|
import android.content.res.Configuration
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
@@ -14,20 +15,44 @@ import androidx.activity.SystemBarStyle
|
|||||||
import androidx.activity.compose.setContent
|
import androidx.activity.compose.setContent
|
||||||
import androidx.activity.enableEdgeToEdge
|
import androidx.activity.enableEdgeToEdge
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.compose.runtime.CompositionLocalProvider
|
||||||
import androidx.compose.runtime.LaunchedEffect
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
|
import androidx.compose.runtime.derivedStateOf
|
||||||
|
import androidx.compose.runtime.getValue
|
||||||
|
import androidx.compose.runtime.mutableStateOf
|
||||||
|
import androidx.compose.runtime.remember
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.graphics.toArgb
|
import androidx.compose.ui.graphics.toArgb
|
||||||
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.lifecycle.compose.LifecycleResumeEffect
|
import androidx.lifecycle.compose.LifecycleResumeEffect
|
||||||
|
import androidx.lifecycle.compose.collectAsStateWithLifecycle
|
||||||
|
import com.conena.nanokt.android.content.pxToDp
|
||||||
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
||||||
|
import com.google.accompanist.permissions.isGranted
|
||||||
|
import com.google.accompanist.permissions.rememberPermissionState
|
||||||
import dev.meloda.fast.MainViewModel
|
import dev.meloda.fast.MainViewModel
|
||||||
import dev.meloda.fast.MainViewModelImpl
|
import dev.meloda.fast.MainViewModelImpl
|
||||||
import dev.meloda.fast.common.AppConstants
|
import dev.meloda.fast.common.AppConstants
|
||||||
|
import dev.meloda.fast.common.LongPollController
|
||||||
|
import dev.meloda.fast.common.model.LongPollState
|
||||||
import dev.meloda.fast.datastore.AppSettings
|
import dev.meloda.fast.datastore.AppSettings
|
||||||
|
import dev.meloda.fast.datastore.UserSettings
|
||||||
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
import dev.meloda.fast.service.OnlineService
|
import dev.meloda.fast.service.OnlineService
|
||||||
import dev.meloda.fast.service.longpolling.LongPollingService
|
import dev.meloda.fast.service.longpolling.LongPollingService
|
||||||
import dev.meloda.fast.ui.R
|
import dev.meloda.fast.ui.model.DeviceSize
|
||||||
|
import dev.meloda.fast.ui.model.SizeConfig
|
||||||
|
import dev.meloda.fast.ui.model.ThemeConfig
|
||||||
|
import dev.meloda.fast.ui.theme.AppTheme
|
||||||
|
import dev.meloda.fast.ui.theme.LocalSizeConfig
|
||||||
|
import dev.meloda.fast.ui.theme.LocalThemeConfig
|
||||||
|
import dev.meloda.fast.ui.theme.LocalUser
|
||||||
|
import dev.meloda.fast.ui.util.isNeedToEnableDarkMode
|
||||||
import org.koin.androidx.compose.koinViewModel
|
import org.koin.androidx.compose.koinViewModel
|
||||||
|
import org.koin.compose.KoinContext
|
||||||
|
import org.koin.compose.koinInject
|
||||||
|
import dev.meloda.fast.ui.R as UiR
|
||||||
|
|
||||||
class MainActivity : AppCompatActivity() {
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
@@ -64,33 +89,177 @@ class MainActivity : AppCompatActivity() {
|
|||||||
requestNotificationPermissions()
|
requestNotificationPermissions()
|
||||||
|
|
||||||
setContent {
|
setContent {
|
||||||
val viewModel: MainViewModel = koinViewModel<MainViewModelImpl>()
|
KoinContext {
|
||||||
LaunchedEffect(viewModel) {
|
val context = LocalContext.current
|
||||||
Log.d("VM_CREATE", "onCreate: viewModel: $viewModel")
|
|
||||||
}
|
|
||||||
|
|
||||||
LifecycleResumeEffect(true) {
|
val userSettings: UserSettings = koinInject()
|
||||||
viewModel.onAppResumed(intent)
|
val longPollController: LongPollController = koinInject()
|
||||||
onPauseOrDispose {}
|
|
||||||
}
|
|
||||||
|
|
||||||
RootScreen(
|
val longPollCurrentState by longPollController.currentState.collectAsStateWithLifecycle()
|
||||||
toggleLongPollService = { enable, inBackground ->
|
val longPollStateToApply by longPollController.stateToApply.collectAsStateWithLifecycle()
|
||||||
toggleLongPollService(
|
|
||||||
enable = enable,
|
val viewModel: MainViewModel = koinViewModel<MainViewModelImpl>()
|
||||||
inBackground = inBackground ?: AppSettings.Experimental.longPollInBackground
|
|
||||||
|
val currentUser: VkUser? by viewModel.currentUser.collectAsStateWithLifecycle()
|
||||||
|
|
||||||
|
LifecycleResumeEffect(true) {
|
||||||
|
viewModel.onAppResumed(intent)
|
||||||
|
onPauseOrDispose {}
|
||||||
|
}
|
||||||
|
|
||||||
|
val permissionState =
|
||||||
|
rememberPermissionState(permission = Manifest.permission.POST_NOTIFICATIONS)
|
||||||
|
|
||||||
|
val isNeedToCheckPermission by viewModel.isNeedToCheckNotificationsPermission.collectAsStateWithLifecycle()
|
||||||
|
val isNeedToRequestPermission by viewModel.isNeedToRequestNotifications.collectAsStateWithLifecycle()
|
||||||
|
|
||||||
|
LaunchedEffect(isNeedToCheckPermission) {
|
||||||
|
if (isNeedToCheckPermission) {
|
||||||
|
viewModel.onPermissionCheckStatus(permissionState.status)
|
||||||
|
|
||||||
|
if (permissionState.status.isGranted) {
|
||||||
|
if (longPollCurrentState == LongPollState.InApp) {
|
||||||
|
toggleLongPollService(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleLongPollService(
|
||||||
|
enable = true,
|
||||||
|
inBackground = true
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LaunchedEffect(isNeedToRequestPermission) {
|
||||||
|
if (isNeedToRequestPermission) {
|
||||||
|
viewModel.onPermissionsRequested()
|
||||||
|
permissionState.launchPermissionRequest()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LifecycleResumeEffect(longPollStateToApply) {
|
||||||
|
Log.d("LongPollMainActivity", "longPollStateToApply: $longPollStateToApply")
|
||||||
|
if (longPollStateToApply != LongPollState.Background) {
|
||||||
|
if (longPollStateToApply.isLaunched() && longPollCurrentState.isLaunched()
|
||||||
|
&& longPollCurrentState != longPollStateToApply
|
||||||
|
) {
|
||||||
|
toggleLongPollService(false)
|
||||||
|
Log.d("LongPoll", "recreate()")
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleLongPollService(
|
||||||
|
enable = longPollStateToApply.isLaunched(),
|
||||||
|
inBackground = longPollStateToApply == LongPollState.Background
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
onPauseOrDispose {}
|
||||||
|
}
|
||||||
|
|
||||||
|
val sendOnline by userSettings.sendOnlineStatus.collectAsStateWithLifecycle()
|
||||||
|
LifecycleResumeEffect(sendOnline) {
|
||||||
|
toggleOnlineService(sendOnline)
|
||||||
|
|
||||||
|
onPauseOrDispose {
|
||||||
|
toggleOnlineService(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val deviceWidthDp = remember(true) {
|
||||||
|
context.resources.displayMetrics.widthPixels.pxToDp()
|
||||||
|
}
|
||||||
|
val deviceHeightDp = remember(true) {
|
||||||
|
context.resources.displayMetrics.heightPixels.pxToDp()
|
||||||
|
}
|
||||||
|
|
||||||
|
val deviceWidthSize by remember(deviceWidthDp) {
|
||||||
|
derivedStateOf {
|
||||||
|
when {
|
||||||
|
deviceWidthDp <= 360 -> DeviceSize.Small
|
||||||
|
deviceWidthDp <= 600 -> DeviceSize.Compact
|
||||||
|
deviceWidthDp <= 840 -> DeviceSize.Medium
|
||||||
|
else -> DeviceSize.Expanded
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val deviceHeightSize by remember(deviceHeightDp) {
|
||||||
|
derivedStateOf {
|
||||||
|
when {
|
||||||
|
deviceHeightDp <= 480 -> DeviceSize.Small
|
||||||
|
deviceHeightDp <= 700 -> DeviceSize.Compact
|
||||||
|
deviceHeightDp <= 900 -> DeviceSize.Medium
|
||||||
|
else -> DeviceSize.Expanded
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val sizeConfig by remember(deviceWidthSize, deviceHeightSize) {
|
||||||
|
mutableStateOf(
|
||||||
|
SizeConfig(
|
||||||
|
widthSize = deviceWidthSize,
|
||||||
|
heightSize = deviceHeightSize
|
||||||
|
)
|
||||||
)
|
)
|
||||||
},
|
}
|
||||||
toggleOnlineService = ::toggleOnlineService
|
|
||||||
)
|
val darkMode by userSettings.darkMode.collectAsStateWithLifecycle()
|
||||||
|
val dynamicColors by userSettings.enableDynamicColors.collectAsStateWithLifecycle()
|
||||||
|
val amoledDark by userSettings.enableAmoledDark.collectAsStateWithLifecycle()
|
||||||
|
val enableBlur by userSettings.useBlur.collectAsStateWithLifecycle()
|
||||||
|
val enableMultiline by userSettings.enableMultiline.collectAsStateWithLifecycle()
|
||||||
|
val useSystemFont by userSettings.useSystemFont.collectAsStateWithLifecycle()
|
||||||
|
val enableAnimations by userSettings.enableAnimations.collectAsStateWithLifecycle()
|
||||||
|
|
||||||
|
val setDarkMode = isNeedToEnableDarkMode(darkMode = darkMode)
|
||||||
|
|
||||||
|
val themeConfig by remember(
|
||||||
|
darkMode,
|
||||||
|
dynamicColors,
|
||||||
|
amoledDark,
|
||||||
|
enableBlur,
|
||||||
|
enableMultiline,
|
||||||
|
setDarkMode,
|
||||||
|
useSystemFont
|
||||||
|
) {
|
||||||
|
derivedStateOf {
|
||||||
|
ThemeConfig(
|
||||||
|
darkMode = setDarkMode,
|
||||||
|
dynamicColors = dynamicColors,
|
||||||
|
selectedColorScheme = 0,
|
||||||
|
amoledDark = amoledDark,
|
||||||
|
enableBlur = enableBlur,
|
||||||
|
enableMultiline = enableMultiline,
|
||||||
|
useSystemFont = useSystemFont,
|
||||||
|
enableAnimations = enableAnimations
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CompositionLocalProvider(
|
||||||
|
LocalThemeConfig provides themeConfig,
|
||||||
|
LocalSizeConfig provides sizeConfig,
|
||||||
|
LocalUser provides currentUser
|
||||||
|
) {
|
||||||
|
AppTheme(
|
||||||
|
useDarkTheme = themeConfig.darkMode,
|
||||||
|
useDynamicColors = themeConfig.dynamicColors,
|
||||||
|
selectedColorScheme = themeConfig.selectedColorScheme,
|
||||||
|
useAmoledBackground = themeConfig.amoledDark,
|
||||||
|
useSystemFont = themeConfig.useSystemFont
|
||||||
|
) {
|
||||||
|
RootScreen(viewModel = viewModel)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun createNotificationChannels() {
|
private fun createNotificationChannels() {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
val noCategoryName = getString(R.string.notification_channel_no_category_name)
|
val noCategoryName = getString(UiR.string.notification_channel_no_category_name)
|
||||||
val noCategoryDescriptionText =
|
val noCategoryDescriptionText =
|
||||||
getString(R.string.notification_channel_no_category_description)
|
getString(UiR.string.notification_channel_no_category_description)
|
||||||
val noCategoryChannel =
|
val noCategoryChannel =
|
||||||
NotificationChannel(
|
NotificationChannel(
|
||||||
AppConstants.NOTIFICATION_CHANNEL_UNCATEGORIZED,
|
AppConstants.NOTIFICATION_CHANNEL_UNCATEGORIZED,
|
||||||
@@ -100,9 +269,9 @@ class MainActivity : AppCompatActivity() {
|
|||||||
description = noCategoryDescriptionText
|
description = noCategoryDescriptionText
|
||||||
}
|
}
|
||||||
|
|
||||||
val longPollName = getString(R.string.notification_channel_long_polling_service_name)
|
val longPollName = getString(UiR.string.notification_channel_long_polling_service_name)
|
||||||
val longPollDescriptionText =
|
val longPollDescriptionText =
|
||||||
getString(R.string.notification_channel_long_polling_service_description)
|
getString(UiR.string.notification_channel_long_polling_service_description)
|
||||||
val longPollChannel =
|
val longPollChannel =
|
||||||
NotificationChannel(
|
NotificationChannel(
|
||||||
AppConstants.NOTIFICATION_CHANNEL_LONG_POLLING,
|
AppConstants.NOTIFICATION_CHANNEL_LONG_POLLING,
|
||||||
@@ -113,7 +282,7 @@ class MainActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val notificationManager: NotificationManager =
|
val notificationManager: NotificationManager =
|
||||||
getSystemService(NOTIFICATION_SERVICE) as NotificationManager
|
getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
|
||||||
notificationManager.createNotificationChannels(
|
notificationManager.createNotificationChannels(
|
||||||
listOf(
|
listOf(
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
package dev.meloda.fast.presentation
|
package dev.meloda.fast.presentation
|
||||||
|
|
||||||
import androidx.activity.compose.BackHandler
|
|
||||||
import androidx.activity.compose.LocalActivity
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import androidx.compose.animation.core.tween
|
import androidx.compose.animation.core.tween
|
||||||
import androidx.compose.animation.fadeIn
|
import androidx.compose.animation.fadeIn
|
||||||
import androidx.compose.animation.fadeOut
|
import androidx.compose.animation.fadeOut
|
||||||
@@ -18,6 +15,7 @@ import androidx.compose.material3.NavigationBarItem
|
|||||||
import androidx.compose.material3.Scaffold
|
import androidx.compose.material3.Scaffold
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.CompositionLocalProvider
|
import androidx.compose.runtime.CompositionLocalProvider
|
||||||
|
import androidx.compose.runtime.derivedStateOf
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.runtime.mutableIntStateOf
|
import androidx.compose.runtime.mutableIntStateOf
|
||||||
import androidx.compose.runtime.mutableStateOf
|
import androidx.compose.runtime.mutableStateOf
|
||||||
@@ -38,8 +36,8 @@ import dev.chrisbanes.haze.HazeState
|
|||||||
import dev.chrisbanes.haze.hazeEffect
|
import dev.chrisbanes.haze.hazeEffect
|
||||||
import dev.chrisbanes.haze.materials.ExperimentalHazeMaterialsApi
|
import dev.chrisbanes.haze.materials.ExperimentalHazeMaterialsApi
|
||||||
import dev.chrisbanes.haze.materials.HazeMaterials
|
import dev.chrisbanes.haze.materials.HazeMaterials
|
||||||
import dev.meloda.fast.convos.navigation.ConvoGraph
|
import dev.meloda.fast.conversations.navigation.Conversations
|
||||||
import dev.meloda.fast.convos.navigation.convosGraph
|
import dev.meloda.fast.conversations.navigation.conversationsGraph
|
||||||
import dev.meloda.fast.friends.navigation.Friends
|
import dev.meloda.fast.friends.navigation.Friends
|
||||||
import dev.meloda.fast.friends.navigation.friendsScreen
|
import dev.meloda.fast.friends.navigation.friendsScreen
|
||||||
import dev.meloda.fast.model.BaseError
|
import dev.meloda.fast.model.BaseError
|
||||||
@@ -60,35 +58,30 @@ fun MainScreen(
|
|||||||
navigationItems: ImmutableList<BottomNavigationItem>,
|
navigationItems: ImmutableList<BottomNavigationItem>,
|
||||||
onError: (BaseError) -> Unit = {},
|
onError: (BaseError) -> Unit = {},
|
||||||
onSettingsButtonClicked: () -> Unit = {},
|
onSettingsButtonClicked: () -> Unit = {},
|
||||||
onNavigateToMessagesHistory: (convoId: Long) -> Unit = {},
|
onNavigateToMessagesHistory: (conversationId: Long) -> Unit = {},
|
||||||
onPhotoClicked: (url: String) -> Unit = {},
|
onPhotoClicked: (url: String) -> Unit = {},
|
||||||
onMessageClicked: (userid: Long) -> Unit = {},
|
onMessageClicked: (userid: Long) -> Unit = {},
|
||||||
onNavigateToCreateChat: () -> Unit = {}
|
onNavigateToCreateChat: () -> Unit = {}
|
||||||
) {
|
) {
|
||||||
val activity = LocalActivity.current as? AppCompatActivity ?: return
|
|
||||||
val theme = LocalThemeConfig.current
|
val theme = LocalThemeConfig.current
|
||||||
val hazeState = remember { HazeState(true) }
|
val hazeState = remember { HazeState() }
|
||||||
val navController = rememberNavController()
|
val navController = rememberNavController()
|
||||||
|
|
||||||
var selectedItemIndex by rememberSaveable {
|
var selectedItemIndex by rememberSaveable {
|
||||||
mutableIntStateOf(1)
|
mutableIntStateOf(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
BackHandler(enabled = selectedItemIndex != 1) {
|
val user = LocalUser.current
|
||||||
val currentRoute = navigationItems[selectedItemIndex].route
|
val profileImageUrl by remember(user) {
|
||||||
|
derivedStateOf { user?.photo100 }
|
||||||
selectedItemIndex = 1
|
|
||||||
navController.navigate(navigationItems[selectedItemIndex].route) {
|
|
||||||
popUpTo(route = currentRoute) {
|
|
||||||
inclusive = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val profileImageUrl = LocalUser.current?.photo100
|
|
||||||
|
|
||||||
var tabReselected by remember {
|
var tabReselected by remember {
|
||||||
mutableStateOf(navigationItems.associate { it.route to false })
|
mutableStateOf(
|
||||||
|
navigationItems.associate {
|
||||||
|
it.route to false
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
Scaffold(
|
Scaffold(
|
||||||
@@ -100,7 +93,7 @@ fun MainScreen(
|
|||||||
if (theme.enableBlur) {
|
if (theme.enableBlur) {
|
||||||
Modifier.hazeEffect(
|
Modifier.hazeEffect(
|
||||||
state = hazeState,
|
state = hazeState,
|
||||||
style = HazeMaterials.regular(NavigationBarDefaults.containerColor)
|
style = HazeMaterials.thick()
|
||||||
)
|
)
|
||||||
} else Modifier
|
} else Modifier
|
||||||
),
|
),
|
||||||
@@ -187,7 +180,6 @@ fun MainScreen(
|
|||||||
exitTransition = { fadeOut(animationSpec = tween(200)) }
|
exitTransition = { fadeOut(animationSpec = tween(200)) }
|
||||||
) {
|
) {
|
||||||
friendsScreen(
|
friendsScreen(
|
||||||
activity = activity,
|
|
||||||
onError = onError,
|
onError = onError,
|
||||||
onPhotoClicked = onPhotoClicked,
|
onPhotoClicked = onPhotoClicked,
|
||||||
onMessageClicked = onMessageClicked,
|
onMessageClicked = onMessageClicked,
|
||||||
@@ -197,19 +189,17 @@ fun MainScreen(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
convosGraph(
|
conversationsGraph(
|
||||||
activity = activity,
|
|
||||||
onError = onError,
|
onError = onError,
|
||||||
onNavigateToMessagesHistory = onNavigateToMessagesHistory,
|
onNavigateToMessagesHistory = onNavigateToMessagesHistory,
|
||||||
onNavigateToCreateChat = onNavigateToCreateChat,
|
onNavigateToCreateChat = onNavigateToCreateChat,
|
||||||
onScrolledToTop = {
|
onScrolledToTop = {
|
||||||
tabReselected = tabReselected.toMutableMap().also {
|
tabReselected = tabReselected.toMutableMap().also {
|
||||||
it[ConvoGraph] = false
|
it[Conversations] = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
profileScreen(
|
profileScreen(
|
||||||
activity = activity,
|
|
||||||
onError = onError,
|
onError = onError,
|
||||||
onSettingsButtonClicked = onSettingsButtonClicked,
|
onSettingsButtonClicked = onSettingsButtonClicked,
|
||||||
onPhotoClicked = onPhotoClicked
|
onPhotoClicked = onPhotoClicked
|
||||||
|
|||||||
@@ -1,406 +1,171 @@
|
|||||||
package dev.meloda.fast.presentation
|
package dev.meloda.fast.presentation
|
||||||
|
|
||||||
import android.Manifest
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.provider.Settings
|
import android.provider.Settings
|
||||||
import android.util.Log
|
|
||||||
import androidx.activity.compose.LocalActivity
|
|
||||||
import androidx.compose.animation.core.tween
|
import androidx.compose.animation.core.tween
|
||||||
import androidx.compose.animation.fadeIn
|
import androidx.compose.animation.fadeIn
|
||||||
import androidx.compose.animation.fadeOut
|
import androidx.compose.animation.fadeOut
|
||||||
import androidx.compose.foundation.layout.Box
|
|
||||||
import androidx.compose.foundation.layout.fillMaxSize
|
|
||||||
import androidx.compose.material3.AlertDialog
|
import androidx.compose.material3.AlertDialog
|
||||||
import androidx.compose.material3.Text
|
import androidx.compose.material3.Text
|
||||||
import androidx.compose.material3.TextButton
|
import androidx.compose.material3.TextButton
|
||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.runtime.CompositionLocalProvider
|
import androidx.compose.runtime.CompositionLocalProvider
|
||||||
import androidx.compose.runtime.LaunchedEffect
|
import androidx.compose.runtime.LaunchedEffect
|
||||||
import androidx.compose.runtime.derivedStateOf
|
|
||||||
import androidx.compose.runtime.getValue
|
import androidx.compose.runtime.getValue
|
||||||
import androidx.compose.runtime.mutableStateOf
|
|
||||||
import androidx.compose.runtime.remember
|
|
||||||
import androidx.compose.runtime.saveable.rememberSaveable
|
|
||||||
import androidx.compose.runtime.setValue
|
|
||||||
import androidx.compose.ui.Modifier
|
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
import androidx.compose.ui.platform.LocalResources
|
|
||||||
import androidx.compose.ui.res.stringResource
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.window.DialogProperties
|
import androidx.compose.ui.window.DialogProperties
|
||||||
import androidx.lifecycle.compose.LifecycleResumeEffect
|
|
||||||
import androidx.lifecycle.compose.collectAsStateWithLifecycle
|
import androidx.lifecycle.compose.collectAsStateWithLifecycle
|
||||||
import androidx.navigation.NavController
|
import androidx.navigation.NavController
|
||||||
import androidx.navigation.NavHostController
|
import androidx.navigation.NavHostController
|
||||||
import androidx.navigation.compose.NavHost
|
import androidx.navigation.compose.NavHost
|
||||||
import androidx.navigation.compose.rememberNavController
|
import androidx.navigation.compose.rememberNavController
|
||||||
import com.conena.nanokt.android.content.pxToDp
|
|
||||||
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
|
||||||
import com.google.accompanist.permissions.isGranted
|
|
||||||
import com.google.accompanist.permissions.rememberPermissionState
|
|
||||||
import dev.meloda.fast.MainViewModel
|
import dev.meloda.fast.MainViewModel
|
||||||
import dev.meloda.fast.MainViewModelImpl
|
|
||||||
import dev.meloda.fast.auth.authNavGraph
|
import dev.meloda.fast.auth.authNavGraph
|
||||||
import dev.meloda.fast.auth.captcha.presentation.CaptchaScreen
|
|
||||||
import dev.meloda.fast.auth.navigateToAuth
|
import dev.meloda.fast.auth.navigateToAuth
|
||||||
import dev.meloda.fast.chatmaterials.navigation.chatMaterialsScreen
|
import dev.meloda.fast.chatmaterials.navigation.chatMaterialsScreen
|
||||||
import dev.meloda.fast.chatmaterials.navigation.navigateToChatMaterials
|
import dev.meloda.fast.chatmaterials.navigation.navigateToChatMaterials
|
||||||
import dev.meloda.fast.common.LongPollController
|
import dev.meloda.fast.conversations.navigation.createChatScreen
|
||||||
import dev.meloda.fast.common.model.LongPollState
|
import dev.meloda.fast.conversations.navigation.navigateToCreateChat
|
||||||
import dev.meloda.fast.convos.navigation.createChatScreen
|
|
||||||
import dev.meloda.fast.convos.navigation.navigateToCreateChat
|
|
||||||
import dev.meloda.fast.datastore.AppSettings
|
|
||||||
import dev.meloda.fast.datastore.CaptchaTokenResult
|
|
||||||
import dev.meloda.fast.datastore.UserSettings
|
|
||||||
import dev.meloda.fast.languagepicker.navigation.languagePickerScreen
|
import dev.meloda.fast.languagepicker.navigation.languagePickerScreen
|
||||||
import dev.meloda.fast.languagepicker.navigation.navigateToLanguagePicker
|
import dev.meloda.fast.languagepicker.navigation.navigateToLanguagePicker
|
||||||
import dev.meloda.fast.messageshistory.navigation.messagesHistoryScreen
|
import dev.meloda.fast.messageshistory.navigation.messagesHistoryScreen
|
||||||
import dev.meloda.fast.messageshistory.navigation.navigateToMessagesHistory
|
import dev.meloda.fast.messageshistory.navigation.navigateToMessagesHistory
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
|
||||||
import dev.meloda.fast.navigation.Main
|
import dev.meloda.fast.navigation.Main
|
||||||
import dev.meloda.fast.navigation.mainScreen
|
import dev.meloda.fast.navigation.mainScreen
|
||||||
import dev.meloda.fast.photoviewer.presentation.PhotoViewDialog
|
import dev.meloda.fast.photoviewer.navigation.navigateToPhotoView
|
||||||
|
import dev.meloda.fast.photoviewer.navigation.photoViewScreen
|
||||||
import dev.meloda.fast.settings.navigation.navigateToSettings
|
import dev.meloda.fast.settings.navigation.navigateToSettings
|
||||||
import dev.meloda.fast.settings.navigation.settingsScreen
|
import dev.meloda.fast.settings.navigation.settingsScreen
|
||||||
import dev.meloda.fast.ui.R
|
import dev.meloda.fast.ui.R
|
||||||
import dev.meloda.fast.ui.common.LocalSizeConfig
|
|
||||||
import dev.meloda.fast.ui.model.DeviceSize
|
|
||||||
import dev.meloda.fast.ui.model.SizeConfig
|
|
||||||
import dev.meloda.fast.ui.model.ThemeConfig
|
|
||||||
import dev.meloda.fast.ui.theme.AppTheme
|
|
||||||
import dev.meloda.fast.ui.theme.LocalNavController
|
import dev.meloda.fast.ui.theme.LocalNavController
|
||||||
import dev.meloda.fast.ui.theme.LocalNavRootController
|
import dev.meloda.fast.ui.theme.LocalNavRootController
|
||||||
import dev.meloda.fast.ui.theme.LocalThemeConfig
|
|
||||||
import dev.meloda.fast.ui.theme.LocalUser
|
|
||||||
import dev.meloda.fast.ui.util.ImmutableList.Companion.toImmutableList
|
|
||||||
import dev.meloda.fast.ui.util.isNeedToEnableDarkMode
|
|
||||||
import org.koin.androidx.compose.koinViewModel
|
|
||||||
import org.koin.compose.koinInject
|
|
||||||
|
|
||||||
@OptIn(ExperimentalPermissionsApi::class)
|
|
||||||
@Composable
|
@Composable
|
||||||
fun RootScreen(
|
fun RootScreen(
|
||||||
toggleLongPollService: (enable: Boolean, inBackground: Boolean?) -> Unit,
|
navController: NavHostController = rememberNavController(),
|
||||||
toggleOnlineService: (enable: Boolean) -> Unit
|
viewModel: MainViewModel
|
||||||
) {
|
) {
|
||||||
val resources = LocalResources.current
|
val context = LocalContext.current
|
||||||
|
val startDestination by viewModel.startDestination.collectAsStateWithLifecycle()
|
||||||
|
val isNeedToOpenAuth by viewModel.isNeedToReplaceWithAuth.collectAsStateWithLifecycle()
|
||||||
|
val isNeedToShowDeniedDialog by viewModel.isNeedToShowNotificationsDeniedDialog.collectAsStateWithLifecycle()
|
||||||
|
val isNeedToShowRationaleDialog by viewModel.isNeedToShowNotificationsRationaleDialog.collectAsStateWithLifecycle()
|
||||||
|
|
||||||
val userSettings: UserSettings = koinInject()
|
LaunchedEffect(isNeedToOpenAuth) {
|
||||||
val longPollController: LongPollController = koinInject()
|
if (isNeedToOpenAuth) {
|
||||||
|
viewModel.onNavigatedToAuth()
|
||||||
val longPollCurrentState by longPollController.currentState.collectAsStateWithLifecycle()
|
navController.navigateToAuth(clearBackStack = true)
|
||||||
val longPollStateToApply by longPollController.stateToApply.collectAsStateWithLifecycle()
|
}
|
||||||
|
|
||||||
val viewModel: MainViewModel = koinViewModel<MainViewModelImpl>()
|
|
||||||
LaunchedEffect(viewModel) {
|
|
||||||
Log.d("VM_CREATE", "RootScreen(): viewModel: $viewModel")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val currentUser: VkUser? by viewModel.currentUser.collectAsStateWithLifecycle()
|
if (isNeedToShowDeniedDialog) {
|
||||||
|
AlertDialog(
|
||||||
val permissionState =
|
onDismissRequest = viewModel::onNotificationsDeniedDialogDismissed,
|
||||||
rememberPermissionState(permission = Manifest.permission.POST_NOTIFICATIONS)
|
title = { Text(text = stringResource(id = R.string.warning)) },
|
||||||
|
text = { Text(text = stringResource(id = R.string.background_long_poll_denied_text)) },
|
||||||
val isNeedToCheckPermission by viewModel.isNeedToCheckNotificationsPermission.collectAsStateWithLifecycle()
|
confirmButton = {
|
||||||
val isNeedToRequestPermission by viewModel.isNeedToRequestNotifications.collectAsStateWithLifecycle()
|
TextButton(onClick = viewModel::onNotificationsDeniedDialogConfirmClicked) {
|
||||||
|
Text(text = stringResource(id = R.string.action_request))
|
||||||
LaunchedEffect(isNeedToCheckPermission) {
|
|
||||||
if (isNeedToCheckPermission) {
|
|
||||||
viewModel.onPermissionCheckStatus(permissionState.status)
|
|
||||||
|
|
||||||
if (permissionState.status.isGranted) {
|
|
||||||
if (longPollCurrentState == LongPollState.InApp) {
|
|
||||||
toggleLongPollService(false, null)
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
toggleLongPollService(true, true)
|
dismissButton = {
|
||||||
}
|
TextButton(onClick = viewModel::onNotificationsDeniedDialogCancelClicked) {
|
||||||
}
|
Text(text = stringResource(id = R.string.action_disable))
|
||||||
}
|
}
|
||||||
|
},
|
||||||
LaunchedEffect(isNeedToRequestPermission) {
|
properties = DialogProperties(
|
||||||
if (isNeedToRequestPermission) {
|
dismissOnBackPress = false,
|
||||||
viewModel.onPermissionsRequested()
|
dismissOnClickOutside = false
|
||||||
permissionState.launchPermissionRequest()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LifecycleResumeEffect(longPollStateToApply) {
|
|
||||||
Log.d("LongPollMainActivity", "longPollStateToApply: $longPollStateToApply")
|
|
||||||
if (longPollStateToApply != LongPollState.Background) {
|
|
||||||
if (longPollStateToApply.isLaunched() && longPollCurrentState.isLaunched()
|
|
||||||
&& longPollCurrentState != longPollStateToApply
|
|
||||||
) {
|
|
||||||
toggleLongPollService(false, null)
|
|
||||||
Log.d("LongPoll", "recreate()")
|
|
||||||
}
|
|
||||||
|
|
||||||
toggleLongPollService(
|
|
||||||
longPollStateToApply.isLaunched(),
|
|
||||||
longPollStateToApply == LongPollState.Background
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
onPauseOrDispose {}
|
|
||||||
}
|
|
||||||
|
|
||||||
val sendOnline by userSettings.sendOnlineStatus.collectAsStateWithLifecycle()
|
|
||||||
LifecycleResumeEffect(sendOnline) {
|
|
||||||
toggleOnlineService(sendOnline)
|
|
||||||
|
|
||||||
onPauseOrDispose {
|
|
||||||
toggleOnlineService(false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val deviceWidthDp = remember(true) {
|
|
||||||
resources.displayMetrics.widthPixels.pxToDp()
|
|
||||||
}
|
|
||||||
val deviceHeightDp = remember(true) {
|
|
||||||
resources.displayMetrics.heightPixels.pxToDp()
|
|
||||||
}
|
|
||||||
|
|
||||||
val deviceWidthSize by remember(deviceWidthDp) {
|
|
||||||
derivedStateOf {
|
|
||||||
when {
|
|
||||||
deviceWidthDp <= 360 -> DeviceSize.Small
|
|
||||||
deviceWidthDp <= 600 -> DeviceSize.Compact
|
|
||||||
deviceWidthDp <= 840 -> DeviceSize.Medium
|
|
||||||
else -> DeviceSize.Expanded
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val deviceHeightSize by remember(deviceHeightDp) {
|
|
||||||
derivedStateOf {
|
|
||||||
when {
|
|
||||||
deviceHeightDp <= 480 -> DeviceSize.Small
|
|
||||||
deviceHeightDp <= 700 -> DeviceSize.Compact
|
|
||||||
deviceHeightDp <= 900 -> DeviceSize.Medium
|
|
||||||
else -> DeviceSize.Expanded
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
val sizeConfig by remember(deviceWidthSize, deviceHeightSize) {
|
|
||||||
mutableStateOf(
|
|
||||||
SizeConfig(
|
|
||||||
widthSize = deviceWidthSize,
|
|
||||||
heightSize = deviceHeightSize
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
val darkMode by userSettings.darkMode.collectAsStateWithLifecycle()
|
if (isNeedToShowRationaleDialog) {
|
||||||
val dynamicColors by userSettings.enableDynamicColors.collectAsStateWithLifecycle()
|
AlertDialog(
|
||||||
val amoledDark by userSettings.enableAmoledDark.collectAsStateWithLifecycle()
|
onDismissRequest = viewModel::onNotificationsRationaleDialogDismissed,
|
||||||
val enableBlur by userSettings.useBlur.collectAsStateWithLifecycle()
|
title = { Text(text = stringResource(id = R.string.warning)) },
|
||||||
val enableMultiline by userSettings.enableMultiline.collectAsStateWithLifecycle()
|
text = { Text(text = stringResource(id = R.string.background_long_poll_rationale_text)) },
|
||||||
val useSystemFont by userSettings.useSystemFont.collectAsStateWithLifecycle()
|
confirmButton = {
|
||||||
val enableAnimations by userSettings.enableAnimations.collectAsStateWithLifecycle()
|
TextButton(
|
||||||
|
onClick = {
|
||||||
val setDarkMode = isNeedToEnableDarkMode(darkMode = darkMode)
|
context.startActivity(
|
||||||
|
Intent(
|
||||||
val themeConfig by remember(
|
Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
|
||||||
darkMode,
|
Uri.fromParts("package", context.packageName, null)
|
||||||
dynamicColors,
|
)
|
||||||
amoledDark,
|
)
|
||||||
enableBlur,
|
}
|
||||||
enableMultiline,
|
) {
|
||||||
setDarkMode,
|
Text(text = stringResource(id = R.string.title_settings))
|
||||||
useSystemFont
|
}
|
||||||
) {
|
},
|
||||||
derivedStateOf {
|
dismissButton = {
|
||||||
ThemeConfig(
|
TextButton(onClick = viewModel::onNotificationsRationaleDialogCancelClicked) {
|
||||||
darkMode = setDarkMode,
|
Text(text = stringResource(id = R.string.action_disable))
|
||||||
dynamicColors = dynamicColors,
|
}
|
||||||
selectedColorScheme = 0,
|
},
|
||||||
amoledDark = amoledDark,
|
properties = DialogProperties(
|
||||||
enableBlur = enableBlur,
|
dismissOnBackPress = false,
|
||||||
enableMultiline = enableMultiline,
|
dismissOnClickOutside = false
|
||||||
useSystemFont = useSystemFont,
|
|
||||||
enableAnimations = enableAnimations
|
|
||||||
)
|
)
|
||||||
}
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
CompositionLocalProvider(
|
if (startDestination != null) {
|
||||||
LocalThemeConfig provides themeConfig,
|
CompositionLocalProvider(
|
||||||
LocalSizeConfig provides sizeConfig,
|
LocalNavRootController provides navController,
|
||||||
LocalUser provides currentUser
|
LocalNavController provides navController
|
||||||
) {
|
|
||||||
AppTheme(
|
|
||||||
useDarkTheme = themeConfig.darkMode,
|
|
||||||
useDynamicColors = themeConfig.dynamicColors,
|
|
||||||
selectedColorScheme = themeConfig.selectedColorScheme,
|
|
||||||
useAmoledBackground = themeConfig.amoledDark,
|
|
||||||
useSystemFont = themeConfig.useSystemFont
|
|
||||||
) {
|
) {
|
||||||
val navController: NavHostController = rememberNavController()
|
NavHost(
|
||||||
val activity = LocalActivity.current
|
navController = navController,
|
||||||
val context = LocalContext.current
|
startDestination = requireNotNull(startDestination),
|
||||||
val startDestination by viewModel.startDestination.collectAsStateWithLifecycle()
|
enterTransition = { fadeIn(animationSpec = tween(200)) },
|
||||||
val isNeedToOpenAuth by viewModel.isNeedToReplaceWithAuth.collectAsStateWithLifecycle()
|
exitTransition = { fadeOut(animationSpec = tween(200)) }
|
||||||
val isNeedToShowDeniedDialog by viewModel.isNeedToShowNotificationsDeniedDialog.collectAsStateWithLifecycle()
|
) {
|
||||||
val isNeedToShowRationaleDialog by viewModel.isNeedToShowNotificationsRationaleDialog.collectAsStateWithLifecycle()
|
authNavGraph(
|
||||||
|
onNavigateToMain = {
|
||||||
LaunchedEffect(isNeedToOpenAuth) {
|
viewModel.onUserAuthenticated()
|
||||||
if (isNeedToOpenAuth) {
|
navController.navigateToMain()
|
||||||
viewModel.onNavigatedToAuth()
|
|
||||||
navController.navigateToAuth(clearBackStack = true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isNeedToShowDeniedDialog) {
|
|
||||||
AlertDialog(
|
|
||||||
onDismissRequest = viewModel::onNotificationsDeniedDialogDismissed,
|
|
||||||
title = { Text(text = stringResource(id = R.string.warning)) },
|
|
||||||
text = { Text(text = stringResource(id = R.string.background_long_poll_denied_text)) },
|
|
||||||
confirmButton = {
|
|
||||||
TextButton(onClick = viewModel::onNotificationsDeniedDialogConfirmClicked) {
|
|
||||||
Text(text = stringResource(id = R.string.action_request))
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
dismissButton = {
|
navController = navController
|
||||||
TextButton(onClick = viewModel::onNotificationsDeniedDialogCancelClicked) {
|
|
||||||
Text(text = stringResource(id = R.string.action_disable))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
properties = DialogProperties(
|
|
||||||
dismissOnBackPress = false,
|
|
||||||
dismissOnClickOutside = false
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
if (isNeedToShowRationaleDialog) {
|
mainScreen(
|
||||||
AlertDialog(
|
onError = viewModel::onError,
|
||||||
onDismissRequest = viewModel::onNotificationsRationaleDialogDismissed,
|
onSettingsButtonClicked = navController::navigateToSettings,
|
||||||
title = { Text(text = stringResource(id = R.string.warning)) },
|
onNavigateToMessagesHistory = navController::navigateToMessagesHistory,
|
||||||
text = { Text(text = stringResource(id = R.string.background_long_poll_rationale_text)) },
|
onPhotoClicked = { url -> navController.navigateToPhotoView(listOf(url)) },
|
||||||
confirmButton = {
|
onMessageClicked = navController::navigateToMessagesHistory,
|
||||||
TextButton(
|
onNavigateToCreateChat = navController::navigateToCreateChat
|
||||||
onClick = {
|
|
||||||
context.startActivity(
|
|
||||||
Intent(
|
|
||||||
Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
|
|
||||||
Uri.fromParts("package", context.packageName, null)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
) {
|
|
||||||
Text(text = stringResource(id = R.string.title_settings))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
dismissButton = {
|
|
||||||
TextButton(onClick = viewModel::onNotificationsRationaleDialogCancelClicked) {
|
|
||||||
Text(text = stringResource(id = R.string.action_disable))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
properties = DialogProperties(
|
|
||||||
dismissOnBackPress = false,
|
|
||||||
dismissOnClickOutside = false
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
if (startDestination != null) {
|
messagesHistoryScreen(
|
||||||
CompositionLocalProvider(
|
onError = viewModel::onError,
|
||||||
LocalNavRootController provides navController,
|
onBack = navController::navigateUp,
|
||||||
LocalNavController provides navController
|
onNavigateToChatMaterials = navController::navigateToChatMaterials
|
||||||
) {
|
)
|
||||||
var photoViewerInfo by rememberSaveable {
|
chatMaterialsScreen(
|
||||||
mutableStateOf<Pair<List<String>, Int?>?>(null)
|
onBack = navController::navigateUp,
|
||||||
}
|
onPhotoClicked = { url -> navController.navigateToPhotoView(listOf(url)) }
|
||||||
|
)
|
||||||
|
createChatScreen(
|
||||||
|
onChatCreated = { conversationId ->
|
||||||
|
navController.popBackStack()
|
||||||
|
navController.navigateToMessagesHistory(conversationId)
|
||||||
|
},
|
||||||
|
navController = navController
|
||||||
|
)
|
||||||
|
|
||||||
val captchaRedirectUri by AppSettings.getCaptchaRedirectUriFlow()
|
settingsScreen(
|
||||||
.collectAsStateWithLifecycle()
|
onBack = navController::navigateUp,
|
||||||
|
onLogOutButtonClicked = { navController.navigateToAuth(true) },
|
||||||
|
onLanguageItemClicked = navController::navigateToLanguagePicker
|
||||||
|
)
|
||||||
|
languagePickerScreen(onBack = navController::navigateUp)
|
||||||
|
|
||||||
Box(modifier = Modifier.fillMaxSize()) {
|
photoViewScreen(onBack = navController::navigateUp)
|
||||||
NavHost(
|
|
||||||
navController = navController,
|
|
||||||
startDestination = requireNotNull(startDestination),
|
|
||||||
enterTransition = { fadeIn(animationSpec = tween(200)) },
|
|
||||||
exitTransition = { fadeOut(animationSpec = tween(200)) }
|
|
||||||
) {
|
|
||||||
authNavGraph(
|
|
||||||
onNavigateToMain = {
|
|
||||||
viewModel.onUserAuthenticated()
|
|
||||||
navController.navigateToMain()
|
|
||||||
},
|
|
||||||
onNavigateToSettings = navController::navigateToSettings,
|
|
||||||
navController = navController
|
|
||||||
)
|
|
||||||
|
|
||||||
mainScreen(
|
|
||||||
onError = viewModel::onError,
|
|
||||||
onSettingsButtonClicked = navController::navigateToSettings,
|
|
||||||
onNavigateToMessagesHistory = navController::navigateToMessagesHistory,
|
|
||||||
onPhotoClicked = { url ->
|
|
||||||
photoViewerInfo = listOf(url) to null
|
|
||||||
},
|
|
||||||
onMessageClicked = navController::navigateToMessagesHistory,
|
|
||||||
onNavigateToCreateChat = navController::navigateToCreateChat,
|
|
||||||
)
|
|
||||||
|
|
||||||
messagesHistoryScreen(
|
|
||||||
onError = viewModel::onError,
|
|
||||||
onBack = navController::navigateUp,
|
|
||||||
onNavigateToChatMaterials = navController::navigateToChatMaterials,
|
|
||||||
onNavigateToPhotoViewer = { photos, index ->
|
|
||||||
photoViewerInfo = photos to index
|
|
||||||
}
|
|
||||||
)
|
|
||||||
chatMaterialsScreen(
|
|
||||||
onBack = navController::navigateUp,
|
|
||||||
onPhotoClicked = { url ->
|
|
||||||
photoViewerInfo = listOf(url) to null
|
|
||||||
}
|
|
||||||
)
|
|
||||||
createChatScreen(
|
|
||||||
onChatCreated = { convoId ->
|
|
||||||
navController.popBackStack()
|
|
||||||
navController.navigateToMessagesHistory(convoId)
|
|
||||||
},
|
|
||||||
navController = navController
|
|
||||||
)
|
|
||||||
|
|
||||||
settingsScreen(
|
|
||||||
onBack = navController::navigateUp,
|
|
||||||
onLogOutButtonClicked = { navController.navigateToAuth(true) },
|
|
||||||
onLanguageItemClicked = navController::navigateToLanguagePicker,
|
|
||||||
onRestartRequired = {
|
|
||||||
activity?.let {
|
|
||||||
val intent = Intent(activity, MainActivity::class.java)
|
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
|
|
||||||
activity.startActivity(intent)
|
|
||||||
activity.finish()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
languagePickerScreen(onBack = navController::navigateUp)
|
|
||||||
}
|
|
||||||
|
|
||||||
PhotoViewDialog(
|
|
||||||
photoViewerInfo = photoViewerInfo?.let { info ->
|
|
||||||
info.first.toImmutableList() to info.second
|
|
||||||
},
|
|
||||||
onDismiss = { photoViewerInfo = null }
|
|
||||||
)
|
|
||||||
|
|
||||||
CaptchaScreen(
|
|
||||||
captchaRedirectUri = captchaRedirectUri,
|
|
||||||
onBack = {
|
|
||||||
AppSettings.setCaptchaResult(CaptchaTokenResult.Cancelled)
|
|
||||||
},
|
|
||||||
onResult = { result ->
|
|
||||||
AppSettings.setCaptchaResult(
|
|
||||||
CaptchaTokenResult.Success(result)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,10 +32,10 @@ import kotlinx.coroutines.Job
|
|||||||
import kotlinx.coroutines.SupervisorJob
|
import kotlinx.coroutines.SupervisorJob
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.suspendCancellableCoroutine
|
|
||||||
import org.koin.android.ext.android.inject
|
import org.koin.android.ext.android.inject
|
||||||
import kotlin.coroutines.CoroutineContext
|
import kotlin.coroutines.CoroutineContext
|
||||||
import kotlin.coroutines.resume
|
import kotlin.coroutines.resume
|
||||||
|
import kotlin.coroutines.suspendCoroutine
|
||||||
import kotlin.time.Duration.Companion.seconds
|
import kotlin.time.Duration.Companion.seconds
|
||||||
|
|
||||||
class LongPollingService : Service() {
|
class LongPollingService : Service() {
|
||||||
@@ -204,7 +204,7 @@ class LongPollingService : Service() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getServerInfo(): VkLongPollData? = suspendCancellableCoroutine {
|
private suspend fun getServerInfo(): VkLongPollData? = suspendCoroutine {
|
||||||
longPollUseCase.getLongPollServer(
|
longPollUseCase.getLongPollServer(
|
||||||
needPts = true,
|
needPts = true,
|
||||||
version = VkConstants.LP_VERSION
|
version = VkConstants.LP_VERSION
|
||||||
@@ -224,7 +224,7 @@ class LongPollingService : Service() {
|
|||||||
|
|
||||||
private suspend fun getUpdatesResponse(
|
private suspend fun getUpdatesResponse(
|
||||||
server: VkLongPollData
|
server: VkLongPollData
|
||||||
): LongPollUpdates? = suspendCancellableCoroutine {
|
): LongPollUpdates? = suspendCoroutine {
|
||||||
longPollUseCase.getLongPollUpdates(
|
longPollUseCase.getLongPollUpdates(
|
||||||
serverUrl = "https://${server.server}",
|
serverUrl = "https://${server.server}",
|
||||||
key = server.key,
|
key = server.key,
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import android.content.Context
|
|||||||
import androidx.core.app.NotificationCompat
|
import androidx.core.app.NotificationCompat
|
||||||
import androidx.core.app.NotificationManagerCompat
|
import androidx.core.app.NotificationManagerCompat
|
||||||
import dev.meloda.fast.common.AppConstants
|
import dev.meloda.fast.common.AppConstants
|
||||||
import dev.meloda.fast.ui.R
|
import dev.meloda.fast.ui.R as UiR
|
||||||
|
|
||||||
object NotificationsUtils {
|
object NotificationsUtils {
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ object NotificationsUtils {
|
|||||||
actions: List<NotificationCompat.Action> = emptyList(),
|
actions: List<NotificationCompat.Action> = emptyList(),
|
||||||
): NotificationCompat.Builder {
|
): NotificationCompat.Builder {
|
||||||
val builder = NotificationCompat.Builder(context, channelId)
|
val builder = NotificationCompat.Builder(context, channelId)
|
||||||
.setSmallIcon(R.drawable.ic_fast_logo)
|
.setSmallIcon(UiR.drawable.ic_fast_logo)
|
||||||
.setContentTitle(title)
|
.setContentTitle(title)
|
||||||
.setPriority(priority.value)
|
.setPriority(priority.value)
|
||||||
.setContentIntent(contentIntent)
|
.setContentIntent(contentIntent)
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<network-security-config xmlns:tools="http://schemas.android.com/tools">
|
<network-security-config xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<!-- Allow cleartext network traffic -->
|
||||||
<base-config
|
<base-config
|
||||||
cleartextTrafficPermitted="false"
|
cleartextTrafficPermitted="true"
|
||||||
tools:ignore="InsecureBaseConfiguration">
|
tools:ignore="InsecureBaseConfiguration">
|
||||||
<trust-anchors>
|
<trust-anchors>
|
||||||
<!-- Trust pre-installed CAs -->
|
<!-- Trust pre-installed CAs -->
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ class AndroidApplicationComposeConventionPlugin : Plugin<Project> {
|
|||||||
with(target) {
|
with(target) {
|
||||||
apply(plugin = "com.android.application")
|
apply(plugin = "com.android.application")
|
||||||
apply(plugin = "org.jetbrains.kotlin.plugin.compose")
|
apply(plugin = "org.jetbrains.kotlin.plugin.compose")
|
||||||
apply(plugin = "com.github.skydoves.compose.stability.analyzer")
|
|
||||||
|
|
||||||
val extension = extensions.getByType<ApplicationExtension>()
|
val extension = extensions.getByType<ApplicationExtension>()
|
||||||
configureAndroidCompose(extension)
|
configureAndroidCompose(extension)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import com.android.build.api.dsl.ApplicationExtension
|
import com.android.build.api.dsl.ApplicationExtension
|
||||||
import dev.meloda.fast.configureKotlinAndroid
|
import dev.meloda.fast.configureKotlinAndroid
|
||||||
import dev.meloda.fast.getVersionInt
|
import dev.meloda.fast.libs
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.kotlin.dsl.configure
|
import org.gradle.kotlin.dsl.configure
|
||||||
@@ -10,18 +10,12 @@ class AndroidApplicationConventionPlugin : Plugin<Project> {
|
|||||||
with(target) {
|
with(target) {
|
||||||
with(pluginManager) {
|
with(pluginManager) {
|
||||||
apply("com.android.application")
|
apply("com.android.application")
|
||||||
|
apply("org.jetbrains.kotlin.android")
|
||||||
}
|
}
|
||||||
|
|
||||||
extensions.configure<ApplicationExtension> {
|
extensions.configure<ApplicationExtension> {
|
||||||
configureKotlinAndroid(this)
|
configureKotlinAndroid(this)
|
||||||
defaultConfig {
|
defaultConfig.targetSdk = libs.findVersion("targetSdk").get().toString().toInt()
|
||||||
minSdk = getVersionInt("minSdk")
|
|
||||||
compileSdk = getVersionInt("compileSdk")
|
|
||||||
targetSdk = getVersionInt("targetSdk")
|
|
||||||
}
|
|
||||||
lint {
|
|
||||||
abortOnError = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +1,18 @@
|
|||||||
import com.android.build.api.dsl.LibraryExtension
|
import com.android.build.gradle.LibraryExtension
|
||||||
import dev.meloda.fast.configureAndroidCompose
|
import dev.meloda.fast.configureAndroidCompose
|
||||||
import dev.meloda.fast.getVersionInt
|
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.kotlin.dsl.apply
|
import org.gradle.kotlin.dsl.apply
|
||||||
import org.gradle.kotlin.dsl.configure
|
import org.gradle.kotlin.dsl.getByType
|
||||||
|
|
||||||
class AndroidLibraryComposeConventionPlugin : Plugin<Project> {
|
class AndroidLibraryComposeConventionPlugin : Plugin<Project> {
|
||||||
override fun apply(target: Project) {
|
override fun apply(target: Project) {
|
||||||
with(target) {
|
with(target) {
|
||||||
apply(plugin = "com.android.library")
|
apply(plugin = "com.android.library")
|
||||||
apply(plugin = "org.jetbrains.kotlin.plugin.compose")
|
apply(plugin = "org.jetbrains.kotlin.plugin.compose")
|
||||||
apply(plugin = "com.github.skydoves.compose.stability.analyzer")
|
|
||||||
|
|
||||||
extensions.configure<LibraryExtension> {
|
val extension = extensions.getByType<LibraryExtension>()
|
||||||
configureAndroidCompose(this)
|
configureAndroidCompose(extension)
|
||||||
androidResources.enable = false
|
|
||||||
defaultConfig {
|
|
||||||
minSdk = getVersionInt("minSdk")
|
|
||||||
compileSdk = getVersionInt("compileSdk")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import com.android.build.api.dsl.LibraryExtension
|
|
||||||
import com.android.build.api.variant.LibraryAndroidComponentsExtension
|
import com.android.build.api.variant.LibraryAndroidComponentsExtension
|
||||||
|
import com.android.build.gradle.LibraryExtension
|
||||||
import dev.meloda.fast.configureKotlinAndroid
|
import dev.meloda.fast.configureKotlinAndroid
|
||||||
import dev.meloda.fast.disableUnnecessaryAndroidTests
|
import dev.meloda.fast.disableUnnecessaryAndroidTests
|
||||||
import dev.meloda.fast.getVersionInt
|
import dev.meloda.fast.libs
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.kotlin.dsl.configure
|
import org.gradle.kotlin.dsl.configure
|
||||||
@@ -14,20 +14,15 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {
|
|||||||
with(target) {
|
with(target) {
|
||||||
with(pluginManager) {
|
with(pluginManager) {
|
||||||
apply("com.android.library")
|
apply("com.android.library")
|
||||||
|
apply("org.jetbrains.kotlin.android")
|
||||||
apply("org.jetbrains.kotlin.plugin.parcelize")
|
apply("org.jetbrains.kotlin.plugin.parcelize")
|
||||||
apply("org.jetbrains.kotlin.plugin.serialization")
|
apply("org.jetbrains.kotlin.plugin.serialization")
|
||||||
}
|
}
|
||||||
|
|
||||||
extensions.configure<LibraryExtension> {
|
extensions.configure<LibraryExtension> {
|
||||||
configureKotlinAndroid(this)
|
configureKotlinAndroid(this)
|
||||||
androidResources.enable = false
|
defaultConfig.targetSdk = libs.findVersion("targetSdk").get().toString().toInt()
|
||||||
defaultConfig {
|
defaultConfig.testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
minSdk = getVersionInt("minSdk")
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
||||||
}
|
|
||||||
lint {
|
|
||||||
abortOnError = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
extensions.configure<LibraryAndroidComponentsExtension> {
|
extensions.configure<LibraryAndroidComponentsExtension> {
|
||||||
disableUnnecessaryAndroidTests(target)
|
disableUnnecessaryAndroidTests(target)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import com.android.build.api.dsl.TestExtension
|
import com.android.build.gradle.TestExtension
|
||||||
import dev.meloda.fast.configureKotlinAndroid
|
import dev.meloda.fast.configureKotlinAndroid
|
||||||
import dev.meloda.fast.getVersionInt
|
import dev.meloda.fast.libs
|
||||||
import org.gradle.api.Plugin
|
import org.gradle.api.Plugin
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.kotlin.dsl.configure
|
import org.gradle.kotlin.dsl.configure
|
||||||
@@ -10,15 +10,12 @@ class AndroidTestConventionPlugin : Plugin<Project> {
|
|||||||
with(target) {
|
with(target) {
|
||||||
with(pluginManager) {
|
with(pluginManager) {
|
||||||
apply("com.android.test")
|
apply("com.android.test")
|
||||||
|
apply("org.jetbrains.kotlin.android")
|
||||||
}
|
}
|
||||||
|
|
||||||
extensions.configure<TestExtension> {
|
extensions.configure<TestExtension> {
|
||||||
configureKotlinAndroid(this)
|
configureKotlinAndroid(this)
|
||||||
defaultConfig {
|
defaultConfig.targetSdk = libs.findVersion("targetSdk").get().toString().toInt()
|
||||||
minSdk = getVersionInt("minSdk")
|
|
||||||
compileSdk = getVersionInt("compileSdk")
|
|
||||||
targetSdk = getVersionInt("targetSdk")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,10 +5,12 @@ import org.gradle.api.Project
|
|||||||
import org.gradle.kotlin.dsl.dependencies
|
import org.gradle.kotlin.dsl.dependencies
|
||||||
|
|
||||||
internal fun Project.configureAndroidCompose(
|
internal fun Project.configureAndroidCompose(
|
||||||
commonExtension: CommonExtension,
|
commonExtension: CommonExtension<*, *, *, *, *, *>,
|
||||||
) {
|
) {
|
||||||
commonExtension.apply {
|
commonExtension.apply {
|
||||||
buildFeatures.compose = true
|
buildFeatures {
|
||||||
|
compose = true
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
val bom = libs.findLibrary("compose-bom").get()
|
val bom = libs.findLibrary("compose-bom").get()
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
package dev.meloda.fast
|
package dev.meloda.fast
|
||||||
|
|
||||||
import com.android.build.api.dsl.ApplicationExtension
|
|
||||||
import com.android.build.api.dsl.CommonExtension
|
import com.android.build.api.dsl.CommonExtension
|
||||||
import com.android.build.api.dsl.CompileOptions
|
|
||||||
import com.android.build.api.dsl.LibraryExtension
|
|
||||||
import org.gradle.api.JavaVersion
|
import org.gradle.api.JavaVersion
|
||||||
import org.gradle.api.Project
|
import org.gradle.api.Project
|
||||||
import org.gradle.api.plugins.JavaPluginExtension
|
import org.gradle.api.plugins.JavaPluginExtension
|
||||||
@@ -16,25 +13,24 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinBaseExtension
|
|||||||
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
|
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
|
||||||
|
|
||||||
internal fun Project.configureKotlinAndroid(
|
internal fun Project.configureKotlinAndroid(
|
||||||
commonExtension: CommonExtension,
|
commonExtension: CommonExtension<*, *, *, *, *, *>,
|
||||||
) {
|
) {
|
||||||
when (commonExtension) {
|
|
||||||
is ApplicationExtension -> commonExtension.compileOptions(buildCompileOptions())
|
|
||||||
is LibraryExtension -> commonExtension.compileOptions(buildCompileOptions())
|
|
||||||
}
|
|
||||||
|
|
||||||
commonExtension.apply {
|
commonExtension.apply {
|
||||||
compileSdk = getVersionInt("compileSdk")
|
compileSdk = libs.findVersion("compileSdk").get().toString().toInt()
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdk = libs.findVersion("minSdk").get().toString().toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_21
|
||||||
|
targetCompatibility = JavaVersion.VERSION_21
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configureKotlin<KotlinAndroidProjectExtension>()
|
configureKotlin<KotlinAndroidProjectExtension>()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun buildCompileOptions(): CompileOptions.() -> Unit = {
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_21
|
|
||||||
targetCompatibility = JavaVersion.VERSION_21
|
|
||||||
}
|
|
||||||
|
|
||||||
internal fun Project.configureKotlinJvm() {
|
internal fun Project.configureKotlinJvm() {
|
||||||
extensions.configure<JavaPluginExtension> {
|
extensions.configure<JavaPluginExtension> {
|
||||||
sourceCompatibility = JavaVersion.VERSION_21
|
sourceCompatibility = JavaVersion.VERSION_21
|
||||||
@@ -51,7 +47,7 @@ private inline fun <reified T : KotlinBaseExtension> Project.configureKotlin() =
|
|||||||
when (this) {
|
when (this) {
|
||||||
is KotlinAndroidProjectExtension -> compilerOptions
|
is KotlinAndroidProjectExtension -> compilerOptions
|
||||||
is KotlinJvmProjectExtension -> compilerOptions
|
is KotlinJvmProjectExtension -> compilerOptions
|
||||||
else -> throw IllegalArgumentException("Unsupported project extension $this ${T::class}")
|
else -> TODO("Unsupported project extension $this ${T::class}")
|
||||||
}.apply {
|
}.apply {
|
||||||
jvmTarget = JvmTarget.JVM_21
|
jvmTarget = JvmTarget.JVM_21
|
||||||
allWarningsAsErrors = warningsAsErrors.toBoolean()
|
allWarningsAsErrors = warningsAsErrors.toBoolean()
|
||||||
@@ -59,9 +55,7 @@ private inline fun <reified T : KotlinBaseExtension> Project.configureKotlin() =
|
|||||||
"-opt-in=kotlin.RequiresOptIn",
|
"-opt-in=kotlin.RequiresOptIn",
|
||||||
// Enable experimental coroutines APIs, including Flow
|
// Enable experimental coroutines APIs, including Flow
|
||||||
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
||||||
"-opt-in=kotlinx.coroutines.FlowPreview",
|
"-opt-in=kotlinx.coroutines.FlowPreview"
|
||||||
"-Xannotation-default-target=param-property",
|
|
||||||
"-Xcontext-parameters"
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,8 +7,3 @@ import org.gradle.kotlin.dsl.getByType
|
|||||||
|
|
||||||
val Project.libs
|
val Project.libs
|
||||||
get(): VersionCatalog = extensions.getByType<VersionCatalogsExtension>().named("libs")
|
get(): VersionCatalog = extensions.getByType<VersionCatalogsExtension>().named("libs")
|
||||||
|
|
||||||
|
|
||||||
fun Project.getVersionInt(alias: String): Int {
|
|
||||||
return libs.findVersion(alias).get().requiredVersion.toInt()
|
|
||||||
}
|
|
||||||
|
|||||||
+1
-2
@@ -1,6 +1,7 @@
|
|||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application) apply false
|
alias(libs.plugins.android.application) apply false
|
||||||
alias(libs.plugins.android.library) apply false
|
alias(libs.plugins.android.library) apply false
|
||||||
|
alias(libs.plugins.kotlin.android) apply false
|
||||||
alias(libs.plugins.kotlin.parcelize) apply false
|
alias(libs.plugins.kotlin.parcelize) apply false
|
||||||
alias(libs.plugins.kotlin.serialization) apply false
|
alias(libs.plugins.kotlin.serialization) apply false
|
||||||
alias(libs.plugins.kotlin.jvm) apply false
|
alias(libs.plugins.kotlin.jvm) apply false
|
||||||
@@ -8,6 +9,4 @@ plugins {
|
|||||||
alias(libs.plugins.room) apply false
|
alias(libs.plugins.room) apply false
|
||||||
alias(libs.plugins.ksp) apply false
|
alias(libs.plugins.ksp) apply false
|
||||||
alias(libs.plugins.module.graph) apply true
|
alias(libs.plugins.module.graph) apply true
|
||||||
alias(libs.plugins.versions) apply true
|
|
||||||
alias(libs.plugins.stability.analyzer) apply false
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ object AppConstants {
|
|||||||
|
|
||||||
const val INSTALL_APP_MIME_TYPE = "application/vnd.android.package-archive"
|
const val INSTALL_APP_MIME_TYPE = "application/vnd.android.package-archive"
|
||||||
|
|
||||||
const val API_VERSION = "5.263"
|
const val API_VERSION = "5.238"
|
||||||
const val URL_OAUTH = "https://oauth.vk.ru"
|
const val URL_OAUTH = "https://oauth.vk.com"
|
||||||
const val URL_API = "https://api.vk.ru/method"
|
const val URL_API = "https://api.vk.com/method"
|
||||||
|
|
||||||
const val NOTIFICATION_CHANNEL_UNCATEGORIZED = "uncategorized"
|
const val NOTIFICATION_CHANNEL_UNCATEGORIZED = "uncategorized"
|
||||||
const val NOTIFICATION_CHANNEL_LONG_POLLING = "long_polling"
|
const val NOTIFICATION_CHANNEL_LONG_POLLING = "long_polling"
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
package dev.meloda.fast.common.extensions
|
package dev.meloda.fast.common.extensions
|
||||||
|
|
||||||
import android.os.Build
|
|
||||||
import android.os.Bundle
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Job
|
import kotlinx.coroutines.Job
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
@@ -13,7 +11,6 @@ import kotlinx.coroutines.flow.launchIn
|
|||||||
import kotlinx.coroutines.flow.onEach
|
import kotlinx.coroutines.flow.onEach
|
||||||
import kotlinx.coroutines.flow.onStart
|
import kotlinx.coroutines.flow.onStart
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.flow.update
|
||||||
import kotlin.reflect.KClass
|
|
||||||
import kotlin.time.Duration
|
import kotlin.time.Duration
|
||||||
import kotlin.time.Duration.Companion.seconds
|
import kotlin.time.Duration.Companion.seconds
|
||||||
|
|
||||||
@@ -26,20 +23,6 @@ fun <T> MutableList<T>.addIf(element: T, condition: () -> Boolean) {
|
|||||||
if (condition.invoke()) add(element)
|
if (condition.invoke()) add(element)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T> MutableList<T>.removeIfCompat(condition: (T) -> Boolean): Boolean {
|
|
||||||
var removed = false
|
|
||||||
|
|
||||||
val each = iterator()
|
|
||||||
while (each.hasNext()) {
|
|
||||||
if (condition(each.next())) {
|
|
||||||
each.remove()
|
|
||||||
removed = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return removed
|
|
||||||
}
|
|
||||||
|
|
||||||
fun <T> Flow<T>.listenValue(
|
fun <T> Flow<T>.listenValue(
|
||||||
coroutineScope: CoroutineScope,
|
coroutineScope: CoroutineScope,
|
||||||
action: suspend (T) -> Unit
|
action: suspend (T) -> Unit
|
||||||
@@ -106,7 +89,7 @@ fun Any.asInt(): Int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun Any.asLong(): Long {
|
fun Any.asLong(): Long {
|
||||||
return when (this) {
|
return when(this) {
|
||||||
is Number -> this.toLong()
|
is Number -> this.toLong()
|
||||||
|
|
||||||
else -> throw IllegalArgumentException("Object is not numeric")
|
else -> throw IllegalArgumentException("Object is not numeric")
|
||||||
@@ -120,33 +103,3 @@ fun <T> Any.toList(mapper: (old: Any) -> T): List<T> {
|
|||||||
else -> emptyList()
|
else -> emptyList()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T> Bundle.getParcelableCompat(key: String, clazz: Class<T>): T? {
|
|
||||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
|
||||||
getParcelable(key, clazz)
|
|
||||||
} else {
|
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
getParcelable(key)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun <T : Any> Bundle.getParcelableCompat(key: String, clazz: KClass<T>): T? {
|
|
||||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
|
||||||
getParcelable(key, clazz.java)
|
|
||||||
} else {
|
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
getParcelable(key)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
infix fun ClosedRange<Int>.collidesWith(other: ClosedRange<Int>): Boolean {
|
|
||||||
return this.start < other.endInclusive && other.start < this.endInclusive
|
|
||||||
}
|
|
||||||
|
|
||||||
operator fun ClosedRange<Int>.minus(other: ClosedRange<Int>): ClosedRange<Int> {
|
|
||||||
return (this.start - other.start)..(this.endInclusive - other.endInclusive)
|
|
||||||
}
|
|
||||||
|
|
||||||
operator fun ClosedRange<Int>.minus(other: Int): ClosedRange<Int> {
|
|
||||||
return (this.start - other)..(this.endInclusive - other)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,22 +1,19 @@
|
|||||||
package dev.meloda.fast.common.util
|
package dev.meloda.fast.common.util
|
||||||
|
|
||||||
|
import android.content.res.Resources
|
||||||
import com.conena.nanokt.jvm.util.dayOfMonth
|
import com.conena.nanokt.jvm.util.dayOfMonth
|
||||||
|
import com.conena.nanokt.jvm.util.hour
|
||||||
import com.conena.nanokt.jvm.util.hourOfDay
|
import com.conena.nanokt.jvm.util.hourOfDay
|
||||||
import com.conena.nanokt.jvm.util.millisecond
|
import com.conena.nanokt.jvm.util.millisecond
|
||||||
import com.conena.nanokt.jvm.util.minute
|
import com.conena.nanokt.jvm.util.minute
|
||||||
import com.conena.nanokt.jvm.util.month
|
import com.conena.nanokt.jvm.util.month
|
||||||
import com.conena.nanokt.jvm.util.second
|
import com.conena.nanokt.jvm.util.second
|
||||||
import com.conena.nanokt.jvm.util.year
|
import com.conena.nanokt.jvm.util.year
|
||||||
|
import dev.meloda.fast.common.R
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
import kotlin.time.Clock
|
|
||||||
import kotlin.time.Duration.Companion.days
|
|
||||||
import kotlin.time.Duration.Companion.hours
|
|
||||||
import kotlin.time.Duration.Companion.minutes
|
|
||||||
import kotlin.time.Duration.Companion.seconds
|
|
||||||
import kotlin.time.Instant
|
|
||||||
|
|
||||||
object TimeUtils {
|
object TimeUtils {
|
||||||
|
|
||||||
@@ -30,11 +27,7 @@ object TimeUtils {
|
|||||||
}.timeInMillis
|
}.timeInMillis
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLocalizedDate(
|
fun getLocalizedDate(resources: Resources, date: Long): String {
|
||||||
date: Long,
|
|
||||||
yesterday: () -> String,
|
|
||||||
today: () -> String
|
|
||||||
): String {
|
|
||||||
val now = Calendar.getInstance()
|
val now = Calendar.getInstance()
|
||||||
val then = Calendar.getInstance().also { it.timeInMillis = date }
|
val then = Calendar.getInstance().also { it.timeInMillis = date }
|
||||||
|
|
||||||
@@ -43,41 +36,48 @@ object TimeUtils {
|
|||||||
now.month != then.month -> "dd MMMM"
|
now.month != then.month -> "dd MMMM"
|
||||||
now.dayOfMonth != then.dayOfMonth -> {
|
now.dayOfMonth != then.dayOfMonth -> {
|
||||||
if (now.dayOfMonth - then.dayOfMonth == 1) {
|
if (now.dayOfMonth - then.dayOfMonth == 1) {
|
||||||
return yesterday()
|
return resources.getString(R.string.yesterday)
|
||||||
} else {
|
} else {
|
||||||
"dd MMMM"
|
"dd MMMM"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> return today()
|
else -> return resources.getString(R.string.today)
|
||||||
}
|
}
|
||||||
|
|
||||||
return SimpleDateFormat(pattern, Locale.getDefault()).format(date)
|
return SimpleDateFormat(pattern, Locale.getDefault()).format(date)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLocalizedTime(
|
fun getLocalizedTime(resources: Resources, date: Long): String {
|
||||||
date: Long,
|
val now = Calendar.getInstance()
|
||||||
yearShort: () -> String,
|
val then = Calendar.getInstance().also { it.timeInMillis = date }
|
||||||
monthShort: () -> String,
|
|
||||||
weekShort: () -> String,
|
|
||||||
dayShort: () -> String,
|
|
||||||
minuteShort: () -> String,
|
|
||||||
secondShort: () -> String,
|
|
||||||
now: () -> String
|
|
||||||
): String {
|
|
||||||
val now = Clock.System.now()
|
|
||||||
val then = Instant.fromEpochMilliseconds(date)
|
|
||||||
val diff = now - then
|
|
||||||
|
|
||||||
return when {
|
return when {
|
||||||
diff > 365.days -> "${diff.inWholeDays / 365}${yearShort().lowercase()}"
|
now.year != then.year -> {
|
||||||
diff > 30.days -> "${diff.inWholeDays / 30}${monthShort().lowercase()}"
|
"${now.year - then.year}${resources.getString(R.string.year_short).lowercase()}"
|
||||||
diff > 7.days -> "${diff.inWholeDays / 7}${weekShort().lowercase()}"
|
}
|
||||||
diff > 1.days -> "${diff.inWholeDays}${dayShort().lowercase()}"
|
|
||||||
diff > 1.hours -> "${diff.inWholeHours}h"
|
now.month != then.month -> {
|
||||||
diff > 1.minutes -> "${diff.inWholeMinutes}${minuteShort().lowercase()}"
|
"${now.month - then.month}${resources.getString(R.string.month_short).lowercase()}"
|
||||||
diff > 1.seconds -> "${diff.inWholeSeconds}${secondShort().lowercase()}"
|
}
|
||||||
else -> now().lowercase()
|
|
||||||
|
now.dayOfMonth != then.dayOfMonth -> {
|
||||||
|
val change = now.dayOfMonth - then.dayOfMonth
|
||||||
|
|
||||||
|
if (change % 7 == 0) {
|
||||||
|
"${change / 7}${resources.getString(R.string.week_short).lowercase()}"
|
||||||
|
} else {
|
||||||
|
"$change${resources.getString(R.string.day_short).lowercase()}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
now.hour == then.hour && now.minute == then.minute -> {
|
||||||
|
resources.getString(R.string.time_now).lowercase()
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> {
|
||||||
|
SimpleDateFormat("HH:mm", Locale.getDefault()).format(date)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
package dev.meloda.fast.common.util
|
|
||||||
|
|
||||||
import java.net.URLEncoder
|
|
||||||
import java.security.MessageDigest
|
|
||||||
|
|
||||||
fun String.urlEncode(encoding: String = "utf-8"): String {
|
|
||||||
return URLEncoder.encode(this, encoding)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String.sha256() = this.hashString("SHA-256")
|
|
||||||
|
|
||||||
fun String.hashString(algorithm: String): String {
|
|
||||||
return MessageDigest
|
|
||||||
.getInstance(algorithm)
|
|
||||||
.digest(this.toByteArray())
|
|
||||||
.fold("") { str, it -> str + "%02x".format(it) }
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="yesterday">Вчера</string>
|
||||||
|
<string name="today">Сегодня</string>
|
||||||
|
<string name="year_short">Г</string>
|
||||||
|
<string name="month_short">М</string>
|
||||||
|
<string name="week_short">Н</string>
|
||||||
|
<string name="day_short">Д</string>
|
||||||
|
<string name="time_now">Сейчас</string>
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="yesterday">Yesterday</string>
|
||||||
|
<string name="today">Today</string>
|
||||||
|
<string name="year_short">Y</string>
|
||||||
|
<string name="month_short">M</string>
|
||||||
|
<string name="week_short">W</string>
|
||||||
|
<string name="day_short">D</string>
|
||||||
|
<string name="time_now">Now</string>
|
||||||
|
</resources>
|
||||||
@@ -14,6 +14,7 @@ dependencies {
|
|||||||
api(projects.core.network)
|
api(projects.core.network)
|
||||||
api(projects.core.database)
|
api(projects.core.database)
|
||||||
|
|
||||||
|
// TODO: 11/08/2024, Danil Nikolaev: remove?
|
||||||
implementation(libs.retrofit)
|
implementation(libs.retrofit)
|
||||||
implementation(libs.eithernet)
|
implementation(libs.eithernet)
|
||||||
implementation(libs.koin.android)
|
implementation(libs.koin.android)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package dev.meloda.fast.data
|
package dev.meloda.fast.data
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.data.VkMessageData
|
import dev.meloda.fast.model.api.data.VkMessageData
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
@@ -16,9 +16,9 @@ class VkGroupsMap(
|
|||||||
|
|
||||||
fun groups(): List<VkGroupDomain> = map.values.toList()
|
fun groups(): List<VkGroupDomain> = map.values.toList()
|
||||||
|
|
||||||
fun convoGroup(convo: VkConvo): VkGroupDomain? =
|
fun conversationGroup(conversation: VkConversation): VkGroupDomain? =
|
||||||
if (!convo.peerType.isGroup()) null
|
if (!conversation.peerType.isGroup()) null
|
||||||
else map[abs(convo.id)]
|
else map[abs(conversation.id)]
|
||||||
|
|
||||||
fun messageActionGroup(message: VkMessage): VkGroupDomain? =
|
fun messageActionGroup(message: VkMessage): VkGroupDomain? =
|
||||||
if (message.actionMemberId == null || message.actionMemberId!! >= 0) null
|
if (message.actionMemberId == null || message.actionMemberId!! >= 0) null
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package dev.meloda.fast.data
|
|||||||
|
|
||||||
import dev.meloda.fast.data.UserConfig.userId
|
import dev.meloda.fast.data.UserConfig.userId
|
||||||
import dev.meloda.fast.model.api.domain.VkContactDomain
|
import dev.meloda.fast.model.api.domain.VkContactDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
@@ -13,7 +13,7 @@ object VkMemoryCache {
|
|||||||
private val users: HashMap<Long, VkUser> = hashMapOf()
|
private val users: HashMap<Long, VkUser> = hashMapOf()
|
||||||
private val groups: HashMap<Long, VkGroupDomain> = hashMapOf()
|
private val groups: HashMap<Long, VkGroupDomain> = hashMapOf()
|
||||||
private val messages: HashMap<Long, VkMessage> = hashMapOf()
|
private val messages: HashMap<Long, VkMessage> = hashMapOf()
|
||||||
private val convos: HashMap<Long, VkConvo> = hashMapOf()
|
private val conversations: HashMap<Long, VkConversation> = hashMapOf()
|
||||||
private val contacts: HashMap<Long, VkContactDomain> = hashMapOf()
|
private val contacts: HashMap<Long, VkContactDomain> = hashMapOf()
|
||||||
|
|
||||||
fun appendUsers(users: List<VkUser>) {
|
fun appendUsers(users: List<VkUser>) {
|
||||||
@@ -28,9 +28,9 @@ object VkMemoryCache {
|
|||||||
messages.forEach { message -> VkMemoryCache.messages[message.id] = message }
|
messages.forEach { message -> VkMemoryCache.messages[message.id] = message }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun appendConvos(convos: List<VkConvo>) {
|
fun appendConversations(conversations: List<VkConversation>) {
|
||||||
convos.forEach { convo ->
|
conversations.forEach { conversation ->
|
||||||
VkMemoryCache.convos[convo.id] = convo
|
VkMemoryCache.conversations[conversation.id] = conversation
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,8 +50,8 @@ object VkMemoryCache {
|
|||||||
messages[messageId] = message
|
messages[messageId] = message
|
||||||
}
|
}
|
||||||
|
|
||||||
operator fun set(convoId: Long, convo: VkConvo) {
|
operator fun set(conversationId: Long, conversation: VkConversation) {
|
||||||
convos[convoId] = convo
|
conversations[conversationId] = conversation
|
||||||
}
|
}
|
||||||
|
|
||||||
operator fun set(contactId: Long, contact: VkContactDomain) {
|
operator fun set(contactId: Long, contact: VkContactDomain) {
|
||||||
@@ -94,16 +94,16 @@ object VkMemoryCache {
|
|||||||
return ids.mapNotNull { id -> messages[id] }
|
return ids.mapNotNull { id -> messages[id] }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getConvo(id: Long): VkConvo? {
|
fun getConversation(id: Long): VkConversation? {
|
||||||
return getConvos(id).firstOrNull()
|
return getConversations(id).firstOrNull()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getConvos(vararg ids: Long): List<VkConvo> {
|
fun getConversations(vararg ids: Long): List<VkConversation> {
|
||||||
return getConvos(ids.toList())
|
return getConversations(ids.toList())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getConvos(ids: List<Long>): List<VkConvo> {
|
fun getConversations(ids: List<Long>): List<VkConversation> {
|
||||||
return ids.mapNotNull { id -> convos[id] }
|
return ids.mapNotNull { id -> conversations[id] }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getContact(id: Long): VkContactDomain? {
|
fun getContact(id: Long): VkContactDomain? {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
package dev.meloda.fast.data
|
package dev.meloda.fast.data
|
||||||
|
|
||||||
|
import dev.meloda.fast.data.UserConfig.userId
|
||||||
import dev.meloda.fast.model.api.data.VkMessageData
|
import dev.meloda.fast.model.api.data.VkMessageData
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
|
|
||||||
@@ -15,9 +16,9 @@ class VkUsersMap(
|
|||||||
|
|
||||||
fun users(): List<VkUser> = map.values.toList()
|
fun users(): List<VkUser> = map.values.toList()
|
||||||
|
|
||||||
fun convoUser(convo: VkConvo): VkUser? =
|
fun conversationUser(conversation: VkConversation): VkUser? =
|
||||||
if (!convo.peerType.isUser()) null
|
if (!conversation.peerType.isUser()) null
|
||||||
else map[convo.id]
|
else map[conversation.id]
|
||||||
|
|
||||||
fun messageActionUser(message: VkMessage): VkUser? =
|
fun messageActionUser(message: VkMessage): VkUser? =
|
||||||
if (message.actionMemberId == null || message.actionMemberId!! <= 0) null
|
if (message.actionMemberId == null || message.actionMemberId!! <= 0) null
|
||||||
@@ -35,7 +36,7 @@ class VkUsersMap(
|
|||||||
if (message.fromId > 0) map[message.fromId]
|
if (message.fromId > 0) map[message.fromId]
|
||||||
else null
|
else null
|
||||||
|
|
||||||
fun user(userId: Long): VkUser? = map[userId]
|
fun user(userid: Long): VkUser? = map[userId]
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
|
|||||||
+10
-10
@@ -1,25 +1,25 @@
|
|||||||
package dev.meloda.fast.data.api.convos
|
package dev.meloda.fast.data.api.conversations
|
||||||
|
|
||||||
import com.slack.eithernet.ApiResult
|
import com.slack.eithernet.ApiResult
|
||||||
import dev.meloda.fast.model.ConvosFilter
|
import dev.meloda.fast.model.ConversationsFilter
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.network.RestApiErrorDomain
|
import dev.meloda.fast.network.RestApiErrorDomain
|
||||||
|
|
||||||
interface ConvosRepository {
|
interface ConversationsRepository {
|
||||||
|
|
||||||
suspend fun storeConvos(convos: List<VkConvo>)
|
suspend fun storeConversations(conversations: List<VkConversation>)
|
||||||
|
|
||||||
suspend fun getConvos(
|
suspend fun getConversations(
|
||||||
count: Int?,
|
count: Int?,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
filter: ConvosFilter
|
filter: ConversationsFilter
|
||||||
): ApiResult<List<VkConvo>, RestApiErrorDomain>
|
): ApiResult<List<VkConversation>, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun getConvosById(
|
suspend fun getConversationsById(
|
||||||
peerIds: List<Long>,
|
peerIds: List<Long>,
|
||||||
extended: Boolean? = null,
|
extended: Boolean? = null,
|
||||||
fields: String? = null
|
fields: String? = null
|
||||||
): ApiResult<List<VkConvo>, RestApiErrorDomain>
|
): ApiResult<List<VkConversation>, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun delete(peerId: Long): ApiResult<Long, RestApiErrorDomain>
|
suspend fun delete(peerId: Long): ApiResult<Long, RestApiErrorDomain>
|
||||||
suspend fun pin(peerId: Long): ApiResult<Int, RestApiErrorDomain>
|
suspend fun pin(peerId: Long): ApiResult<Int, RestApiErrorDomain>
|
||||||
+44
-50
@@ -1,51 +1,51 @@
|
|||||||
package dev.meloda.fast.data.api.convos
|
package dev.meloda.fast.data.api.conversations
|
||||||
|
|
||||||
import com.slack.eithernet.ApiResult
|
import com.slack.eithernet.ApiResult
|
||||||
import dev.meloda.fast.common.VkConstants
|
import dev.meloda.fast.common.VkConstants
|
||||||
import dev.meloda.fast.data.VkGroupsMap
|
import dev.meloda.fast.data.VkGroupsMap
|
||||||
import dev.meloda.fast.data.VkMemoryCache
|
import dev.meloda.fast.data.VkMemoryCache
|
||||||
import dev.meloda.fast.data.VkUsersMap
|
import dev.meloda.fast.data.VkUsersMap
|
||||||
import dev.meloda.fast.database.dao.ConvoDao
|
import dev.meloda.fast.database.dao.ConversationDao
|
||||||
import dev.meloda.fast.database.dao.GroupDao
|
import dev.meloda.fast.database.dao.GroupDao
|
||||||
import dev.meloda.fast.database.dao.MessageDao
|
import dev.meloda.fast.database.dao.MessageDao
|
||||||
import dev.meloda.fast.database.dao.UserDao
|
import dev.meloda.fast.database.dao.UserDao
|
||||||
import dev.meloda.fast.model.ConvosFilter
|
import dev.meloda.fast.model.ConversationsFilter
|
||||||
import dev.meloda.fast.model.api.data.VkContactData
|
import dev.meloda.fast.model.api.data.VkContactData
|
||||||
import dev.meloda.fast.model.api.data.VkGroupData
|
import dev.meloda.fast.model.api.data.VkGroupData
|
||||||
import dev.meloda.fast.model.api.data.VkUserData
|
import dev.meloda.fast.model.api.data.VkUserData
|
||||||
import dev.meloda.fast.model.api.data.asDomain
|
import dev.meloda.fast.model.api.data.asDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
import dev.meloda.fast.model.api.domain.asEntity
|
import dev.meloda.fast.model.api.domain.asEntity
|
||||||
import dev.meloda.fast.model.api.requests.ConvosGetRequest
|
import dev.meloda.fast.model.api.requests.ConversationsGetRequest
|
||||||
import dev.meloda.fast.network.RestApiErrorDomain
|
import dev.meloda.fast.network.RestApiErrorDomain
|
||||||
import dev.meloda.fast.network.mapApiDefault
|
import dev.meloda.fast.network.mapApiDefault
|
||||||
import dev.meloda.fast.network.mapApiResult
|
import dev.meloda.fast.network.mapApiResult
|
||||||
import dev.meloda.fast.network.service.convos.ConvosService
|
import dev.meloda.fast.network.service.conversations.ConversationsService
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class ConvosRepositoryImpl(
|
class ConversationsRepositoryImpl(
|
||||||
private val convosService: ConvosService,
|
private val conversationsService: ConversationsService,
|
||||||
private val messageDao: MessageDao,
|
private val messageDao: MessageDao,
|
||||||
private val userDao: UserDao,
|
private val userDao: UserDao,
|
||||||
private val groupDao: GroupDao,
|
private val groupDao: GroupDao,
|
||||||
private val convoDao: ConvoDao
|
private val conversationDao: ConversationDao
|
||||||
) : ConvosRepository {
|
) : ConversationsRepository {
|
||||||
|
|
||||||
override suspend fun storeConvos(convos: List<VkConvo>) {
|
override suspend fun storeConversations(conversations: List<VkConversation>) {
|
||||||
convoDao.insertAll(convos.map(VkConvo::asEntity))
|
conversationDao.insertAll(conversations.map(VkConversation::asEntity))
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun getConvos(
|
override suspend fun getConversations(
|
||||||
count: Int?,
|
count: Int?,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
filter: ConvosFilter
|
filter: ConversationsFilter
|
||||||
): ApiResult<List<VkConvo>, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<List<VkConversation>, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
val requestModel = ConvosGetRequest(
|
val requestModel = ConversationsGetRequest(
|
||||||
count = count,
|
count = count,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
fields = VkConstants.ALL_FIELDS,
|
fields = VkConstants.ALL_FIELDS,
|
||||||
@@ -54,7 +54,7 @@ class ConvosRepositoryImpl(
|
|||||||
startMessageId = null
|
startMessageId = null
|
||||||
)
|
)
|
||||||
|
|
||||||
convosService.getConvos(requestModel.map).mapApiResult(
|
conversationsService.getConversations(requestModel.map).mapApiResult(
|
||||||
successMapper = { apiResponse ->
|
successMapper = { apiResponse ->
|
||||||
val response = apiResponse.requireResponse()
|
val response = apiResponse.requireResponse()
|
||||||
|
|
||||||
@@ -69,39 +69,33 @@ class ConvosRepositoryImpl(
|
|||||||
VkMemoryCache.appendGroups(groupsList)
|
VkMemoryCache.appendGroups(groupsList)
|
||||||
VkMemoryCache.appendContacts(contactsList)
|
VkMemoryCache.appendContacts(contactsList)
|
||||||
|
|
||||||
val convos = response.items.map { item ->
|
val conversations = response.items.map { item ->
|
||||||
val lastMessage = item.lastMessage?.asDomain()?.let { message ->
|
val lastMessage = item.lastMessage?.asDomain()?.let { message ->
|
||||||
message.copy(
|
message.copy(
|
||||||
user = usersMap.messageUser(message),
|
user = usersMap.messageUser(message),
|
||||||
group = groupsMap.messageGroup(message),
|
group = groupsMap.messageGroup(message),
|
||||||
actionUser = usersMap.messageActionUser(message),
|
actionUser = usersMap.messageActionUser(message),
|
||||||
actionGroup = groupsMap.messageActionGroup(message),
|
actionGroup = groupsMap.messageActionGroup(message)
|
||||||
replyMessage = message.replyMessage?.copy(
|
|
||||||
user = usersMap.messageUser(message),
|
|
||||||
group = groupsMap.messageGroup(message),
|
|
||||||
actionUser = usersMap.messageActionUser(message),
|
|
||||||
actionGroup = groupsMap.messageActionGroup(message),
|
|
||||||
)
|
|
||||||
).also { VkMemoryCache[message.id] = it }
|
).also { VkMemoryCache[message.id] = it }
|
||||||
}
|
}
|
||||||
item.convo.asDomain(lastMessage).let { convo ->
|
item.conversation.asDomain(lastMessage).let { conversation ->
|
||||||
convo.copy(
|
conversation.copy(
|
||||||
user = usersMap.convoUser(convo),
|
user = usersMap.conversationUser(conversation),
|
||||||
group = groupsMap.convoGroup(convo)
|
group = groupsMap.conversationGroup(conversation)
|
||||||
).also { VkMemoryCache[convo.id] = it }
|
).also { VkMemoryCache[conversation.id] = it }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val messages = convos.mapNotNull(VkConvo::lastMessage)
|
val messages = conversations.mapNotNull(VkConversation::lastMessage)
|
||||||
|
|
||||||
launch(Dispatchers.IO) {
|
launch(Dispatchers.IO) {
|
||||||
convoDao.insertAll(convos.map(VkConvo::asEntity))
|
conversationDao.insertAll(conversations.map(VkConversation::asEntity))
|
||||||
messageDao.insertAll(messages.map(VkMessage::asEntity))
|
messageDao.insertAll(messages.map(VkMessage::asEntity))
|
||||||
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
||||||
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
||||||
}
|
}
|
||||||
|
|
||||||
convos
|
conversations
|
||||||
},
|
},
|
||||||
errorMapper = { error ->
|
errorMapper = { error ->
|
||||||
error?.toDomain()
|
error?.toDomain()
|
||||||
@@ -109,11 +103,11 @@ class ConvosRepositoryImpl(
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun getConvosById(
|
override suspend fun getConversationsById(
|
||||||
peerIds: List<Long>,
|
peerIds: List<Long>,
|
||||||
extended: Boolean?,
|
extended: Boolean?,
|
||||||
fields: String?
|
fields: String?
|
||||||
): ApiResult<List<VkConvo>, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<List<VkConversation>, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
val requestParams = mutableMapOf(
|
val requestParams = mutableMapOf(
|
||||||
"peer_ids" to peerIds.joinToString(separator = ",")
|
"peer_ids" to peerIds.joinToString(separator = ",")
|
||||||
).apply {
|
).apply {
|
||||||
@@ -121,7 +115,7 @@ class ConvosRepositoryImpl(
|
|||||||
fields?.let { this["fields"] = it }
|
fields?.let { this["fields"] = it }
|
||||||
}
|
}
|
||||||
|
|
||||||
convosService.getConvosById(requestParams).mapApiResult(
|
conversationsService.getConversationsById(requestParams).mapApiResult(
|
||||||
successMapper = { apiResponse ->
|
successMapper = { apiResponse ->
|
||||||
val response = apiResponse.requireResponse()
|
val response = apiResponse.requireResponse()
|
||||||
|
|
||||||
@@ -132,17 +126,17 @@ class ConvosRepositoryImpl(
|
|||||||
val usersMap = VkUsersMap.forUsers(profilesList)
|
val usersMap = VkUsersMap.forUsers(profilesList)
|
||||||
val groupsMap = VkGroupsMap.forGroups(groupsList)
|
val groupsMap = VkGroupsMap.forGroups(groupsList)
|
||||||
|
|
||||||
val convos = response.items.map { item ->
|
val conversations = response.items.map { item ->
|
||||||
item.asDomain().let { convo ->
|
item.asDomain().let { conversation ->
|
||||||
convo.copy(
|
conversation.copy(
|
||||||
user = usersMap.convoUser(convo),
|
user = usersMap.conversationUser(conversation),
|
||||||
group = groupsMap.convoGroup(convo)
|
group = groupsMap.conversationGroup(conversation)
|
||||||
).also { VkMemoryCache[convo.id] = it }
|
).also { VkMemoryCache[conversation.id] = it }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
launch(Dispatchers.IO) {
|
launch(Dispatchers.IO) {
|
||||||
convoDao.insertAll(convos.map(VkConvo::asEntity))
|
conversationDao.insertAll(conversations.map(VkConversation::asEntity))
|
||||||
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
||||||
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
||||||
}
|
}
|
||||||
@@ -151,7 +145,7 @@ class ConvosRepositoryImpl(
|
|||||||
VkMemoryCache.appendGroups(groupsList)
|
VkMemoryCache.appendGroups(groupsList)
|
||||||
VkMemoryCache.appendContacts(contactsList)
|
VkMemoryCache.appendContacts(contactsList)
|
||||||
|
|
||||||
convos
|
conversations
|
||||||
},
|
},
|
||||||
errorMapper = { error ->
|
errorMapper = { error ->
|
||||||
error?.toDomain()
|
error?.toDomain()
|
||||||
@@ -161,7 +155,7 @@ class ConvosRepositoryImpl(
|
|||||||
|
|
||||||
override suspend fun delete(peerId: Long): ApiResult<Long, RestApiErrorDomain> =
|
override suspend fun delete(peerId: Long): ApiResult<Long, RestApiErrorDomain> =
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
convosService.delete(mapOf("peer_id" to peerId.toString())).mapApiResult(
|
conversationsService.delete(mapOf("peer_id" to peerId.toString())).mapApiResult(
|
||||||
successMapper = { response -> response.requireResponse().lastDeletedId },
|
successMapper = { response -> response.requireResponse().lastDeletedId },
|
||||||
errorMapper = { error -> error?.toDomain() }
|
errorMapper = { error -> error?.toDomain() }
|
||||||
)
|
)
|
||||||
@@ -170,19 +164,19 @@ class ConvosRepositoryImpl(
|
|||||||
override suspend fun pin(
|
override suspend fun pin(
|
||||||
peerId: Long
|
peerId: Long
|
||||||
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
convosService.pin(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
conversationsService.pin(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun unpin(
|
override suspend fun unpin(
|
||||||
peerId: Long
|
peerId: Long
|
||||||
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
convosService.unpin(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
conversationsService.unpin(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun reorderPinned(
|
override suspend fun reorderPinned(
|
||||||
peerIds: List<Long>
|
peerIds: List<Long>
|
||||||
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
convosService
|
conversationsService
|
||||||
.reorderPinned(mapOf("peer_ids" to peerIds.joinToString(",")))
|
.reorderPinned(mapOf("peer_ids" to peerIds.joinToString(",")))
|
||||||
.mapApiDefault()
|
.mapApiDefault()
|
||||||
}
|
}
|
||||||
@@ -190,12 +184,12 @@ class ConvosRepositoryImpl(
|
|||||||
override suspend fun archive(
|
override suspend fun archive(
|
||||||
peerId: Long
|
peerId: Long
|
||||||
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
convosService.archive(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
conversationsService.archive(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun unarchive(
|
override suspend fun unarchive(
|
||||||
peerId: Long
|
peerId: Long
|
||||||
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<Int, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
convosService.unarchive(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
conversationsService.unarchive(mapOf("peer_id" to peerId.toString())).mapApiDefault()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
package dev.meloda.fast.data.api.messages
|
package dev.meloda.fast.data.api.messages
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
|
|
||||||
data class MessagesHistoryInfo(
|
data class MessagesHistoryInfo(
|
||||||
val messages: List<VkMessage>,
|
val messages: List<VkMessage>,
|
||||||
val convos: List<VkConvo>
|
val conversations: List<VkConversation>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ import dev.meloda.fast.model.api.data.VkChatData
|
|||||||
import dev.meloda.fast.model.api.domain.VkAttachment
|
import dev.meloda.fast.model.api.domain.VkAttachment
|
||||||
import dev.meloda.fast.model.api.domain.VkAttachmentHistoryMessage
|
import dev.meloda.fast.model.api.domain.VkAttachmentHistoryMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import dev.meloda.fast.model.api.responses.MessagesGetConvoMembersResponse
|
import dev.meloda.fast.model.api.responses.MessagesGetConversationMembersResponse
|
||||||
import dev.meloda.fast.model.api.responses.MessagesGetReadPeersResponse
|
|
||||||
import dev.meloda.fast.model.api.responses.MessagesSendResponse
|
import dev.meloda.fast.model.api.responses.MessagesSendResponse
|
||||||
import dev.meloda.fast.network.RestApiErrorDomain
|
import dev.meloda.fast.network.RestApiErrorDomain
|
||||||
|
|
||||||
@@ -15,7 +14,7 @@ interface MessagesRepository {
|
|||||||
suspend fun storeMessages(messages: List<VkMessage>)
|
suspend fun storeMessages(messages: List<VkMessage>)
|
||||||
|
|
||||||
suspend fun getHistory(
|
suspend fun getHistory(
|
||||||
convoId: Long,
|
conversationId: Long,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
count: Int?
|
count: Int?
|
||||||
): ApiResult<MessagesHistoryInfo, RestApiErrorDomain>
|
): ApiResult<MessagesHistoryInfo, RestApiErrorDomain>
|
||||||
@@ -33,9 +32,8 @@ interface MessagesRepository {
|
|||||||
peerId: Long,
|
peerId: Long,
|
||||||
randomId: Long,
|
randomId: Long,
|
||||||
message: String?,
|
message: String?,
|
||||||
forward: String?,
|
replyTo: Long?,
|
||||||
attachments: List<VkAttachment>?,
|
attachments: List<VkAttachment>?
|
||||||
formatData: VkMessage.FormatData?
|
|
||||||
): ApiResult<MessagesSendResponse, RestApiErrorDomain>
|
): ApiResult<MessagesSendResponse, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun markAsRead(
|
suspend fun markAsRead(
|
||||||
@@ -99,21 +97,16 @@ interface MessagesRepository {
|
|||||||
fields: String? = null
|
fields: String? = null
|
||||||
): ApiResult<VkChatData, RestApiErrorDomain>
|
): ApiResult<VkChatData, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun getConvoMembers(
|
suspend fun getConversationMembers(
|
||||||
peerId: Long,
|
peerId: Long,
|
||||||
offset: Int? = null,
|
offset: Int? = null,
|
||||||
count: Int? = null,
|
count: Int? = null,
|
||||||
extended: Boolean? = null,
|
extended: Boolean? = null,
|
||||||
fields: String? = null
|
fields: String? = null
|
||||||
): ApiResult<MessagesGetConvoMembersResponse, RestApiErrorDomain>
|
): ApiResult<MessagesGetConversationMembersResponse, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun removeChatUser(
|
suspend fun removeChatUser(
|
||||||
chatId: Long,
|
chatId: Long,
|
||||||
memberId: Long
|
memberId: Long
|
||||||
): ApiResult<Int, RestApiErrorDomain>
|
): ApiResult<Int, RestApiErrorDomain>
|
||||||
|
|
||||||
suspend fun getMessageReadPeers(
|
|
||||||
peerId: Long,
|
|
||||||
cmId: Long
|
|
||||||
): ApiResult<MessagesGetReadPeersResponse, RestApiErrorDomain>
|
|
||||||
}
|
}
|
||||||
|
|||||||
+29
-67
@@ -5,7 +5,7 @@ import dev.meloda.fast.common.VkConstants
|
|||||||
import dev.meloda.fast.data.VkGroupsMap
|
import dev.meloda.fast.data.VkGroupsMap
|
||||||
import dev.meloda.fast.data.VkMemoryCache
|
import dev.meloda.fast.data.VkMemoryCache
|
||||||
import dev.meloda.fast.data.VkUsersMap
|
import dev.meloda.fast.data.VkUsersMap
|
||||||
import dev.meloda.fast.database.dao.ConvoDao
|
import dev.meloda.fast.database.dao.ConversationDao
|
||||||
import dev.meloda.fast.database.dao.GroupDao
|
import dev.meloda.fast.database.dao.GroupDao
|
||||||
import dev.meloda.fast.database.dao.MessageDao
|
import dev.meloda.fast.database.dao.MessageDao
|
||||||
import dev.meloda.fast.database.dao.UserDao
|
import dev.meloda.fast.database.dao.UserDao
|
||||||
@@ -17,7 +17,7 @@ import dev.meloda.fast.model.api.data.VkUserData
|
|||||||
import dev.meloda.fast.model.api.data.asDomain
|
import dev.meloda.fast.model.api.data.asDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkAttachment
|
import dev.meloda.fast.model.api.domain.VkAttachment
|
||||||
import dev.meloda.fast.model.api.domain.VkAttachmentHistoryMessage
|
import dev.meloda.fast.model.api.domain.VkAttachmentHistoryMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
import dev.meloda.fast.model.api.domain.VkGroupDomain
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
@@ -27,7 +27,7 @@ import dev.meloda.fast.model.api.requests.MessagesDeleteRequest
|
|||||||
import dev.meloda.fast.model.api.requests.MessagesEditRequest
|
import dev.meloda.fast.model.api.requests.MessagesEditRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesGetByIdRequest
|
import dev.meloda.fast.model.api.requests.MessagesGetByIdRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesGetChatRequest
|
import dev.meloda.fast.model.api.requests.MessagesGetChatRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesGetConvoMembersRequest
|
import dev.meloda.fast.model.api.requests.MessagesGetConversationMembersRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesGetHistoryAttachmentsRequest
|
import dev.meloda.fast.model.api.requests.MessagesGetHistoryAttachmentsRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesGetHistoryRequest
|
import dev.meloda.fast.model.api.requests.MessagesGetHistoryRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesMarkAsImportantRequest
|
import dev.meloda.fast.model.api.requests.MessagesMarkAsImportantRequest
|
||||||
@@ -36,8 +36,7 @@ import dev.meloda.fast.model.api.requests.MessagesPinMessageRequest
|
|||||||
import dev.meloda.fast.model.api.requests.MessagesRemoveChatUserRequest
|
import dev.meloda.fast.model.api.requests.MessagesRemoveChatUserRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesSendRequest
|
import dev.meloda.fast.model.api.requests.MessagesSendRequest
|
||||||
import dev.meloda.fast.model.api.requests.MessagesUnpinMessageRequest
|
import dev.meloda.fast.model.api.requests.MessagesUnpinMessageRequest
|
||||||
import dev.meloda.fast.model.api.responses.MessagesGetConvoMembersResponse
|
import dev.meloda.fast.model.api.responses.MessagesGetConversationMembersResponse
|
||||||
import dev.meloda.fast.model.api.responses.MessagesGetReadPeersResponse
|
|
||||||
import dev.meloda.fast.model.api.responses.MessagesSendResponse
|
import dev.meloda.fast.model.api.responses.MessagesSendResponse
|
||||||
import dev.meloda.fast.network.RestApiErrorDomain
|
import dev.meloda.fast.network.RestApiErrorDomain
|
||||||
import dev.meloda.fast.network.mapApiDefault
|
import dev.meloda.fast.network.mapApiDefault
|
||||||
@@ -52,18 +51,18 @@ class MessagesRepositoryImpl(
|
|||||||
private val messageDao: MessageDao,
|
private val messageDao: MessageDao,
|
||||||
private val userDao: UserDao,
|
private val userDao: UserDao,
|
||||||
private val groupDao: GroupDao,
|
private val groupDao: GroupDao,
|
||||||
private val convoDao: ConvoDao
|
private val conversationDao: ConversationDao
|
||||||
) : MessagesRepository {
|
) : MessagesRepository {
|
||||||
|
|
||||||
override suspend fun getHistory(
|
override suspend fun getHistory(
|
||||||
convoId: Long,
|
conversationId: Long,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
count: Int?
|
count: Int?
|
||||||
): ApiResult<MessagesHistoryInfo, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<MessagesHistoryInfo, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
val requestModel = MessagesGetHistoryRequest(
|
val requestModel = MessagesGetHistoryRequest(
|
||||||
count = count,
|
count = count,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
peerId = convoId,
|
peerId = conversationId,
|
||||||
extended = true,
|
extended = true,
|
||||||
startMessageId = null,
|
startMessageId = null,
|
||||||
rev = null,
|
rev = null,
|
||||||
@@ -91,32 +90,24 @@ class MessagesRepositoryImpl(
|
|||||||
user = usersMap.messageUser(message),
|
user = usersMap.messageUser(message),
|
||||||
group = groupsMap.messageGroup(message),
|
group = groupsMap.messageGroup(message),
|
||||||
actionUser = usersMap.messageActionUser(message),
|
actionUser = usersMap.messageActionUser(message),
|
||||||
actionGroup = groupsMap.messageActionGroup(message),
|
actionGroup = groupsMap.messageActionGroup(message)
|
||||||
replyMessage = message.replyMessage.let { replyMessage ->
|
|
||||||
replyMessage?.copy(
|
|
||||||
user = usersMap.messageUser(replyMessage),
|
|
||||||
group = groupsMap.messageGroup(replyMessage),
|
|
||||||
actionUser = usersMap.messageActionUser(replyMessage),
|
|
||||||
actionGroup = groupsMap.messageActionGroup(replyMessage),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
).also { VkMemoryCache[message.id] = it }
|
).also { VkMemoryCache[message.id] = it }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val convos = response.convos.orEmpty().map { item ->
|
val conversations = response.conversations.orEmpty().map { item ->
|
||||||
val message = messages.firstOrNull { it.id == item.lastMessageId }
|
val message = messages.firstOrNull { it.id == item.lastMessageId }
|
||||||
item.asDomain(message)
|
item.asDomain(message)
|
||||||
.let { convo ->
|
.let { conversation ->
|
||||||
convo.copy(
|
conversation.copy(
|
||||||
user = usersMap.convoUser(convo),
|
user = usersMap.conversationUser(conversation),
|
||||||
group = groupsMap.convoGroup(convo)
|
group = groupsMap.conversationGroup(conversation)
|
||||||
).also { VkMemoryCache[convo.id] = it }
|
).also { VkMemoryCache[conversation.id] = it }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
launch(Dispatchers.IO) {
|
launch(Dispatchers.IO) {
|
||||||
convoDao.insertAll(convos.map(VkConvo::asEntity))
|
conversationDao.insertAll(conversations.map(VkConversation::asEntity))
|
||||||
messageDao.insertAll(messages.map(VkMessage::asEntity))
|
messageDao.insertAll(messages.map(VkMessage::asEntity))
|
||||||
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
userDao.insertAll(profilesList.map(VkUser::asEntity))
|
||||||
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
groupDao.insertAll(groupsList.map(VkGroupDomain::asEntity))
|
||||||
@@ -124,7 +115,7 @@ class MessagesRepositoryImpl(
|
|||||||
|
|
||||||
MessagesHistoryInfo(
|
MessagesHistoryInfo(
|
||||||
messages = messages,
|
messages = messages,
|
||||||
convos = convos
|
conversations = conversations
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
errorMapper = { error ->
|
errorMapper = { error ->
|
||||||
@@ -168,15 +159,7 @@ class MessagesRepositoryImpl(
|
|||||||
user = usersMap.messageUser(message),
|
user = usersMap.messageUser(message),
|
||||||
group = groupsMap.messageGroup(message),
|
group = groupsMap.messageGroup(message),
|
||||||
actionUser = usersMap.messageActionUser(message),
|
actionUser = usersMap.messageActionUser(message),
|
||||||
actionGroup = groupsMap.messageActionGroup(message),
|
actionGroup = groupsMap.messageActionGroup(message)
|
||||||
replyMessage = message.replyMessage?.asDomain().let { replyMessage ->
|
|
||||||
replyMessage?.copy(
|
|
||||||
user = usersMap.messageUser(replyMessage),
|
|
||||||
group = groupsMap.messageGroup(replyMessage),
|
|
||||||
actionUser = usersMap.messageActionUser(replyMessage),
|
|
||||||
actionGroup = groupsMap.messageActionGroup(replyMessage),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -200,17 +183,15 @@ class MessagesRepositoryImpl(
|
|||||||
peerId: Long,
|
peerId: Long,
|
||||||
randomId: Long,
|
randomId: Long,
|
||||||
message: String?,
|
message: String?,
|
||||||
forward: String?,
|
replyTo: Long?,
|
||||||
attachments: List<VkAttachment>?,
|
attachments: List<VkAttachment>?
|
||||||
formatData: VkMessage.FormatData?
|
|
||||||
): ApiResult<MessagesSendResponse, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
): ApiResult<MessagesSendResponse, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
||||||
val requestModel = MessagesSendRequest(
|
val requestModel = MessagesSendRequest(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
randomId = randomId,
|
randomId = randomId,
|
||||||
message = message,
|
message = message,
|
||||||
forward = forward,
|
replyTo = replyTo,
|
||||||
attachments = attachments,
|
attachments = attachments
|
||||||
formatData = formatData
|
|
||||||
)
|
)
|
||||||
|
|
||||||
messagesService.send(requestModel.map).mapApiDefault()
|
messagesService.send(requestModel.map).mapApiDefault()
|
||||||
@@ -243,7 +224,7 @@ class MessagesRepositoryImpl(
|
|||||||
offset = offset,
|
offset = offset,
|
||||||
preserveOrder = true,
|
preserveOrder = true,
|
||||||
attachmentTypes = attachmentTypes,
|
attachmentTypes = attachmentTypes,
|
||||||
cmId = cmId,
|
conversationMessageId = cmId,
|
||||||
fields = VkConstants.ALL_FIELDS
|
fields = VkConstants.ALL_FIELDS
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -297,7 +278,7 @@ class MessagesRepositoryImpl(
|
|||||||
val requestModel = MessagesPinMessageRequest(
|
val requestModel = MessagesPinMessageRequest(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
messageId = messageId,
|
messageId = messageId,
|
||||||
cmId = cmId
|
conversationMessageId = cmId
|
||||||
)
|
)
|
||||||
|
|
||||||
messagesService.pin(requestModel.map).mapApiResult(
|
messagesService.pin(requestModel.map).mapApiResult(
|
||||||
@@ -325,12 +306,7 @@ class MessagesRepositoryImpl(
|
|||||||
messagesIds = messageIds.orEmpty(),
|
messagesIds = messageIds.orEmpty(),
|
||||||
important = important
|
important = important
|
||||||
)
|
)
|
||||||
messagesService.markAsImportant(requestModel.map).mapApiResult(
|
messagesService.markAsImportant(requestModel.map).mapApiDefault()
|
||||||
successMapper = { apiResponse ->
|
|
||||||
apiResponse.requireResponse().marked.map { it.cmId }
|
|
||||||
},
|
|
||||||
errorMapper = { error -> error?.toDomain() }
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun delete(
|
override suspend fun delete(
|
||||||
@@ -343,7 +319,7 @@ class MessagesRepositoryImpl(
|
|||||||
val requestModel = MessagesDeleteRequest(
|
val requestModel = MessagesDeleteRequest(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
messagesIds = messageIds,
|
messagesIds = messageIds,
|
||||||
cmIds = cmIds,
|
conversationsMessagesIds = cmIds,
|
||||||
isSpam = spam,
|
isSpam = spam,
|
||||||
deleteForAll = deleteForAll
|
deleteForAll = deleteForAll
|
||||||
)
|
)
|
||||||
@@ -394,15 +370,15 @@ class MessagesRepositoryImpl(
|
|||||||
messagesService.getChat(requestModel.map).mapApiDefault()
|
messagesService.getChat(requestModel.map).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun getConvoMembers(
|
override suspend fun getConversationMembers(
|
||||||
peerId: Long,
|
peerId: Long,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
count: Int?,
|
count: Int?,
|
||||||
extended: Boolean?,
|
extended: Boolean?,
|
||||||
fields: String?
|
fields: String?
|
||||||
): ApiResult<MessagesGetConvoMembersResponse, RestApiErrorDomain> =
|
): ApiResult<MessagesGetConversationMembersResponse, RestApiErrorDomain> =
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
val requestModel = MessagesGetConvoMembersRequest(
|
val requestModel = MessagesGetConversationMembersRequest(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
count = count,
|
count = count,
|
||||||
@@ -410,7 +386,7 @@ class MessagesRepositoryImpl(
|
|||||||
fields = fields
|
fields = fields
|
||||||
)
|
)
|
||||||
|
|
||||||
messagesService.getConvoMembers(requestModel.map).mapApiDefault()
|
messagesService.getConversationMembers(requestModel.map).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun removeChatUser(
|
override suspend fun removeChatUser(
|
||||||
@@ -424,18 +400,4 @@ class MessagesRepositoryImpl(
|
|||||||
|
|
||||||
messagesService.removeChatUser(requestModel.map).mapApiDefault()
|
messagesService.removeChatUser(requestModel.map).mapApiDefault()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun getMessageReadPeers(
|
|
||||||
peerId: Long,
|
|
||||||
cmId: Long
|
|
||||||
): ApiResult<MessagesGetReadPeersResponse, RestApiErrorDomain> = withContext(Dispatchers.IO) {
|
|
||||||
messagesService.getMessageReadPeers(
|
|
||||||
mapOf(
|
|
||||||
"peer_id" to peerId.toString(),
|
|
||||||
"cmid" to cmId.toString(),
|
|
||||||
"extended" to "1",
|
|
||||||
"fields" to VkConstants.USER_FIELDS
|
|
||||||
)
|
|
||||||
).mapApiDefault()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,6 +23,5 @@ interface OAuthRepository {
|
|||||||
validationCode: String?,
|
validationCode: String?,
|
||||||
captchaSid: String?,
|
captchaSid: String?,
|
||||||
captchaKey: String?,
|
captchaKey: String?,
|
||||||
successToken: String?
|
|
||||||
): ApiResult<GetSilentTokenResponse, OAuthErrorDomain>
|
): ApiResult<GetSilentTokenResponse, OAuthErrorDomain>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -79,8 +79,7 @@ class OAuthRepositoryImpl(
|
|||||||
VkOAuthError.NEED_CAPTCHA -> {
|
VkOAuthError.NEED_CAPTCHA -> {
|
||||||
OAuthErrorDomain.CaptchaRequiredError(
|
OAuthErrorDomain.CaptchaRequiredError(
|
||||||
captchaSid = response.captchaSid.orEmpty(),
|
captchaSid = response.captchaSid.orEmpty(),
|
||||||
captchaImageUrl = response.captchaImage.orEmpty(),
|
captchaImageUrl = response.captchaImage.orEmpty()
|
||||||
redirectUri = response.redirectUri
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -123,7 +122,6 @@ class OAuthRepositoryImpl(
|
|||||||
validationCode: String?,
|
validationCode: String?,
|
||||||
captchaSid: String?,
|
captchaSid: String?,
|
||||||
captchaKey: String?,
|
captchaKey: String?,
|
||||||
successToken: String?
|
|
||||||
): ApiResult<GetSilentTokenResponse, OAuthErrorDomain> =
|
): ApiResult<GetSilentTokenResponse, OAuthErrorDomain> =
|
||||||
withContext(Dispatchers.IO) {
|
withContext(Dispatchers.IO) {
|
||||||
val requestModel = AuthDirectRequest(
|
val requestModel = AuthDirectRequest(
|
||||||
@@ -137,7 +135,6 @@ class OAuthRepositoryImpl(
|
|||||||
validationCode = validationCode,
|
validationCode = validationCode,
|
||||||
captchaSid = captchaSid,
|
captchaSid = captchaSid,
|
||||||
captchaKey = captchaKey,
|
captchaKey = captchaKey,
|
||||||
successToken = successToken
|
|
||||||
)
|
)
|
||||||
|
|
||||||
oAuthService.getSilentToken(requestModel.map).mapResult(
|
oAuthService.getSilentToken(requestModel.map).mapResult(
|
||||||
@@ -178,8 +175,7 @@ class OAuthRepositoryImpl(
|
|||||||
VkOAuthError.NEED_CAPTCHA -> {
|
VkOAuthError.NEED_CAPTCHA -> {
|
||||||
OAuthErrorDomain.CaptchaRequiredError(
|
OAuthErrorDomain.CaptchaRequiredError(
|
||||||
captchaSid = response.captchaSid.orEmpty(),
|
captchaSid = response.captchaSid.orEmpty(),
|
||||||
captchaImageUrl = response.captchaImage.orEmpty(),
|
captchaImageUrl = response.captchaImage.orEmpty()
|
||||||
redirectUri = response.redirectUri
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import dev.meloda.fast.data.api.account.AccountRepositoryImpl
|
|||||||
import dev.meloda.fast.data.api.audios.AudiosRepository
|
import dev.meloda.fast.data.api.audios.AudiosRepository
|
||||||
import dev.meloda.fast.data.api.auth.AuthRepository
|
import dev.meloda.fast.data.api.auth.AuthRepository
|
||||||
import dev.meloda.fast.data.api.auth.AuthRepositoryImpl
|
import dev.meloda.fast.data.api.auth.AuthRepositoryImpl
|
||||||
import dev.meloda.fast.data.api.convos.ConvosRepository
|
import dev.meloda.fast.data.api.conversations.ConversationsRepository
|
||||||
import dev.meloda.fast.data.api.convos.ConvosRepositoryImpl
|
import dev.meloda.fast.data.api.conversations.ConversationsRepositoryImpl
|
||||||
import dev.meloda.fast.data.api.files.FilesRepository
|
import dev.meloda.fast.data.api.files.FilesRepository
|
||||||
import dev.meloda.fast.data.api.friends.FriendsRepository
|
import dev.meloda.fast.data.api.friends.FriendsRepository
|
||||||
import dev.meloda.fast.data.api.friends.FriendsRepositoryImpl
|
import dev.meloda.fast.data.api.friends.FriendsRepositoryImpl
|
||||||
@@ -45,7 +45,7 @@ val dataModule = module {
|
|||||||
|
|
||||||
singleOf(::AuthRepositoryImpl) bind AuthRepository::class
|
singleOf(::AuthRepositoryImpl) bind AuthRepository::class
|
||||||
|
|
||||||
singleOf(::ConvosRepositoryImpl) bind ConvosRepository::class
|
singleOf(::ConversationsRepositoryImpl) bind ConversationsRepository::class
|
||||||
|
|
||||||
singleOf(::FilesRepository)
|
singleOf(::FilesRepository)
|
||||||
|
|
||||||
|
|||||||
@@ -1,58 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 3,
|
|
||||||
"identityHash": "ca007bca2ab4a9b901662792042770ad",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "accounts",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`userId` INTEGER NOT NULL, `accessToken` TEXT NOT NULL, `fastToken` TEXT, `trustedHash` TEXT, `exchangeToken` TEXT, PRIMARY KEY(`userId`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "userId",
|
|
||||||
"columnName": "userId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "accessToken",
|
|
||||||
"columnName": "accessToken",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "fastToken",
|
|
||||||
"columnName": "fastToken",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "trustedHash",
|
|
||||||
"columnName": "trustedHash",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "exchangeToken",
|
|
||||||
"columnName": "exchangeToken",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"userId"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"indices": [],
|
|
||||||
"foreignKeys": []
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"views": [],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ca007bca2ab4a9b901662792042770ad')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,413 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 10,
|
|
||||||
"identityHash": "6c315b7f800694f635318d86032746ec",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "users",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `firstName` TEXT NOT NULL, `lastName` TEXT NOT NULL, `isOnline` INTEGER NOT NULL, `isOnlineMobile` INTEGER NOT NULL, `onlineAppId` INTEGER, `lastSeen` INTEGER, `lastSeenStatus` TEXT, `birthday` TEXT, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `photo400Orig` TEXT, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "firstName",
|
|
||||||
"columnName": "firstName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastName",
|
|
||||||
"columnName": "lastName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOnline",
|
|
||||||
"columnName": "isOnline",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOnlineMobile",
|
|
||||||
"columnName": "isOnlineMobile",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "onlineAppId",
|
|
||||||
"columnName": "onlineAppId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastSeen",
|
|
||||||
"columnName": "lastSeen",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastSeenStatus",
|
|
||||||
"columnName": "lastSeenStatus",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "birthday",
|
|
||||||
"columnName": "birthday",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo400Orig",
|
|
||||||
"columnName": "photo400Orig",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "groups",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `name` TEXT NOT NULL, `screenName` TEXT NOT NULL, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `membersCount` INTEGER, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "screenName",
|
|
||||||
"columnName": "screenName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "membersCount",
|
|
||||||
"columnName": "membersCount",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "messages",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `cmId` INTEGER NOT NULL, `text` TEXT, `isOut` INTEGER NOT NULL, `peerId` INTEGER NOT NULL, `fromId` INTEGER NOT NULL, `date` INTEGER NOT NULL, `randomId` INTEGER NOT NULL, `action` TEXT, `actionMemberId` INTEGER, `actionText` TEXT, `actionCmId` INTEGER, `actionMessage` TEXT, `updateTime` INTEGER, `important` INTEGER NOT NULL, `forwardIds` TEXT, `attachments` TEXT, `replyMessageId` INTEGER, `geoType` TEXT, `pinnedAt` INTEGER, `isPinned` INTEGER NOT NULL, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "cmId",
|
|
||||||
"columnName": "cmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "text",
|
|
||||||
"columnName": "text",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOut",
|
|
||||||
"columnName": "isOut",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "peerId",
|
|
||||||
"columnName": "peerId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "fromId",
|
|
||||||
"columnName": "fromId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "date",
|
|
||||||
"columnName": "date",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "randomId",
|
|
||||||
"columnName": "randomId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "action",
|
|
||||||
"columnName": "action",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionMemberId",
|
|
||||||
"columnName": "actionMemberId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionText",
|
|
||||||
"columnName": "actionText",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionCmId",
|
|
||||||
"columnName": "actionCmId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionMessage",
|
|
||||||
"columnName": "actionMessage",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "updateTime",
|
|
||||||
"columnName": "updateTime",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "important",
|
|
||||||
"columnName": "important",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "forwardIds",
|
|
||||||
"columnName": "forwardIds",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "attachments",
|
|
||||||
"columnName": "attachments",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "replyMessageId",
|
|
||||||
"columnName": "replyMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "geoType",
|
|
||||||
"columnName": "geoType",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pinnedAt",
|
|
||||||
"columnName": "pinnedAt",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinned",
|
|
||||||
"columnName": "isPinned",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "conversations",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `localId` INTEGER NOT NULL, `ownerId` INTEGER, `title` TEXT, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `isPhantom` INTEGER NOT NULL, `lastCmId` INTEGER NOT NULL, `inReadCmId` INTEGER NOT NULL, `outReadCmId` INTEGER NOT NULL, `inRead` INTEGER NOT NULL, `outRead` INTEGER NOT NULL, `lastMessageId` INTEGER, `unreadCount` INTEGER NOT NULL, `membersCount` INTEGER, `canChangePin` INTEGER NOT NULL, `canChangeInfo` INTEGER NOT NULL, `majorId` INTEGER NOT NULL, `minorId` INTEGER NOT NULL, `pinnedMessageId` INTEGER, `peerType` TEXT NOT NULL, `isArchived` INTEGER NOT NULL, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "localId",
|
|
||||||
"columnName": "localId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ownerId",
|
|
||||||
"columnName": "ownerId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "title",
|
|
||||||
"columnName": "title",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPhantom",
|
|
||||||
"columnName": "isPhantom",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastCmId",
|
|
||||||
"columnName": "lastCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "inReadCmId",
|
|
||||||
"columnName": "inReadCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "outReadCmId",
|
|
||||||
"columnName": "outReadCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "inRead",
|
|
||||||
"columnName": "inRead",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "outRead",
|
|
||||||
"columnName": "outRead",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastMessageId",
|
|
||||||
"columnName": "lastMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "unreadCount",
|
|
||||||
"columnName": "unreadCount",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "membersCount",
|
|
||||||
"columnName": "membersCount",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "canChangePin",
|
|
||||||
"columnName": "canChangePin",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "canChangeInfo",
|
|
||||||
"columnName": "canChangeInfo",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "majorId",
|
|
||||||
"columnName": "majorId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "minorId",
|
|
||||||
"columnName": "minorId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pinnedMessageId",
|
|
||||||
"columnName": "pinnedMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "peerType",
|
|
||||||
"columnName": "peerType",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isArchived",
|
|
||||||
"columnName": "isArchived",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '6c315b7f800694f635318d86032746ec')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,413 +0,0 @@
|
|||||||
{
|
|
||||||
"formatVersion": 1,
|
|
||||||
"database": {
|
|
||||||
"version": 11,
|
|
||||||
"identityHash": "a746865995959331f8a1b512c049dacb",
|
|
||||||
"entities": [
|
|
||||||
{
|
|
||||||
"tableName": "users",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `firstName` TEXT NOT NULL, `lastName` TEXT NOT NULL, `isOnline` INTEGER NOT NULL, `isOnlineMobile` INTEGER NOT NULL, `onlineAppId` INTEGER, `lastSeen` INTEGER, `lastSeenStatus` TEXT, `birthday` TEXT, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `photo400Orig` TEXT, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "firstName",
|
|
||||||
"columnName": "firstName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastName",
|
|
||||||
"columnName": "lastName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOnline",
|
|
||||||
"columnName": "isOnline",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOnlineMobile",
|
|
||||||
"columnName": "isOnlineMobile",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "onlineAppId",
|
|
||||||
"columnName": "onlineAppId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastSeen",
|
|
||||||
"columnName": "lastSeen",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastSeenStatus",
|
|
||||||
"columnName": "lastSeenStatus",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "birthday",
|
|
||||||
"columnName": "birthday",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo400Orig",
|
|
||||||
"columnName": "photo400Orig",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "groups",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `name` TEXT NOT NULL, `screenName` TEXT NOT NULL, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `membersCount` INTEGER, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "name",
|
|
||||||
"columnName": "name",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "screenName",
|
|
||||||
"columnName": "screenName",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "membersCount",
|
|
||||||
"columnName": "membersCount",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "messages",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `cmId` INTEGER NOT NULL, `text` TEXT, `isOut` INTEGER NOT NULL, `peerId` INTEGER NOT NULL, `fromId` INTEGER NOT NULL, `date` INTEGER NOT NULL, `randomId` INTEGER NOT NULL, `action` TEXT, `actionMemberId` INTEGER, `actionText` TEXT, `actionCmId` INTEGER, `actionMessage` TEXT, `updateTime` INTEGER, `important` INTEGER NOT NULL, `forwardIds` TEXT, `attachments` TEXT, `replyMessageId` INTEGER, `geoType` TEXT, `pinnedAt` INTEGER, `isPinned` INTEGER NOT NULL, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "cmId",
|
|
||||||
"columnName": "cmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "text",
|
|
||||||
"columnName": "text",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isOut",
|
|
||||||
"columnName": "isOut",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "peerId",
|
|
||||||
"columnName": "peerId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "fromId",
|
|
||||||
"columnName": "fromId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "date",
|
|
||||||
"columnName": "date",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "randomId",
|
|
||||||
"columnName": "randomId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "action",
|
|
||||||
"columnName": "action",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionMemberId",
|
|
||||||
"columnName": "actionMemberId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionText",
|
|
||||||
"columnName": "actionText",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionCmId",
|
|
||||||
"columnName": "actionCmId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "actionMessage",
|
|
||||||
"columnName": "actionMessage",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "updateTime",
|
|
||||||
"columnName": "updateTime",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "important",
|
|
||||||
"columnName": "important",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "forwardIds",
|
|
||||||
"columnName": "forwardIds",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "attachments",
|
|
||||||
"columnName": "attachments",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "replyMessageId",
|
|
||||||
"columnName": "replyMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "geoType",
|
|
||||||
"columnName": "geoType",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pinnedAt",
|
|
||||||
"columnName": "pinnedAt",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPinned",
|
|
||||||
"columnName": "isPinned",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tableName": "convos",
|
|
||||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `localId` INTEGER NOT NULL, `ownerId` INTEGER, `title` TEXT, `photo50` TEXT, `photo100` TEXT, `photo200` TEXT, `isPhantom` INTEGER NOT NULL, `lastCmId` INTEGER NOT NULL, `inReadCmId` INTEGER NOT NULL, `outReadCmId` INTEGER NOT NULL, `inRead` INTEGER NOT NULL, `outRead` INTEGER NOT NULL, `lastMessageId` INTEGER, `unreadCount` INTEGER NOT NULL, `membersCount` INTEGER, `canChangePin` INTEGER NOT NULL, `canChangeInfo` INTEGER NOT NULL, `majorId` INTEGER NOT NULL, `minorId` INTEGER NOT NULL, `pinnedMessageId` INTEGER, `peerType` TEXT NOT NULL, `isArchived` INTEGER NOT NULL, PRIMARY KEY(`id`))",
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"fieldPath": "id",
|
|
||||||
"columnName": "id",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "localId",
|
|
||||||
"columnName": "localId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "ownerId",
|
|
||||||
"columnName": "ownerId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "title",
|
|
||||||
"columnName": "title",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo50",
|
|
||||||
"columnName": "photo50",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo100",
|
|
||||||
"columnName": "photo100",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "photo200",
|
|
||||||
"columnName": "photo200",
|
|
||||||
"affinity": "TEXT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isPhantom",
|
|
||||||
"columnName": "isPhantom",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastCmId",
|
|
||||||
"columnName": "lastCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "inReadCmId",
|
|
||||||
"columnName": "inReadCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "outReadCmId",
|
|
||||||
"columnName": "outReadCmId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "inRead",
|
|
||||||
"columnName": "inRead",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "outRead",
|
|
||||||
"columnName": "outRead",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "lastMessageId",
|
|
||||||
"columnName": "lastMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "unreadCount",
|
|
||||||
"columnName": "unreadCount",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "membersCount",
|
|
||||||
"columnName": "membersCount",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "canChangePin",
|
|
||||||
"columnName": "canChangePin",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "canChangeInfo",
|
|
||||||
"columnName": "canChangeInfo",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "majorId",
|
|
||||||
"columnName": "majorId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "minorId",
|
|
||||||
"columnName": "minorId",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "pinnedMessageId",
|
|
||||||
"columnName": "pinnedMessageId",
|
|
||||||
"affinity": "INTEGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "peerType",
|
|
||||||
"columnName": "peerType",
|
|
||||||
"affinity": "TEXT",
|
|
||||||
"notNull": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldPath": "isArchived",
|
|
||||||
"columnName": "isArchived",
|
|
||||||
"affinity": "INTEGER",
|
|
||||||
"notNull": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"primaryKey": {
|
|
||||||
"autoGenerate": false,
|
|
||||||
"columnNames": [
|
|
||||||
"id"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"setupQueries": [
|
|
||||||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
|
|
||||||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a746865995959331f8a1b512c049dacb')"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -3,12 +3,12 @@ package dev.meloda.fast.database
|
|||||||
import androidx.room.Database
|
import androidx.room.Database
|
||||||
import androidx.room.RoomDatabase
|
import androidx.room.RoomDatabase
|
||||||
import androidx.room.TypeConverters
|
import androidx.room.TypeConverters
|
||||||
import dev.meloda.fast.database.dao.ConvoDao
|
import dev.meloda.fast.database.dao.ConversationDao
|
||||||
import dev.meloda.fast.database.dao.GroupDao
|
import dev.meloda.fast.database.dao.GroupDao
|
||||||
import dev.meloda.fast.database.dao.MessageDao
|
import dev.meloda.fast.database.dao.MessageDao
|
||||||
import dev.meloda.fast.database.dao.UserDao
|
import dev.meloda.fast.database.dao.UserDao
|
||||||
import dev.meloda.fast.database.typeconverters.Converters
|
import dev.meloda.fast.database.typeconverters.Converters
|
||||||
import dev.meloda.fast.model.database.VkConvoEntity
|
import dev.meloda.fast.model.database.VkConversationEntity
|
||||||
import dev.meloda.fast.model.database.VkGroupEntity
|
import dev.meloda.fast.model.database.VkGroupEntity
|
||||||
import dev.meloda.fast.model.database.VkMessageEntity
|
import dev.meloda.fast.model.database.VkMessageEntity
|
||||||
import dev.meloda.fast.model.database.VkUserEntity
|
import dev.meloda.fast.model.database.VkUserEntity
|
||||||
@@ -18,15 +18,15 @@ import dev.meloda.fast.model.database.VkUserEntity
|
|||||||
VkUserEntity::class,
|
VkUserEntity::class,
|
||||||
VkGroupEntity::class,
|
VkGroupEntity::class,
|
||||||
VkMessageEntity::class,
|
VkMessageEntity::class,
|
||||||
VkConvoEntity::class
|
VkConversationEntity::class
|
||||||
],
|
],
|
||||||
|
|
||||||
version = 11
|
version = 10
|
||||||
)
|
)
|
||||||
@TypeConverters(Converters::class)
|
@TypeConverters(Converters::class)
|
||||||
abstract class CacheDatabase : RoomDatabase() {
|
abstract class CacheDatabase : RoomDatabase() {
|
||||||
abstract fun userDao(): UserDao
|
abstract fun userDao(): UserDao
|
||||||
abstract fun groupDao(): GroupDao
|
abstract fun groupDao(): GroupDao
|
||||||
abstract fun messageDao(): MessageDao
|
abstract fun messageDao(): MessageDao
|
||||||
abstract fun convoDao(): ConvoDao
|
abstract fun conversationDao(): ConversationDao
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package dev.meloda.fast.database.dao
|
||||||
|
|
||||||
|
import androidx.room.Dao
|
||||||
|
import androidx.room.Query
|
||||||
|
import androidx.room.Transaction
|
||||||
|
import dev.meloda.fast.model.database.ConversationWithMessage
|
||||||
|
import dev.meloda.fast.model.database.VkConversationEntity
|
||||||
|
|
||||||
|
@Dao
|
||||||
|
abstract class ConversationDao : EntityDao<VkConversationEntity> {
|
||||||
|
|
||||||
|
@Query("SELECT * FROM conversations")
|
||||||
|
abstract suspend fun getAll(): List<VkConversationEntity>
|
||||||
|
|
||||||
|
@Query("SELECT * FROM conversations WHERE id IN (:ids)")
|
||||||
|
abstract suspend fun getAllByIds(ids: List<Int>): List<VkConversationEntity>
|
||||||
|
|
||||||
|
@Query("SELECT * FROM conversations WHERE id IS (:id)")
|
||||||
|
abstract suspend fun getById(id: Long): VkConversationEntity?
|
||||||
|
|
||||||
|
@Transaction
|
||||||
|
@Query("SELECT * FROM conversations WHERE id IS (:id)")
|
||||||
|
abstract suspend fun getByIdWithMessage(id: Long): ConversationWithMessage?
|
||||||
|
|
||||||
|
@Query("DELETE FROM conversations WHERE rowid IN (:ids)")
|
||||||
|
abstract suspend fun deleteByIds(ids: List<Int>): Int
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
package dev.meloda.fast.database.dao
|
|
||||||
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Transaction
|
|
||||||
import dev.meloda.fast.model.database.ConvoWithMessage
|
|
||||||
import dev.meloda.fast.model.database.VkConvoEntity
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
abstract class ConvoDao : EntityDao<VkConvoEntity> {
|
|
||||||
|
|
||||||
@Query("SELECT * FROM convos")
|
|
||||||
abstract suspend fun getAll(): List<VkConvoEntity>
|
|
||||||
|
|
||||||
@Query("SELECT * FROM convos WHERE id IN (:ids)")
|
|
||||||
abstract suspend fun getAllByIds(ids: List<Int>): List<VkConvoEntity>
|
|
||||||
|
|
||||||
@Query("SELECT * FROM convos WHERE id IS (:id)")
|
|
||||||
abstract suspend fun getById(id: Long): VkConvoEntity?
|
|
||||||
|
|
||||||
@Transaction
|
|
||||||
@Query("SELECT * FROM convos WHERE id IS (:id)")
|
|
||||||
abstract suspend fun getByIdWithMessage(id: Long): ConvoWithMessage?
|
|
||||||
|
|
||||||
@Query("DELETE FROM convos WHERE rowid IN (:ids)")
|
|
||||||
abstract suspend fun deleteByIds(ids: List<Int>): Int
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -10,8 +10,8 @@ abstract class MessageDao : EntityDao<VkMessageEntity> {
|
|||||||
@Query("SELECT * FROM messages")
|
@Query("SELECT * FROM messages")
|
||||||
abstract suspend fun getAll(): List<VkMessageEntity>
|
abstract suspend fun getAll(): List<VkMessageEntity>
|
||||||
|
|
||||||
@Query("SELECT * FROM messages WHERE peerId IS (:convoId)")
|
@Query("SELECT * FROM messages WHERE peerId IS (:conversationId)")
|
||||||
abstract suspend fun getAll(convoId: Long): List<VkMessageEntity>
|
abstract suspend fun getAll(conversationId: Long): List<VkMessageEntity>
|
||||||
|
|
||||||
@Query("SELECT * FROM messages WHERE id IN (:ids)")
|
@Query("SELECT * FROM messages WHERE id IN (:ids)")
|
||||||
abstract suspend fun getAllByIds(ids: List<Int>): List<VkMessageEntity>
|
abstract suspend fun getAllByIds(ids: List<Int>): List<VkMessageEntity>
|
||||||
|
|||||||
@@ -17,13 +17,13 @@ val databaseModule = module {
|
|||||||
|
|
||||||
single {
|
single {
|
||||||
Room.databaseBuilder(get(), CacheDatabase::class.java, "cache")
|
Room.databaseBuilder(get(), CacheDatabase::class.java, "cache")
|
||||||
.fallbackToDestructiveMigration(true)
|
.fallbackToDestructiveMigration()
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
single { cacheDB().userDao() }
|
single { cacheDB().userDao() }
|
||||||
single { cacheDB().groupDao() }
|
single { cacheDB().groupDao() }
|
||||||
single { cacheDB().messageDao() }
|
single { cacheDB().messageDao() }
|
||||||
single { cacheDB().convoDao() }
|
single { cacheDB().conversationDao() }
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun Scope.cacheDB(): CacheDatabase = get()
|
private fun Scope.cacheDB(): CacheDatabase = get()
|
||||||
|
|||||||
@@ -4,32 +4,13 @@ import android.content.SharedPreferences
|
|||||||
import androidx.core.content.edit
|
import androidx.core.content.edit
|
||||||
import dev.meloda.fast.common.model.DarkMode
|
import dev.meloda.fast.common.model.DarkMode
|
||||||
import dev.meloda.fast.common.model.LogLevel
|
import dev.meloda.fast.common.model.LogLevel
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
|
||||||
import kotlinx.coroutines.flow.asStateFlow
|
|
||||||
import kotlinx.coroutines.flow.update
|
|
||||||
import kotlin.properties.Delegates
|
import kotlin.properties.Delegates
|
||||||
import kotlin.reflect.KClass
|
import kotlin.reflect.KClass
|
||||||
|
|
||||||
sealed class CaptchaTokenResult {
|
|
||||||
data object Initial : CaptchaTokenResult()
|
|
||||||
data object Null : CaptchaTokenResult()
|
|
||||||
data object Cancelled : CaptchaTokenResult()
|
|
||||||
data class Success(val token: String) : CaptchaTokenResult()
|
|
||||||
}
|
|
||||||
|
|
||||||
object AppSettings {
|
object AppSettings {
|
||||||
|
|
||||||
private var preferences: SharedPreferences by Delegates.notNull()
|
private var preferences: SharedPreferences by Delegates.notNull()
|
||||||
|
|
||||||
private val captchaResult = MutableStateFlow<CaptchaTokenResult>(CaptchaTokenResult.Initial)
|
|
||||||
fun getCaptchaResultFlow(): StateFlow<CaptchaTokenResult> = captchaResult.asStateFlow()
|
|
||||||
fun setCaptchaResult(result: CaptchaTokenResult) = captchaResult.update { result }
|
|
||||||
|
|
||||||
private val captchaRedirectUri = MutableStateFlow<String?>(null)
|
|
||||||
fun getCaptchaRedirectUriFlow() = captchaRedirectUri.asStateFlow()
|
|
||||||
fun setCaptchaRedirectUri(redirectUri: String?) = captchaRedirectUri.update { redirectUri }
|
|
||||||
|
|
||||||
fun init(preferences: SharedPreferences) {
|
fun init(preferences: SharedPreferences) {
|
||||||
this.preferences = preferences
|
this.preferences = preferences
|
||||||
}
|
}
|
||||||
@@ -115,20 +96,6 @@ object AppSettings {
|
|||||||
)
|
)
|
||||||
set(value) = put(SettingsKeys.KEY_SHOW_EMOJI_BUTTON, value)
|
set(value) = put(SettingsKeys.KEY_SHOW_EMOJI_BUTTON, value)
|
||||||
|
|
||||||
var showAttachmentButton: Boolean
|
|
||||||
get() = get(
|
|
||||||
SettingsKeys.KEY_SHOW_ATTACHMENT_BUTTON,
|
|
||||||
SettingsKeys.DEFAULT_VALUE_SHOW_ATTACHMENT_BUTTON
|
|
||||||
)
|
|
||||||
set(value) = put(SettingsKeys.KEY_SHOW_ATTACHMENT_BUTTON, value)
|
|
||||||
|
|
||||||
var showManualRefreshOptions: Boolean
|
|
||||||
get() = get(
|
|
||||||
SettingsKeys.KEY_SHOW_MANUAL_REFRESH_OPTIONS,
|
|
||||||
SettingsKeys.DEFAULT_VALUE_SHOW_MANUAL_REFRESH_OPTIONS
|
|
||||||
)
|
|
||||||
set(value) = put(SettingsKeys.KEY_SHOW_MANUAL_REFRESH_OPTIONS, value)
|
|
||||||
|
|
||||||
var enableHaptic: Boolean
|
var enableHaptic: Boolean
|
||||||
get() = get(
|
get() = get(
|
||||||
SettingsKeys.KEY_ENABLE_HAPTIC,
|
SettingsKeys.KEY_ENABLE_HAPTIC,
|
||||||
|
|||||||
@@ -11,10 +11,6 @@ object SettingsKeys {
|
|||||||
const val DEFAULT_VALUE_USE_CONTACT_NAMES = false
|
const val DEFAULT_VALUE_USE_CONTACT_NAMES = false
|
||||||
const val KEY_SHOW_EMOJI_BUTTON = "show_emoji_button"
|
const val KEY_SHOW_EMOJI_BUTTON = "show_emoji_button"
|
||||||
const val DEFAULT_VALUE_KEY_SHOW_EMOJI_BUTTON = false
|
const val DEFAULT_VALUE_KEY_SHOW_EMOJI_BUTTON = false
|
||||||
const val KEY_SHOW_ATTACHMENT_BUTTON = "show_attachment_button"
|
|
||||||
const val DEFAULT_VALUE_SHOW_ATTACHMENT_BUTTON = false
|
|
||||||
const val KEY_SHOW_MANUAL_REFRESH_OPTIONS = "show_manual_refresh_options"
|
|
||||||
const val DEFAULT_VALUE_SHOW_MANUAL_REFRESH_OPTIONS = false
|
|
||||||
|
|
||||||
const val KEY_APPEARANCE = "appearance"
|
const val KEY_APPEARANCE = "appearance"
|
||||||
const val KEY_APPEARANCE_MULTILINE = "appearance_multiline"
|
const val KEY_APPEARANCE_MULTILINE = "appearance_multiline"
|
||||||
@@ -50,9 +46,6 @@ object SettingsKeys {
|
|||||||
const val DEFAULT_ENABLE_HAPTIC = true
|
const val DEFAULT_ENABLE_HAPTIC = true
|
||||||
const val KEY_DEBUG_NETWORK_LOG_LEVEL = "debug_network_log_level"
|
const val KEY_DEBUG_NETWORK_LOG_LEVEL = "debug_network_log_level"
|
||||||
const val DEFAULT_NETWORK_LOG_LEVEL = 3
|
const val DEFAULT_NETWORK_LOG_LEVEL = 3
|
||||||
const val KEY_DEBUG_IMPORT_AUTH_DATA = "debug_import_auth_data"
|
|
||||||
const val KEY_DEBUG_EXPORT_AUTH_DATA = "debug_export_auth_data"
|
|
||||||
|
|
||||||
const val KEY_USE_SYSTEM_FONT = "use_system_font"
|
const val KEY_USE_SYSTEM_FONT = "use_system_font"
|
||||||
const val DEFAULT_USE_SYSTEM_FONT = false
|
const val DEFAULT_USE_SYSTEM_FONT = false
|
||||||
const val KEY_MORE_ANIMATIONS = "more_animations"
|
const val KEY_MORE_ANIMATIONS = "more_animations"
|
||||||
|
|||||||
@@ -14,10 +14,15 @@ interface UserSettings {
|
|||||||
val enableDynamicColors: StateFlow<Boolean>
|
val enableDynamicColors: StateFlow<Boolean>
|
||||||
val appLanguage: StateFlow<String>
|
val appLanguage: StateFlow<String>
|
||||||
|
|
||||||
|
val fastText: StateFlow<String>
|
||||||
|
|
||||||
val sendOnlineStatus: StateFlow<Boolean>
|
val sendOnlineStatus: StateFlow<Boolean>
|
||||||
|
|
||||||
|
val showAlertAfterCrash: StateFlow<Boolean>
|
||||||
val longPollInBackground: StateFlow<Boolean>
|
val longPollInBackground: StateFlow<Boolean>
|
||||||
val useBlur: StateFlow<Boolean>
|
val useBlur: StateFlow<Boolean>
|
||||||
|
val showEmojiButton: StateFlow<Boolean>
|
||||||
|
val showTimeInActionMessages: StateFlow<Boolean>
|
||||||
val useSystemFont: StateFlow<Boolean>
|
val useSystemFont: StateFlow<Boolean>
|
||||||
val enableAnimations: StateFlow<Boolean>
|
val enableAnimations: StateFlow<Boolean>
|
||||||
val showDebugCategory: StateFlow<Boolean>
|
val showDebugCategory: StateFlow<Boolean>
|
||||||
@@ -30,10 +35,15 @@ interface UserSettings {
|
|||||||
fun onEnableDynamicColorsChanged(enable: Boolean)
|
fun onEnableDynamicColorsChanged(enable: Boolean)
|
||||||
fun onAppLanguageChanged(language: String)
|
fun onAppLanguageChanged(language: String)
|
||||||
|
|
||||||
|
fun onFastTextChanged(text: String)
|
||||||
|
|
||||||
fun onSendOnlineStatusChanged(send: Boolean)
|
fun onSendOnlineStatusChanged(send: Boolean)
|
||||||
|
|
||||||
|
fun onShowAlertAfterCrashChanged(show: Boolean)
|
||||||
fun onLongPollInBackgroundChanged(inBackground: Boolean)
|
fun onLongPollInBackgroundChanged(inBackground: Boolean)
|
||||||
fun onUseBlurChanged(use: Boolean)
|
fun onUseBlurChanged(use: Boolean)
|
||||||
|
fun onShowEmojiButtonChanged(show: Boolean)
|
||||||
|
fun onShowTimeInActionMessagesChanged(show: Boolean)
|
||||||
fun onUseSystemFontChanged(use: Boolean)
|
fun onUseSystemFontChanged(use: Boolean)
|
||||||
fun onShowDebugCategoryChanged(show: Boolean)
|
fun onShowDebugCategoryChanged(show: Boolean)
|
||||||
}
|
}
|
||||||
@@ -48,11 +58,16 @@ class UserSettingsImpl : UserSettings {
|
|||||||
override val enableDynamicColors = MutableStateFlow(AppSettings.Appearance.enableDynamicColors)
|
override val enableDynamicColors = MutableStateFlow(AppSettings.Appearance.enableDynamicColors)
|
||||||
override val appLanguage = MutableStateFlow(AppSettings.Appearance.appLanguage)
|
override val appLanguage = MutableStateFlow(AppSettings.Appearance.appLanguage)
|
||||||
|
|
||||||
|
override val fastText = MutableStateFlow(AppSettings.Features.fastText)
|
||||||
|
|
||||||
override val sendOnlineStatus = MutableStateFlow(AppSettings.Activity.sendOnlineStatus)
|
override val sendOnlineStatus = MutableStateFlow(AppSettings.Activity.sendOnlineStatus)
|
||||||
|
|
||||||
override val longPollInBackground =
|
override val showAlertAfterCrash = MutableStateFlow(AppSettings.Debug.showAlertAfterCrash)
|
||||||
MutableStateFlow(AppSettings.Experimental.longPollInBackground)
|
override val longPollInBackground = MutableStateFlow(AppSettings.Experimental.longPollInBackground)
|
||||||
override val useBlur = MutableStateFlow(AppSettings.Experimental.useBlur)
|
override val useBlur = MutableStateFlow(AppSettings.Experimental.useBlur)
|
||||||
|
override val showEmojiButton = MutableStateFlow(AppSettings.General.showEmojiButton)
|
||||||
|
override val showTimeInActionMessages =
|
||||||
|
MutableStateFlow(AppSettings.Experimental.showTimeInActionMessages)
|
||||||
override val useSystemFont = MutableStateFlow(AppSettings.Appearance.useSystemFont)
|
override val useSystemFont = MutableStateFlow(AppSettings.Appearance.useSystemFont)
|
||||||
override val enableAnimations = MutableStateFlow(AppSettings.Experimental.moreAnimations)
|
override val enableAnimations = MutableStateFlow(AppSettings.Experimental.moreAnimations)
|
||||||
override val showDebugCategory = MutableStateFlow(AppSettings.Debug.showDebugCategory)
|
override val showDebugCategory = MutableStateFlow(AppSettings.Debug.showDebugCategory)
|
||||||
@@ -81,10 +96,18 @@ class UserSettingsImpl : UserSettings {
|
|||||||
appLanguage.value = language
|
appLanguage.value = language
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onFastTextChanged(text: String) {
|
||||||
|
fastText.value = text
|
||||||
|
}
|
||||||
|
|
||||||
override fun onSendOnlineStatusChanged(send: Boolean) {
|
override fun onSendOnlineStatusChanged(send: Boolean) {
|
||||||
sendOnlineStatus.value = send
|
sendOnlineStatus.value = send
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onShowAlertAfterCrashChanged(show: Boolean) {
|
||||||
|
showAlertAfterCrash.value = show
|
||||||
|
}
|
||||||
|
|
||||||
override fun onLongPollInBackgroundChanged(inBackground: Boolean) {
|
override fun onLongPollInBackgroundChanged(inBackground: Boolean) {
|
||||||
longPollInBackground.value = inBackground
|
longPollInBackground.value = inBackground
|
||||||
}
|
}
|
||||||
@@ -93,6 +116,14 @@ class UserSettingsImpl : UserSettings {
|
|||||||
useBlur.value = use
|
useBlur.value = use
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onShowEmojiButtonChanged(show: Boolean) {
|
||||||
|
showEmojiButton.value = show
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onShowTimeInActionMessagesChanged(show: Boolean) {
|
||||||
|
showTimeInActionMessages.value = show
|
||||||
|
}
|
||||||
|
|
||||||
override fun onUseSystemFontChanged(use: Boolean) {
|
override fun onUseSystemFontChanged(use: Boolean) {
|
||||||
useSystemFont.value = use
|
useSystemFont.value = use
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,16 +8,11 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(projects.core.common)
|
|
||||||
api(projects.core.data)
|
api(projects.core.data)
|
||||||
api(projects.core.model)
|
api(projects.core.model)
|
||||||
|
|
||||||
|
// TODO: 11/08/2024, Danil Nikolaev: remove?
|
||||||
implementation(libs.kotlinx.coroutines.core)
|
implementation(libs.kotlinx.coroutines.core)
|
||||||
implementation(libs.koin.core)
|
implementation(libs.koin.core)
|
||||||
implementation(libs.eithernet)
|
implementation(libs.eithernet)
|
||||||
|
|
||||||
implementation(libs.bundles.nanokt)
|
|
||||||
|
|
||||||
implementation(platform(libs.compose.bom))
|
|
||||||
implementation(libs.compose.ui)
|
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-8
@@ -1,25 +1,25 @@
|
|||||||
package dev.meloda.fast.domain
|
package dev.meloda.fast.domain
|
||||||
|
|
||||||
import dev.meloda.fast.data.State
|
import dev.meloda.fast.data.State
|
||||||
import dev.meloda.fast.model.ConvosFilter
|
import dev.meloda.fast.model.ConversationsFilter
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
|
|
||||||
interface ConvoUseCase : BaseUseCase {
|
interface ConversationsUseCase : BaseUseCase {
|
||||||
|
|
||||||
suspend fun storeConvos(convos: List<VkConvo>)
|
suspend fun storeConversations(conversations: List<VkConversation>)
|
||||||
|
|
||||||
fun getConvos(
|
fun getConversations(
|
||||||
count: Int? = null,
|
count: Int? = null,
|
||||||
offset: Int? = null,
|
offset: Int? = null,
|
||||||
filter: ConvosFilter
|
filter: ConversationsFilter
|
||||||
): Flow<State<List<VkConvo>>>
|
): Flow<State<List<VkConversation>>>
|
||||||
|
|
||||||
fun getById(
|
fun getById(
|
||||||
peerIds: List<Long>,
|
peerIds: List<Long>,
|
||||||
extended: Boolean? = null,
|
extended: Boolean? = null,
|
||||||
fields: String? = null
|
fields: String? = null
|
||||||
): Flow<State<List<VkConvo>>>
|
): Flow<State<List<VkConversation>>>
|
||||||
|
|
||||||
fun delete(peerId: Long): Flow<State<Long>>
|
fun delete(peerId: Long): Flow<State<Long>>
|
||||||
|
|
||||||
+15
-15
@@ -1,30 +1,30 @@
|
|||||||
package dev.meloda.fast.domain
|
package dev.meloda.fast.domain
|
||||||
|
|
||||||
import dev.meloda.fast.data.State
|
import dev.meloda.fast.data.State
|
||||||
import dev.meloda.fast.data.api.convos.ConvosRepository
|
import dev.meloda.fast.data.api.conversations.ConversationsRepository
|
||||||
import dev.meloda.fast.data.mapToState
|
import dev.meloda.fast.data.mapToState
|
||||||
import dev.meloda.fast.model.ConvosFilter
|
import dev.meloda.fast.model.ConversationsFilter
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class ConvoUseCaseImpl(
|
class ConversationsUseCaseImpl(
|
||||||
private val repository: ConvosRepository,
|
private val repository: ConversationsRepository,
|
||||||
) : ConvoUseCase {
|
) : ConversationsUseCase {
|
||||||
|
|
||||||
override suspend fun storeConvos(
|
override suspend fun storeConversations(
|
||||||
convos: List<VkConvo>
|
conversations: List<VkConversation>
|
||||||
) = withContext(Dispatchers.IO) {
|
) = withContext(Dispatchers.IO) {
|
||||||
repository.storeConvos(convos)
|
repository.storeConversations(conversations)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getConvos(
|
override fun getConversations(
|
||||||
count: Int?,
|
count: Int?,
|
||||||
offset: Int?,
|
offset: Int?,
|
||||||
filter: ConvosFilter
|
filter: ConversationsFilter
|
||||||
): Flow<State<List<VkConvo>>> = flowNewState {
|
): Flow<State<List<VkConversation>>> = flowNewState {
|
||||||
repository.getConvos(
|
repository.getConversations(
|
||||||
count = count,
|
count = count,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
filter = filter
|
filter = filter
|
||||||
@@ -35,8 +35,8 @@ class ConvoUseCaseImpl(
|
|||||||
peerIds: List<Long>,
|
peerIds: List<Long>,
|
||||||
extended: Boolean?,
|
extended: Boolean?,
|
||||||
fields: String?
|
fields: String?
|
||||||
): Flow<State<List<VkConvo>>> = flowNewState {
|
): Flow<State<List<VkConversation>>> = flowNewState {
|
||||||
repository.getConvosById(
|
repository.getConversationsById(
|
||||||
peerIds = peerIds,
|
peerIds = peerIds,
|
||||||
extended = extended,
|
extended = extended,
|
||||||
fields = fields
|
fields = fields
|
||||||
@@ -6,7 +6,10 @@ import dev.meloda.fast.model.database.AccountEntity
|
|||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class GetCurrentAccountUseCase(private val accountsRepository: AccountsRepository) {
|
class GetCurrentAccountUseCase(
|
||||||
|
private val accountsRepository: AccountsRepository
|
||||||
|
) {
|
||||||
|
|
||||||
suspend operator fun invoke(): AccountEntity? = withContext(Dispatchers.IO) {
|
suspend operator fun invoke(): AccountEntity? = withContext(Dispatchers.IO) {
|
||||||
accountsRepository.getAccountById(UserConfig.currentUserId)
|
accountsRepository.getAccountById(UserConfig.currentUserId)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
package dev.meloda.fast.domain
|
|
||||||
|
|
||||||
import dev.meloda.fast.data.State
|
|
||||||
import dev.meloda.fast.data.api.messages.MessagesRepository
|
|
||||||
import dev.meloda.fast.data.mapToState
|
|
||||||
import kotlinx.coroutines.flow.Flow
|
|
||||||
|
|
||||||
class GetMessageReadPeersUseCase(
|
|
||||||
private val repository: MessagesRepository
|
|
||||||
) : BaseUseCase {
|
|
||||||
|
|
||||||
operator fun invoke(
|
|
||||||
peerId: Long,
|
|
||||||
cmId: Long
|
|
||||||
): Flow<State<Int>> = flowNewState {
|
|
||||||
repository.getMessageReadPeers(
|
|
||||||
peerId = peerId,
|
|
||||||
cmId = cmId
|
|
||||||
).mapToState(successMapper = { it.totalCount })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+7
-7
@@ -1,22 +1,22 @@
|
|||||||
package dev.meloda.fast.domain
|
package dev.meloda.fast.domain
|
||||||
|
|
||||||
import dev.meloda.fast.data.State
|
import dev.meloda.fast.data.State
|
||||||
import dev.meloda.fast.data.api.convos.ConvosRepository
|
import dev.meloda.fast.data.api.conversations.ConversationsRepository
|
||||||
import dev.meloda.fast.data.mapToState
|
import dev.meloda.fast.data.mapToState
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import kotlinx.coroutines.flow.Flow
|
import kotlinx.coroutines.flow.Flow
|
||||||
|
|
||||||
class LoadConvosByIdUseCase(
|
class LoadConversationsByIdUseCase(
|
||||||
private val convosRepository: ConvosRepository
|
private val conversationsRepository: ConversationsRepository
|
||||||
) : BaseUseCase {
|
) : BaseUseCase {
|
||||||
|
|
||||||
operator fun invoke(
|
operator fun invoke(
|
||||||
peerIds: List<Long>,
|
peerIds: List<Long>,
|
||||||
extended: Boolean? = null,
|
extended: Boolean? = null,
|
||||||
fields: String? = null
|
fields: String? = null
|
||||||
): Flow<State<List<VkConvo>>> = flowNewState {
|
): Flow<State<List<VkConversation>>> = flowNewState {
|
||||||
convosRepository
|
conversationsRepository
|
||||||
.getConvosById(
|
.getConversationsById(
|
||||||
peerIds = peerIds,
|
peerIds = peerIds,
|
||||||
extended = extended,
|
extended = extended,
|
||||||
fields = fields,
|
fields = fields,
|
||||||
@@ -9,12 +9,12 @@ import dev.meloda.fast.common.extensions.toList
|
|||||||
import dev.meloda.fast.data.UserConfig
|
import dev.meloda.fast.data.UserConfig
|
||||||
import dev.meloda.fast.data.processState
|
import dev.meloda.fast.data.processState
|
||||||
import dev.meloda.fast.model.ApiEvent
|
import dev.meloda.fast.model.ApiEvent
|
||||||
import dev.meloda.fast.model.ConvoFlags
|
import dev.meloda.fast.model.ConversationFlags
|
||||||
import dev.meloda.fast.model.InteractionType
|
import dev.meloda.fast.model.InteractionType
|
||||||
import dev.meloda.fast.model.LongPollEvent
|
import dev.meloda.fast.model.LongPollEvent
|
||||||
import dev.meloda.fast.model.LongPollParsedEvent
|
import dev.meloda.fast.model.LongPollParsedEvent
|
||||||
import dev.meloda.fast.model.MessageFlags
|
import dev.meloda.fast.model.MessageFlags
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
import kotlinx.coroutines.CoroutineExceptionHandler
|
import kotlinx.coroutines.CoroutineExceptionHandler
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
@@ -28,7 +28,7 @@ import kotlin.coroutines.resume
|
|||||||
import kotlin.coroutines.suspendCoroutine
|
import kotlin.coroutines.suspendCoroutine
|
||||||
|
|
||||||
class LongPollUpdatesParser(
|
class LongPollUpdatesParser(
|
||||||
private val convoUseCase: ConvoUseCase,
|
private val conversationsUseCase: ConversationsUseCase,
|
||||||
private val messagesUseCase: MessagesUseCase
|
private val messagesUseCase: MessagesUseCase
|
||||||
) {
|
) {
|
||||||
private val job = SupervisorJob()
|
private val job = SupervisorJob()
|
||||||
@@ -271,9 +271,9 @@ class LongPollUpdatesParser(
|
|||||||
val message =
|
val message =
|
||||||
async { loadMessage(peerId = peerId, cmId = cmId) }.await()
|
async { loadMessage(peerId = peerId, cmId = cmId) }.await()
|
||||||
|
|
||||||
val convo =
|
val conversation =
|
||||||
async {
|
async {
|
||||||
loadConvo(
|
loadConversation(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
extended = true,
|
extended = true,
|
||||||
fields = VkConstants.ALL_FIELDS
|
fields = VkConstants.ALL_FIELDS
|
||||||
@@ -287,7 +287,7 @@ class LongPollUpdatesParser(
|
|||||||
.onEvent(
|
.onEvent(
|
||||||
LongPollParsedEvent.NewMessage(
|
LongPollParsedEvent.NewMessage(
|
||||||
message = message,
|
message = message,
|
||||||
inArchive = convo?.isArchived == true
|
inArchive = conversation?.isArchived == true
|
||||||
// TODO: 03-Apr-25, Danil Nikolaev:
|
// TODO: 03-Apr-25, Danil Nikolaev:
|
||||||
// load user settings about restoring chats with
|
// load user settings about restoring chats with
|
||||||
// enabled notifications from archive
|
// enabled notifications from archive
|
||||||
@@ -368,13 +368,13 @@ class LongPollUpdatesParser(
|
|||||||
|
|
||||||
val eventsToSend = mutableListOf<LongPollParsedEvent>()
|
val eventsToSend = mutableListOf<LongPollParsedEvent>()
|
||||||
|
|
||||||
val parsedFlags = ConvoFlags.parse(flags)
|
val parsedFlags = ConversationFlags.parse(flags)
|
||||||
|
|
||||||
coroutineScope.launch(Dispatchers.IO) {
|
coroutineScope.launch(Dispatchers.IO) {
|
||||||
parsedFlags.forEach { flag ->
|
parsedFlags.forEach { flag ->
|
||||||
when (flag) {
|
when (flag) {
|
||||||
ConvoFlags.ARCHIVED -> {
|
ConversationFlags.ARCHIVED -> {
|
||||||
val convo = loadConvo(
|
val conversation = loadConversation(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
extended = true,
|
extended = true,
|
||||||
fields = VkConstants.ALL_FIELDS
|
fields = VkConstants.ALL_FIELDS
|
||||||
@@ -382,11 +382,11 @@ class LongPollUpdatesParser(
|
|||||||
|
|
||||||
val message = loadMessage(
|
val message = loadMessage(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
cmId = convo.lastCmId
|
cmId = conversation.lastCmId
|
||||||
)
|
)
|
||||||
|
|
||||||
val eventToSend = LongPollParsedEvent.ChatArchived(
|
val eventToSend = LongPollParsedEvent.ChatArchived(
|
||||||
convo = convo.copy(lastMessage = message),
|
conversation = conversation.copy(lastMessage = message),
|
||||||
archived = false
|
archived = false
|
||||||
)
|
)
|
||||||
eventsToSend += eventToSend
|
eventsToSend += eventToSend
|
||||||
@@ -423,13 +423,13 @@ class LongPollUpdatesParser(
|
|||||||
|
|
||||||
val eventsToSend = mutableListOf<LongPollParsedEvent>()
|
val eventsToSend = mutableListOf<LongPollParsedEvent>()
|
||||||
|
|
||||||
val parsedFlags = ConvoFlags.parse(flags)
|
val parsedFlags = ConversationFlags.parse(flags)
|
||||||
|
|
||||||
coroutineScope.launch(Dispatchers.IO) {
|
coroutineScope.launch(Dispatchers.IO) {
|
||||||
parsedFlags.forEach { flag ->
|
parsedFlags.forEach { flag ->
|
||||||
when (flag) {
|
when (flag) {
|
||||||
ConvoFlags.ARCHIVED -> {
|
ConversationFlags.ARCHIVED -> {
|
||||||
val convo = loadConvo(
|
val conversation = loadConversation(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
extended = true,
|
extended = true,
|
||||||
fields = VkConstants.ALL_FIELDS
|
fields = VkConstants.ALL_FIELDS
|
||||||
@@ -437,11 +437,11 @@ class LongPollUpdatesParser(
|
|||||||
|
|
||||||
val message = loadMessage(
|
val message = loadMessage(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
cmId = convo.lastCmId
|
cmId = conversation.lastCmId
|
||||||
)
|
)
|
||||||
|
|
||||||
val eventToSend = LongPollParsedEvent.ChatArchived(
|
val eventToSend = LongPollParsedEvent.ChatArchived(
|
||||||
convo = convo.copy(lastMessage = message),
|
conversation = conversation.copy(lastMessage = message),
|
||||||
archived = true
|
archived = true
|
||||||
)
|
)
|
||||||
eventsToSend += eventToSend
|
eventsToSend += eventToSend
|
||||||
@@ -673,29 +673,29 @@ class LongPollUpdatesParser(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun loadConvo(
|
private suspend fun loadConversation(
|
||||||
peerId: Long,
|
peerId: Long,
|
||||||
extended: Boolean = false,
|
extended: Boolean = false,
|
||||||
fields: String? = null
|
fields: String? = null
|
||||||
): VkConvo? = suspendCoroutine { continuation ->
|
): VkConversation? = suspendCoroutine { continuation ->
|
||||||
coroutineScope.launch(Dispatchers.IO) {
|
coroutineScope.launch(Dispatchers.IO) {
|
||||||
convoUseCase.getById(
|
conversationsUseCase.getById(
|
||||||
peerIds = listOf(peerId),
|
peerIds = listOf(peerId),
|
||||||
extended = extended,
|
extended = extended,
|
||||||
fields = fields
|
fields = fields
|
||||||
).listenValue(coroutineScope) { state ->
|
).listenValue(coroutineScope) { state ->
|
||||||
state.processState(
|
state.processState(
|
||||||
error = { error ->
|
error = { error ->
|
||||||
Log.e("LongPollUpdatesParser", "loadConvo: error: $error")
|
Log.e("LongPollUpdatesParser", "loadConversation: error: $error")
|
||||||
continuation.resume(null)
|
continuation.resume(null)
|
||||||
},
|
},
|
||||||
success = { response ->
|
success = { response ->
|
||||||
val convo = response.singleOrNull() ?: run {
|
val conversation = response.singleOrNull() ?: run {
|
||||||
continuation.resume(null)
|
continuation.resume(null)
|
||||||
return@listenValue
|
return@listenValue
|
||||||
}
|
}
|
||||||
|
|
||||||
continuation.resume(convo)
|
continuation.resume(conversation)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ interface MessagesUseCase : BaseUseCase {
|
|||||||
suspend fun storeMessages(messages: List<VkMessage>)
|
suspend fun storeMessages(messages: List<VkMessage>)
|
||||||
|
|
||||||
fun getMessagesHistory(
|
fun getMessagesHistory(
|
||||||
convoId: Long,
|
conversationId: Long,
|
||||||
count: Int?,
|
count: Int?,
|
||||||
offset: Int?
|
offset: Int?
|
||||||
): Flow<State<MessagesHistoryInfo>>
|
): Flow<State<MessagesHistoryInfo>>
|
||||||
@@ -32,9 +32,8 @@ interface MessagesUseCase : BaseUseCase {
|
|||||||
peerId: Long,
|
peerId: Long,
|
||||||
randomId: Long,
|
randomId: Long,
|
||||||
message: String?,
|
message: String?,
|
||||||
forward: String?,
|
replyTo: Long?,
|
||||||
attachments: List<VkAttachment>?,
|
attachments: List<VkAttachment>?
|
||||||
formatData: VkMessage.FormatData?
|
|
||||||
): Flow<State<MessagesSendResponse>>
|
): Flow<State<MessagesSendResponse>>
|
||||||
|
|
||||||
fun markAsRead(
|
fun markAsRead(
|
||||||
|
|||||||
@@ -23,12 +23,12 @@ class MessagesUseCaseImpl(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getMessagesHistory(
|
override fun getMessagesHistory(
|
||||||
convoId: Long,
|
conversationId: Long,
|
||||||
count: Int?,
|
count: Int?,
|
||||||
offset: Int?
|
offset: Int?
|
||||||
): Flow<State<MessagesHistoryInfo>> = flowNewState {
|
): Flow<State<MessagesHistoryInfo>> = flowNewState {
|
||||||
repository.getHistory(
|
repository.getHistory(
|
||||||
convoId = convoId,
|
conversationId = conversationId,
|
||||||
offset = offset,
|
offset = offset,
|
||||||
count = count
|
count = count
|
||||||
).mapToState()
|
).mapToState()
|
||||||
@@ -56,17 +56,15 @@ class MessagesUseCaseImpl(
|
|||||||
peerId: Long,
|
peerId: Long,
|
||||||
randomId: Long,
|
randomId: Long,
|
||||||
message: String?,
|
message: String?,
|
||||||
forward: String?,
|
replyTo: Long?,
|
||||||
attachments: List<VkAttachment>?,
|
attachments: List<VkAttachment>?
|
||||||
formatData: VkMessage.FormatData?
|
|
||||||
): Flow<State<MessagesSendResponse>> = flowNewState {
|
): Flow<State<MessagesSendResponse>> = flowNewState {
|
||||||
repository.send(
|
repository.send(
|
||||||
peerId = peerId,
|
peerId = peerId,
|
||||||
randomId = randomId,
|
randomId = randomId,
|
||||||
message = message,
|
message = message,
|
||||||
forward = forward,
|
replyTo = replyTo,
|
||||||
attachments = attachments,
|
attachments = attachments
|
||||||
formatData = formatData
|
|
||||||
).mapToState()
|
).mapToState()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -21,8 +21,7 @@ interface OAuthUseCase {
|
|||||||
password: String,
|
password: String,
|
||||||
forceSms: Boolean,
|
forceSms: Boolean,
|
||||||
validationCode: String?,
|
validationCode: String?,
|
||||||
captchaSid: String? = null,
|
captchaSid: String?,
|
||||||
captchaKey: String? = null,
|
captchaKey: String?
|
||||||
successToken: String? = null
|
|
||||||
): Flow<State<GetSilentTokenResponse>>
|
): Flow<State<GetSilentTokenResponse>>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,8 +48,7 @@ class OAuthUseCaseImpl(
|
|||||||
forceSms: Boolean,
|
forceSms: Boolean,
|
||||||
validationCode: String?,
|
validationCode: String?,
|
||||||
captchaSid: String?,
|
captchaSid: String?,
|
||||||
captchaKey: String?,
|
captchaKey: String?
|
||||||
successToken: String?
|
|
||||||
): Flow<State<GetSilentTokenResponse>> = flow {
|
): Flow<State<GetSilentTokenResponse>> = flow {
|
||||||
emit(State.Loading)
|
emit(State.Loading)
|
||||||
|
|
||||||
@@ -59,8 +58,7 @@ class OAuthUseCaseImpl(
|
|||||||
forceSms = forceSms,
|
forceSms = forceSms,
|
||||||
validationCode = validationCode,
|
validationCode = validationCode,
|
||||||
captchaSid = captchaSid,
|
captchaSid = captchaSid,
|
||||||
captchaKey = captchaKey,
|
captchaKey = captchaKey
|
||||||
successToken = successToken
|
|
||||||
).asState()
|
).asState()
|
||||||
|
|
||||||
emit(newState)
|
emit(newState)
|
||||||
|
|||||||
@@ -6,8 +6,7 @@ import dev.meloda.fast.domain.AccountUseCaseImpl
|
|||||||
import dev.meloda.fast.domain.GetCurrentAccountUseCase
|
import dev.meloda.fast.domain.GetCurrentAccountUseCase
|
||||||
import dev.meloda.fast.domain.GetLocalUserByIdUseCase
|
import dev.meloda.fast.domain.GetLocalUserByIdUseCase
|
||||||
import dev.meloda.fast.domain.GetLocalUsersByIdsUseCase
|
import dev.meloda.fast.domain.GetLocalUsersByIdsUseCase
|
||||||
import dev.meloda.fast.domain.GetMessageReadPeersUseCase
|
import dev.meloda.fast.domain.LoadConversationsByIdUseCase
|
||||||
import dev.meloda.fast.domain.LoadConvosByIdUseCase
|
|
||||||
import dev.meloda.fast.domain.LoadUserByIdUseCase
|
import dev.meloda.fast.domain.LoadUserByIdUseCase
|
||||||
import dev.meloda.fast.domain.LoadUsersByIdsUseCase
|
import dev.meloda.fast.domain.LoadUsersByIdsUseCase
|
||||||
import dev.meloda.fast.domain.StoreUsersUseCase
|
import dev.meloda.fast.domain.StoreUsersUseCase
|
||||||
@@ -27,7 +26,5 @@ val domainModule = module {
|
|||||||
singleOf(::AccountUseCaseImpl) bind AccountUseCase::class
|
singleOf(::AccountUseCaseImpl) bind AccountUseCase::class
|
||||||
singleOf(::GetCurrentAccountUseCase)
|
singleOf(::GetCurrentAccountUseCase)
|
||||||
|
|
||||||
singleOf(::LoadConvosByIdUseCase)
|
singleOf(::LoadConversationsByIdUseCase)
|
||||||
|
|
||||||
singleOf(::GetMessageReadPeersUseCase)
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
package dev.meloda.fast.domain.util
|
|
||||||
|
|
||||||
import android.content.res.Resources
|
|
||||||
import dev.meloda.fast.common.util.TimeUtils
|
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
|
||||||
import dev.meloda.fast.ui.R
|
|
||||||
import dev.meloda.fast.ui.model.vk.ActionState
|
|
||||||
import dev.meloda.fast.ui.model.vk.ConvoOption
|
|
||||||
import dev.meloda.fast.ui.model.vk.UiConvo
|
|
||||||
import dev.meloda.fast.ui.util.ImmutableList
|
|
||||||
import dev.meloda.fast.ui.util.emptyImmutableList
|
|
||||||
|
|
||||||
fun VkConvo.asPresentation(
|
|
||||||
resources: Resources,
|
|
||||||
useContactName: Boolean,
|
|
||||||
isExpanded: Boolean = false,
|
|
||||||
options: ImmutableList<ConvoOption> = emptyImmutableList()
|
|
||||||
): UiConvo = UiConvo(
|
|
||||||
id = id,
|
|
||||||
lastMessageId = lastMessageId,
|
|
||||||
avatar = extractAvatar(),
|
|
||||||
title = extractTitle(useContactName, resources),
|
|
||||||
unreadCount = extractUnreadCount(lastMessage, this),
|
|
||||||
date = TimeUtils.getLocalizedTime(
|
|
||||||
date = (lastMessage?.date ?: -1) * 1000L,
|
|
||||||
yearShort = { resources.getString(R.string.year_short) },
|
|
||||||
monthShort = { resources.getString(R.string.month_short) },
|
|
||||||
weekShort = { resources.getString(R.string.week_short) },
|
|
||||||
dayShort = { resources.getString(R.string.day_short) },
|
|
||||||
minuteShort = { resources.getString(R.string.minute_short) },
|
|
||||||
secondShort = { resources.getString(R.string.second_short) },
|
|
||||||
now = { resources.getString(R.string.time_now) },
|
|
||||||
),
|
|
||||||
message = extractMessage(resources, lastMessage, id, peerType),
|
|
||||||
attachmentImage = if (lastMessage?.text == null) null
|
|
||||||
else extractAttachmentIcon(lastMessage),
|
|
||||||
isPinned = majorId > 0,
|
|
||||||
actionImageId = ActionState.parse(isPhantom, isCallInProgress).getResourceId(),
|
|
||||||
isBirthday = extractBirthday(this),
|
|
||||||
isUnread = !isRead(),
|
|
||||||
isAccount = isAccount(id),
|
|
||||||
isOnline = !isAccount(id) && user?.onlineStatus?.isOnline() == true,
|
|
||||||
lastMessage = lastMessage,
|
|
||||||
peerType = peerType,
|
|
||||||
interactionText = extractInteractionText(resources, this),
|
|
||||||
isExpanded = isExpanded,
|
|
||||||
isArchived = isArchived,
|
|
||||||
options = options
|
|
||||||
)
|
|
||||||
+1
-1
@@ -3,7 +3,7 @@ package dev.meloda.fast.domain.util
|
|||||||
import dev.meloda.fast.common.model.UiImage
|
import dev.meloda.fast.common.model.UiImage
|
||||||
import dev.meloda.fast.data.VkMemoryCache
|
import dev.meloda.fast.data.VkMemoryCache
|
||||||
import dev.meloda.fast.model.api.domain.VkUser
|
import dev.meloda.fast.model.api.domain.VkUser
|
||||||
import dev.meloda.fast.ui.model.vk.UiFriend
|
import dev.meloda.fast.ui.model.api.UiFriend
|
||||||
|
|
||||||
fun VkUser.asPresentation(
|
fun VkUser.asPresentation(
|
||||||
useContactNames: Boolean = false
|
useContactNames: Boolean = false
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
package dev.meloda.fast.domain.util
|
|
||||||
|
|
||||||
import androidx.compose.ui.text.buildAnnotatedString
|
|
||||||
import dev.meloda.fast.common.provider.ResourceProvider
|
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
|
||||||
import dev.meloda.fast.ui.R
|
|
||||||
import dev.meloda.fast.ui.model.vk.MessageUiItem
|
|
||||||
import dev.meloda.fast.ui.model.vk.SendingStatus
|
|
||||||
import dev.meloda.fast.ui.util.ImmutableList.Companion.toImmutableList
|
|
||||||
|
|
||||||
fun VkMessage.asPresentation(
|
|
||||||
convo: VkConvo,
|
|
||||||
resourceProvider: ResourceProvider,
|
|
||||||
showName: Boolean,
|
|
||||||
prevMessage: VkMessage?,
|
|
||||||
nextMessage: VkMessage?,
|
|
||||||
showTimeInActionMessages: Boolean,
|
|
||||||
isSelected: Boolean
|
|
||||||
): MessageUiItem = when {
|
|
||||||
action != null -> MessageUiItem.ActionMessage(
|
|
||||||
id = id,
|
|
||||||
cmId = cmId,
|
|
||||||
text = extractActionText(
|
|
||||||
resources = resourceProvider.resources,
|
|
||||||
youPrefix = resourceProvider.getString(R.string.you_message_prefix),
|
|
||||||
showTime = showTimeInActionMessages
|
|
||||||
) ?: buildAnnotatedString { },
|
|
||||||
actionCmId = actionCmId
|
|
||||||
)
|
|
||||||
|
|
||||||
else -> MessageUiItem.Message(
|
|
||||||
id = id,
|
|
||||||
cmId = cmId,
|
|
||||||
text = extractTextWithVisualizedMentions(
|
|
||||||
isOut = isOut,
|
|
||||||
originalText = text,
|
|
||||||
formatData = formatData
|
|
||||||
),
|
|
||||||
isOut = isOut,
|
|
||||||
fromId = fromId,
|
|
||||||
date = extractDate(),
|
|
||||||
randomId = randomId,
|
|
||||||
isInChat = isPeerChat(),
|
|
||||||
name = extractTitle(),
|
|
||||||
showDate = true,
|
|
||||||
showAvatar = extractShowAvatar(nextMessage),
|
|
||||||
showName = showName && extractShowName(prevMessage),
|
|
||||||
avatar = extractAvatar(),
|
|
||||||
isEdited = updateTime != null,
|
|
||||||
isRead = isRead(convo),
|
|
||||||
sendingStatus = when {
|
|
||||||
isFailed() -> SendingStatus.FAILED
|
|
||||||
id <= 0 -> SendingStatus.SENDING
|
|
||||||
else -> SendingStatus.SENT
|
|
||||||
},
|
|
||||||
isSelected = isSelected,
|
|
||||||
isPinned = isPinned,
|
|
||||||
isImportant = isImportant,
|
|
||||||
attachments = attachments?.ifEmpty { null }?.toImmutableList(),
|
|
||||||
replyCmId = replyMessage?.cmId,
|
|
||||||
replyTitle = extractReplyTitle(),
|
|
||||||
replySummary = replyMessage?.extractReplySummary(resourceProvider.resources)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,177 +0,0 @@
|
|||||||
package dev.meloda.fast.domain.util
|
|
||||||
|
|
||||||
import androidx.compose.ui.graphics.Color
|
|
||||||
import androidx.compose.ui.text.AnnotatedString
|
|
||||||
import androidx.compose.ui.text.SpanStyle
|
|
||||||
import androidx.compose.ui.text.StringAnnotation
|
|
||||||
import androidx.compose.ui.text.font.FontStyle
|
|
||||||
import androidx.compose.ui.text.font.FontWeight
|
|
||||||
import androidx.compose.ui.text.style.TextDecoration
|
|
||||||
import com.conena.nanokt.collections.indexOfFirstOrNull
|
|
||||||
import dev.meloda.fast.common.extensions.collidesWith
|
|
||||||
import dev.meloda.fast.common.extensions.minus
|
|
||||||
import dev.meloda.fast.data.UserConfig
|
|
||||||
import dev.meloda.fast.model.api.domain.FormatDataType
|
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
|
||||||
import dev.meloda.fast.ui.model.vk.MentionIndex
|
|
||||||
import dev.meloda.fast.ui.model.vk.MessageUiItem
|
|
||||||
|
|
||||||
fun emptyAnnotatedString(): AnnotatedString = AnnotatedString(text = "")
|
|
||||||
|
|
||||||
fun AnnotatedString?.orEmpty(): AnnotatedString = this ?: emptyAnnotatedString()
|
|
||||||
|
|
||||||
fun String.annotated(): AnnotatedString = AnnotatedString(text = this)
|
|
||||||
|
|
||||||
fun isAccount(id: Long) = id == UserConfig.userId
|
|
||||||
|
|
||||||
fun extractTextWithVisualizedMentions(
|
|
||||||
isOut: Boolean,
|
|
||||||
originalText: String?,
|
|
||||||
formatData: VkMessage.FormatData?
|
|
||||||
): AnnotatedString? {
|
|
||||||
if (originalText == null) return null
|
|
||||||
|
|
||||||
val annotations =
|
|
||||||
mutableListOf<AnnotatedString.Range<out androidx.compose.ui.text.AnnotatedString.Annotation>>()
|
|
||||||
|
|
||||||
val regex = """\[(id|club)(\d+)\|([^]]+)]""".toRegex()
|
|
||||||
|
|
||||||
val mentions = mutableListOf<MentionIndex>()
|
|
||||||
|
|
||||||
var currentIndex = 0
|
|
||||||
val replacements = mutableListOf<Pair<IntRange, String>>()
|
|
||||||
|
|
||||||
val newText = regex.replace(originalText) { matchResult ->
|
|
||||||
val idPrefix = matchResult.groups[1]?.value.orEmpty()
|
|
||||||
val startIndex = matchResult.range.first
|
|
||||||
val endIndex = matchResult.range.last
|
|
||||||
|
|
||||||
val id = matchResult.groups[2]?.value ?: ""
|
|
||||||
|
|
||||||
val replaced = matchResult.groups[3]?.value.orEmpty()
|
|
||||||
|
|
||||||
val indexRange =
|
|
||||||
(startIndex + currentIndex)..startIndex + currentIndex + replaced.length
|
|
||||||
|
|
||||||
replacements.add(indexRange to replaced)
|
|
||||||
|
|
||||||
mentions += MentionIndex(
|
|
||||||
id = id.toLongOrNull() ?: -1,
|
|
||||||
idPrefix = idPrefix,
|
|
||||||
indexRange = indexRange
|
|
||||||
)
|
|
||||||
|
|
||||||
currentIndex += replaced.length - (endIndex - startIndex + 1)
|
|
||||||
|
|
||||||
replaced
|
|
||||||
}
|
|
||||||
|
|
||||||
mentions.forEach { mention ->
|
|
||||||
val startIndex = mention.indexRange.first
|
|
||||||
val endIndex = mention.indexRange.last
|
|
||||||
|
|
||||||
annotations += if (isOut) {
|
|
||||||
AnnotatedString.Range(
|
|
||||||
item = SpanStyle(textDecoration = TextDecoration.Underline),
|
|
||||||
start = startIndex,
|
|
||||||
end = endIndex
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
AnnotatedString.Range(
|
|
||||||
item = SpanStyle(color = Color.Red),
|
|
||||||
start = startIndex,
|
|
||||||
end = endIndex
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
annotations += AnnotatedString.Range(
|
|
||||||
item = StringAnnotation(mention.id.toString()),
|
|
||||||
tag = mention.idPrefix,
|
|
||||||
start = startIndex,
|
|
||||||
end = endIndex
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (formatData == null) {
|
|
||||||
return AnnotatedString(text = newText, annotations = annotations)
|
|
||||||
}
|
|
||||||
|
|
||||||
var current = 0
|
|
||||||
|
|
||||||
val newOffsets = formatData.items.map { (offset, length) ->
|
|
||||||
val r = replacements.filter { (range, _) ->
|
|
||||||
(range - current) collidesWith (offset..<offset + length) || offset > range.first
|
|
||||||
}
|
|
||||||
|
|
||||||
current = r.sumOf { (range, _) -> range.last - range.first - 1 }
|
|
||||||
|
|
||||||
offset + current
|
|
||||||
}
|
|
||||||
|
|
||||||
formatData.items.forEachIndexed { index, item ->
|
|
||||||
val offset = newOffsets[index]
|
|
||||||
|
|
||||||
val spanStyle = when (item.type) {
|
|
||||||
FormatDataType.BOLD -> {
|
|
||||||
SpanStyle(fontWeight = FontWeight.SemiBold)
|
|
||||||
}
|
|
||||||
|
|
||||||
FormatDataType.ITALIC -> {
|
|
||||||
SpanStyle(fontStyle = FontStyle.Italic)
|
|
||||||
}
|
|
||||||
|
|
||||||
FormatDataType.UNDERLINE -> {
|
|
||||||
SpanStyle(textDecoration = TextDecoration.Underline)
|
|
||||||
}
|
|
||||||
|
|
||||||
FormatDataType.URL -> {
|
|
||||||
annotations += AnnotatedString.Range(
|
|
||||||
item = StringAnnotation(item.url.orEmpty()),
|
|
||||||
start = offset,
|
|
||||||
end = offset + item.length,
|
|
||||||
tag = newText.substring(offset, offset + item.length)
|
|
||||||
)
|
|
||||||
|
|
||||||
if (isOut) {
|
|
||||||
SpanStyle(
|
|
||||||
fontWeight = FontWeight.SemiBold,
|
|
||||||
textDecoration = TextDecoration.Underline
|
|
||||||
)
|
|
||||||
|
|
||||||
} else {
|
|
||||||
SpanStyle(
|
|
||||||
fontWeight = FontWeight.SemiBold,
|
|
||||||
color = Color.Red
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
annotations += AnnotatedString.Range(
|
|
||||||
item = spanStyle,
|
|
||||||
start = offset,
|
|
||||||
end = offset + item.length
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return AnnotatedString(text = newText, annotations = annotations)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.firstMessage(): MessageUiItem.Message =
|
|
||||||
filterIsInstance<MessageUiItem.Message>().first()
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.firstMessageOrNull(): MessageUiItem.Message? =
|
|
||||||
filterIsInstance<MessageUiItem.Message>().firstOrNull()
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.indexOfMessageById(messageId: Long): Int =
|
|
||||||
indexOfFirst { it.id == messageId }
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.findMessageById(messageId: Long): MessageUiItem.Message? =
|
|
||||||
firstOrNull { it.id == messageId } as MessageUiItem.Message?
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.indexOfMessageByCmId(cmId: Long): Int? =
|
|
||||||
indexOfFirstOrNull { it.cmId == cmId }
|
|
||||||
|
|
||||||
fun List<MessageUiItem>.findMessageByCmId(cmId: Long): MessageUiItem.Message =
|
|
||||||
first { it.cmId == cmId } as MessageUiItem.Message
|
|
||||||
@@ -4,7 +4,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "dev.meloda.fast.model"
|
namespace = "dev.meloda.fast.datastore"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -12,7 +12,7 @@ dependencies {
|
|||||||
ksp(libs.moshi.kotlin.codegen)
|
ksp(libs.moshi.kotlin.codegen)
|
||||||
|
|
||||||
implementation(platform(libs.compose.bom))
|
implementation(platform(libs.compose.bom))
|
||||||
implementation(libs.compose.ui)
|
implementation(libs.bundles.compose)
|
||||||
|
|
||||||
implementation(libs.room.ktx)
|
implementation(libs.room.ktx)
|
||||||
implementation(libs.room.runtime)
|
implementation(libs.room.runtime)
|
||||||
|
|||||||
+4
-4
@@ -1,6 +1,6 @@
|
|||||||
package dev.meloda.fast.model
|
package dev.meloda.fast.model
|
||||||
|
|
||||||
enum class ConvoFlags(val value: Int) {
|
enum class ConversationFlags(val value: Int) {
|
||||||
DISABLE_PUSH(16),
|
DISABLE_PUSH(16),
|
||||||
DISABLE_SOUND(32),
|
DISABLE_SOUND(32),
|
||||||
INCOMING_CHAT_REQUEST(256),
|
INCOMING_CHAT_REQUEST(256),
|
||||||
@@ -17,10 +17,10 @@ enum class ConvoFlags(val value: Int) {
|
|||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
fun parse(mask: Int): List<ConvoFlags> {
|
fun parse(mask: Int): List<ConversationFlags> {
|
||||||
val flags = mutableListOf<ConvoFlags>()
|
val flags = mutableListOf<ConversationFlags>()
|
||||||
|
|
||||||
ConvoFlags.entries.forEach { flag ->
|
ConversationFlags.entries.forEach { flag ->
|
||||||
if (mask and flag.value > 0) {
|
if (mask and flag.value > 0) {
|
||||||
flags.add(flag)
|
flags.add(flag)
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
package dev.meloda.fast.model
|
package dev.meloda.fast.model
|
||||||
|
|
||||||
enum class ConvosFilter {
|
enum class ConversationsFilter {
|
||||||
ALL, UNREAD, ARCHIVE, BUSINESS_NOTIFY
|
ALL, UNREAD, ARCHIVE, BUSINESS_NOTIFY
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
package dev.meloda.fast.model
|
package dev.meloda.fast.model
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
|
|
||||||
sealed interface LongPollParsedEvent {
|
sealed interface LongPollParsedEvent {
|
||||||
@@ -92,7 +92,7 @@ sealed interface LongPollParsedEvent {
|
|||||||
) : LongPollParsedEvent
|
) : LongPollParsedEvent
|
||||||
|
|
||||||
data class ChatArchived(
|
data class ChatArchived(
|
||||||
val convo: VkConvo,
|
val conversation: VkConversation,
|
||||||
val archived: Boolean
|
val archived: Boolean
|
||||||
) : LongPollParsedEvent
|
) : LongPollParsedEvent
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
package dev.meloda.fast.model
|
|
||||||
|
|
||||||
data class PhotoSize(
|
|
||||||
val height: Int,
|
|
||||||
val width: Int,
|
|
||||||
val type: String,
|
|
||||||
val url: String
|
|
||||||
)
|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
package dev.meloda.fast.model.api
|
package dev.meloda.fast.model.api
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
|
||||||
|
|
||||||
enum class PeerType(val value: String) {
|
enum class PeerType(val value: String) {
|
||||||
USER("user"),
|
USER("user"),
|
||||||
GROUP("group"),
|
GROUP("group"),
|
||||||
@@ -15,14 +13,5 @@ enum class PeerType(val value: String) {
|
|||||||
fun parse(type: String): PeerType {
|
fun parse(type: String): PeerType {
|
||||||
return entries.first { it.value == type }
|
return entries.first { it.value == type }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun VkMessage.getPeerType(): PeerType {
|
|
||||||
return when {
|
|
||||||
peerId > 2_000_000_000 -> CHAT
|
|
||||||
peerId > 0 -> USER
|
|
||||||
peerId < 0 -> GROUP
|
|
||||||
else -> throw IllegalArgumentException("Unknown peer type for peerId: 0")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ enum class AttachmentType(var value: String) {
|
|||||||
UNKNOWN("unknown"),
|
UNKNOWN("unknown"),
|
||||||
PHOTO("photo"),
|
PHOTO("photo"),
|
||||||
VIDEO("video"),
|
VIDEO("video"),
|
||||||
FILE("doc"),
|
|
||||||
AUDIO("audio"),
|
AUDIO("audio"),
|
||||||
|
FILE("doc"),
|
||||||
LINK("link"),
|
LINK("link"),
|
||||||
AUDIO_MESSAGE("audio_message"),
|
AUDIO_MESSAGE("audio_message"),
|
||||||
MINI_APP("mini_app"),
|
MINI_APP("mini_app"),
|
||||||
@@ -30,8 +30,7 @@ enum class AttachmentType(var value: String) {
|
|||||||
ARTICLE("article"),
|
ARTICLE("article"),
|
||||||
VIDEO_MESSAGE("video_message"),
|
VIDEO_MESSAGE("video_message"),
|
||||||
GROUP_CHAT_STICKER("ugc_sticker"),
|
GROUP_CHAT_STICKER("ugc_sticker"),
|
||||||
STICKER_PACK_PREVIEW("sticker_pack_preview"),
|
STICKER_PACK_PREVIEW("sticker_pack_preview")
|
||||||
CHANNEL_MESSAGE("channel_message")
|
|
||||||
;
|
;
|
||||||
|
|
||||||
fun isMultiple(): Boolean = this in listOf(PHOTO, VIDEO, AUDIO, FILE)
|
fun isMultiple(): Boolean = this in listOf(PHOTO, VIDEO, AUDIO, FILE)
|
||||||
|
|||||||
+2
-2
@@ -8,7 +8,7 @@ import dev.meloda.fast.model.api.domain.VkAttachmentHistoryMessage
|
|||||||
data class VkAttachmentHistoryMessageData(
|
data class VkAttachmentHistoryMessageData(
|
||||||
@Json(name = "message_id") val messageId: Long,
|
@Json(name = "message_id") val messageId: Long,
|
||||||
@Json(name = "date") val date: Int,
|
@Json(name = "date") val date: Int,
|
||||||
@Json(name = "cmid") val cmId: Long,
|
@Json(name = "cmid") val conversationMessageId: Long,
|
||||||
@Json(name = "from_id") val fromId: Long,
|
@Json(name = "from_id") val fromId: Long,
|
||||||
@Json(name = "position") val position: Int,
|
@Json(name = "position") val position: Int,
|
||||||
@Json(name = "attachment") val attachment: VkAttachmentItemData
|
@Json(name = "attachment") val attachment: VkAttachmentItemData
|
||||||
@@ -16,7 +16,7 @@ data class VkAttachmentHistoryMessageData(
|
|||||||
|
|
||||||
fun toDomain(): VkAttachmentHistoryMessage = VkAttachmentHistoryMessage(
|
fun toDomain(): VkAttachmentHistoryMessage = VkAttachmentHistoryMessage(
|
||||||
messageId = messageId,
|
messageId = messageId,
|
||||||
cmId = cmId,
|
conversationMessageId = conversationMessageId,
|
||||||
date = date,
|
date = date,
|
||||||
fromId = fromId,
|
fromId = fromId,
|
||||||
position = position,
|
position = position,
|
||||||
|
|||||||
@@ -35,8 +35,7 @@ data class VkAttachmentItemData(
|
|||||||
@Json(name = "article") val article: VkArticleData?,
|
@Json(name = "article") val article: VkArticleData?,
|
||||||
@Json(name = "video_message") val videoMessage: VkVideoMessageData?,
|
@Json(name = "video_message") val videoMessage: VkVideoMessageData?,
|
||||||
@Json(name = "ugc_sticker") val groupSticker: VkGroupStickerData?,
|
@Json(name = "ugc_sticker") val groupSticker: VkGroupStickerData?,
|
||||||
@Json(name = "sticker_pack_preview") val stickerPackPreview: VkStickerPackPreviewData?,
|
@Json(name = "sticker_pack_preview") val stickerPackPreview: VkStickerPackPreviewData?
|
||||||
@Json(name = "channel_message") val channelMessageData: VkChannelMessageData?
|
|
||||||
) {
|
) {
|
||||||
fun toDomain(): VkAttachment = when (AttachmentType.parse(type)) {
|
fun toDomain(): VkAttachment = when (AttachmentType.parse(type)) {
|
||||||
AttachmentType.UNKNOWN -> VkUnknownAttachment
|
AttachmentType.UNKNOWN -> VkUnknownAttachment
|
||||||
@@ -67,6 +66,5 @@ data class VkAttachmentItemData(
|
|||||||
AttachmentType.VIDEO_MESSAGE -> videoMessage?.toDomain()
|
AttachmentType.VIDEO_MESSAGE -> videoMessage?.toDomain()
|
||||||
AttachmentType.GROUP_CHAT_STICKER -> groupSticker?.toDomain()
|
AttachmentType.GROUP_CHAT_STICKER -> groupSticker?.toDomain()
|
||||||
AttachmentType.STICKER_PACK_PREVIEW -> stickerPackPreview?.toDomain()
|
AttachmentType.STICKER_PACK_PREVIEW -> stickerPackPreview?.toDomain()
|
||||||
AttachmentType.CHANNEL_MESSAGE -> channelMessageData?.toDomain()
|
|
||||||
} ?: VkUnknownAttachment
|
} ?: VkUnknownAttachment
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,40 +0,0 @@
|
|||||||
package dev.meloda.fast.model.api.data
|
|
||||||
|
|
||||||
import com.squareup.moshi.Json
|
|
||||||
import com.squareup.moshi.JsonClass
|
|
||||||
import dev.meloda.fast.model.api.domain.VkChannelMessage
|
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
|
||||||
data class VkChannelMessageData(
|
|
||||||
@Json(name = "channel_id") val channelId: Long,
|
|
||||||
@Json(name = "cmid") val cmId: Long,
|
|
||||||
@Json(name = "author_id") val authorId: Long,
|
|
||||||
@Json(name = "channel_info") val channelInfo: ChannelInfo,
|
|
||||||
@Json(name = "channel_type") val channelType: String,
|
|
||||||
@Json(name = "guid") val guid: String,
|
|
||||||
@Json(name = "text") val text: String?,
|
|
||||||
@Json(name = "time") val time: Long,
|
|
||||||
@Json(name = "attachments") val attachments: List<VkAttachmentItemData> = emptyList(),
|
|
||||||
) : VkAttachmentData {
|
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
|
||||||
data class ChannelInfo(
|
|
||||||
@Json(name = "photo_base") val photoBase: String?,
|
|
||||||
@Json(name = "title") val title: String
|
|
||||||
)
|
|
||||||
|
|
||||||
fun toDomain(): VkChannelMessage = VkChannelMessage(
|
|
||||||
channelId = channelId,
|
|
||||||
cmId = cmId,
|
|
||||||
authorId = authorId,
|
|
||||||
channelInfo = VkChannelMessage.ChannelInfo(
|
|
||||||
title = channelInfo.title,
|
|
||||||
photoBase = channelInfo.photoBase
|
|
||||||
),
|
|
||||||
channelType = channelType,
|
|
||||||
guid = guid,
|
|
||||||
text = text,
|
|
||||||
time = time,
|
|
||||||
attachments = attachments.map(VkAttachmentItemData::toDomain),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
+9
-9
@@ -3,19 +3,19 @@ package dev.meloda.fast.model.api.data
|
|||||||
import com.squareup.moshi.Json
|
import com.squareup.moshi.Json
|
||||||
import com.squareup.moshi.JsonClass
|
import com.squareup.moshi.JsonClass
|
||||||
import dev.meloda.fast.model.api.PeerType
|
import dev.meloda.fast.model.api.PeerType
|
||||||
import dev.meloda.fast.model.api.domain.VkConvo
|
import dev.meloda.fast.model.api.domain.VkConversation
|
||||||
import dev.meloda.fast.model.api.domain.VkMessage
|
import dev.meloda.fast.model.api.domain.VkMessage
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class VkConvoData(
|
data class VkConversationData(
|
||||||
@Json(name = "peer") val peer: Peer,
|
@Json(name = "peer") val peer: Peer,
|
||||||
@Json(name = "last_message_id") val lastMessageId: Long?,
|
@Json(name = "last_message_id") val lastMessageId: Long?,
|
||||||
@Json(name = "in_read") val inRead: Long,
|
@Json(name = "in_read") val inRead: Long,
|
||||||
@Json(name = "out_read") val outRead: Long,
|
@Json(name = "out_read") val outRead: Long,
|
||||||
@Json(name = "in_read_cmid") val inReadCmId: Long,
|
@Json(name = "in_read_cmid") val inReadConversationMessageId: Long,
|
||||||
@Json(name = "out_read_cmid") val outReadCmId: Long,
|
@Json(name = "out_read_cmid") val outReadConversationMessageId: Long,
|
||||||
@Json(name = "sort_id") val sortId: SortId,
|
@Json(name = "sort_id") val sortId: SortId,
|
||||||
@Json(name = "last_conversation_message_id") val lastCmId: Long,
|
@Json(name = "last_conversation_message_id") val lastConversationMessageId: Long,
|
||||||
@Json(name = "is_marked_unread") val isMarkedUnread: Boolean,
|
@Json(name = "is_marked_unread") val isMarkedUnread: Boolean,
|
||||||
@Json(name = "important") val important: Boolean,
|
@Json(name = "important") val important: Boolean,
|
||||||
@Json(name = "push_settings") val pushSettings: PushSettings?,
|
@Json(name = "push_settings") val pushSettings: PushSettings?,
|
||||||
@@ -111,7 +111,7 @@ data class VkConvoData(
|
|||||||
|
|
||||||
fun asDomain(
|
fun asDomain(
|
||||||
lastMessage: VkMessage? = null,
|
lastMessage: VkMessage? = null,
|
||||||
): VkConvo = VkConvo(
|
): VkConversation = VkConversation(
|
||||||
id = peer.id,
|
id = peer.id,
|
||||||
localId = peer.localId,
|
localId = peer.localId,
|
||||||
title = chatSettings?.title,
|
title = chatSettings?.title,
|
||||||
@@ -120,7 +120,7 @@ data class VkConvoData(
|
|||||||
photo200 = chatSettings?.photo?.photo200,
|
photo200 = chatSettings?.photo?.photo200,
|
||||||
isCallInProgress = callInProgress != null,
|
isCallInProgress = callInProgress != null,
|
||||||
isPhantom = chatSettings?.isDisappearing == true,
|
isPhantom = chatSettings?.isDisappearing == true,
|
||||||
lastCmId = lastCmId,
|
lastCmId = lastConversationMessageId,
|
||||||
inRead = inRead,
|
inRead = inRead,
|
||||||
outRead = outRead,
|
outRead = outRead,
|
||||||
lastMessageId = lastMessageId,
|
lastMessageId = lastMessageId,
|
||||||
@@ -132,8 +132,8 @@ data class VkConvoData(
|
|||||||
canChangePin = chatSettings?.acl?.canChangePin == true,
|
canChangePin = chatSettings?.acl?.canChangePin == true,
|
||||||
canChangeInfo = chatSettings?.acl?.canChangeInfo == true,
|
canChangeInfo = chatSettings?.acl?.canChangeInfo == true,
|
||||||
pinnedMessageId = chatSettings?.pinnedMessage?.id,
|
pinnedMessageId = chatSettings?.pinnedMessage?.id,
|
||||||
inReadCmId = inReadCmId,
|
inReadCmId = inReadConversationMessageId,
|
||||||
outReadCmId = outReadCmId,
|
outReadCmId = outReadConversationMessageId,
|
||||||
interactionType = -1,
|
interactionType = -1,
|
||||||
interactionIds = emptyList(),
|
interactionIds = emptyList(),
|
||||||
peerType = PeerType.parse(peer.type),
|
peerType = PeerType.parse(peer.type),
|
||||||
@@ -27,9 +27,7 @@ data class VkFileData(
|
|||||||
) {
|
) {
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class Photo(
|
data class Photo(val sizes: List<Size>) {
|
||||||
val sizes: List<Size>
|
|
||||||
) {
|
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class Size(
|
data class Size(
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
package dev.meloda.fast.model.api.data
|
package dev.meloda.fast.model.api.data
|
||||||
|
|
||||||
|
import dev.meloda.fast.model.api.domain.VkGiftDomain
|
||||||
import com.squareup.moshi.Json
|
import com.squareup.moshi.Json
|
||||||
import com.squareup.moshi.JsonClass
|
import com.squareup.moshi.JsonClass
|
||||||
import dev.meloda.fast.model.api.domain.VkGiftDomain
|
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class VkGiftData(
|
data class VkGiftData(
|
||||||
@Json(name = "id") val id: Long,
|
@Json(name = "id") val id: Long,
|
||||||
@Json(name = "thumb_512") val thumb512: String?,
|
|
||||||
@Json(name = "thumb_256") val thumb256: String?,
|
@Json(name = "thumb_256") val thumb256: String?,
|
||||||
@Json(name = "thumb_96") val thumb96: String?,
|
@Json(name = "thumb_96") val thumb96: String?,
|
||||||
@Json(name = "thumb_48") val thumb48: String
|
@Json(name = "thumb_48") val thumb48: String
|
||||||
@@ -15,7 +14,6 @@ data class VkGiftData(
|
|||||||
|
|
||||||
fun toDomain() = VkGiftDomain(
|
fun toDomain() = VkGiftDomain(
|
||||||
id = id,
|
id = id,
|
||||||
thumb512 = thumb512,
|
|
||||||
thumb256 = thumb256,
|
thumb256 = thumb256,
|
||||||
thumb96 = thumb96,
|
thumb96 = thumb96,
|
||||||
thumb48 = thumb48
|
thumb48 = thumb48
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ data class VkMessageData(
|
|||||||
@Json(name = "type") val type: String,
|
@Json(name = "type") val type: String,
|
||||||
@Json(name = "member_id") val memberId: Long?,
|
@Json(name = "member_id") val memberId: Long?,
|
||||||
@Json(name = "text") val text: String?,
|
@Json(name = "text") val text: String?,
|
||||||
@Json(name = "conversation_message_id") val cmId: Long?,
|
@Json(name = "conversation_message_id") val conversationMessageId: Long?,
|
||||||
@Json(name = "message") val message: String?
|
@Json(name = "message") val message: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -102,10 +102,10 @@ fun VkMessageData.asDomain(): VkMessage = VkMessage(
|
|||||||
action = VkMessage.Action.parse(action?.type),
|
action = VkMessage.Action.parse(action?.type),
|
||||||
actionMemberId = action?.memberId,
|
actionMemberId = action?.memberId,
|
||||||
actionText = action?.text,
|
actionText = action?.text,
|
||||||
actionCmId = action?.cmId,
|
actionConversationMessageId = action?.conversationMessageId,
|
||||||
actionMessage = action?.message,
|
actionMessage = action?.message,
|
||||||
geoType = geo?.type,
|
geoType = geo?.type,
|
||||||
isImportant = important == true,
|
isImportant = important ?: false,
|
||||||
updateTime = updateTime,
|
updateTime = updateTime,
|
||||||
forwards = fwdMessages.orEmpty().map(VkMessageData::asDomain),
|
forwards = fwdMessages.orEmpty().map(VkMessageData::asDomain),
|
||||||
attachments = attachments.map(VkAttachmentItemData::toDomain),
|
attachments = attachments.map(VkAttachmentItemData::toDomain),
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package dev.meloda.fast.model.api.data
|
|||||||
|
|
||||||
import com.squareup.moshi.Json
|
import com.squareup.moshi.Json
|
||||||
import com.squareup.moshi.JsonClass
|
import com.squareup.moshi.JsonClass
|
||||||
import dev.meloda.fast.model.PhotoSize
|
|
||||||
import dev.meloda.fast.model.api.domain.VkPhotoDomain
|
import dev.meloda.fast.model.api.domain.VkPhotoDomain
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
@@ -36,14 +35,7 @@ data class VkPhotoData(
|
|||||||
ownerId = ownerId,
|
ownerId = ownerId,
|
||||||
hasTags = hasTags == true,
|
hasTags = hasTags == true,
|
||||||
accessKey = accessKey,
|
accessKey = accessKey,
|
||||||
sizes = sizes.map { size ->
|
sizes = sizes,
|
||||||
PhotoSize(
|
|
||||||
height = size.height,
|
|
||||||
width = size.width,
|
|
||||||
type = size.type,
|
|
||||||
url = size.url
|
|
||||||
)
|
|
||||||
},
|
|
||||||
text = text,
|
text = text,
|
||||||
userId = userId
|
userId = userId
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ data class VkPinnedMessageData(
|
|||||||
@Json(name = "from_id") val fromId: Long,
|
@Json(name = "from_id") val fromId: Long,
|
||||||
@Json(name = "out") val out: Boolean?,
|
@Json(name = "out") val out: Boolean?,
|
||||||
@Json(name = "text") val text: String,
|
@Json(name = "text") val text: String,
|
||||||
@Json(name = "conversation_message_id") val cmId: Long,
|
@Json(name = "conversation_message_id") val conversationMessageId: Long,
|
||||||
@Json(name = "fwd_messages") val forwards: List<VkMessageData>?,
|
@Json(name = "fwd_messages") val forwards: List<VkMessageData>?,
|
||||||
@Json(name = "important") val important: Boolean = false,
|
@Json(name = "important") val important: Boolean = false,
|
||||||
@Json(name = "random_id") val randomId: Long = 0,
|
@Json(name = "random_id") val randomId: Long = 0,
|
||||||
@@ -28,7 +28,7 @@ data class VkPinnedMessageData(
|
|||||||
|
|
||||||
fun mapToDomain(): VkMessage = VkMessage(
|
fun mapToDomain(): VkMessage = VkMessage(
|
||||||
id = id ?: -1,
|
id = id ?: -1,
|
||||||
cmId = cmId,
|
cmId = conversationMessageId,
|
||||||
text = text.ifBlank { null },
|
text = text.ifBlank { null },
|
||||||
isOut = out == true,
|
isOut = out == true,
|
||||||
peerId = peerId ?: -1,
|
peerId = peerId ?: -1,
|
||||||
@@ -38,7 +38,7 @@ data class VkPinnedMessageData(
|
|||||||
action = VkMessage.Action.parse(action?.type),
|
action = VkMessage.Action.parse(action?.type),
|
||||||
actionMemberId = action?.memberId,
|
actionMemberId = action?.memberId,
|
||||||
actionText = action?.text,
|
actionText = action?.text,
|
||||||
actionCmId = action?.cmId,
|
actionConversationMessageId = action?.conversationMessageId,
|
||||||
actionMessage = action?.message,
|
actionMessage = action?.message,
|
||||||
geoType = geo?.type,
|
geoType = geo?.type,
|
||||||
isImportant = important,
|
isImportant = important,
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ data class VkUserData(
|
|||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class LastSeen(
|
data class LastSeen(
|
||||||
@Json(name = "platform") val platform: Int?,
|
@Json(name = "platform") val platform: Int,
|
||||||
@Json(name = "time") val time: Int
|
@Json(name = "time") val time: Int
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ data class VkVideoData(
|
|||||||
@Json(name = "is_favorite") val isFavorite: Boolean?,
|
@Json(name = "is_favorite") val isFavorite: Boolean?,
|
||||||
@Json(name = "image") val image: List<Image>?,
|
@Json(name = "image") val image: List<Image>?,
|
||||||
@Json(name = "first_frame") val firstFrame: List<FirstFrame>?,
|
@Json(name = "first_frame") val firstFrame: List<FirstFrame>?,
|
||||||
@Json(name = "files") val files: File?,
|
@Json(name = "files") val files: File?
|
||||||
) : VkAttachmentData {
|
) : VkAttachmentData {
|
||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
@@ -73,7 +73,6 @@ data class VkVideoData(
|
|||||||
accessKey = accessKey,
|
accessKey = accessKey,
|
||||||
title = title,
|
title = title,
|
||||||
views = views,
|
views = views,
|
||||||
duration = duration,
|
duration = duration
|
||||||
isShortVideo = type == "short_video"
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,9 +54,9 @@ data class VkVideoMessageData(
|
|||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class Image(
|
data class Image(
|
||||||
val height: Int,
|
val height: Int?,
|
||||||
val url: String,
|
val url: String?,
|
||||||
val width: Int,
|
val width: Int?,
|
||||||
val with_padding: Int?,
|
val with_padding: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -73,7 +73,6 @@ data class VkVideoMessageData(
|
|||||||
)
|
)
|
||||||
|
|
||||||
fun toDomain(): VkVideoMessageDomain = VkVideoMessageDomain(
|
fun toDomain(): VkVideoMessageDomain = VkVideoMessageDomain(
|
||||||
id = id,
|
id = id
|
||||||
image = image.orEmpty().filter { it.width / it.height == 1 }.maxByOrNull { it.width }?.url
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,10 +9,10 @@ data class VkWallReplyData(
|
|||||||
val from_id: Long,
|
val from_id: Long,
|
||||||
val date: Int,
|
val date: Int,
|
||||||
val text: String,
|
val text: String,
|
||||||
val post_id: Long?,
|
val post_id: Long,
|
||||||
val owner_id: Long?,
|
val owner_id: Long,
|
||||||
val parents_stack: List<Int>?,
|
val parents_stack: List<Int>,
|
||||||
val likes: Likes?,
|
val likes: Likes,
|
||||||
val reply_to_user: Int?,
|
val reply_to_user: Int?,
|
||||||
val reply_to_comment: Int?
|
val reply_to_comment: Int?
|
||||||
) {
|
) {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import com.squareup.moshi.JsonClass
|
|||||||
|
|
||||||
@JsonClass(generateAdapter = true)
|
@JsonClass(generateAdapter = true)
|
||||||
data class VkWidgetData(
|
data class VkWidgetData(
|
||||||
val id: Long?
|
val id: Long
|
||||||
) : VkAttachmentData {
|
) : VkAttachmentData {
|
||||||
|
|
||||||
fun toDomain() = VkWidgetDomain(id)
|
fun toDomain() = VkWidgetDomain(id)
|
||||||
|
|||||||
@@ -3,10 +3,6 @@ package dev.meloda.fast.model.api.domain
|
|||||||
enum class FormatDataType {
|
enum class FormatDataType {
|
||||||
BOLD, ITALIC, UNDERLINE, URL;
|
BOLD, ITALIC, UNDERLINE, URL;
|
||||||
|
|
||||||
override fun toString(): String {
|
|
||||||
return super.toString().lowercase()
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun parse(value: String): FormatDataType? =
|
fun parse(value: String): FormatDataType? =
|
||||||
entries.firstOrNull { it.name.lowercase() == value }
|
entries.firstOrNull { it.name.lowercase() == value }
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
package dev.meloda.fast.model.api.domain
|
package dev.meloda.fast.model.api.domain
|
||||||
|
|
||||||
import androidx.compose.runtime.Immutable
|
|
||||||
import dev.meloda.fast.model.api.data.AttachmentType
|
import dev.meloda.fast.model.api.data.AttachmentType
|
||||||
|
|
||||||
@Immutable
|
|
||||||
interface VkAttachment {
|
interface VkAttachment {
|
||||||
val type: AttachmentType
|
val type: AttachmentType
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@ package dev.meloda.fast.model.api.domain
|
|||||||
|
|
||||||
data class VkAttachmentHistoryMessage(
|
data class VkAttachmentHistoryMessage(
|
||||||
val messageId: Long,
|
val messageId: Long,
|
||||||
val cmId: Long,
|
val conversationMessageId: Long,
|
||||||
val date: Int,
|
val date: Int,
|
||||||
val fromId: Long,
|
val fromId: Long,
|
||||||
val position: Int,
|
val position: Int,
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
package dev.meloda.fast.model.api.domain
|
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.data.AttachmentType
|
|
||||||
|
|
||||||
data class VkChannelMessage(
|
|
||||||
val channelId: Long,
|
|
||||||
val cmId: Long,
|
|
||||||
val authorId: Long,
|
|
||||||
val channelInfo: ChannelInfo,
|
|
||||||
val channelType: String,
|
|
||||||
val guid: String,
|
|
||||||
val text: String?,
|
|
||||||
val time: Long,
|
|
||||||
val attachments: List<VkAttachment>?,
|
|
||||||
) : VkAttachment {
|
|
||||||
|
|
||||||
data class ChannelInfo(
|
|
||||||
val title: String,
|
|
||||||
val photoBase: String?
|
|
||||||
)
|
|
||||||
|
|
||||||
override val type: AttachmentType = AttachmentType.CHANNEL_MESSAGE
|
|
||||||
}
|
|
||||||
+5
-5
@@ -1,9 +1,9 @@
|
|||||||
package dev.meloda.fast.model.api.domain
|
package dev.meloda.fast.model.api.domain
|
||||||
|
|
||||||
import dev.meloda.fast.model.api.PeerType
|
import dev.meloda.fast.model.api.PeerType
|
||||||
import dev.meloda.fast.model.database.VkConvoEntity
|
import dev.meloda.fast.model.database.VkConversationEntity
|
||||||
|
|
||||||
data class VkConvo(
|
data class VkConversation(
|
||||||
val id: Long,
|
val id: Long,
|
||||||
val localId: Long,
|
val localId: Long,
|
||||||
val ownerId: Long?,
|
val ownerId: Long?,
|
||||||
@@ -54,7 +54,7 @@ data class VkConvo(
|
|||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
val EMPTY: VkConvo = VkConvo(
|
val EMPTY: VkConversation = VkConversation(
|
||||||
id = -1,
|
id = -1,
|
||||||
localId = -1,
|
localId = -1,
|
||||||
ownerId = null,
|
ownerId = null,
|
||||||
@@ -90,7 +90,7 @@ data class VkConvo(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun VkConvo.asEntity(): VkConvoEntity = VkConvoEntity(
|
fun VkConversation.asEntity(): VkConversationEntity = VkConversationEntity(
|
||||||
id = id,
|
id = id,
|
||||||
localId = localId,
|
localId = localId,
|
||||||
ownerId = ownerId,
|
ownerId = ownerId,
|
||||||
@@ -99,7 +99,7 @@ fun VkConvo.asEntity(): VkConvoEntity = VkConvoEntity(
|
|||||||
photo100 = photo100,
|
photo100 = photo100,
|
||||||
photo200 = photo200,
|
photo200 = photo200,
|
||||||
isPhantom = isPhantom,
|
isPhantom = isPhantom,
|
||||||
lastCmId = lastCmId,
|
lastConversationMessageId = lastCmId,
|
||||||
inReadCmId = inReadCmId,
|
inReadCmId = inReadCmId,
|
||||||
outReadCmId = outReadCmId,
|
outReadCmId = outReadCmId,
|
||||||
inRead = inRead,
|
inRead = inRead,
|
||||||
@@ -4,14 +4,10 @@ import dev.meloda.fast.model.api.data.AttachmentType
|
|||||||
|
|
||||||
data class VkGiftDomain(
|
data class VkGiftDomain(
|
||||||
val id: Long,
|
val id: Long,
|
||||||
val thumb512: String?,
|
|
||||||
val thumb256: String?,
|
val thumb256: String?,
|
||||||
val thumb96: String?,
|
val thumb96: String?,
|
||||||
val thumb48: String
|
val thumb48: String
|
||||||
) : VkAttachment {
|
) : VkAttachment {
|
||||||
|
|
||||||
override val type: AttachmentType = AttachmentType.GIFT
|
override val type: AttachmentType = AttachmentType.GIFT
|
||||||
|
|
||||||
fun getMaxSizeThumb(): String = thumb512 ?: thumb256 ?: thumb96 ?: thumb48
|
|
||||||
fun getDefaultThumbSizeOrLess(): String = thumb256 ?: thumb96 ?: thumb48
|
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user