1
+ package kz.zhombie.bazaar.api.core.worker
2
+
3
+ import android.content.Context
4
+ import androidx.work.*
5
+ import kz.zhombie.bazaar.Bazaar
6
+ import kz.zhombie.bazaar.api.core.settings.Mode
7
+
8
+ class MediaSyncWorker constructor(
9
+ private val context : Context ,
10
+ params : WorkerParameters
11
+ ) : CoroutineWorker(context, params) {
12
+
13
+ companion object {
14
+ private val TAG = MediaSyncWorker ::class .java.simpleName
15
+
16
+ const val UNIQUE_WORK_NAME = " BazaarMediaSyncWork"
17
+
18
+ suspend fun startWork (context : Context ): Boolean {
19
+ val constraints = Constraints .Builder ()
20
+ .setRequiresBatteryNotLow(true )
21
+ .setRequiresCharging(false )
22
+ .setRequiresStorageNotLow(false )
23
+ .setRequiresDeviceIdle(false )
24
+ .setRequiredNetworkType(NetworkType .NOT_REQUIRED )
25
+ .build()
26
+
27
+ val operation = WorkManager .getInstance(context)
28
+ .enqueueUniqueWork(
29
+ UNIQUE_WORK_NAME ,
30
+ ExistingWorkPolicy .REPLACE ,
31
+ OneTimeWorkRequestBuilder <MediaSyncWorker >()
32
+ .setConstraints(constraints)
33
+ .build()
34
+ )
35
+ return try {
36
+ val success = operation.await()
37
+ @Suppress(" USELESS_IS_CHECK" )
38
+ return success is Operation .State .SUCCESS
39
+ } catch (e: Exception ) {
40
+ e.printStackTrace()
41
+ false
42
+ }
43
+ }
44
+
45
+ suspend fun cancelWork (context : Context ): Boolean {
46
+ val operation = WorkManager .getInstance(context)
47
+ .cancelUniqueWork(UNIQUE_WORK_NAME )
48
+
49
+ return try {
50
+ val success = operation.await()
51
+ @Suppress(" USELESS_IS_CHECK" )
52
+ return success is Operation .State .SUCCESS
53
+ } catch (e: Exception ) {
54
+ e.printStackTrace()
55
+ false
56
+ }
57
+ }
58
+ }
59
+
60
+ override suspend fun doWork (): Result {
61
+ Bazaar .preload(context, Mode .IMAGE_AND_VIDEO )
62
+ Bazaar .preload(context, Mode .AUDIO )
63
+ return Result .success()
64
+ }
65
+
66
+ }
0 commit comments